mapnik-vector-tile-0.3.2/0000755000175000017500000000000012174360626013353 5ustar devdevmapnik-vector-tile-0.3.2/test/0000755000175000017500000000000012215362766014335 5ustar devdevmapnik-vector-tile-0.3.2/test/test_utils.hpp0000644000175000017500000000237112174360626017245 0ustar devdev// mapnik #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include // boost #include #include #include boost::shared_ptr build_ds() { mapnik::context_ptr ctx = boost::make_shared(); ctx->push("name"); mapnik::feature_ptr feature(mapnik::feature_factory::create(ctx,1)); mapnik::transcoder tr("utf-8"); UnicodeString ustr = tr.transcode("null island"); feature->put("name",ustr); mapnik::geometry_type * pt = new mapnik::geometry_type(mapnik::Point); pt->move_to(0,0); feature->add_geometry(pt); boost::shared_ptr ds = boost::make_shared(); ds->push(feature); return ds; } mapnik-vector-tile-0.3.2/test/vector_tile.cpp0000644000175000017500000002050012174360626017352 0ustar devdev// https://github.com/philsquared/Catch/wiki/Supplying-your-own-main() #define CATCH_CONFIG_RUNNER #include "catch.hpp" // test utils #include "test_utils.hpp" #include "vector_tile_projection.hpp" const unsigned x=0,y=0,z=0; const unsigned tile_size = 256; mapnik::box2d bbox; // vector output api #include "vector_tile_processor.hpp" #include "vector_tile_backend_pbf.hpp" TEST_CASE( "vector tile projection 1", "should support z/x/y to bbox conversion at 0/0/0" ) { mapnik::vector::spherical_mercator merc(256); int x = 0; int y = 0; int z = 0; double minx,miny,maxx,maxy; merc.xyz(x,y,z,minx,miny,maxx,maxy); mapnik::box2d map_extent(minx,miny,maxx,maxy); mapnik::box2d e(-20037508.342789,-20037508.342789,20037508.342789,20037508.342789); double epsilon = 0.000001; CHECK(std::fabs(map_extent.minx() - e.minx()) < epsilon); CHECK(std::fabs(map_extent.miny() - e.miny()) < epsilon); CHECK(std::fabs(map_extent.maxx() - e.maxx()) < epsilon); CHECK(std::fabs(map_extent.maxy() - e.maxy()) < epsilon); } TEST_CASE( "vector tile projection 2", "should support z/x/y to bbox conversion up to z33" ) { mapnik::vector::spherical_mercator merc(256); int x = 2145960701; int y = 1428172928; int z = 32; double minx,miny,maxx,maxy; merc.xyz(x,y,z,minx,miny,maxx,maxy); mapnik::box2d map_extent(minx,miny,maxx,maxy); mapnik::box2d e(-14210.1492817168364127,6711666.7204630710184574,-14210.1399510249066225,6711666.7297937674447894); double epsilon = 0.00000001; CHECK(std::fabs(map_extent.minx() - e.minx()) < epsilon); CHECK(std::fabs(map_extent.miny() - e.miny()) < epsilon); CHECK(std::fabs(map_extent.maxx() - e.maxx()) < epsilon); CHECK(std::fabs(map_extent.maxy() - e.maxy()) < epsilon); } TEST_CASE( "vector tile output", "should create vector tile with one point" ) { typedef mapnik::vector::backend_pbf backend_type; typedef mapnik::vector::processor renderer_type; typedef mapnik::vector::tile tile_type; tile_type tile; backend_type backend(tile,16); mapnik::Map map(tile_size,tile_size); mapnik::layer lyr("layer"); lyr.set_datasource(build_ds()); map.addLayer(lyr); mapnik::request m_req(tile_size,tile_size,bbox); renderer_type ren(backend,map,m_req); ren.apply(); CHECK(1 == tile.layers_size()); mapnik::vector::tile_layer const& layer = tile.layers(0); CHECK(std::string("layer") == layer.name()); CHECK(1 == layer.features_size()); mapnik::vector::tile_feature const& f = layer.features(0); CHECK(static_cast(1) == static_cast(f.id())); CHECK(3 == f.geometry_size()); CHECK(9 == f.geometry(0)); CHECK(4096 == f.geometry(1)); CHECK(4096 == f.geometry(2)); CHECK(52 == tile.ByteSize()); std::string buffer; CHECK(tile.SerializeToString(&buffer)); CHECK(52 == buffer.size()); } // vector input api #include "vector_tile_datasource.hpp" #include "vector_tile_backend_pbf.hpp" TEST_CASE( "vector tile input", "should be able to parse message and render point" ) { typedef mapnik::vector::backend_pbf backend_type; typedef mapnik::vector::processor renderer_type; typedef mapnik::vector::tile tile_type; tile_type tile; backend_type backend(tile,16); mapnik::Map map(tile_size,tile_size); mapnik::layer lyr("layer"); lyr.set_datasource(build_ds()); map.addLayer(lyr); map.zoom_to_box(bbox); mapnik::request m_req(map.width(),map.height(),map.get_current_extent()); renderer_type ren(backend,map,m_req); ren.apply(); // serialize to message std::string buffer; CHECK(tile.SerializeToString(&buffer)); CHECK(52 == buffer.size()); // now create new objects mapnik::Map map2(tile_size,tile_size); tile_type tile2; CHECK(tile2.ParseFromString(buffer)); CHECK(1 == tile2.layers_size()); mapnik::vector::tile_layer const& layer2 = tile2.layers(0); CHECK(std::string("layer") == layer2.name()); mapnik::layer lyr2("layer"); boost::shared_ptr ds = boost::make_shared< mapnik::vector::tile_datasource>( layer2,x,y,z,map2.width()); ds->set_envelope(bbox); mapnik::layer_descriptor lay_desc = ds->get_descriptor(); std::vector expected_names; expected_names.push_back("name"); std::vector names; BOOST_FOREACH(mapnik::attribute_descriptor const& desc, lay_desc.get_descriptors()) { names.push_back(desc.get_name()); } CHECK(names == expected_names); lyr2.set_datasource(ds); lyr2.add_style("style"); map2.addLayer(lyr2); mapnik::feature_type_style s; mapnik::rule r; mapnik::color red(255,0,0); mapnik::markers_symbolizer sym; sym.set_fill(red); r.append(sym); s.add_rule(r); map2.insert_style("style",s); map2.zoom_to_box(bbox); mapnik::image_32 im(map2.width(),map2.height()); mapnik::agg_renderer ren2(map2,im); ren2.apply(); unsigned rgba = im.data()(128,128); CHECK(red.rgba() == rgba); //mapnik::save_to_file(im,"test.png"); } TEST_CASE( "vector tile datasource", "should filter features outside extent" ) { typedef mapnik::vector::backend_pbf backend_type; typedef mapnik::vector::processor renderer_type; typedef mapnik::vector::tile tile_type; tile_type tile; backend_type backend(tile,16); mapnik::Map map(tile_size,tile_size); mapnik::layer lyr("layer"); lyr.set_datasource(build_ds()); map.addLayer(lyr); mapnik::request m_req(tile_size,tile_size,bbox); renderer_type ren(backend,map,m_req); ren.apply(); CHECK(1 == tile.layers_size()); mapnik::vector::tile_layer const& layer = tile.layers(0); CHECK(std::string("layer") == layer.name()); CHECK(1 == layer.features_size()); mapnik::vector::tile_feature const& f = layer.features(0); CHECK(static_cast(1) == static_cast(f.id())); CHECK(3 == f.geometry_size()); CHECK(9 == f.geometry(0)); CHECK(4096 == f.geometry(1)); CHECK(4096 == f.geometry(2)); // now actually start the meat of the test mapnik::vector::tile_datasource ds(layer,x,y,z,tile_size); mapnik::featureset_ptr fs; // ensure we can query single feature fs = ds.features(mapnik::query(bbox)); mapnik::feature_ptr feat = fs->next(); CHECK(feat != mapnik::feature_ptr()); CHECK(feat->size() == 0); CHECK(fs->next() == mapnik::feature_ptr()); mapnik::query qq = mapnik::query(mapnik::box2d(-1,-1,1,1)); qq.add_property_name("name"); fs = ds.features(qq); feat = fs->next(); CHECK(feat != mapnik::feature_ptr()); CHECK(feat->size() == 1); // CHECK(feat->get("name") == "null island"); // now check that datasource api throws out feature which is outside extent fs = ds.features(mapnik::query(mapnik::box2d(-10,-10,-10,-10))); CHECK(fs->next() == mapnik::feature_ptr()); // ensure same behavior for feature_at_point fs = ds.features_at_point(mapnik::coord2d(0.0,0.0),0.0001); CHECK(fs->next() != mapnik::feature_ptr()); fs = ds.features_at_point(mapnik::coord2d(1.0,1.0),1.0001); CHECK(fs->next() != mapnik::feature_ptr()); fs = ds.features_at_point(mapnik::coord2d(-10,-10),0); CHECK(fs->next() == mapnik::feature_ptr()); // finally, make sure attributes are also filtered mapnik::feature_ptr f_ptr; fs = ds.features(mapnik::query(bbox)); f_ptr = fs->next(); CHECK(f_ptr != mapnik::feature_ptr()); // no attributes CHECK(f_ptr->context()->size() == 0); mapnik::query q(bbox); q.add_property_name("name"); fs = ds.features(q); f_ptr = fs->next(); CHECK(f_ptr != mapnik::feature_ptr()); // one attribute CHECK(f_ptr->context()->size() == 1); } int main (int argc, char* const argv[]) { GOOGLE_PROTOBUF_VERIFY_VERSION; // set up bbox double minx,miny,maxx,maxy; mapnik::vector::spherical_mercator merc(256); merc.xyz(x,y,z,minx,miny,maxx,maxy); bbox.init(minx,miny,maxx,maxy); int result = Catch::Main( argc, argv ); if (!result) printf("\x1b[1;32m ✓ \x1b[0m\n"); google::protobuf::ShutdownProtobufLibrary(); return result; } mapnik-vector-tile-0.3.2/test/python/0000755000175000017500000000000012174360626015653 5ustar devdevmapnik-vector-tile-0.3.2/test/python/test.py0000644000175000017500000001476312174360626017217 0ustar devdev#!/usr/bin/env python # -*- coding: utf-8 -*- import sys import unittest import json # put local python module dir on path sys.path.append("./python") import renderer class TestRendererParts(unittest.TestCase): def test_lonlat2merc(self): # projection transform # should roughtly match: echo -180 -85 | cs2cs -f "%.10f" +init=epsg:4326 +to +init=epsg:3857 x,y = renderer.lonlat2merc(-180,-85) self.assertAlmostEqual(-20037508.342789244,x) self.assertAlmostEqual(-19971868.8804085888,y) def test_box2d(self): box = renderer.Box2d(-180,-85,180,85) assert box.minx == -180 assert box.miny == -85 assert box.maxx == 180 assert box.maxy == 85 assert box.intersects(0,0) assert not box.intersects(-180,-90) self.assertAlmostEqual(box.bounds(),[box.minx,box.miny,box.maxx,box.maxy]) def test_spherical_mercator(self): merc = renderer.SphericalMercator() z0_extent = merc.bbox(0,0,0) def test_request(self): req = renderer.Request(0,0,0) self.assertAlmostEqual(req.get_width(),40075016.68557849) self.assertAlmostEqual(req.get_height(),40075016.68557849) def test_ctrans(self): req = renderer.Request(0,0,0) x,y = renderer.lonlat2merc(-180,-85) ctrans = renderer.CoordTransform(req) px,py = ctrans.forward(x,y) self.assertAlmostEqual(px,0.0) self.assertAlmostEqual(py,255.5806938147701) px2,py2 = ctrans.forward(-20037508.34,-20037508.34) self.assertAlmostEqual(px2,0.0) self.assertAlmostEqual(py2,256.0) px3,py3 = ctrans.forward(-20037508.34/2,-20037508.34/2) self.assertAlmostEqual(px2,0.0) self.assertAlmostEqual(py2,256.0) def test_adding_duplicate_points(self): req = renderer.Request(0,0,0) vtile = renderer.VectorTile(req) vtile.add_point(0,0,{}) vtile.add_point(0,0,{}) j_obj = json.loads(vtile.to_geojson()) self.assertEqual(len(j_obj['features']),1) def test_vtile_attributes(self): req = renderer.Request(0,0,0) vtile = renderer.VectorTile(req) attr = {"name":"DC", "integer":10, "bigint":sys.maxint, "nbigint":-1 * sys.maxint, "float":1.5, "bigfloat":float(sys.maxint), "unistr":u"élan", "bool":True, "bool2":False } vtile.add_point(0,0,attr) j_obj = json.loads(vtile.to_geojson()) self.assertEqual(j_obj['type'],"FeatureCollection") self.assertEqual(len(j_obj['features']),1) feature = j_obj['features'][0] self.assertDictEqual(feature['properties'],attr) def test_vtile_z0(self): req = renderer.Request(0,0,0) vtile = renderer.VectorTile(req) x,y = -8526703.378081053, 4740318.745473632 vtile.add_point(x,y,{}) j_obj = json.loads(vtile.to_geojson()) feature = j_obj['features'][0] self.assertEqual(feature['type'],'Feature') self.assertEqual(feature['geometry']['type'],'Point') coords = feature['geometry']['coordinates'] self.assertAlmostEqual(coords[0],x,-4) self.assertAlmostEqual(coords[1],y,-4) def test_vtile_z20(self): merc = renderer.SphericalMercator() x,y = -8526703.378081053, 4740318.745473632 xyz_bounds = merc.xyz([x,y,x,y],20) req = renderer.Request(xyz_bounds[0],xyz_bounds[1],20) vtile = renderer.VectorTile(req) vtile.add_point(x,y,{"name":"DC","integer":10,"float":1.5}) j_obj = json.loads(vtile.to_geojson()) self.assertEqual(j_obj['type'],"FeatureCollection") self.assertEqual(len(j_obj['features']),1) feature = j_obj['features'][0] self.assertDictEqual(feature['properties'],{ "integer": 10, "float": 1.5, "name": "DC" }) self.assertEqual(feature['type'],'Feature') self.assertEqual(feature['geometry']['type'],'Point') coords = feature['geometry']['coordinates'] self.assertAlmostEqual(coords[0],x,2) self.assertAlmostEqual(coords[1],y,2) def test_vtile_z20_higher_precision(self): merc = renderer.SphericalMercator() x,y = -8526703.378081053, 4740318.745473632 xyz_bounds = merc.xyz([x,y,x,y],20) req = renderer.Request(xyz_bounds[0],xyz_bounds[1],20) vtile = renderer.VectorTile(req,512) vtile.add_point(x,y,{}) j_obj = json.loads(vtile.to_geojson()) feature = j_obj['features'][0] coords = feature['geometry']['coordinates'] self.assertAlmostEqual(coords[0],x,3) self.assertAlmostEqual(coords[1],y,3) def test_vtile_z22(self): merc = renderer.SphericalMercator() x,y = -8526703.378081053, 4740318.745473632 xyz_bounds = merc.xyz([x,y,x,y],22) req = renderer.Request(xyz_bounds[0],xyz_bounds[1],22) vtile = renderer.VectorTile(req) vtile.add_point(x,y,{"name":"DC","integer":10,"float":1.5}) j_obj = json.loads(vtile.to_geojson()) self.assertEqual(j_obj['type'],"FeatureCollection") self.assertEqual(len(j_obj['features']),1) feature = j_obj['features'][0] self.assertDictEqual(feature['properties'],{ "integer": 10, "float": 1.5, "name": "DC" }) self.assertEqual(feature['type'],'Feature') self.assertEqual(feature['geometry']['type'],'Point') coords = feature['geometry']['coordinates'] self.assertAlmostEqual(coords[0],x,2) self.assertAlmostEqual(coords[1],y,1) def test_vtile_z22_higher_precision(self): merc = renderer.SphericalMercator() x,y = -8526703.378081053, 4740318.745473632 xyz_bounds = merc.xyz([x,y,x,y],22) req = renderer.Request(xyz_bounds[0],xyz_bounds[1],22) vtile = renderer.VectorTile(req,512) vtile.add_point(x,y,{}) j_obj = json.loads(vtile.to_geojson()) feature = j_obj['features'][0] coords = feature['geometry']['coordinates'] self.assertAlmostEqual(coords[0],x,4) self.assertAlmostEqual(coords[1],y,4) if __name__ == '__main__': unittest.main()mapnik-vector-tile-0.3.2/README.md0000644000175000017500000000677412174360626014650 0ustar devdev## mapnik-vector-tile A high performance library for working with vector tiles from the team at [MapBox](http://mapbox.com/about/team/). Provides C++ headers that support rendering geodata into vector tiles and rendering vector tiles into images. Many efforts at vector tiles use [GeoJSON](http://www.geojson.org/) or other text based formats that are easy to parse in the browser. This approach is different: tiles are encoded as protobuf messages and storage is tightly designed around the [Mapnik rendering engine](http://mapnik.org). In this case Mapnik is the client rather than the browser. This provides a geodata format that is a drop-in replacement for datasources like postgis and shapefiles without compromising on speed and can be styled using existing design tools like [TileMill](http://tilemill.com). ## Implementation details Vector tiles in this code represent a direct serialization of Mapnik layers optimized for space efficient storage and fast deserialization directly back into Mapnik objects. For those familiar with the Mapnik API vector tiles here can be considered a named array of `mapnik::featureset_ptr` whose geometries have been pre-tiled. A vector tile can consist of one or more ordered layers identified by name and containing one or more features. Features contain attributes and geometries: either point, linestring, or polygon. Features expect single geometries so multipolygons or multilinestrings are represented as multiple features, each storing a single geometry part. Geometries are stored as an x,y,command stream (where `command` is a rendering command like move_to or line_to). Geometries are clipped, reprojected into the map srs, converted to screen coordinates, and [delta](http://en.wikipedia.org/wiki/Delta_encoding) and [zigzag](http://en.wikipedia.org/wiki/Delta_encoding) encoded. Feature attributes are encoded as key:value pairs which are dictionary encoded at the layer level for compact storage of any repeated keys or values. Values use variant type encoding supporting both unicode strings, boolean values, and various integer and floating point types. Vector tiles are serialized as protobuf messages which are then zlib compressed. The assumed projection is Spherical Mercator (`epsg:3857`). ## Requires - Mapnik v2.2.0: `libmapnik` and `mapnik-config` - Protobuf: `libprotobuf` and `protoc` ### Ubuntu Dependencies Installation apt-get install libprotobuf7 libprotobuf-dev protobuf-compiler apt-add-repository ppa:mapnik/v2.2.0 apt-get update && apt-get install libmapnik libmapnik-dev ### OS X Dependencies Installation brew install protobuf brew install mapnik ## Building Just type: make This builds the protobuf C++ wrappers: `vector_tile.pb.cc` and `vector_tile.pb.h` Then include `vector_tile.pb.cc` in your code. The rest is header only. ## Tests Run the C++ tests like: make test ## Examples ### C++ See examples in examples/c++ ### Python These require the protobuf python bindings and the `rtree` library which can be installed like: pip install protobuf rtree To build and test the python example code do: make python && make python-test Run the example code: python examples/python/hello-world.py ## Authors - [Artem Pavlenko](https://github.com/artemp) - [Dane Springmeyer](https://github.com/springmeyer) - [Konstantin Käfer](https://github.com/kkaefer) ## See also - http://mike.teczno.com/notes/postgreslessness-mapnik-vectiles.html - https://github.com/mdaines/ceramic - https://github.com/opensciencemap/VectorTileMapmapnik-vector-tile-0.3.2/examples/0000755000175000017500000000000012174360626015171 5ustar devdevmapnik-vector-tile-0.3.2/examples/c++/0000755000175000017500000000000012174360626015541 5ustar devdevmapnik-vector-tile-0.3.2/examples/c++/Makefile0000755000175000017500000000070412174360626017205 0ustar devdevPROTOBUF_CXXFLAGS=$(shell pkg-config protobuf --cflags) PROTOBUF_LDFLAGS=$(shell pkg-config protobuf --libs-only-L) -lprotobuf-lite CXXFLAGS := $(CXXFLAGS) # inherit from env LDFLAGS := $(LDFLAGS) # inherit from env all: tileinfo tileinfo: tileinfo.cpp ../../src/vector_tile.pb.cc $(CXX) tileinfo.cpp ../../src/vector_tile.pb.cc -o tileinfo -lprotobuf-lite test: ./tileinfo ../data/14_8716_8015.vector.pbf clean: @rm -f ./tileinfo .PHONY: test mapnik-vector-tile-0.3.2/examples/c++/tileinfo.cpp0000644000175000017500000000431612174360626020062 0ustar devdev#include "../../src/vector_tile.pb.h" #include #include #include #include int main(int argc, char** argv) { GOOGLE_PROTOBUF_VERIFY_VERSION; std::vector args; for (int i=1;i(stream.rdbuf()),(std::istreambuf_iterator())); stream.close(); // now attemp to open protobuf mapnik::vector::tile tile; if (!tile.ParseFromString(message)) { std::clog << "failed to parse protobuf\n"; } std::cout << "number of layers: " << tile.layers_size() << "\n"; for (unsigned i=0;icjxa=wI9J9*Y|RwulfG,~ȏ%7_ T0#_;:q ;& 2}(.TOs'oP*A /v޿7{ Ǘ/zoy3hYWdWh~kgM(˿=T_#6[G֘݀%Mm6H|غ(=V}bS/B]>.[*M9g ]BeCH>F[?-|cek y_թl|: ZD6ADžqL]a(q ;س駸+.?r#jQP,}NN_?ڏ$nа0%R_I5^C=Jox5(jxSFلsMq>EL"iOkٺ(n.LN; }*ʵ#6wdv["`PF>!)ÇڔjjN{<XF=w|Cjw2˰"weG\_~}ۤXң3 UcQ19f.oX8ʑ4vEnN/.h*}[وd@HZ~ }w }dmg{ET_ }_JmF!ڪJt >&4Ni~->F,ņ=ѹaUT `C8%{p~&/.ߏ'TmwtjQHz䝑-˞j+чclk58XcV8kmV}l ZP 'Y^S> (Ӥ%GWy드G\8UDnh]>`\VD_YڠsjCt}>AkVvEqy L_ (lkt}1S) )#?Dv*WiW5 ~/EW[Ჶ SBn_ךaaޗry^\c]!xi6,+o!vWݬnYEZյ .k PCE;zͿu+EqDbЩ"2mo"z{ۉ>T/F{nMl@,g2]rE-Uv6}C8c!!Fؼܪxf.\t9ٝMqv>p][ϵX76g\I#Fn(se#('&8XDjkk+jfGtNJ20n/J߾YJiȎN.nwCe8;{!B"riYi. IWT%C\Q> yL*B8o)]vfNr>M]gWOqh=EYnxVzzhH#m:QrLN yKy$L\o"lj^+&Չ4{"re<k0 i-x]>DE RXEĄU36FIfmczFRzڌE~6vE([3gwhc턋S"pǥMc SmE]E}N0/" 3PE:4%nI9ұDʀԄGMxH&|"E~|OMyf´&ӏ<>cƴD=xJ&1lǪf%^`5'Oxf'H`-w&^Zb p'Ht'k֥n5#"qpi3,wD8a)g>X(e1YDiLꆼ.&>F$ɬPX0Kn9\v4&xp|Fk kq yM|ȩ06k91Y.\jlky O|ðAG^^&:1ۢuiclY.̰~?g nؠVk3Ee4Jl`H罾0U^XwڷɌn06 #Qrrnc*C^]VkqVB.SS 1Z0e4 8RS1E$DyZt>Fc #`NJk [k3A1%W?K&5vvEȰMblf}<"2"0pU̢s!O*&%{KNYIIM2t[D; +H$0ȆOA%0Iorl҂XyMD?FIM\X_/"QX#x+b5 N`!6I]CD1q;$Y唴fVHwˬ(8jaq1HKM"#5 ,#Q%M%_nNA&_6f/b2]Bֲ:IȢ](Өt}avb$>kYh"T. v!cfմpy)׸uƋ2n'LW4N3^64p̝ -wB8e[0Aҭ]\d46?-k'\℀+i6YQ ~n5Z`y#BQJܤ2٦ze =;ßf[afu>v%FnpNd(U'r5`ZϠ2Wn Fe(M5Ln_Cjs6eg^y!gnN:Wqȩ |z%s5y/6Ջ\ƆÇZsY,c]B*OMqp:yrc^@ 5%_r8{VoawȖ7 .)kXYUJ„U,8H=y.GYrrQ&S[rH<ޮ;_."E,ʫqf+ةϹ>3lbӿ[vlr,Yʘ$۰mUAcWQ*5V w:}"Q̛s={PW& G1'r -joQ̱e 2n{%S5"3DӲWY6.:|ttޒ{kx>Z&-8P#{lBpMc$oixs~Ll2h35Jfd9ź-T#gDjRܻ4 'C~Z"aVhN(fU綰&1)Jk12p"3)V|4Au:y(ޡ8k]B׺2? 5OL&}:kCΰIM`f:k)5WfxrMZ@H2Ni]%.v g$/3+B#8?<3]hdu3u=$KM4rK>rBtoIvu ?bsD+(J -)UcnHk]t XV+pV率Vk e PQ6w2M"WYn6Jځ5cjP+ӝqk ;K t>dž~jRt8Ѹd&zP܉0 e7M)nrS(E?^̺l[H GQŬ] guFJa^g#y-V<Ԉ";tH2BYSgYջ< t8Yu 2豞,dC|o[洁2^qA=.S#ک|AGa36R>щ;vƟQ=; DMVX,@6WbfRH`[<D[ 'A;:cԠ4]:kv#QX;yR@[(zhoؿ"+H=:$8:V%[<KFE0#PcR x&QI(e+5:hv‚"F8BfAC:k.QzkhCLMq`ފwz{-m+Up4ǖ9Q:^k.9mO9 X1; 5VFA8N)\\ի$ǨjPm`(YMϬ\?`PYͅh6&S{:WF TMnQ@s'B k͡]$ I嶟r[Bc$/ .j]\Il,: r;{zCL&E4K*ʈ>^q/V 2-QSi%F'UF!*Xv="0U(1({+Xu=͍e;qc.ZrmaXA}/H)Qz'E +>ꁪ]s1|X_LX %o-G -A- GctK81%Tܺ Q 1qp\4]BIqOY#"N?萭sbF rn*^"k90 =|磧^^(o+ ˻Xd*˝›^4D哝Kb;PTLi>#|\ e6VwF/FZ?Ո7v_3tqs+ʭֺ E]сZ Eyd&QWYJ`va"HX{+V 9*)^8A XX;iV5qD9 X@L0?fK"/@Fh|CkVYOp|LLޤ(k422SiTX(ОCqpӆ^TJ3k_5,)׻eґ'ԷcMFv)$?DzB kP@ͫmFD>e߲B;+!0=|XU_\N˄E2Ӣ&f>ٹ:W&'SRsvZ "*ιz]%'ŬI]4}4Z)k{!wQ! #-K1{PѮ1N+R9͔aK}GڠPhU-ARA׵g%+Kd/t4'.EFd-#Q YW+i̲.H/֦ސ;Ԟq /С<S;g:|1X K>ҞNQmh-mk{m`<,vx'Tc:t8hǿH|{*V""A:3^S_rxf5aunQG6y rLwqt]j&*Vq\@#o5{+wuU[$>AyQF)XJw){CHG%r aKvOGIG5T1BI3;uA{§hչc 'Z0V"bφ1Wt)4|9vC6Au̍ <$>CZ"h|M"OoZ'rr"P+)n}tV>[ LwwGv8b7w3\BY8UυtQjC)4NPA {bZؐPPS<-BAYQ'\'^"/٫:e/x:F?1*N?E;9W븏 Va=DXLeӱ! ^;S39; V_&BW;ƹ@x?VҾ9kkbw>L1W-ݶoB0Vޙd*1b 5+m]C}G2?ODvB4N51lu2*'l8Pgr}ynHnP6uLe[giE֓dg)ԍx}5: PChƯӏ2zeULk93l^5f1V"jB73;wezecQ 4w}HV'U;+C!VF\˂<)ýIp:K\WvG1[r۠B[|q!{!iV̬>?'JVڄem:r.JPW[B9ϙwn#HPJBJ}е[߂4_6W%b:kv6jgVXO7te:N,%P+#/z-1>gȎ\_"A jZt)eyy"7x+Y'ߠm}*ses:XG'yX6Ӳ>ImlZF^n`"򬮝]mrی>Du^ߤ74]4' -ц#]/x᭄2*>rp.Ki.8o^əAm^vanCvO U4cAennNOqg (Jޜ` Ԯt.gx q=TK]lR[n0ϱjO[CXw{OQVP>n\Rflqe3*om Ofe/0|Gf @塖Z\H/)C"#sN C``L\[9uk#[PN!bmqWB@]wo#C9?kUs}62= *Fg׮M6#ֻ8l m_B Ϩ܇[d5[  p}aeZ jsnjYrlj"V! _cc"d+1ߵ޺67ut8YHܮrR~[c}ǾЫZز8E2b%YoWU] |chU`9ԖY˼CL@{x\X--TϿV7}{Z ^fA.)3bxe݊ piC*yq.jxݶ SB$081n?*[!κT)Uɾڵ˜`~fey#8Q?Kdvͺ|Pk e}[|9]馓9}-G9/X! PqxU_Pm-2ER[6Oe\ݕ582>Lt▰8V>@g-h:uIg/ LJ~y94\>p!y|AJmO㹼o#C!# fLSIIaU1g ;3Y%p+Jwn<4 ]yB#\tgvuHv?9YG)kY}v3n\ |Ē.<'6Uje@7Q6`q=I,.Ww=U{]jƿ5ڊ݋Ʊ?~.pGg$x9.8K]13S1]z 35k jG6ǩ8g[}㜤[f,/o^ٝ]|r= !4TbݞĜ[@'SC!IMvp ql_^?(Q,Nҝ[ݭA鐬 틯 xmY)eQR P J^]/?3 PBsPЫicBJ^>{Fr=S wbWH@)\[An(; |9XNT,6g(BDJFmI=5?8]Q{EĈd`;Fg2utзS!WS3u'SbU  *1Xx>QaB]:Nږ*|ҟ߶{P;1Ń(R2ubq!r߆uTɳ$d@in&FiHc"7M'/D{kwD8V1$) _6VØzIsIբq`G-F_hFŊ$.2/YwnErMm !R#{á˖$on0'UKo \F^q{Xt9F6_ȈX@MaUZqRBdND7ye=.4]D|iOaBN[6t,C[u_ 3/al LwM|xP'ChGeT՗Q0<Ӡ07;;ԦzjU(vtCq% lNd.)7h}{ePU줛a?+^fhVzm}+|̢u"z9]6Xw󅷉oPN;wA5>P- Tn6Ë&@@sӰ2uldww?,"VVxreL_}S&)[3~X+1d(A~C).jw)]ΚК}9 ѺWMW^V祜l Uzdi.~Kb] d 1RJ# bYI~@9n] a|Mnt1;zPML3R{{e^SF[.$+NԞd[ج)fO lh 2;ǕscN^/:pl=8$cn*VQ̢PGlUǼٝ_5~9554H韏|4ޅ~ 1W0rwS>ߢ|/5\շ2bLᷭpض!2tT#jE'uNɔ:Yln ߡ{!~/őȒYyu!Ks,b[g*@e; y)%= ^ص[t<hgt7Q6QJ kze( E5-u`/f6S2 mS8j.m љwnuz#wBt ,]ԫg833xni_VY̳ӧO) , IJO,ڗTDq@\ݵ4%~>Z?9 @uLM1}^4~o SlA)6R !ON:c3'LƄLnA`~ T[/(%K3`5.X;l "oo\ƩQHbꞍ5D (XP+,ˬk CeagN5ۮT]UOQ*%4lɐO& v \0}9RR ؓ-oH(E0t\\^򚶵JFuhAEbAUYYW;N)=;Kݥ6uZWoǮ"ʽ㍧.yyLD@ e]|~pQKPdsn ;:amX# {഼%=FHDSIdaE;0K WF$ wuuj)c2fJf='E(לӒZN)BB XHB7_D OZ bmVcK-\xL"%jtOGK/ЈXXK$b܏u8 ; %Nt!d#Y^%Cm׍n+\o:Hq]~իIl5- _VD%ͮMSv5(WbZd*jUvUաT)_pBp1 G@ }\VKB"K*़nF%|Q-ELԫJolW< 5VMb}rC#D$(B)qw&-#6H-1{ԐMd&bIb? lJ]ɦTii=f@A\SbC ō}- WhCGUciwSq~}dxD'D(2lGK*#dJkI8I1Ҙ׸T!pK xg{5m1qk sjEN{;N7/Bhm5xݡ@j/X6iRkQqQH7og fg EK>ݱI߃fywMJ2,A:7jO|Xq\NnQ ?6]%7{m.SRqo||HUDw!f+ґ+HPLJ9cNͩt51>#;ˢz#zjpC$@עLV dg =X}TCry:^m Ril&෩nD燕-Y eVBy)aVKagƭ%4TH>`'b-xm%^>mЦf3cE%7- 4(4\Y0nskȥF_"8QyNܪxTZ#i\ .Bv'e֧#Ui-z╾ %A;KDհC(p.Hн]FJhXBHl7, `@m\0&A1QĨMem&ʺե [/ƗpĽSϸ'`JlR#Dߩ%wmϹMn6# J,gW v| ê0r0L0l%[yhx1|zZ{$. SIRMGbD}+%VDr6H}Etu> {`M<&)Qf^!}&%oo}`DKk83rRIy2 1n)xG 3. ,X+L#/`-C>#Ec/w*E? 07|jU#9OtA{A&&/X[~錅/peq? F[HMXvs"U`Sj oeR濌ϭ%D(oʭOOXtmg 1 *kXy7zE`E>_S׼3x2h_oWlf ?.徦w^ wki?@covmyJ#k8,l>n1 BT h ݊vE^8,%v0ֈ}u71D>\ClrS9B$;CKG;WWRǪJ#`Juy{]C~zS*|_5~oDm1? _yګ Uɬډ7ʫc"0ϱ9X2Aңq ~YN=?ܝͥ5gZT9!wKW{9|R:45~ky][K[ϣJtV+$.m$r":?~𯎱8*\(SCXYؓ'{t곕$n%?.o$L-*ۿoRqGc] -7-c7nykle*!68hcB,&C>%vWܚ7Fm&l]DW7^y;ZBY([f+Nt%]hJ74`k?}d|S=~Ə??[ݾYwJfk6°/4yI`m"3~0.V7Gik(ۄg2my^7Y=@7ķ[+P9:(.W@氐|s̖m}aGX JՉƧhG=,9 M"_jQ?g >S:FzvϐoaOfK?Z7 Ls'l+_S_bk?e0,7Cm;TZ XιR9޳~op߰m j0ۥ GF`dѻC՞Vv<k_EUUR.$ffx:IK g&+ HN"]*d\s~,s# t|wg.oAk5xH1Je_NzƇ:~^Q}Q5&Fz2,dUlp9_ɲ e1_o憯XǵR89 T_z{SDh?J\vv&/&oyo&~>㤦wa32?KU0Xs:f%m}r Wah^o!ǧAoqgRj8xn% w͖,uADZaTo?>bΔsl69零dS6!  -  xzW7"]zo"]D@AD %+i89EFbfimveɭo}+h:z%IJY/MJ>eOAqsM׼ nf"{(V^}0 oOcHd:X{DߐL12YftU~w[(;?;#ul%s.Lf 2d֦vwn0XǤ\d&JcBs䅯SItue,k4t G<(*N8:Prbnu.H\5_+VLpV`&BBlwm./{HP:'9-i&cWlBձb;K)c\زRxF[V$(T+[MLq/Ev b_URXqaf]*K?'mrKH3avE="$I@ʶYV2A0JyN cIhKu!-\:* w24(`$g+1s>[m IR/3]B.X,h=t`PvGO"-HүIțk?4.-|݇)ϩ±vI f1"@i*8wV_ cբOsdkQVh桶niU?󾢥_C5`+Zh\[>-3Ge$EAޠ!iyY~:4/d+Q(鱭ڻ c[5JJE=iӣT'*ߚEkE!$8f]\u 6WVYk;lf\Љ:1}~o(9|4' 7/K) %!bjyIL(Lҏ±Z۸9F6DAmϟÞ.$n5Q O&h0f!5s,wPv̡9tfnPc#JӚ9-u.%6D,K|{$ 9W4[f5)ݵ-dbhlGigq0fG_#> /I,SYr;7I9šrPˡzp au3C{QmIhkIkܣh2xoIϝI<ߠ.v;-OX*vථgɋ,YS ϝ]G^Tƛ6Fe7jE$`Nd:+6J$A)RBt9 IL1&#r\C:re è,w"2h-kx;KO[c.s~ӌsĔg'𸘨ĈD[6SšHYP4!ciC-קYk}1]$NnMr.M5RfQy ci:Y8$nOJ9$ ]E4OH.L3uz.d} H1<"LM8Ct; ,*Js/[#Dbu R$%FK%cU!OBXs7OWp-kvA2GqF+k FgI~Ǧfg_],L#F1КGh/<cz^f- F$䤥|kRS*3}8۞ i(Oj;Eb]xen\)p&O7wkqaµWU:foԵx1YW.Hj-kc=t},Atuf u$,5rnO9,{{4_Za + SI%ZhO8mN_^Tudc eHKH`d7F_YR=Z`PD/6(E=R]kW4g8=m5ˊU-K(5﹂]E"ẗ́9Ķ;C=-ۭ_NvʻfM`QH=gmCߦDF7o,j4g_{CEE+;KE=h;g&(Y4NVIy7G-s wURx% U (`Z=SAAD{&bsye/:z iOagۍ'l:rŒ U7rOUpXMVF5ğ[~&f8eV8R=z{? C,a$s#/LM.i3W:>5D q4'qB{/M` TLeZ+<.rS-b4r5BAt2RSgJ>J'1T%Cy0f9U5J%U4OY O׵d>xljw#_:u[_4`BGsְ`c\rɌ1v@'G_QgG_Z qz̾fVY2!QLb\5마S+Z׬9]0tT1 擋(i"r1CN$Y#s==?)g/0iVK7 nvPo_Zx|Z3 U [1w?XڋIݡcv,.йELhWSOμm?hƁ_qw~W UZC|M{G.bmmEWk8wDÌ[֖tIyzYZPOSBCo[3$mÕw3P=+[$ / x-ZtcO 1h 9^1 u=4;^}?`_׶H@* m uJOT0w7g./S^i%l0eYI'㗑Zqkx.} 7A/tC'g^H0nirӛ gJ>iŕ/.A4(kQsA CsFIc DA2̵[Ssp5߂hnIbtCǐODhUFr\OUƚ10-{Β$8iI<7Aa.4=EgGsrZ5pg[TNbit~w&X"n֒ShM鶹$'qO>ڙlFEo8W;n-jb9oXyę*SdEbx}P%{7͘(qp",6o(KF~Hk{#o87g4B2*44˼f3ELv!K5ϙ-cxj=K;EΠWgZۋ$5o!Yl&3Q^H;'Ie9ƣh.5b\HP𘀅H!6&rL]kߌX_ uuJQLai .P(H5xA>;~Us3eFt-.^r=UZv''y(o4$e٫MM=zEzeZ"_K7jP'f#ꅼ^iPwzϴ$WAzlzu% WWIxO"5 {əzITFP+v:IN#TEfYvNb<:\BBv\T_*ww*COu>m~m64yR"{&B\)1NB:IW]:֫^/qq%ryx>(B1FORG?">2-S|B~B˼Ax"hZJCA{UJU>MSIBHHj'uc&(CLăIӘB) /f>N ߻zkqʧFT\tQ+`];a]~*:m݇|}zG=T`Ȁ+*>ާVE\+˭iJ&RfPo{TM6|~T~ǔ~C4{=*8SPfXumMӧhp:|s ¥3e6 kViRyOtS>NgϽt*ϖ=AF8Mx}@}+H^#B0@] 0|_ÞSa/5hM+_QnBn`STm s9ER>3"DJ)3 +y2xJiH\Y/J)AJ4̂y+EB !0+P*NȅiHdx&ȃmo@d8DL:t."onk*DF@,GJr\h5H " e4R-"}Ad0DƈWby+NJE@dDA9SrNy W"㡝 ,'H r"C!2*Ēx$'ȍ3 b.\0a) ),Jr[TlJ8DA<=Gqɷ?uL 3 9CD~~$z{%[vFBd6a9hU{['OE_׃ >z1Z!{huۊrC̐u etY**]r?د1D;; *nP*A7@{S)h3oŲr(' ˫zqsJ.-~\e]]_ ҧfu-(jAG(qhQz^3%L @|j|YibFkU,)Uy}j/kYn{r>.MQ!`ٻ0Pf-š չߋe*'16gXcS8 *:,갚xSV VE38̪h&yԼ*_j~_* XOFߋ#/ˋOU/?ۘ4*dpc  V a\t&Ii \m~5_29AT>?@ eTr~. 4?8,`?YNk2AX~ؐl&v?Xߤ`,O~ÔP~7C8^9Jh0?GR!0m ™ithiw![# kZgSG PYf*xF> A >偷D` 0A87dk~_0T3:r!탏SG'nnYҾ5~&.q)aTD1je c $sԴOO92L<~zɮ8e8ԍD|ޭMٖ%wcOV?KԵH.cy/՗WCN{$i1ͅrk@̍r+;݌ԓG^%fŪۮޤt%yI˛ٶ$$b%GilTqA֟tÎf!w9K6 ^KTPVU;SL5JgU/y:.sd^FuVS'*:jt@XA wVdsZdvu-XH85:ȮLU78*;iz@Gڹ_g%o(~AE|Wv@u]XE"w)&eP'-_0V }>ٍ8I<)0!4}"\߿w !qcQdOe)-zROg5/5SZ h}=ɟfG׺}tMkszC)ڋ⽤^r,Ri/O}/Ca+{ӧii>/͠Q*mn=C>GS=T|t)mEAҾ/+V oJ;}=ǟ="?KUijoжN??w r#i0 :GTu0l5ۃPG VW%u)'^$`/rArtzOu) ?kFۅ@zg,+Xe'50\w{$$T(۹Ҽ4#L!CG˓z}O<S㱽{)1~"l჈4ȃHUoe*kg ++;9;^G2z, :!!"!ի>g G?t~;Y9>,p|qvdk+g05xaD NBG6DI䑤Z9O5gؤʣMhGi4G*X V1%l,c4cM׫x>0Sy넎#l4L 4|91 ZbWwQIN&l2ᓉ4ȓIRT3N1&JBADzo'\ ⷋw[Auwp+6.a-fG%5P'a [Lb"-&V=]VweD:HХ-%|)y+m 6o [4mW1"} z J },P.]N VH+TOÏ-dvQ2PU"|Vy4_ V^)W5R&k-6R^ZӥTg%$~==Dc_Oij].@wm$(I/tC(quZ[} ,PbY6XgHֻv% )k Lf"m&fS0d+9+i[(DSs Q6[Y[o~#xU4}AD`*r'AG^#BX+4cUH.#`sB#t'a; IDin4s f{d1TMA$w S3m6aj?Omf6ўvj"OXM@H# !#t?a ODo iz ;`G Rofӟ@ > "}@bǒfOG[uID7MmuVӼekm4GzT)^>5AA $>n ´0kT3\FTC%:H€ҍ].cqFW?7Rp.R= cy߻2:@`lԋԘ$mb}18 "c`ɜS L(OH/_ERd P:WܟIzjdOb_S$r IN57O")V' ;II"$ɻURteID]r2д0дiOa_  q|RZHn洯+BogiGa$>>C|)i|6_i}4wuYggMWk~5҃V^_"k__>@> ^05PVWǮHY^ENrp SY8v_ۭB Ga=ǀY;y<])@0Ȗ=H " EnO=Vz6҇`U͐Q[3 "r5!,d,~%aE[De:wT#-@w;7EϿ]$X!wtwI\Œ&oR|&SMF?Hfx-$4Aleg6Dݞ# h<'3wmH.q=²ھH9Ow5/ kl0僩4ʃiun$LA> U0PխuIv]dZA0_X:^b+EÂN{ A}z2` #.z]sN~bGL5WGًFW('9HnXJ_u_T~V7B*7񔍧|P 7m%g|E?W7:"C V`YKѨӉ5X|=j<0HK$AM4}g3 (3IL8Y#F6hi: ?cԃ8l g7$A0ܽrWS=LޠglDU98',>3a)SRz#SsIY#F=ޤXhLh >|D Ǚ#з$PGBNKj&ZK}y!|;ytx?VOA~7/-JJgP6TA>ɲ%n^|Τݒus&4qčO J/)GN߃CIkl_~`?q#9vN( _wq l@xNyڿ2!I|G"nfS7.H6s~uHCف (]HBRi!8uPNi4q_!$X/@ ! DbSi1M.4+e'z^2F9/$v5 V5_Agɵ`K)]F2ʗQi݅kC;i]pJSTZNbl%B^"o+h?^:g؁+]][?vC8>oBtjN9#ٜx)]CPi ܭu KUwH"EA Le#6r "U7 Wx}GM Sm*K*MA ߀J #.n) #qnݡ3[h=迫`4YvpmX0ڀ 0y LBH$r+(F6*m6s2漫Lb33)4%IĶ&k!əCH=0n-A}d {)%.l{IA.wQiwYk~!O?>?`4ҽ|/Ry9;XH`: ]^l?g0%H3zfxbj##΁#ɡVI>I/"B&+Lr0@uRۙ8AѬŔDuQmQ6lB 0< 7^$B` M-$BؚL8yȊ%I}'PDSzQ*Փ̃)b jeզ'q«SI/d!&_5Xwrn PGCTtbB7 Ejc&JG&2Rj'uE2WBɥEF3\.S5e_S5r7MP5z _&P׷]kOx1o> lHwRzk_5*_3ݕm"T 2!E$[$ZZʚҘT#6dKnC4b#{tT.$h K6Ğqo wWa++}0d+1nX- OE(P˥O_[PlIf2$[h/X1ωo_+mvKu9$D-Ly~)`#ќggluRCakI5{,j ni:k/#H;$y87-7Z2|Q%换1"! #i&tTvLNW0Ɔ1>IØIS<XDw9H}̈́߷`s?_;q`{Fo1:iOc4&O̓xwq Wod)"m-~8bY`:it RR+^{P PQN@gea#{R˙ H-3g#Ӡ?n;8}Ņ`+5}e}d w DiY FZF1uLZuڨ6{{w1qgtc LcI'B&>y+b l 4D!o76X}0U0Lz@|nV!RnnxE/u0~I|UIbzވ T;I #_X5 $5AQwZjw@ÿ1Z!jcs[į"٣h Z|Nd,< }H>)n%0'%uEJqOQOgzk$fDBK QƎ2~IG| O[)&O'{7O{:Ğ^5l2 Sz`NҦĘ8?pyp!;SF3vL:wACD> :'+> :G6v7S?WHx=ƿ_ ɀ4ӓ+.ِK[ I8&o?L S0e;oxbZM Yo6 fH/x=.qݽ߷:i 7=` 1z ݩv١mzl7}Ow`|e (|,>~:rb~}0Mm: Zk /Vծks /HC*͙hz!'əC=ς瓉o-BDt6#l$-E[n:_v/{N=c*+^e*WtW\4JDBCS]ϻC@0NSM\Aci=J&$RkL *FH*ԙmxuHOkDg!]*sݷzc:+m cbQзvڂ^Ely0Zy W?pKrbfwO2=q[whH*v}Huc ΩĖvҠ8SMn2~I7|U'qyL 34!- WٵUܳv2|j#,&%@Z+nbHnSmMabADA? 7c6cͤLͪ3{?(ߙ-Yx3`uuiv s\(}JRY`7z LTq3$Q5܋lbJ*dR%+=Vh`?l烸4˃x5u<)mQ9`. `\MEE[xC9P. P[MOEJ[t8g9Υ\nb<1Yvt޼ۊn$8(.(^]a0cR1u4y%R_P Z]@/q Ut,gc9˥\kycօΝgOBr([LM JGlyą'CW9|Ks&s,|Oq{:5A7pU4g9?ͥ\>m1^,MG05B%g8;.sZJ;i5I;EhrQg!%*9q~K|nE]_z ].p*S5\j+/Tg (lj;Yȿ8k3rg jGCG~RЯ8e/s2/59rea~giC}dL3nM%~K';"Ԉp{(1W9U.]USi ]O&Y#FgFq gp 7wvukę֋,Zr-r[.k1*nkȉբ.788Kq;Ek/?p?p.`b'\`}J2&?r#?rG.hVv[N ZB>[c?q3g?s3~wu ]ggOWyzٯʥ_bSk[HTKz8߸H$}tvV|vnKo\ SlA͙\Ƴɔ~DL,`E%.AABtV&ly 'C9 Ð; aniTE9#;^[ BdA :C xc+s='cAw2' {r' < X[Wk,Af&$ѹfq0@f()CrCTl((LDVdC>!oJ|v_~}횎vmyO%qoBw,roXH|;lFY! G=2l +<$+hO~ wnNgS9@)dB)O!zj[ڪL.lxx}>WI(͋+2~} 襩_ZU){(j JVBJ*p/iueu Ҳ-c+I`uk7{'WV sp$9?l ȱE:N3kڜ]n.u !Ư!o 71ո"TvO$kio! w3ْP ^t=d>@>@?L"eGd=2 r '#NV+Z[Ijq2>C d@ _ b*ʷ)Yh*B+dB+_!j=d?`,޳Qoo~蛩ƅ8N h;s;vGh<^+ ̇nVj`D<1;qDT-z~:7]拜'!f2b'#n2lP|Zf<1S;qSTT]Ϫr-N lrLCtNGt#4rh yCbg f&bg"n&3i’!)YوlfkjDFs3s7Eݩ<8M N377۩] QHvP,DB-Dp!B Mp/3x,NQwtĥ#P ԣIn+2E/FLb3`B&tIOrI; ["%Yإ[R~TތXp!&D0Lx|=BR9#& YB0 ,vTvi(vbl6a fZQBD*ĮB*W!)k3 W#&9A0k&dXHX]Eh U'YsuY[z֛e7뎇D!6 &E0\sz}YEClC(۩`!"*q#o6"FK[^[[Krw.-klsrڌ-݂-nAhԩm4="8*1-@\T^2 B`|LoCvnGv#ᄚKaϝ"gSav f'bw"n';i/F/ Nwl)-i)P{=Z- W)]E8-ǑmaBiؼQN.̇Mq|#,XqkKJSB"XPIޒuȶAc*A10 r L:b%g)C׷<$n 9#E+B"Y|KEEQE(BGpד#| q ܨ 2>~\Pң-ƌ5cd࢘SCse- .c9S;)N[oGzJ.swa( F ;oe\3=3Al%}~.@xEq1{q<9ֶƫTRĜGyĝGDC"D^wMa?򐺛臯M]C,[OVO QЯA'W6dj[״uv} B_3vy}@I*dKzٗwþE8ӱ:泠"WDl%*Daod 3ALbW`BU?Π dG|n b ozcV:r8A;ľC;!΄YV{~:-/}= 8DŽ]WS%+xL{5Vmwo^偒WT}4 PS#/lt;ƅsY9Ȼ4iJҢI=Mp>V)*b>#3>#ϦH@d`v P|A̿q"/Bl/{X8QE_bC^jr`Uow8FE2Bbsx8GySAKL-OI<;&p&Ռ"s;;3Sxv MMEOm#1{46' *zL<7y4>Lx#OGH-߭˳χ\<a&Y<7x45?r}gKg9<;pҹ]0J), -`.y<7x4ϤCd{n;+Vr>,< x$Ni-~%xd'yf1.<\̣&!oX#~[H?9}>{ q8u♥0G&uKvu {WxB@?E9s0L@cdqfgzh.o%ɥr:#^GWfVyj0ε-)r+a9ʍ5ε p9%yT?d!nv^oX.&TOɳQ.['j/\ȧjK˵esylػG%qGjwǁbD {lK@Gm7V:j=apCpqǸ>%<#9H#iE*o/ Tuw-[yKϠ9u|%O7\q,8\.KkNxJ$^gc{S#\&xJ,rWUо!G,s}syGj/|ohd2kl"\2Îz3/y%ϽK4E[".0Wd7~c }042d8y_ʡ!v8@b [sB.~,Pn6( tdZY4n.-32罔kחwȇC藆r_2x٤K*wl?o!mg\ļKqVxg&V[H _?0o+ʹ+w m`6i -C&RYqY! s%_vx3^±*ɧ(Ԝ/f"2^N)<-|n= _7pH@#,kuĊ>B~-dCw39s"vP\˸u-[6ig7ob.C\ 3OΓp$p͓T+ 96SIrvw?4١4{ɷ_ WK $lHOx5/k8bF,&,aIEH哐,%i%?nAަ]k>hi(΂BT`',GXƾA-"-+JVkM*doo6s*oܕE[#g?)0bט6rom]51z`Xx𫭤 uS[vB`#sҝ$O;ݔ$uڵhH&_I?=? ~ܶfOI33r[g}MW4`*UA1ɸPE;o\q|@2JfKUtW *L꺲6vY'IP}c`!̱>kI2ay ʑBRs%cB @wWAVvRd)&}3+3.d IvI6/^$$CTut2BH67/RD_<$̬=`>GPA25IBmM*J+"Ij^U&W\VFWd8gָ¬e!Jm7IѨ~j-Ɣ[քOS&`ȐWR1fޡ6o>:mj.Y'(}DzGXt[ulJ(b2Aa3j'cad|Zy,6c'_5J×E,ew.O@תּ3&r&amBd[3>Z~&NOF!ojJ LOt¨V=?2揍h _B!P'mr\YJD)C;:n]WʐMew*pXmk=#6֋SG&>s dn 4I46JAdOp#Bi0߃Kr}rgwHKPsbiˢV'Mщv18T9)7n,F4!g<; 0Bח ]!VҦeF|w?JzN5ZRm)ͦBF%pCfVjBI.Ct#FjmclϤk m:@bR{j933ZgSFdlQmwmDa:\C ׶h YDŽLh|iG9^l6p|;1 &-9.8j 1_ŮI/td }* u:JxZg''׭lHHVvtD@Fmh"MFn*I}w;@9;R˓nt7-RaZo!IMn\#Ӻe @$~BҦMrlR/Ez{͚S'd 9ZXw2GUqڿ8 z|]lJٕ6}ʿe!1HNV_{!r-cRuê+PZ;ArӎyBraFoDYk639j}iFAJFf]D֎PM&{vh@ڳ}Eb_9dqp]cC+=ц[H>k}|k2* {|ib>!210N=115 w8uI'rq\R[E4]]GGiOSձ5 Iu?=!S<1=m7%aI߁6wH_׏pmԁ􊋖7l ͙zw9ퟺDQbk?MT{46$_Dg$qn{ͿqxuoR\×={ɻT5ZIڈ[zO)ދo__I;Vw,oM]4nqBrfW/sbxTMF0heKhDꜞ]'ב$ǧuyD*pNǮ\]g{Rιc,KZW .JzKGZXrٙG#젆iZzu҆8'C'P;C~5lEDTi/5dP4YL:«H |᪊qDQiެs؊I_行|Ju*…SΤB 6_OK]mp ɽpi \Dev!֏Z@fY,HOf(G Y)^u֨cgIM?8?wkgiTcgO$cq7؄;$$o2zO>߳H3P4z/s]I*ˏlK%֑uK :&ER;(|խ]O+i̯1,Ś?ZEu?j=ߴ|4CdV)O*\S 9&ؔxӆt6zYMlBt=HÕl=0MlXIVo>&)Uw ͎84ojxQ7Jժ=XgFrf܁SdؚM5#N'̣1{Os_$p]AiB$1pF$9ȲF4?zǒ]+^۱nC_-i+ao G'ٴ:ot9ߛi%ìH,;"oLϮf1g|ِW^r9DHvpNĩ4 XwVT*4Gj 3{yιMg Tt#M9g$C?ѝt`5]힤~cuYWBĪnyxq֐0euX.6'E-(F/Y 6MI{ Ioڒ oVZ:J|CzI+[`|h7n-@:.Jj/ڞ91ǩR;@ [sbI#J{]c.C&|ony-b}w?^!$q&|Lvo{nc2O[=I"B*Py- 1Fv =J~/^izտ7=IgʯdniE >R4xqcHUg4* 9CW 3kպd Iޛt5"ͮ-OZ~Fu{O"N ВPEa$qsIjO}8HqZI#? O "蟦jšGZ5 }A 0 &1RÉVii;I(T  x§Q8ޤ-CJ뽘.m+4Y7,ue 5ev?N?nf7' 2u$.!̲\OIpa 8z;X@_h 1"5:o_:6mx 1Ъ AGRRãOď ^Z~馞Ǹ$fbIGyA[Mv-u&OJv'~,r rna0. O'[\FrtWRFKO]ķ9R+yzm҃teZ\0ؐߑflHkRvvpt-E``B"zoX',b_LV،uE4*t|!gq@CWNUk2?)7:`3Ev֪0;@0`e]sr L Sj %67̓f!☣SNEN#pV1.R9Ԙۤy7nsl^j:%RUҐZtt^Cn1>Yd#$ܵ%XD2%I}+d%GTi摿h $3/Ѕ0]+il5dr!Ut:JSaΧ‘}IlNt}i IEIGB!?9Ѻ&ˮw8D4 7yAj>^l |6^_N*m2jd #}>xX벘qkWzBɪTy^G&jF\&sf}P:aq=z: G{{)&x*Su#䣛%n 6Dؙ5:'J'Wπk[ "jc8+&y 23/A/.M/f}<u5Q8H58v_$ҧ"^tV:׃ %._j)Ze2e3gdm_(AbLSʇ߸aIa1I:G"udaH~c<-pas'Nџ4=9__-0[ͅڥf.GGbq(%Aswk4J6x< 컩% 9ܞL7D-N\&ЍtM%0oIcG^6;؏!ּ{㒫FڐCLpmig:0Cog׫VT^3[M~Ƌկ2>d#Tcƪg$ ,AV+Ŏtvu[H-&Ykb^~oA>aW_TC Q5SfeI U0.K)0=w|[:m<'鮋n1!5IqX|uc);Oou[A-&HXy({ݺ/5'L+B4$MSDSDsղ$-n5S %Taի{U8 !U ҫ Zyv}%&{d([,3!́aIizY\A#k%~2ZE<5 ޸*C0ֽzckDG(yiuq&[|ql%nɇLU <膐&e?r+ά; (nq "|oF.{*Dg3ip~-ڽI&HN886L+=(UX5PӾkdtFP=]0uZE^dmU=#[~iG=|A3;b].b>z oڤt:jJ-,\em-H歗 :AP%(ӨG$+4vD/%;WN6ޟRp6dR+d.14 voon/Rji]ľ}\mF. } G~ X)F`c';rBce[Q^<&'Rl>" GiDJqM'0ىξeB iawxՈ TpW ;]^[[u۸q!.[6<#l/ZsnXVևF jjc7Svyv"pФLLUg1vgY?jiuVlܶ\L P0Dzobҝ شƍƈ-1P^uɔ j.aʑi셿0(TO_4s#{L"?Qt7)mmTD4*Ai o.wH(jc'F q9nxTx@z^Q}#K.ʴvm0qĢ9 ɪP|]Yi4L5Ɖ аh~0svii&|mB=Sw]mG sŻǶs ;)5>=Rj4Fm4qe(zEs0eHՈ%14^$|$=JTE.MmjK=Wg|HZ13jDDCزԔz 'hsx3#0ou4EWDn*JހWP;!w@<:>\ނzsT:!b<\uȍ#J9f[V Dʹ9$Ta(*8%Ŀj!'>;P,YwO)%}n@kMD6׭WZg|~>.N `Hewbb>aڳ^ن JBE:nSBd V[=렁,o\9vuq SsPwnݢta 8 JÃ8)yftUOK#FXaL%:EJgp ]B6}QZ ! Pjq?^+^btԜ.Eq3t.DΞ +Ad+bf7$suZ-^D.H5I-OWS[udr>z$}V6ꎩlLvig68 P֍=[*Y3jSlE# l,ĈQbEHtɜt!@2[$}Y%L-z߸MP0-6źaX¡uts̡kX~Džޓݹ~:O%s ]",nS7[HoGlF4@RfOp$HfIzio2*~ݼGM>s5žNڽou,bNc%'LۘIȞKdgu(L[j=$ۂ|ZA0îdBr[8^T^d(%ML8ҋ\H~It)RnK3onKI?!:o]hBrbۜ mRy{.|i "Z^әtNtH"@isk϶ }C:KTg;'v;݋ԢÍ7]亴-7 捧Ѣݮ?mׁ?i~ExL3AGڲ-+q&4\x>T=lMBܑmÈ&6'6gf K\]}~;N̺qɹg^I퓙3QtIߘr")_7s WF}HKϭUZč䉺3DUfi48ԔYN{ 2N?Om'KS0. ` \ aIwdtf5& d!!$ H8LBgxxc'kb7L"RFJ9)JC0;)2`Θ94'첥B1$ `X%$ r1? &Ykƚ次5$`ز-%7?,$&ɁcqvЎJdITdj5&!FX`R-Pjڤt3d)u=csОd+&Yaerua]Bze51pdYG:2L$'8Μ3tz&bg>%\v$9&L6b_$;Lj\W֕stS7LInӈm5i}&TwƝuܡ; VT <'zrГ/IM@S)۔k 7ߗBfb8/EHKC0As9ۜkR|~wLr%Ӓmɵ-ix} ¤ fZְ5!]ns^I0 hk|B:<Hgڳ=!-f> I@G#ۑ;Rf41tf;sagBƿ$&u]lW+JHs[^r$/%R6I~g9OH_۬5Ǥ@6 )Cw;bRCL L0`Bl&bR"&0täPƄa\ #^m4¤n gùpNHgC7 cRtgsawB}(wLQLE(jID3l4 \bX64w |L z1^\/؋[}z>L!r%<&5äӏigZIL?8G06oL2ف@8n|MsL/uR6 &)A Bޠ&Ĥx`hu6bR+LR!KGvz;LjI !ȰiIj0 q6 SiZ+&%-ejI/8S{LсuZa :`ҟ@oMdL*ʥTBJ@hN3p8Z'$1iɌdGr#H'qFhv47 ƀؿ_~IXv,7%ǝՒ;I|fx-FdXɝ%~r&f"`'n")`v ɀ NS N]1 0A*ڿb@`& c,fRǀ \\p.B1`37``(CC>--@zO0pP,0pN0 NNp'dO1`bcFÀǯQ1` `?`v?&\(L!` W`! 4=p0{p6؄T}`A} B|+}ywwfiޖ;sϜ|Sy)]j3z| Xol)JB3]v^ە'<%=_Sݵ2=4MedHZǹ 2;>6Ȑ6rG CK Vc!Ҿ?giM9net9Ǵ]514>1ƕh 1ȥI"S.pNpZ>*^ztwHQyp%?m:ض|HpiyR|TNQђ)-̛%7Z }u2u%D?\A -ɋqxxқ'eV-6-~z}_^ÏbPsVV֍#~Vv/rI<7`$^r<"fNUްH2P&neM+CMxڹ5?U}d@/(YIɅ.D>ó^Y, \ǐ¯=ɾ j,_E=V^jY6yB \㟯I/@o#;)S YE ?ɲB3f&#[ BFJ")}(1قiVT$佴qbuw f:LǶmQZk1eS0EB}삜L"@+}AB#7(uwMGDjQM@6b3o! 5i|$h%k'8Ho/Zynbޣ*bgDhk8+˙ { aR7nI&P] .<`| ܈a92cv!kU>S27-r2=}S+[D\}}]EǨAU6jl,͑֍dOذMҮ䘝6m%JZܲ ͆m6-8@NDE7^a&kS曳\3ljx{~DR8AJ>}GM@ZGߔB0ȹ?{ĥc6\yِ0 _@=yGͺ{OF2s@S,R=&B灠d;Fǔ~{V%<#cs jx3D$C)r߁ Gھr3|J8I:^nWZG(*#9AܮHԒ  Bmapnik-vector-tile-0.3.2/examples/data/14_8716_8015.vector.pbf0000644000175000017500000144521412174360626021475 0ustar devdeve landuse"  ,T* p%> ~NzD!"    r;  /"06 .6:J Eu" XX &:*  @0 @>&$H50 ^0 ).&!  *     Y/  !(S /37= O5  !9  ) #   E  G'=1#+ AO5=w @ !       $e, $ 9 31k   W-G'= =Sk'-3m_ 'OW ' 2fFz\r'?!M  E   3cmM"  9:N)         R   >$ ,        (\   7" H* z      . *" 6     4  7( :.:R2 4  T  " >:2(*   ;1- !/-#-E%"5*J+ 5/5S-]%[%ki-  1#3   [!A -GC?GYi|"r #4/ m7S0/54"b (#0-Dh$IH:u;#S,8| '    !)$!S"I 8  \"6P J4cC? 5 I5}aq"g }*4   $F#V$  H$t3n  "   -<9+/ '5/ U ) @"6 v`(b/ F'ASIUm 4"* 4+r{=RbF-6a+Be%i}) " &Je! )ws "i A",",,75 6 ", xa09x52ns3A*)jV'&4]t=cwK " }  G )7  +  E  .8 $! "8  ? F# % 2" +0  0f6Lv,Z@>+S Kk % #/$ "]  J "@  W dE]}F'> J L | XM"1 1 ! c/++ "  F6 7 B1`!>   *0  $ *  .  ,**  "%X DV    ;"1 6(% bCV@B$$: 6n (-!/J3") 1z (`Bn< *P >  +# = Q"  8"HL 2 & &  .   %%       $6 *2 7&  *    e4W&+-I0#5E,.41" -       ;  " :(6" (>0BJ6(J6  1<qa      " :(6" (>0BJ6(J6  1<qa      *" 6bvr&\&"<@Z7NO8MGG"y }+    ( 8       B   / '5/ U ) !" (**dg" @>"ME+"! #+J:)F--,"" 79ZhW.! q)/"} }  0   $!       t ,&6 &  #     5!E   +6", ty'-E5` +?/1# OB #% " -BS_^ C2W?o*!" 'Z2t) 0 ":+cH""> 3ALN \"&($"$ ,BH= #!%#')-)Q[%a!!#" '-*`_'$" %R6q4:4f@~7 !Q1u?*%" Z$>|":(sz$SFC>&"4 01[6f@$3%1$=?" ?4% # ;!'<'"2 & $ &  4|:~ )! 37y<("2 *9% LO:=tB@$3 !& ?D +B%MU1)"' z=9*8a&,d  G")_#Cg, #+#*" :I*&,1+"v >PH$) 0& **<6@: $93  '.G=KC     A,"7 4+W.tY3?n 5`)H.  2( 705K!;-" =& $80,*  KC             K  "." })J*  3/" 9             "0" 92,:'/"1" :+2U&!vSol2"b U;  ( (  !!/7  X ' m G23"( (/r:%"G>><X!I+4"! "-Z    %#.5"$ "/rF" /z (JR<C_]GG6"=   Btr   )E+%  %%E/7"% z9 026 @ , #   /O!8" 6-2 ,AbS/9"%  z "4&0BuF';%7 3:") =rk|)MR bkaj96?F&;"  RP(.(SX!C7<" "*R#Y wH=">  L ?(0 T* Y.9   (>" %2Z6sHB .>Y`=,?"" b,;.; Y~iVB_-@"# .6r,+"# *6.JG:CI!!/PA"F ? &/  "* #&'#!%6B", !/`$&[     C" .*9::9"D" Bl& o] K6E", 9. e&$J  "*  $ o'!F" #:n/8 a'G" (Z2XHE$ %,1k 1$H" #Jf+b[SGI" >*>'*4J"*     &@6b +  #';a3K") 0  4>  "2rI#'Q)L" *"Z( E($/-%M" ."&p6+N"! b=$QO1 SWM5#O" /BHfA'_ '"P" <BE62,E])4Q"* 3z%$B,E=E(R" 3R- Vx 5y?7m+S"! >j8/$DH,B#$1/(/SM!!+T"! 78j\# d-"gX,U"" 3jpT [9AV"7 =B      .. Q% %W" >:'4X"* 0"  N '  N!9 1#Y" ":  XV%dZ"Z ?   ( +   F!--F["<                Cd];\" )*/|+kF]"< Be            ];-^"# +j,3Q$t!# <_"2 3m" F# I "^1 (" 7Bq:A!`" :,A$/)a" , )   1C   !c" +: TUjd"` >          LDH> )%G?De": > D>RH6. ! g_f" #9*N_F>S^?;'g" ?Z63nf;   ')h" 5**=xR)>wQi"x =@R (      .."EB QMKE=;@j"6 8U^<            @k"6      ^>7V      l"z =  D<        m"z =  D<        n" 5* hgjo"` > h` "     WI'# !p" !:0 Adq"Z : 56    K r" 2* )s" b?7 2@e%t"  J  & )u" b.R,>,B Ge1 Cv" 9*y%#w" -!J,?61&,%" -0!<x"2 <VL.,   +)7/#<y"2 <VL.,   +)7/#z" }$"h~]o{" }%$|" }$N^-5`}"V <1(= 5T"L_ 7%~" :RH8    _-!" ): nQ;Y"N   8#        &" 7R:4 + I;&" :RN N  M9  ="2   Z+ 0     " 0* X YI"> =!v#  M '  N " !*+ $, #"" /B.*`  1q" } (V7" *<X9WX"M < : N 7 G .`  & S *<   ? " " 3*6&R5%S " .:QE<>!!*" 2b.O      # $" ;JT   ; )$" ?J{p <4C+-&" J  %,!" ;B XU(" >Z*+$" @J  8&";##*" 9b" *( '$" 8J 2  #"" B   - $" 9J (5 "" B    !0"% =z 4 3 ,"! 7j0 7", :" * 3"( 7   ="2 >   ;"0 =    ."# 7r "" 8B'  $ ;"0 (" ;Z   $" 1J " 02 5"* < $" :J      (" ;Z" *   $" :J     " 2   $" " @2%=   !5A" @ " # " " 3" " " + " "2 ,  " =" 3n " @6*  " @7*  " @9*   " #*#    " @7  * " 4$ " 4 (" 4 "" 5 $" 5 (" 5 t&" 5Z 0*$  "2" 5 h" 1 .7" 4"" 5 & , &" (Z(   *" 0*?F1(  " 5 " 6 (.(" $4b!    #;"1 @8 " > y!" 3 [tm""c 7     &&    .0    *'.1 #47J14  !"E _#"U . C  #5              $" 1"GZ& %" +2 "(&" 6b  &8('" 5 89("/ @8"G)"= (0   1&  % !    ) *"  B;B/>5N)*! A(o+"e 6     * 0"N  " *X *&6 2 *T0  ," 4*-" >*& 4/|'Z." 5"4J/" 6 *4L V *0" (0*"1" $J   (2" "b/   *3" !j,>  (14"' ".&  #5" }R&T-NIBk<+:=6Qx#L7b{?6"5 ,  ; m#k Y A ! 5CwE3 ]' Q$1,9##+]7"   @8"6 4 . &$ , (" &(>  " 89"    6" &@ j& D< (    P2((*"      >      4!RP6@VN\hx!d N$L*r\d8^>R2<*.6@ 0 @ , "<'X lH4%,?T5&WE -)<#l/+2 *.0;" $32# /$'<" /JV{b3*hId=|7poB="8 }) 0,j*B"   $   '*4 $:O>"E @9  '!/ 9 >:" @,J& +'18;\;.M?"C 6 ,nF &6]es iUsSk'A@" @ A" 4& '0B" @* GC"= =  = >K  '! !    CUD"K 3'   %  UD!AJMJYZ 1 !2 -"'([xE" @  U8iF_N/,").O8  "     = / *  &'*   ( &F&   F" @  *G" @j  (8~ (type" stream" ditch" river( x water" J#" Z    ;"5 f+4pB       /" !:, ; " * !" &R!" &R#" ;Z    '  " J " +2     " 4* % &! " R! " )R!" !R3"- 8*$ 6/3 " >*X5"HI$/5'"! =j  4". 8   ( x aeroway( x barrier_line#" '.:u;#S,8|#" $,:--:8 u& " ?"( " ?2 , " >@" >@"  &" 3Z  ,"" " -"(>4.@~?" 2"""@" *"$A" )*8 &B" **! C" *B"D" ==J   1E"' ;;, 5F"+ 4* 5 /3  G" 00 6!H" *9 @AI" +2 :=J" >> &K" 6- eL" 5+ 1M" 5( "N" 3* O" 3; P" 8* =/Q" 7) $R" 6) S" 7) %AT"7 :+lmU" .@  V" /2 W" ,4 X" -5&Y" 3=&Z" 05  [" 0,. \" +2 ]" )4( ^" )4 <_" ;( `" ;:$" a" 6,>k 9b" 6,Lc" 6) W;d" 51. e" 9- )f" ::aRg" 80  h" .2 i" //B#j" 2)45Mk" 30 0L(l" 33%@ m" 0069n" 1/  o" <:1-@p" ;( q" 4;)"r" 3)s" 90 7t" 9<KB2nu" 7:" v" 7*+/w" 61 x" /0"Z=y" 4*" M"mz" 4+"O/){" 9?" |" ,/*}" ;)*!~" ;=* #" ..2*X((#,#I" 9<2>322,. g" 7-2S31!+'0YR" 3 C" h" 7 " % " &" -7"  " ( "  "  ." ?q" + "  Q"  " "  " " .L" # #" "" $*4" %2#N" %!" ]k" <" 2  " 8-8" /Ce" ! " 3" k_"   " ( "  +! " M"  '" : ."  0"  !-"   +" /" ")9 " " ! " ?" E 4" (" &#7 " 4" " 4" " 9"*#61>" 8"" "WW" "C" " -" "I"}O" " %"a" " !" "6" "&nF" "! " "/%}" "711" "Q " " %" !"=9s kz"o  "{   " 4*2 *  " *5cM" %*    " %* " 27" :Q! !" B  " $=q" ! A" #I" $/c" !,r" # " "<" %#" $@" %C %" &+" %3 " &)" !" $$# X"M $ O% ]?+7+35??" .%>/?" 3#CJ3:" 3!Q@9<" 4"]dOV" 0"+4 " 2"1>1> " 2%R6L0" <%"" ;& " >  " 63*" 5 "" 5#5" 3  " 7#" 7+2" !)" &  ))" #  "    " #1" "G " ! " !(d" $," #R" $: Z"  ;!?" )  " >"('" 4!"" 4"G6 " !"A0" "" 0 " #" 6" $"&"  " #C7" % "V)"&" $" 0" %"1 " &#*,$4" <%*&#" ;$*&# " *I= " $* ,  " %*"  *?1ou6"  * " $%*C," &#* " %2  'g" "2$" !2!Y #%" $:E  " #:" ":   " %:)-;O5!" $B7MkG;!" !B  "@ #" %J*J "> %" 'R/-GI" 1' 9&" 2& -$" <' +"" ' a." & 3" ;&DE" :'"/!" >'*! " 'G " &"F" ' " :':A" 9'"< " &"(" %  J" ' '" :&*  " '*/e7q!" :&B!  8"!" &B#!*d0  #" J    #" 8J  $" i1R *&$4<0h)" ;b  )" 6bN)" "'" ?;"n  " 5" Z%" 8*+',&" 9* (F " <* %" 1*+P0 J" 8* " ?* " @ ,( " @ " 92 " 92" ;2" ;2  " 92 b!" @ 4 *- " :: " >:  " <:  !" R   " @,," @" = " >  " @ " ? $" =2@ M S"H V4JV#jT/l#F     U C&W! " N>"NL68" },:2Zd" }- " }@"  " !" 5 2a"   " L3" 7F"  E*"   " +05" 1"  -" ! " " #+" % " $?"  " 'L"   X?"  ?" +" " +"  " 2 "  nG :!"  +9$-" " ]U8H"  $@"" " " "  15"    " L"  "rM(DP/" "7 +" "(1   " "&9  " "" " " "o" "  )" "XL" "7 E" "E" " =" "' " $"|"" " " * A ["  * "  * 8 " *  " $* 6 " 2$  " 2 " 29' 5 O" : #5&%)" :    !" B!" $ #" (J?SOCA/3" )0 ?" )0 )" 0 %l" L/ 6" ) +" ( A" ' >" ' $" %' " * K" , $9" * "1" 0 j" (B " )0 " (/ " ,* &" p/7" (  " (& " ( " ( $" '&" -"" -%0P" 0" ("71mK" '"." ("   " ("$ P" +"/2" 0"   " )-*1n.,0." )*T##" 4**" **E+ -" (* :" '*$N" +* $$&!" (B'_Y /5IG4")   8"-  2"'  " : !" B!" B #" J  " - " $" 3#" 7?/" 7>" /%" " 1E$"" : " :y5!" 9' " I: &" (" "" " "" 2"  !" =" "  " W" ." "0" "   " N^*%^+X/)" 22&" 72 " " : " :  '" Z))'!%J"? " &0'0)" *;%.%.%4")  /6"+ 7 "  4 " &"  "  " '4"  $" "  "  >"   " !H " !  " " "A'O:"  " ! " "" " '" *2,7 " * % >" 2 " : 762 #" J $V %" R &(    %" R[,7)%K '"  )"  -E"  -" \ G"  ?."  R9"  ("  (N"  "  `"  "3 J"? .)" B/ " G" " =4 " (NM" 6" W" /"" 4" ;" }2#" 0!<)" #" ;" 2D" &:-" `:"  !" %7" *" 1" =" .." i C" ?" xOR3" }, "  %" *B)" { " 1$" B,&(" ( D" -" =*" 'Q8" : P" $#" ((" #" 2 "" <*m"" v  " /e" $+h"]   " " )" : "  ?" " C" " 1" #;" "(" "" #" ?" "" &" " J)" ! I" " 0" " &" ")" "!" !"" !"o3" "" ""  B" #"" "*i Y -$$" $J}  w{#" #JM L" }$",Vn" "* " ":  ?%O'" $Z/)E 1 /-+"  -" (l" ! " ! ?" ! ," " .'" %Z 3O!  +" %b 3/?-5c+" #j1"& X$ 6" $ # " " L" # "`" $ -" # 2 " $ B" # @" # <" %Q" %7" $8 R"G $" $'W/" #";3 " #* ," %:+3uAg0 !" "B1 >2 : !" "B ) P"" "BW*D~FJ! 5{" # 8" # \" !$ C" !$ ^" $!M" #<" #<" %+" # " !#," #K !" #( " %*" #" #-/C" $*!" #$+/" $">d%" #R 'N * L," & "" % 5" {$ " # " #  " $ K" }$ " &`" % " $ %" %IR"G #" %  " $*" %(" & " %#1" $-1=" #9?" $ " %O" $E" $"5 " $"E" %";%i" $"<" %"%" $"0" %" QH" %"< " %* " %*-  !" %20" "26&2\ " %2 QG " ":6  & "" %:  -#" %J   %" %R " $ B" # .Z" % '" % 2<"1 $2    "  $/"$ z #+ .@,2" ! *"  " #" "" 0" !*?" !(" " " %!(" <"  " "B ." !"D" "*" *  " 2)+" jB8 $(4:26 >J N">"  0!"  .D"  I" }<  "  ""  "  6E"  ""   " t *"  "4"  )"  @"  !/"  @+"  ,@"  V?"  + " # + " B >"  `"  %"  '" ( Y"  7"  *<" O - "  "  =*"  0F" B `"  #5"  " >X.D" x" "  *&f" L"  \&"   " *" (*" 0 " "  #"  " 7" ? F " " &8" 6R>)"   " '" ,L"  /" BA" 0"  " 1" *" " '4G" 5 _?"  " y.V " (*"  2" nK6%" ? ?" ,"   "   "  " )$)" " B4  " 7QS:"" R !" ' !;" 5. " 13PU "  g"\  ,#:6)@40,_+F#8!#7-[U3  " "" " ." "" "" "ep" "% " "X"8B "  "!"  "*& 8" h"" " "  "6#" "M:& " "I?" " & "  " 9" * *5-"  *  " *  " *V";." *" *!" } " *%!#"  * " *] V4 " *@C=" *6 " *3" " *L1 " * 3 " */ + "  *( $" +*#*'"" *3"  *  D#0R" *),#"  *T+z; " 2 " 2 D &." 2) " 2-  "  2I.%!7 !/" 2' 3-39" 2 " 27S *<  " :\2 !" B$0C, "" J 0 " @  " ? " ?=4 " ?  " @,  " > N" ? <" @ *" @ " @ &" ? c" @ - " ?h 9 " ? P" @ @" ? 1N" ? " ? *" ? n " ? Z" @ '" ? " ?D+" @ >" ? " > ?h" @ )l" @D`" ?< " @  " ? eP" ?BF" @ 9 e" @" @;" @  " @." @, " @. " @  'f" >>." @* " ?  ' " ? +" @ 07 " ?4" ? " @5 " @J'7 1 " @ " ?"" ?" ? " @, " ?"7 9" ?" J  " ?"" @"%> " ?"  B" ?")&=" ?"n"  " ?"$" ? * -/ " ?2  " ? 21   " @ 2 ( # " ?2 8 " >2 *(!" ?B  . +" ?4j  -"" ?8r: " ?4 " @6 %"" ?6 ,1" @3 $'" ?3 " ?1 #%" @2 " >8 "" ?2 *)" ?2)," >2.*/." @0" ?5&" @0)( " @0%!.+" ?00.-2" ?1"!$" ?2"().1 " ?/" " @4" !( !" ?4B0- 21" @. " @, " @+ 6" ?) *" @." ?+ $" @* +" @, %5" @/" @-" .-&" @$ 4/" ?% " @$ +(" ?' 1." @" " ?' DH" @$ "$" ?& 15" ? (," @$ 46" @$41" @"TU" @#=: " ?% " ?$" ?'DF" @$  $#"A>A:" @ *  2"' @ ",* &<" ? .#" ?( " ? :3@/" @ N" > 7" > /" >N%" >$2,.%"!'%" >R " > 0" > r" > ) " ? 0" > >" > t" > N" > f" > ( " > ?" > E" > \" > \" >=T" >' " =b " > U " > ;/" >@ 6" >  -" >"" > Cp" >#`+" >  6D" > " >  " ? E" > ^ " >*&2" > " >+-K " > """ =" 1 V"" > ">" ?" 8/?" =*=&" > ** L" ?2)3# " >2 "!" >3 " >5 " =1 &&" >9 2" >4 8(" >5 !" >5 *" >5 " >2 0." ?6 " >5 %" >9 /" >4-" =0%!" ?3" >6" >9? " >88$" >2C@" >94"" >6 " >7 " >3"'%21" >5*" >) ;M" =)  " >- " >)" =." =+"" >," ?*"% " >)"" " > 04" >' 4/" >%21 $" ?"76" >"(," >!" ? " " >&*04A< " > " >!" 6 " 6 *," 6 *" 6 " 6Pq " 6/"# " 7" 74" 6#"" 6 " " 5 ,$" 6 9B" 6 -4" 6 $" 7 " 7 '" 6 #2" 6! -0" 6! $" 6 '" 7 " 6 " 6.,'"" 6~ " 6" 6"':" 6." 6" 6  H" 7" 62:G@" 6 " 6" 6cA^s" 6!.674" 6"!%  " 7" " 6*" " 6)*   " 6; -" 7<7" 6:0R" 79  " 69 )" 69 >" 79" 61 " 60$% " 61,, " 65" 78%o" 60  " 61 " 6- *K" 7/-3" 6% (3" 6& " 6% " 6&  " 6& 8"" 7&$#4" 6( " 6& " 6'*" 2G" 6 (M" 5 " 5 (" 52   " 6 +8 " 5  " 5 "# " 6  " 5 54 " 5 (* " 5 $# " 5" 5! " 5 "" " 5 " 5 " 5 " 5@( " 5I ) " 5 " 53* " 6! " 5  " 6 " 5 " 5  " 5 " 5 " 5g " 5" " 5"  " 5*  " 5N2    " 42 ' " 5"2 4"3JW " 6:;// " 5; D " 5;#  " 5:O  " 5;"  )*6 " 57 ) " 55 N " 50 V, " 55 * " 61 30 " 66  " 51(( " 58  " 51PS:( " 55" .  " 58"( " 54*"  ( " 59*2 $7 " 662I !_  " 59:    " 5/  " 5,4@&(# " 5/ " " 5( A)! " 6&B3  " 6 /4 " 6 -0 " 6 3@ " 5 # " 6:4+ " j  - "" r - "" r  / "$ z   "  J "  " "  C " :^ "   "   " ":'o-iH% " *3  ; "  &- "  " "  (  "   "   " W "  9  "  "  " Q "    " =1" "   "  "   " "< $ " ",J.! "  " 8 j " " S W _ " 20" , " :$  > "3  " -#   # " +J   Vd!% " .R + " .j&- "" .#rEpB2 "' -!T:D6 6 "+ /!(  ]GS? " . 09 " , 9X " - 'O " , %  " - 2 " , >V " - ": "/ .  "  "       > "3 - -SB "7 ."F.    =#G " - " ," " -  " ,   " -41VP " . *,BB " -(-> " -  " , N* " -  " ,^  " -  " , # " ." " -"  " ," ]"  " ."% " -"   " -*  " - "PS " -*Le ' " -"** -  " -o*  " +2 " ,#2! 3E " /2  " ,: $##! " -B     " ,\B!%   " /6 '' " ,1 (* " .7  " -4  " -8 ! " -4  " /5 $ " ,5 4 " -0 % " -2 " -42L% " .0,3  " -2 ( " ,3  & " -7/'-'# " -2  " -1 " .0   " ,9*L^FI#1M " .4*%( +7  " ,12 5  " -, 2md " ,+ m/ " ,/   " -." !(& " +-"(/45&# " -%J PBJ8 " -& O  " ,(  " -&)> " -'  "  E "  0 "  1 "  Tl "  M< "1      " " ') " ?w " %;  " *  " 2 & " :' ; *H& "  ! " !  "  J "  / "  6 "  $ " " 0 "  H "  3 "  a "   " q "  " D " !< " B  " "+  " !, " 2@ N] ]m " 2E = `:+ " jDB2(:4 ")   "  7  "  #M "  B "  = "  x "  6 "  2 "  ) "  !  "  -A "  8 "  " " & "  ) " 2  " 5 " 'm  " 'q "  /  "  " 8 " ? "  m" " ; " Q "   " #-! " G/4 "  8 "  "   " W" " &  " " A  " "I " *$ !A  " * O " 2D $7  " 2L9 #9 "    "  (  " :C+3BF24 "  H % " Rq  O "  r' "  K c " FVF " +( "    "  &0T " *0# " J  (. >%82 "' ;G  " !IB " !//  "  "  O " "0 . " *0D<B  " :  07 " !: $ " J $">$' " Z.%$  8*:+ " j   I7%& "  + "  ; "  5 "  G "  ' "  6 " ! "  = " ' " m  " S5 " " " " G- " "&fB0(  " 2>F JX/) " b UA !='M!A@B " 7G  " *1+ # " J # " J  '     , / "$ z     ++% "  % "  )3 "  =S "  ) 2 "'    "  6 "  K "  h% "  F " !U "  ; "  0 "   "  k  " %) " ) "  w"  " "   "  :$(HE1q)Y! " B  F! " B   &>V "  \, "  ( "  +` "   "  % "   "  6  "   " !  " <5 "  " ! "    " S; "    " L* " ,  "  !X  " "2E+Ma "  '  "  + "  h " m "    " " [ "  * # " J (@(  + "  j  3=9  / "$  z  "  (  "  1  " , " <^ " S " 39 " 2 " EE "   " R " I " " . " !Y #  " "&  " " " "  " *  +3  " * " 2  "  :=<#A;*g(Y " :    "  6 "  ,~ "  ( "  # " F "  + "  #J "? !.+ "    " !   " ! L " !6 4 " !" '  " !*  "  *( " !2  " !*  = " ! > " !  "  D! " !" + " " H " !  " ! " !! # "    " !  "  @+ " "'C " !!  " "*< "1  $ * 6     ) "   ) "  % " !R0,>  " ! O " ! L  " " / " ! . " ! %B "7 !  " " % " !4 " !5 " "   " !  " !  " ""= >  " "  "  " " " $   " !" ( " !"O " "" ) " !2, " @ ) " @  " @7 " @  < $ " @* " @ ' " @/ " @  " @ )  " @* ")R " @2   " @3 ,. " @1    " @2  " @, &% " @. " @.  " @!  " @#  " @  " @! " @!  " @& " @&*GI4- ' " @Z;" !5!# " (J)9BN' " &Z-($ / "$ &z "B2 "' %>&6 "+ (A   " ( # " ( % " & T  " ' = " & 4 " & o " & 8 "- '   = " ' / " &A  " &+ " &9 " &# " )BK " ( " (AK " & F! " ( 1) " &%%S " &#G   " & - " '   " '*  $  " ("" ( " )* ) uP  " &2    " '2    " ':50   " '2&.! " 'B'% ,# " 'J)  8 " !&")  " !&" # " *JN/m +-<6# " )J     % " )R*"6* *"0* " )b B6: @8;' " ) Y* " * ; " * >  " ) = " ) , " ( e& " ) = " ) V " )  " )"  " **  " )"  " */  " (2 " *) " *8 " )B  " )1' " ) 2 " (9 " (: " )  " !)o" " ) l  " *" " *" " ("B4 " )"  " )"  < " !(" ( " )"  ' " ** G!16 " *29)   " )2 " )2 *  " ):  ! " )B l7 o! " *B 1)A$ " %RN\  (' " &Z+ " &j4v#+ " (j7}- "" 'r3s 2 "' ( / "$ &z2 "' %  0p " ( \ " ' ] " & 'Y " ' !I " ' F " ( +e " ' C " (   " ' 3 " ( 6C " ' / " ' * " '  " ( C@ "5 ' " & " '7 " '9 " (% " '6 " '!C! " ' ] " !(U / " ( " '.4 " & 1 " &Y " &  " 'C " (a* " ' " (KG " (g " 'G/ " ' F " '`  " (  " ?&\ " '!1 " (#K " '  " '7 " ( BF " &" s6.h " '"1X> " '"  " &"  " &"   " '"    " '"  " ( >  " * 5 " ' -$ " ' !  " ) b " ' < " ( ? " ) N " ' 6 " ) ;  " ( M " ( %" " * 7 " ) F " ( $ " '$ (  " *$ - " +# - " +$ , " +" l " (  " + $  " (3 " +   " (. " + $  " *1  " + " ) " '& " 'l " ' !" + " *" ( (8" ( 1 " )$" '  " )<9" )" '" *% " '"<" * " '$(i" '%5 " *$! " *#:`" *$ S" (G" '4" (?" ' $" + " (T" *" ' " + =%:" * +" *" ) " ( $ " ( " )  " ( > 6" '" * "  " )" * &0#" ," ( " (%" * Z" );#" +#d" )" " (F " ) $" '%E " )yM" '$;" + " ( #" +*  " * " 2" + " 9" (" " *"  " + "> " ' "6L/ " *"4:" *"$"" )"X^ " ("5-#" *"0 ," '" 3!" *"*%" +"  " ("2 :*1" +" J3" +*" )* A/[ " )2<H -7" (*2' " '* >5>P" **@A5" '2 <#" *2H@" ( 2" + 2 V=" *2  " )2  " '2>  " + 2" ):A9z J!" +B(  " '< NC" +? U," '< (?" ';0! " *?A " ,;9>" (<$>" +=" )< !" (; 3*" &@ " );  " +>" /5" );*;6%=." '>*"".+" (3b *'A NM@W $*" )0 " ,1 A4" +/ ," *2  " )1 &" (4 <" *2 +" ,0 8" ): " */ 2(" )1 s" '9 "" )0 /" *2 #." *1 (" +0 /D" ': " )2 Q" (5 ," '5 " '40" '8" (07LSn" *0/D" '6" )2 " (6 " '9 &" " (6 )<" (6 " (7" *3 *-" (6 +2" ,0!" ,1  " '5) " )60#$ " +2 " )9 * " (9"% " ':"/Y0% " )9" ;" ,1"  " +3* " *2*B 5* " *2*&"" *62I]!,..V" (32 K" *7:!)1! #>4VV" +/:$" (0: , " ** '" +. @0" *, E" ++ A" )/ /" *) C3" *( X@" +) ):" ** AZ" +) "" )*&" )) 4G" +) " *)" ** " +(!," )* @U" ++CB" (/" **"3H}e>S" )."&KL$5T" *( 9". +& / fN" +& hl" '2)" ))&6#" +J.   +" *j     /"$ ,zP95B " , 36>"3 +E": |, 6  8 ~ R"G -" -  " +" " ," .* W-  " R-* 0 """ .:  #! !" .B3  !" +B    #" /J.y # Y %" -R 5/-3+%"8 >-"" +rs./"$ -z  )1  <4 " + %" + h" + !K" - !" - ?" + 1y" , +:" + %" + =" + O" , " + - " + &" , R#" - (" , %" + $" + * " , N" , ` " , 8" - E" + 6" , '8"- -   ? " ," + "" *" ,6$->" *" +N" -C " -,e\2" ,](?" ,9" -6" -$" *&F" -09" *D" .)I" ,a" -,b" +" + FN(" , 0%," , +2 " - ( ">" . ;5}" +> " -)" * 4x" , " - LD" ,  !" - " . " /4 C" -" """ +" " -"/mR# 0p" +";;" -"'" +"I Q&.(" ,"-g" /" 9" ." ,D" .*" -*|'4P&F" ,*$- 6 " **Vl" +*5# " ,*  " ,*O1+" +*2 " : -!" 9 4" 9 P$" ; -" 7 " : :u" : 1-" 8 m" 9 '" ; $" 8 '2" : " 9 F2" : ," 8 6"" 7 /0" 9 +" 9 A" ; #" 9 *" ; 2" : 2" 7 ," 9 `" ; ," : ." : -" ; S3" 9 *" 8:E" 8  " 8.(" 9" ;c " :(. " 7 " ;#" :f$ " ; " 7  '" 8  " 9+$" 8 " 89" 9 " 9$M" 7~!" 8  " 7*) " 7#D$" < U" 7 " 7 #" 7 " 8 " 8 $" ; $" :* " :(" 9$M" ;" 9('>" ;*T"I ;  E #" 7 " ;" 8 1&" 9" ;  " 9> -P" : " 9  " 84" 7%5" : " 8 "   " 8 " 9/"(" 91'" :/ " :$" ;  " 7  " :_" 8'" :h % " 7-4 " 8d!%" :F*2" 7" 7 " ;  " : 8" 8P " 97# " 8"+H,G" 9 "[" 7"" ;"" ;"# )" ;",83" 7"  " 94"  " :" " :"" ;"" ;" -" 9",+b+" :"% !" ;Y"  " ; "  " :"8 " 8"" 7* $(%(" ;Q*" :* ' " 7 *  " 8*  " : *gA 3" 7~2" 82/%+'" ;:  " ;:  $ " ;:/ " :+:% 5!" :B  #!" 8B7=)8,2!" 9B $N2/.#" 7J"',', !" 7B"&%" 71 $" 86 %" :4 !" :3 !" 8: %+" :4 $" :5 " ;9$"" ;3" " ;5>" 72 " 92  " 74 " 88U(" ;:(-" ;1 9" :5)" 81! " 7/ ," ;4  " :7" 77 P'" 96#" :/-+T" :5  " 98  " ;6$" 95" 82 !" :3"  " 7:* ",e " 81*,$(" :9* " 87:  9 " 88: #  %" :+R    " :/ ]" 9* ?-" ;) " 7, # " ;* 9?" 7/ " ;* # " 8)2" ;)31" ;(* " :+" 9-3" ;* " 8. #" ;* " ;," :+" 8/$/" :)"  " 8-"'.%(" 7,"(2  " :)*   " 8)* O5I3A+" 8)2 !  #" 9&J"!#" 9%J  !!%" 9(R? 1/ 3  " 8% zD" 7$ #<" :#  " 7$ !" 7$ '<" 9'%" 7#8"" :#  " 8%" " 9%"  " 7'*8K7-&;" 8 " 8 !," 8 "" 8 +<" 7 (" 8 SZ" 8 [9" 7  " :;"c" 9" 8 " 89" 8L*5T" 8 " 8 i" 77 " 7$%" .R  Z" / 0" . _*" / 4" . ," / ." . 4" / -" .+X"M .b"W ." 0" +5{" .2;!J " /2%  ! =" .:J76 " / =)" /b " / &" 0 K" / -" / !" / D " /XD" 05"" 0" / /a" / 4" / " / !M" . 8" . H" . -" / " . D " / !" / I" . /" / J" w/ f%" .(" . 8" ." /  " . " /!C" .T" - CX" .  " w/" . ^)." .> " . " .)" . &"" /=" /-" .2("C# %" 1R'" 0Z- " 2(" 1" 1>" 2:1A " 0: !" 0B8" 1 'Y" 1 8" 1 "" 1'U " 170" 1 " 2n1 " +1 F " 1 " 0@" 1  N" 0"B" :1" " 0"&17" 0" ( *^J" 1* 7)" 1b )mU$3  " 1 "J" 1 + " 2 5" 1 5" 0 @" 1 "" 0 M" 1 ;*" 1 A" 1@ " 1-" 1K" 1" 1%" 0, " 14" 0K#" 0 " 0.B" 0> " 1 9m " 0." 1" " /"J" 1" A " 1* i " 0* = U" 0*.  " 12/ #" % %)" #bL  8 2"' #  " # 4" $ A " ! $" % I#" % FD" # 5" " $" $ " $ +" # " $ +" & Q" ! F " " $" " _" & }" " F" !! <" $ F" "! *" " H" $ (" # < " " /" # &" " L" % (" " ">" $ @" $ i" $ \" $ H" # d+" " U" " >" " [" " S" # )" $ C" # O" & O" # *" # (" & !" "% "" $% 5[" $% K," "% ," #$ <" &# ( " &$ *" $' /" "& 4" # 3" # :" " (" " N" $ (" " -" % 2" "/X" #+" " " #4" !!6" " " !' " # '" &a " " " &O" &B" $" # " " &;" #A," %" " 9" " " % " $ 5" #  "" """ $" %6" $1" #A ;" "T" "  88" " $P" #)" " " " " " 0" "D'" #3" # 6" % JO!" %(" "$*" "$R" #"#/" %$1 " $& #" &%B" ##+" "% " $!&" !$;" #"' " $! " &#," $&$" " #&" # #" #M# " "  " &." #P" "" "J " #^," & " #" $" &#/" #  " $ (" &3<" % $%)" %I;" $ " % E" " Q" "- " # u" # .$" " $JX" 'I^UGdY" "2B" # ,D " #@1 " $$, .!" $"L "" $$!# " $%  %" &#,J" &$" #&%7" !," !@j" $ ,!" #  ." $ G>" %"2^" %"*t" #"  " %"/" &"" %""" &"G " &"  " $" -&" #"   " "" " ' "#$" " "  " %$" D'" %%"0" &%"#*" " "  &" &"+ " !* L" $* &=< " #*-  " %*" %* &#" &*c;)E1 A" #*H O " &** R" # * " %*"  " #$**$  " ##*7" "*C! " '2  " "2  " "2(:&" '2'   " &2t"4" $ 2"=O" &$2hB-[" #:6< " ':  L   " " :( 8&,D!" #!B    !#!" %B@ v(  " %0 $ " /" , ." #( &" %."k4" .S<" !- " "/<$ " ,*( " %)* +b1p )\"" #,B*c # " #' c" "( " #( *" "'" $' " $'" !(%%" "'1B" "'" (" %'63b_!" #'"$ #" &$J  .(  &2"' "  " ' #" " #" $ 3j" & = " &# F-"" 1r8 . L.A !" 2 X" 2"" 2"   " 4"P" 5"$ " 2" " 52  " 5:  " 32" ! " 3:&  !" 5B4 $" 4J=5i 2"' 3  " 2 ." 3 08"- 5. & '/ (" 6)" 3 " 4 ;" 3 Q" 4" 3 " 4#OA" 5"   " 3  " 3 " 3" #1'" 3*; #" 22#  /" 5:R) 6"+ 7Q1  $i M G " 4 <" 4 )" 3 1." 5 C" $4 )" 2 D" 3 7" 5 R" 3 !" 2 3 " 3 & " 2 9" 7 E" 4 M" 3 %" 6 #<" $7 8 " 4 9" 3 =" 2 "" 7 I" $6 >&" !7 $e" 3 "" 2 B" 1 <" $4 %" 5 &3" 6 '" 1" 2D" 3" 2H."" 3,J" 2 +" 5 7" 5," 1DX " 2" 5!" 3% " 4%" 3C" 2:" 3 # " 5 " "5  " 31" $6" $" 6 NX" 2Y'" 3&#" 5 (-" 6-#B" 2. " 28&H " 2" 2^' ]" 3*X>" 1!*" "4 !" 6! c'" "5 " 2$" 2: S" &4" " 4") " 2* #( " 2*:$ 6" 22 T , " '22ED9B-C " 42)1" 42 D-/" 4:N- @;" 1:%@ \!" 3B82D29,I!" $3B4   "" 5B( b2a,G.?,? " =," =* ! # " <2 0#" >J4 ,.- 1 &"  M" > O" = 4" < 0" < 0" < 5" = !#" = ?" < ;" = =" = N" ; I" = k" = " " = 8" ; 0" < ." < 2" < + " = ;" < 3" < " < 7" =  " = 1" = E" = &" ; " = $" < Q" =-?#" <%J3" < ;`8" < =l" =FN" <" < " =D  " <#J" = b " <%N2" < " = :" =" =# " >J/ " ="?%" < " =, " < %" <^,(" < " =  )" = " <> ." < " <#" < )" = " <2" =  " < " < " = C! " <?*a" < I)" <& " <*" <" <="  " =  " =  5/" ;4'T" =" <" !" >"  " < "? " =" - " ;\"" <".5 (O" <" '@D" ;"%L&" ;"4"  3!" =* >sA" =**  ." =* ' " <*( &B " =* " =Q*" <* " =* " =* C!" <2  " =2 (" < 2 " = : K 2 0 " >:*?;N" =:*  " * &" <: 9,$ " <1 )P" :2 1" <0 !" =2 " <2 5#" +& " <*" <+" ;) " <." " =."" >.2!" =,B)" <(b 85" =' 04" ;$ 2)" :% " =& *(" :& $" <% " " ;$ #"" ;& " :$ **" =& " ;# ,%" >( "" <% "" ;$ TI" :' R<" = 4/" :( /)" <& " >#  " ;! " >% " <# " " ;(" =''" ;%" =# " > " <&-169" <#/(" >(  " =$(% $" > " = 64" ;'EM" =! #" =&<9" =%#" ;#=?D7" #!" <(, " >& " = J" = *"  " ;%41 " ;*/" ;/A" :$()?A" =&$!/"$ 6z  :+ #      " 8"   " 8 1 " 7" " 7"  )" 9b6 )" 7bE/"$ 6z&'5" 8 D" : " 6 $P8"- 8 @"5 9" 6 $" 8"A<f"[ 7" 7"X%" 62 $ B7" :2D  " 82" 6: $#" 7J #" 8J #" 8J(6 D:(" 6ZC$cFP 1ME'" 6Z*  '" 8Z  ( +" 5j0( 4   " 6 [" 5 '" 9 $" 8 "" 9 9F" 8 V" 8 # " 7 " 7 2v" "9 N*" !8 "[" 8 C" "9 X" 6 2&" $: " $9 K;" #: Ha" #: 2&" 86 $" 7-\ " %7 " $7" 6!\" ": 6W" 79" :/ K" 9 E" 7)" 8 " 8G" 82/" &:" 8  " %: " 8): " 9 " 8 " 9*  " &4  " !:" " 7" #8 ' " 8) " 8",'" 6"0^$ P" #8"( />3P" 7"_ 7 " $8":M" $7"? )" #5" " 9" ?@" :"5" 5" " 8" ." 8" " 6*(9* " 6*--; " 7* " 6*9(+" %9*& " 5*  " 9*&M.i=" 82  " %92 !" 72 V" 82S " 625_!  4" $6: +3" 2 %" 1R?T $I9e0G vV )" /"b !!  %+" / j -"" 0r " . RZ" / $" . " / 3&" 0% S" 0 "$" /NP" /!" /=: " /" 0:/" /   " 0"+" 0#/" /(" 0)2$" / " 1" " / }" /)"/*1*" /b"W 1    +('(1"1BW" 0" " /"(4" 0B*5 *4" 0$*  % " 0z*+" /2A #I  (" -:H%Z1P^Th" 00 #" /6&#" /46+" 07"" /2 " 05  " 04")8+ " 07")$" 04" " /4" ! Z5" .22   " 0. " .-" --#" -%JJP ) " /' y" .& D" /& ." .'Y" /%$ " -&J " /&8" /&>(" /& 9" /&80=" 0&"1%  -" .&:L F:7 " /" +L" 0$  " 0! +!" 0!" 0"" /@ %" @" /? " ;? " #@ 6" @@ " ?@ " $?+-" ?@* " ?@ A " =?" @60D<" @ Qb" @ /" >lh*&" ;@E( " ??*>" ?? " ;@"" " ?@"> " @@10  7" @"  " @"  " @?  0 !$" %?"   Z"O A","" @*+" @*V4" #@2kK" @:97K " ;*  " ;2" =; +" 7< !" :; #%" !; " .; " 9;)/" ; "" $;" ;, " <;'*" <: " #:*$" &;.+,." 8; " >:6U'#" ; P" ; 2" ;" %;" # " :"t&4 " ;"K " <:"0 " %;"+" <*7 ;" 7;*& " = " <(" 9=" <3J6" :< " <N " :<%" !" ;<" 8=2 " <2P"/"$ ?<* (&" <* * '" ;;*:8$" =<2 !" 5 # " >W" =2 " ?: QMKE=;#" >J    %" =R   )" @?b '#? " ;? /" -= " <=A" /> " %? " >= " .=" >R" <= )1 " =>" .= " ?" >%13" ?",Q " >" c" ="  " $>" 1 " :>"" >" i" 8=" " ="Z  " ?* DG" =*3*" =>* " @> & " G?-" >>2 " @> ;!" =B   !" ?B L= F+$" A " A" @ " '" ;Z#" =J,I8c2O .9 5 )" jB2"' >4") >4") >" @ (5" @ J" = 6" ? r" ? 2" > 2<" @ D " > 1" > 7!" ? %" @ # " < *" ? 1" @ C" = " @ " > /H" 2= 4 " ? " = ," < W<"1 <">"3 =%" AR  @"5 ?]A B`+" AbD"9 >F"; >" ;3" ?NH)." @1+" =''" ;" > Q" >16" ; " >(&" Q? +4" < D" ;>Z(" @4?" > $" > " ;! " @g" ; P" =&" @ " : '" :Z" :$" :" : "  B#"  J  4.& #"  % "  ("  1"   "  +7>"3  "  &" ! "  "  /"  6 "  $!9"  " 5"   7 " !" 'ST1 "  " j#^"  " " !*%!"  :1 6"+  E.) "  Z;"  " "  E5"  %"  S4"  A(" #" "  (" + #"  %]"  ="  J"  "  1O"   "   " 3 L-*" F "  /1"  P"  eB"   P86#" (R"  1 " "W423$" "/NN:"" " &" } : 4 8N" &" '" '" '*" ( " )" '  " (]8K +" '/" '" " *  " (1" " ("  " +"%" '" %'" '" %" ** ;5/R " ):  #" *J" & $" $R" &  " %+" # " $ ?" %(" # " % !" #  " %/ " #_" %"  " "" " #C"2.C}"r $u" "/2# 0" &* " $* " %2" %2  " #C:   -"" r "  g"  !" ",J/"'M,"  ."  ." "8#,]" :  ! " 2  "  J "  <"  "  -"  ""  ("  g" :" !N"  @'" | @" "mV0" ""6#" J.:%" R)" b ' "  ."  #"  +y"  0!"  F"  <"  $ "  R" " "  )" "$" =" %" <" +  " )$ "   " 5" : " "#9" "S1" "9 '" "/K" 2 " 2. - " *8!E'O?}" * ?/" 2  " 2Y + "  ."  & "  (#" J " *" "  "  " 2 " "  " :   "  ,"  4J"  #@"  7;"  ;"  7&"  .D"  k1" \?" Q:" *" }(" 7QX;"  %"  2"  U" &>"3   "   "  "  "  "% "  *#"  J  9#M)"  b2"'    "  "  +^"  $"  *" ! #$"  2"  *i8"-  "    " ! " F"  " !"  .6"     "   $"  *"  " !   "  " 0%"  *," *";  "  * !7"  2  &"  2 !"  BSM(  6n)"  b: " *$B -8"  a" #"  J"  ","  )" j $"  Q" X"  # "  "D"  2"  )"  ." ?," %9"  @+"  ="  Z=" %"  %)="    " }" C .="  1I"   " 'I4"  ,&"  {0"   " #1G" @ 0 #" - %"   )"  !" " " Q + "  $" ,_D" " C" = ";P<" "  " "09)  " :>;V0 t'" Z&2<("-  # " , +#"  3" @9"  '"  N." Q_+'" Vt" *33I" 20 ?" ! 6"  )"  %"  4 "  "  "  ,"  A"  %:"/ B   " E0"  " 1" !%" 4 H"  " -" !$" /" 3" 6" " %"  9" T " b " " @" p " " "H O'" "" !2 B .@U" 2$ #" JJ t# M} %" R& "  H"  $"  5i"  9"  4"  /"  #"  0 " # " d " S )Y" Tr" @(" `" /a" ) " V#" O " |" ,8"  / " l&v4(" ." )7}" @" f_g" ,"  " /" ig"  2"    " O'" ko" #> " 7,_L" b%* :"  5$ " "6#13" "Y." *I" *$" * 64I" * " *;" 2+; /" 2'7 " 2\m}" :Rb :-"" r  "  [" /" "   !" B )""  ^ "  R" ' " " ^4 " :`@ \ 8"  #"  \"  ""  c"  ="  N"  J"  3"  " ^0 Q" I !" J" '" "   " "<" * V-9" * " }2>,K?35w)" bu,"! j&"  +%" R7     )" b!   /"$ z "  R"G "  "    " *#" :     " : -4  #" J+  8*#" J * #" J5 ,*"  &"  ]"  T"  l" r!"  p" T " %)" bO0G,A7')+ul"  9"  %"  H"  \"  I"  y."  7"  $ "  '"  1"  >"  ="  )" c$'" 1" I" -" !C" 8" `$ c"  " "/. " 83 " -"  !" " " =" E 7"  " "-" "|" "8  *" " /" " ; " " >" *[IMA+!k% " 23  +" 2<" 24= " 2;" :,,/"$ z46"+ ! "  O"  "  D"  Hp" " <"  ) "   " "9"  6"  R'"  ("  n"  !"  Q"  $j"  ."  R"  ) " ! f"  Q "  5"  *"  -"" W"  " 0*" - " F" WU" !2" O" H" !" 3!"   " "" " " "V" 2) )$" 2 C<#"\" !2!" B$%" R, !+ (" Z>   -"" r"0 ( 6"+   $"  U"  . "  C"  -!"  +""  3"  f"  '" " b"" :" e9"  !" %" ,"  ;" 0"  F"  " & "  : : "  6" E " 5 !0" " $ 6" )Q1" ," '@0" " :" ")1$:" " *" K*"" * '" *2 " f*>_A," 2Cd"" " 27K " : 5 " z:"0Bo!" B8B "  (^"  #>"  V" 1  " / 1-" "! ,"  O"  R"  "" ! 2"  $"  -"  * "  M" ! 6" "5 " " ! 3" ^2" !>" ' " ! =" 5-" "(0" "G Y "  H"  R "  '"  \"  "  2 "  V"  '"  &"  P"  +"  0" d8" ) " 1Z:" w$ " &" K +F"  $" @" 0"" @c" (6"  4"" "1<" " " " ) E" *,  "" "qG4[ 3+" "=D" "_448D" " $" *kY% x" *A7 " 2 6," l24 !" B1 )" b)+ 12"'  ! ; "  6" 1 5" 7 +1"& !W*>"  0" P" O" !* 3  " !/* G " k" . E)" o L" M (" 2* =" o ;1" 7 "  " )+" 3)" 6N8" :*3b" 8 A5" "; " ]E '" A-"  " Z  " xc #" u" ,$ " E"" To " " "A'" gw " /" "2 -" '" " "; " 8* " L*  " w" "" a: Z,.1" ): " =:  I"> I" 2 " 0" 1=" 0# " 1# !" 1$ '," 1# %," 1# 4." 1$ 3)" 1% <"1 0" 1 " 1" 0" 1&" 1n." 1#" 0"^V7D" 1 " 0.!" 2" 128'" 1'" 0:&" 0* " 1-!" 2 " 0" 1$ " 1K"#" 1"(" 1A"0 " 2*" 02@k -L" 0 :./,'0+.'<-6+6'" 16 -" 0/ N" 0: " 04 " 14 '" 17 " 00" 07 " 00l/" 12$ $ " 20"" 05* ," 172  (" 1/ M" 1) ." 1/ " 1+ 5q" 1)  " 1+ 904" 2,-'" 1)*  $" 1& <" 2& 9" 1']" " 2(%5" 1'"" 0" !" 1"  " 1 " 2" =9" 0 " 1%) " 2#{7F" 4 " 4:  9!" 4B  " 5 )" 4 " 4 "" 4 ?W" 4 4?" 4# 22" 4! +7" 4 *:" 402" 5 " 4FE" 4" 4 " 5**" 4$#2=9" 4  " 5 " 4!" % " 4*9 /3 " 3 :!+L5:) " 4< ( " 5: # " 4< < " 4; * " 4;  " 4;( " 4<#  " 5; " 4<) " 59b 1 " 45 ' " 51= " 52'% " 442 " 41* " 51 " 5:-4  " 48   " 497 " 5: " 40! " 47  " 52  " 50   " 4:" ! " 5/" .m " 5:"! ' " 4:* " 56*% 5! " 46B     " 5- -% " 5- $ " 4+i " 4* 4  " 4-4?  " 5,:1 S## " 5']=P "E 4(  Q1'L2H0  " 4 , " 4 + " 4!/) " 3"  " 2"   " 3  " 3$ nb " 2" 8 " 3& . " 3! + " 3 $ " 3" " 35; " 3Jf " 4$In " 2)Y " 4"9C ! " 2BJF " 4< [ " 4;& " 2@ " 3>  " 37 ' " 27 ( " 40 S  " 37 0 " 28   " 30 1 " 27 9 " 37' " 23Y " 35 " 31' " 44#  " 37   " 31&" " 406  " 39- " 40 " 20Y  " 39! " 26N7 " 38 " 2/  " 2:  " 21">, " 39" " 22*  & " 3/*# " 3)J " 2)   " 4, R " 3* &BB "7 3)     " 2-b  " 3. " 2) " " 2*=& " 3) " 3- " 3,K " 3,"? " 3-" k ? " 2+*0d " 3+2  " 3( & " 2(   " 3(2 & " 2"  " 2 # " 3 ID=> " 22'@5 "   " "Z- "  " A3oe, "   ; A "6 !1E$%j``+  \T "  = " 9"(#  " }$z " "E0F/ " T1\ N ' " R<3u&FzV C " "2 " ".*!EH^D` " -+XX " - class" fence" hedge( x building" 5=" ;=" &=*  " 5=" )= " %=* " ,9*" .=  " =2 " = " ;= " =   " = " -72 '" 132 " 25*&#" (3:  " 2="  " 51*" ~/2 ,)" "-* " <12  " 89:0" =J   " 1* " !+*('" 5+*  " +=B-  " =")" =:$ # " 6;*6 + " ^%*!" 6/:   "" 6=" #" 01*$" '*  %" 4!*&" =" !'" :=/ !(" 22 )" &:*" '*"+" )Z  .  ," #*  -" /+*    1."+ =   #    /" $*   0" #*&1" j "&! $2" =b !  %)3" 7B!$" 4" * -5"' =   #*6"$ .3zD ##(   7" .=R !  8" -: &9" 0=j #  '  :" <J O;"I 3 rb  ))     5<" -!J &(=" J>" 1B-$?" +*%& @" ,R0A" 5 23 4B" +2 &C" -=j) %D" *  (E"" .=r&%  F" 8 2%$ &G" :  H" =="(>#I"  *&%J" 5*+*(K"" 0 r  "L" :=Z4    %?M"9 =  ! !    N" %**+O" 2*+$*!P" 0*"Q" 1Z1 2 #&R" +;j.  *%)S" :& & T" 2<(9U" 2"%"V" Z    W" B    X" R-,4QCY"= = "     #  /"#&Z" j!   %[" 2*/&2%\" B' 7]"1 6' (*     3# 3^"- 5 " *#_" *- .$`" 9-b  "  /$a" b"#*b"$ 1z, 1c" 2( %1d"+ <'$8 /Ce"= 8#8   $-  3f" 4*)*g" :8 /5h"/ =B  '  -i" +J   !j" <J( -k"' + 0(7 +Ol"I D/ $           m" 2 "n" Z& %'o" 9*$p" 6b #q" 5* ""# r" J s" ,&2t" .B. &- "u" Z" (  v" 92 (w"" r4 /  -x"' .$% (y"" r     z" R*J K  "{" 5(Z8  9|"3 8 !    '  U}"O =0(   %$   "!~" =,*.-" 4*  )"" 7r .8R   !3M" 82 "  %w"p =(      ,! $!)" 2 )L8!,G7#" (Z*1   " 6*&'" >*" +$J1" 62(%" "J$ !" 2*@"9 :*  %#" Z 2" :*   T"M )" ,' - 1" D*)*" F*" H*)*" ,J2" 4J* / 0" 5H2 ! $&" `Bj  - ,0 '" <.j#$ !" .: & #%" *b $ # %" ,*" & %" 4DJ ' $ '" ?4j', " *   " ,V2 D-" >Z*" ,L*2"+ X9 !"&1#t"m 2  %+"&    2D*#       " 2Z:  $" :*J$ 0  7L"E .0!     0") 5Z " ++"$ Zz       v"o ; $     #2=    '" fj  " 0D*"&%" " #(        $    $ 9#  $,')  ) 3#" 8.Z& " ' !" 4^:DR"K 16"         " :d*   " h*)"" -lr(+2 5%" 2bb-   0" 5p* 0") b" (   #" 7VZ .   $3" :h*   " r*)$*#" 'h*   D"= h@ x    1 " 0p*  " 86J" H  !%" tb  *" hB   #*8"1 *f       %" 9>b $ D " jB " v*" 0z*  " V2 @"  /%@"9 >4 #. -\7 8 9 " d2  !" Nr: %!'" 0vj+ -6..K " 6J&7* ! "*   )>+   * &?  * '810'/9" |*" x*'$ *# " 9l*6"/ =X  . -" B " -B # . " ~2 *"# 4r> $ 97@"9 b(5 &  !.     " p2 4"- ~" *   " -J& #'" ~j:  -" =p"" =:n"g z             " *" *  " *!" 5NR>N ?" 4*  6"/ p  "#    " %B!" !" ;*-&.#$" +Z $K2"+ #    " B  " v 3*    +   )d  ! .   &*&     / " /*$*%#" -*  " 1* -&,)<"5 L H+  >& 7 Y" 2 " J$"" 9*14$" 9Z$    " J (="6 ;) !$  $5  " * !" 9PR.B $+%'9$" Z  '" 2 ="6 ?   4 '+G" 6*  " 42" *" *  " 2: D"= 2t, %! (2   2 + " 9: ("! 4j4   !#" :xZ   ##v"o :f   * & / : 7   )  " J'8 ( " :%!(" /*  " &: :"+ " ?* $#" 0:'8" *+$,!" :   " %J$    ! " :*1"*  : " *&%" 8*" 8*   H"A Z$$  *4)##  )("! j* " 0B@ F %" 9*41" +2& .% /"" R   " .!  c  ,,  #2   &2  % % ! &   (!    !6#7 " 1*-,,+" *  " *"" :  3", ) J"   #" 2:!  " :   $"" -B1 ,#("! 9j  " $:  &%#" *  5". % , " B"" '*)*  " 1J'&& !5".       #!" *" 52" 9*"" 2 " 7*" *!$ #" *# $ " 82  E"> 7   .   &%#   "} f$ ,'    2 ! $        #'() ;"4 /'  "3  " B "("! .j$ @3 ("! ;j &! "" 9R4&GI"B  $C 0, 2 2  3  " :*&2%/" ': $  " J0 * " :B&1%" 12 " ;*(:)9$" Z#4"    " #:4  " =*/F8 ! " 2)X<  Y=" 8: " B (% " *.) "" #R$   " ,2  " *36&" 9b  " J+   #"" 6R(/("! j Z8 5" .B+:8# "   ." UZ0 8 ;7 "%"  "  Ah'<_A +!      " 5J,?+" 1*$#&" <b R ;  " 0:  ("! 1j %" 1*7"0 ' "  4   15". :Q "    " 2 , ) " /J2 %" .*4"1C"< '& $-  )#" :  I"B %      2$   *"# :r@&? $" 8Z((#  &" b ("! 4j(,1" 8*   " =*   ("! 5j<:!-" 4*" :AJ0; " &2$" 6BYj  " J6%"Y@$" Z)"(*"# r"   %" 2( "-  ! " #J *  ;"4 8"     +" :*0#/" 9*&:%;"" 9R" (!" 6*" =*<  9 " ':& !" B &.%" ?*" +" "* &%" *  ]"V 7 !*'   C 6  " $**+" :  N"G 6%&+"!   )0,"% z-  ,! $" =Z  ,) C" :  &" :  0 I"B b+*   0$ H"*% &G![)W#;I!" *F- C. ,"% z.!   " J1<2   " =*,+ " 5J$$ E"> 3  ,:4,.+! 3 -" 5: .3e"^ -  ") 0 ,        0 #-3", H"   ! $" &Z  *"# 'r   " #J $  '$" Z  "'!5" *  " ,:"&" :b(   & 7 " J!  $" :Z  " " #:(    " *-. /"( ((  5"!" *   " :( -" : % "x 6O ' % '.  *  " , !"" (R "!  #("! j"  )-** +    %$     1 !m"f .  $   *  #.<+     #'+ *"# 2r 5.!o"h $2     % #2'  * %&+"" &R   %" *"$" Z, (  )-" *%$$$" <Z* !" 4*  " :0!"%" *&,# +" *  " 0* " 5B ! " -JJ!"J?  !" 02  " J$" 0*1"* ..   G-#" *   /"( 1 8$$ -" *"#("! 7j    5" :2#,3$ E">    "+     " *G"@ 0     &,(#!  " 5*67" #*( ) &" b," *  ["T ,  $ >  #  " :B '" *  ,"% 9z4D '   " * " J* p0o-' ("! ;j* .  ' 37"0  &(   " *&#" ;2   " J <"7"" R $  s"l ;  (    8   &R)(#,%+      !" `:(%" +%" *" <*  " 52 6 5" *"        !'        # 7 J("   >%    % :    (  #     "     *%    !!     "%  0       !%(3# $    !  !     " =*$ 4# 3" #B  "+ #I"B 9&"  %E"> =%  *"# (r $ =" *#","% z   " 0*  " -2 . +"" =R@  " "*$ !!" =" *"" "R  $ /  " 7J*)" * 7"0 4&   -$(  " )#" *-." >* " 2  ,"% :z$:  &# 9 " : " >*  " :  *"# "r& .$ 9 " :   " 6JC& . '="6     "4  " !*('" $ J3    $       "" R  " !*" (* C"<   *   9" /2   $" <Z .!  " 6*  $" Z  "9* ;" 6*  " 0* " 5: "$%7"0        %&" 'b$&   7"0 /&   ' . ) " /J  & " :#& " J+d** /  " 0J$8 3/"" R :? -&" <b0  !%" =  &  $ !" #(    ("! (j $ %   # 3 " :%"+>#/"( 9   - " : N"G ! "2!  !  - " *" /:  ( ,1 7"0 - ( R   $ '& ' & -" 42* ) #("! j ( $! #" * " *' ( " J651"*  B-" #$" Z"% $1" 0*  $" -Z  " $" 9Z ,  #  " J, &-  " !*m"f % $ ".+-*  " 6*" RB  $ " * " (*  ! " 2*  "" =R( #5("! j" " &*&&#%" 02 5". ;* #. %7,"% z'(!I"B    .       " J  "" R 2 ("! j  5" :  (  " J 0! A0 $" %Z,   # " ;2   " -*  " :2" :" &* "& ##" <2  % K"D 1)&" &    (+ % " J%   " *  " <*" * $" Z " 0# " (*    " J  I"B ,'  %0%(%   E">    #" &) %$" Z      &" b"  a"Z 9 &  ,  *  ,1 " /* A": "     #     !)"" 7R" "# " >*  " *  ,"% :z" B'! 8" -*  " *J3(I2%U"N  * " /*.+" ;2" @*A P7" *21" :" &* ("! 9jB . 1$% " ;:"!;"4 6 8 7 ",! 7 %" : " 2  " ="$" Z     Q"J !  " <% ) 03 )" 1*!"#" Z #>8  !!" **'" *  " 72l(Q'"" :R4 I3", L 2;  !-  " *  " *&'" 0*   " *&" :b (# %" * 9"2 # $ ('   .   )1*"# r' k)" @B  U ="6   ,&     !" R" " nB  " ;:, % " J$ )" ,*$#" :*  " *" *,)" <2 23" *  $" <Z ,  5" 6:&*);" *( '" ;B   " *  " >    !  MM   1 2    *"6K9 >""!  &      .'   (#  8 %     4,         " 4,      $& -  !1&$* 9 \  %     " -*  ,"% z&6(.+=5" 1*M"F      ($''%9" 9BL [*"# rW"P %  "&     41 /   " ::$- +k"d            "" R< $ '" *     " J" *="6 "$ (() ) !c" *" *  ="6  2/($)*  !e"^ <   +( ( -$2  ! =" B   $" 7Z ) #" 5Z $   &" b3,+" *]"V / @ +'  %<  7( ) " !2& %" >:0 K+("! &j$"" <*  " #:(!" 5*$#" 0:86) //"( &*) Bb ! % E"> 7 (  3 " $" "&,("4,3    4' !%,      ,"% 5z2.?- " :  " *  Q"J 0 L  &%K" 12" " J1*2  7"0     % "  %" 5*, + " >*    " 2<) .;* 1"*  (:  & 3 7"0      &%   #" :/   G"@  !    !   " 2  " *  +"$ z!   +!" /2 " =*  "" R   " *" *1"* ??  " !    ! " %*&"#9"2 9,  " 2&# " :-  &" *  " 4* " *   " @"" 7* &#" 5*6 5" ;*:5" :,"% z$ , # 1$" Z  " 2!< 1 " 6*,-" *&&8#'9$" ;Z341&" b    " 72 $  %" 1*" <2&" (*63$" Z    ("! "j& +* V#   ' 3", $  $ %  " <*";"4 =#  ) " B0 # '" <:;."" R   &?.% " J   " :J 4  -" -*   " 1*('" ':( "! " 8:> 8+"  D& %  $ $  3 *% ,(3/  & # )B- %" 0*G"@ ) ;#  &() " &*&*%)" :  "+ " =*7"0    ( " 5*0 1 %" b  #/3"" 7R"   ) " 0* " #J$  $! #*"# r6>  )3("! j(  $! " @*'4" =2,)" 9*   " J,   /" *   _"X %8  '&   *  %%&" b  $" Z,! .> )7 " :(#" :"" *&" 5b  ,+    " :*(' " ;2#"$ " *"! " ,J   " :4# '%9" +  &-  6 , B.('   ,  ( ' ) ,  " 6*BA" (B&%" 0* " *8# 5$ " ":& +C" B,"  " 6*" ,! -5".  " 8*D   '("! j( & "'!*"# 'r+&*+" +:$ " 5*" ): +/"( 9Z B3 % %" *     " ?J#*   " %J 9/" @2" 7*  " ,*" *&$' #" (*!6$5$" Z   1"* '  " *0"/ ! " J  " $" *   " 6J  &'  " :$#)q"j & +/" 4   -&  .    $   + ' $" 0Z " *$!3", J &     -5" :  "" :R L01% " 1285" <Ba. $ !   &!    " J  (# " *    " 7*( ' " =J  _"X 7 , $  $   &G .+"1  " ?*"" *    " 9J4 P+)" *    $" "Z $*!   " * " J " !  " 8J: $; " :# " :&" 5*43" ;* " # " /:  &" ,*  " 0*#&!" 2& % " B  &! -("! >j     5" B&   " 2 "(C,%Y"R $     0  )!" :("   *"# ;r ) $ + " *:  " B!*( " 6*2,/+ " J.6+  " #*$" Z  & $#  " J , A": ; 8  , ,  !  ) " @"" " :2!@=" 82  " : .7" *  $" Z  $3#" 9*" +*"" !R & &" 5b  & I"B  Ij  h  2*F E &" b$       " :*  e"^  $ )X %4  4-,+- 0!&*# C %$" Z   " ;:1  $ 1"*  . 6 $)  ' # #1"* ?% #"&!.   -" ;* !4 3 ,"% z   " #     '"  C>-&9'% /q&'5)*$-/    & (+ $")",(#  !  / 4/ <1  $)   0 /># >!    '   %  " *$ '" *    &" b 2 0S8"1 : 2! '- ("! *j .!1" +B(   7"0 1*  %%" *" *  " 8*" *  " *" :    " *:" ./" 4*BC" %*. $- #" **()'" @:"  " *& .' -" *    " )J(*3 !$" !Z,   - " =2 *lAO" :^J% 9 -" ;:?63", 9  =" * "#&" 8bD2A " */0" **"# " <:7  " *  " 8*  " %:$ /"  . /)("! j( #+ ,"% +z  &  ! " )* .!)" = * " 5* " **" )** + O"H       &&  q^   " ?*?> " :" 4* ,"% zL5( &" *b&  # " 1*0/&" bh1  9" " : *   " J*% " / (  " $!"" )  *  "1,%&  !" *  *"# ?r  1 }"v R7      2  )=  (!$2    .! )  %7&  ,"% 5z* $'" * " 6* " *  " :2 . #)A " J* @%  ) " J`,--" $*  " ':  " 82%&9"2 2! &D1    ?"8 #$  ;  "   #!1 " !J&8   7" >2(Q,%T  " **'(" +: " *  "" *R 2 " <J7^*   ])" ,* "  -! )  $ #    '  /  &%   $ &*       "#7"0  (  %9"2 , $    ) " *   " *  " +:  " "J " " " ):" " (*  !" *  " @B# 4  " :" B,*#  " :$" "" R" & >/ 1" :  '" *!N"K " 5*,+("! j V+!  " =J ,  # # " J  !" *#B $A " +B#,*"# )r*,-# " *:  =)" +*" *$" 0Z;"8 &5  " ?:-2W"P ( /( !&")*   < 0) / ("! j6 :  9" (2$!%" *" !*  $" Z.  " !"      #&0(!  !*( &#% " ' ' H5%C   '#9" *\)0e(-S"L `"  * !  $= 5_ *) !" +*&'?"8 <K X(  *-  !3>" ?:&9"  "      %  !*  4 ,% " '() 54 $  &   '  # +   .4  "4 " $   31(#  (3+ ' #  %  $" Z  . " 7*!$"!" *G"@ 0%"(  )5, + ,   #!" **'$(%" :   &" b %   ! "" R<^]Q" :   " * #$ "# " *KNLM("! $j@  ! " 2   " <J$ "  G="6      G " JH8   7" :!, *) " @*    9"2    17 ("! j 'X0+" :,3 #" &* >! =;"4 ! ,  ! " " *74" &* & %" 6*  ."' 5     "#Io"h 4   (3&&%-! 0, +) 1( =7 " 6J9 4*"# +r" !"y T&.       %#    2P $  IE">  +     )" 5*" 6*1 2"  * @ '& H#   ""     B#  4   !"  #2  - 4 )   %& ? 9  7" +*" +*%"$# " 5J!"/ . / " J !#" 7* " =* ( ' " ="  ("! j" !" $*",#-" * $" Z8#    " 4J"K " *: &9 #" *" 7B"" :*! " " 5: #" 82#.F-" *  " 6*  " *  " B2: # 9" ( &    '        *$ % & 6E  !' /E$" <Z*) " :  " 6*" 5*"#("! *j *#"" <R    " J0$  1 '" :4 '" 6*" )B,+  " *  " :$2)+" :&  /3,"% *z$  " +24$% #w"p )  & .' F 8%38;  '&?5". &*  (   ; " (*"*#%"" 6R#   " >J   1" $*@? " *  " 2  " 6*  ;"4 ,7   &!*" 4*(%{"t     :S$9 !    " 4  (!:  -" *&!#c"\ #   &*.   $   /    &' +("! j  !!{"t  &     $  $   &  -O  #" )B  #" (2    " *4B1A" : 2Q 9"2   *&    " ?*  " + :  " *4 &3 %" 7: !" : , '" 8*  " "2(#06)$ #" * :3($#"" 7R<)!("! "j$" *Z   #" > *"  2/(0%" : *1$ 0#" *" > *)( "  *  "  *,+ A":   4    "  2  *"# ? r     "  "  :  " :2  )+$ " Z$, - -  "  J)n9 3  " *   " ? :!&  "  2   $ " # Z  k "d   #      0 (   ' -  "  *   "  J  !. "  *   " # *&#'$ " 2 4 #1 "* $$>  !7$ " <Z   2' " 8 *:&9# " ; * " *" ( %S "L *-       $GN) 3'* "#  r    ( "! @ j    8 )/ "( $. &    1 " # :   ; "4 P;&%R0 E%   &iN  4% /$ * "#  rF "   #  % " *TVSU "  *   "  :    "  ** ") 5 ".  & (      "  * "  *.+ "  B   $  "  *JK " + * "  * " $ *a "Z 6)    <@=> 217*   94  ) " " *   "  *  " " ? R%X&"- " $ .4 +-8$ B#"  !     (  40 0  # "  *'(  #04,  6& /  Y  ()7 @% 9  "'   !D 23 %  '%#  -! % "  * " # *"! "  *   " & 4 & 0&."!! %*H     ( ,H   *'"H+ !- "   "0N#; !   !    2" * $ '  %3 1##$ ! 1  " $ J   " @ 2   " + 2 . 7( "! j&2   / "( 2 ) 5 % " , *   "  : &!   " # J  G "@ * &9906   )$ " Z  "4& " b@  %   $ " Z     "  J  +&    "  JB5'3 ", "  3;*/]+$ "  Z& @0+ ![ "  *    " 7 :(  " + 2@ #3 ", ; '    R -5 "  B *.% !  "  JF3 #    " * J  (;5 ".   0 (* 1Qu "n 5 $5 X$ 9:  * -(5  .- - " & :% ) " : : =& 6A  " & *!(") "  :    " 8 :0 /' " 7 *  " " B  5 ".      # !H,3 " " *6J7G " * "  " ' :,(/ " ; :5   "  * " !& "  b22    1 " ( :**' "  *& " b  %    " < 2M0 N # "  :\ 0 G %A ":  0D    7(       " % J= D+ " " 2* "#  r 8  *1 ![  " J2 6 A$ !5, "% * z +22*  "  * &%( "! & j*   * "#  r6      #% " 2   U "N !   " !     +;  " ' J(>'& "  b.&   #7 " ' *  " ( *('  " ( J  " ; *,+ " ( 2    "  *  / "( & ! $- "  2 $ ! " + *-4& " ( b9  &9$ " -J<-O> 5 ".    (2 --( "! ? j ,    " *" #; "4 " (    %#!/ "(  L%[&T* Y.  "  * " 9 :  & " 1 Z$Z#g  "  J,!+"( "! : j -I  P3 "  *   " # *&+   "  JD &  #7 "0  ,[     ' "  B  2  #U "N V,-..   -> K   " & :*!$ " 6 Z    * "# + r !    " % 2.) " & *01" " " R ( "!  j<'   +      " ' :,' " ( *,-/ "( "   "(!    "  B<"!1 "* > &$   "  *('  "  J* &!7 "  *    "  :, "C " *  "  :     " 8 J 2/3 ", = !  (  ,  " " *   " = B,($ 0M " & :(") " & *,+$ "  Z^A "- !  " & *,"+ " ( *9,:+ " ' 2"  + "  2  " ' :("- " % :.(   " > 243   " ( *( ' " 8 *45 "  :!.%9 "2  >      -* "# rJ;,@ 7$ +O" " ? R  ( "! j$"    !  "  *L K  "  *   " ( :%0D7 " 6 :$$ "  ZJ-';&1 " *   "  2  3 ", !    ( %( ) " " *  " 5 :"" )? "8 )  # >+ ,  Q   "  J4  *I,)/ "( : -(0  " * :     _ "X ,          8  '    + '3 ", "  $  , "% 5 z$  #$ " 5 Z  :#+  " % *&$)# " 2 " 7 *0/ " *  * "#  r* &"'G " ; *  "  * ( "!  jN $) ! %  "  J  &%- "  *    "  2Z1&1'#  " J: E  "  : 61/ "( ; +^x-  + " # * " @ : ' %T/ "(      #% "  2:#*=&  w "p # 4!'2 % #"% 0$23 #   (%!"3 )7 "0  *5     1 "*       'W   " ! :* 'E "> (?# "/      #8 " : @ ' " : 3 ", *     "  *   " " ! R*   ' " *8.95/ "( "    9 "2  "   ""   !  % !#$ " = Z 1, $ 1  " + *1 "* ) ,  &- $ "  Z&(B +  !5   " J  <  ' " % *T *Q ) " ; 2,) " : *"% " 5 B+.$   " + :  "  :R S" " < R  5 ". 7 "!668!'$%&'  " + :!2 & $ " % Z4" '* "# * r     " " *  " 2 " *    " ! B & F K3 ", # - (  ) ' " ( *&%$ " $ Z:0    " 5 J 92.$ " Z2  E" " $ R  $  !* "#  r *#)/ "  *$ ! ! "  *$! "  *( )  " # J     " 7 :  " " $ R.   !   " # * 2/; "4   \5,L   #-*  5 ". '  # 1 "* ( 4  ," 5)#1 "* < &  #  "  :   " * *(' " ( B.  " 2 " 6 *& " = b[ F * ,1  " :  %  "  *1 "*  hA  "6 ?(7$   " * * " !  "  :    " # *" !  " ** $) # "  *  * "# ! r*$     " :   " + *1 2! " 6 *'&(# " 5 *+".# " 5 */"0#Q "J      ="** *-# % (&    "  J2? r;+7 "0 7 $<;01.@+ !" "  R /   7% " *   " *   "  *$!3 ",  !.. > 713 ", ,   3" 3 + " + *  "  2* 4+ %, "% : z* 25 , "% " z      '; "4 '  &(&% " " ( R((   "  2 $ " = Z( " 8 *, "% & z0$/  "  B,# " & *"# " 5 :"  " $ J8 = ) " 7 * " " *&% " ' *.,-+ "  **"<35 " */ "( ?    0% "  *b;>]=( "! # j8    " B  $ " ( Z *  "  *  "  *#$, "% < z )T? B?  "  B   3  "  2" ' 3 ",       / "(  ("J :*K  %   #C " 7 2   "  * A@ B?  " $ :  % $ " 7 Z2 # "  %  FD  ,  (  !       , "  )         " 8 *:7$ "  Z8      "  *pm " 6 * " ' *43S "L %   $ ,     +; "  ** %; "4 : G> % !  "  :$7$A ":    # /( >    !% "  *  "  *; "4  R (+ " " R(?(&'>Y9 "  * : 9( "! " j 3$ " " ; R0 ' 7 "0 >   &    " & 2:  " & J H"7  " 6 * "  *>#;&" " # R, ;(  " 5 *(,'+ " " :2! " "  R$ $#! ; "4   1& "  b $, #7# " ( *VS " 7 25 ". 5 (  &  ''" " 7 R  , " "  R1*  "  *"! " ? *E6 H3  " - *R?Q@  "  J 47 * "#  r+/n"8)O ($ " " Z   + " $ * 4 31 "*             " 7 * " ' B^ */ ' " ' *0(1', "% " z    , "%  z.,6-    !  "  J  9 " ( *NM; "4 #   4   #-( "!  j b>"C  +$ " : Z'  "  J,$+    " > J, . ( "! # j" &     " $ * ! " 5 *&0%- "  :4#B~EAM$ " % Z(3 " 7 *"1 "*  E  BA " % B 6)9 "2 ) *"H:C  ,) " ( : $  "  * &' " ! B"   4 "- / 4      1/]* "#  r"%(+! " ( * " "  R"   " ; *=( >)" " < R',(*)) 1 "*        " ? JM <" "  R O "H !    !         ) "" ) j=  #  " 7 J   " 6 * "  * !7 "0   " " $ R$  !& " b8 " *h= g>  " 6 *(")! "  *   " # : ( /& " # b 2 2?  " ' :! " & :& + " = 2c4 * :3  " )*[\ " ' 2 !6"# 1 "* !   0$'3  " & J(,'!, "%  z  $2  " *%&3 ", 7 .  <   ) " 6*   " )B"    " )Js:$2  "  J   9 "  B$># -  " 7*   " ;*.- " :  ( "!  j0      ) " 5B6 + " 72"1 "*      " " $R,*)1 !1 "* 91&    $ " " Z 0"=% " $*&' " #*2 3 " *& ' 9 "2 >     "     " %J< ;  " #* $ # ( "! j2(#$ " 7Z  *) " !*!0$/1 "* ?'&     / "(   & 1    " ;*%&&%/ "( '    $ I " 5*65  " J 1 " 5*&#  " <: G8 43 " !* #0 $/  " #B' 21 " ":. #  " * " 2    " =J!& " =: =$& " '2N A " *,)!  " J%& \%# " *!"  " %J8 # " 7*#,$+  " J   !9" " 6R. +& " b   ," ) " 5*./ " %B&  - & " >b < 67  " +*H jI k " *$ " "Z  r "k ) !*  E V?-- $3H"       1  " J `$vMa #" " )R5 6 # " ?2%@ ( /  " )::F/! ' " $B* 0 ' " ': $ " &B  " B -  $ " Z * *   " 6*  ,!+$ " - J:/ Q@  " 2  ! " *2?2<1( "! $j  -  " $*"!  " *   " *,+  " :J/4-u "n n0 T;  &#">'*Q4" # '7*J/  /R +)'o1 " B$8 *5! ' " *( >% =" " 'R $!$ " !Z -   " $B$# " *   " ;*!$ " :$ ,#  " $:" " 5*#N"O( "! %j + " *  " )JLA M "F    &   . *  &  $!9& " "b& "  !   " J   " :  #1 "* 75 ).& ) ( "! j.    +5 " :   $ " Z :' " " @R P% = "6 &J      !  " ):( $-A  " J2A2('21' " :> *% #  " J"  " * " *   " * " 9*  " *$!" " R   1, "% (z03    " !:%,"M " "20'  " '*& ,% ) " %:LI " 9*+4 ./ $ " ?Z!%. " 3 ( "! j8%   ! " 2" *! 1 " ;2 )" !  " 2   " 82>= " 2$  (# 5 " 72 + *! " 2& h# g " )2 (,%7 "0 6:, .%  ` "Y = 2 J] 5@ +  (%   " J*  (1 1* "# #r+ "$ " **$"# " ,* " **"*!) " :/(<%  " *("'!8 "1 + JP !0  " :/ " &B  1% " *  " %:&-) " 52 . #  " *   " ;*"   " 7*7( 6'  " %*,$+!$ " Z0*%({ "t  e    00*     '<     " " R -, 94 >  ,A %7 "0 '  $   " ;*  " $J1" " %R")" " )R"(0 !1( "! <j) "   " *J   " 2$!$ " Z! !, "% z " "' A " *   " 9*-$ .#  " *\&] % " )*$>#= " %B *"; " 5:*"; " (:   " !JQ"L)" " :R?,  +  " : + $2-$ " Z2 $' + " *20@!& " @b  H# " B (>)9 "2 (  (  , "% )z  &#( "! =j  !:      " 'J, 0) ! " *,+ " B.E("()  " *8 7  " <*38459 "2 &"     #   " *J   2 "+  ,$ &).#  " :8 &A- " * )* ,)  " *  " " R&#)   " J   &#@%( "! j  " 2 "" Rb 5+" ,:&%   " J<(# )" *   " #20D/% " >J%6.# + " <B34$ )" P  1 .   .&RC213  1 (/'") ': = %" *" *& B' A" *20//" : .5("! j"   " *+ ,! "" 5R ,LG/" *"" !R) "/ " 72- <:;" BE&*" * v.w+,"% !z)"$.  $" %Z&!-" *" '2F 4-  3$" Z ("! j * V5 + " $*+2,1" $2 /"( ##.'2BS1"* "58(- " =B'4 93", *$  .(     " )JF4# )" 2  " (*&B%A" BD&#+" : .- %$" ;Z+ * " )2*L)I" 8: # " ,*"0!//"( $    %1" 7:   " JR# ')7" * # $" 9:#  " .*U"N !H@ #% " $%*^P +'  )#( "'  G=" *5z&6{%"" R>*    " J""   '" b%( \ .!A": <   " *%H &G" ,: 4    " +J $ %  " J   " 8:/  "" 9* & %" 8*3" 4! " >2/>2!  " 6:)T,))" 7*   " 9J    " B  " J "" <R) , " 2 # $" 6* " -*4 3 " , 2R;Q<" 7*" 6* *+ " :*) (" * *"# *r & ( ' % " *C, F+ " 5B *,"% z &$ ))" :: ,1 +" .*"!" 9:!   " J(  %" 6:& "" +2J.- /" 7*!$" 6B& " *1 2 ;"4 7 %(\& -  ,"% 7z4$&'-$" Z 6 " =:% ,63" "2  &" b (D!1" *>?" :B/  8  ;"4      =" 82) * " *& F% E" 8*$" %Z0 >=" "B4+5" #:,)/*"# rI4 & ,#   7 " B&(! " $JB:9/" *" 5*$#" 8* " " .*" #2&H%C" * " &J " B%%&" 6b$. $!9" B &&%!" 2  $" (Z<$ )K" 5*3", =.8%  "" "R   " 72 '" b. h$N # L! " B7& " 2    " J    " 7* E$F)3", 'L $$&#%% " J  $""" %R:> 0% #-+$" Z    "" =R< %" B   "" ;R! ,+ >C!A": ! '&   M"F  %F 0 ) " (*> 9 " *  " (*(0% " 8J%    9"2 &  &" >b "  " * ("! j@ D5BO k" 6B + ." 2z' ^{( =&" +b=  &J" )*4855" #B4'90 /"( 5 " * X W9"2 & *: &  0 'A ' )a"Z  +   , &   8.'   ' 0 )'7"0 "" . &   %%" 7*  " )* ; <" 9:% $C*/b9 " J-     $" Z   $8 " *l"e 68 "-ER   0' . ? ; ! " *#D*(E- " J  " #*,$)%" *  !" 8* " &" *b 1F " :C, $ #" 6*$ #" *" !*6 (5 '" !*> ,; +" * " 2/ 0" 7*9" :$" 9Z `.!   7"0         " .*ji"" R2&' 1,"% z6 *%- " 5B  &+ X"Q ..64& 9   , 0 * &+K" #*, - "" R    $  % " -J ": "< 7 #;" *  "  !" <2 G&. '" *& %" :0 !+" :  (" *" "2("! jB  " 6*$%" ,:$  % " *?" >! " $J& $%1" )*!& % " $J ,'!" *  " 5:"9 " : H W" 8*+," "B*&% 3 "" R , -" 2& $% " 9:  " 2*.+%" <*  /"( " 2 -9" =*- . " 2 " *" */0 " .*dc " J  " J   ("! j    ( +" :3  (#" :&:! /" *  " ": (" :(%-  " 5J& '("! <j&O ;6   ")"" (R 7" %" (2i, p- " $:&%("! j 3( ZS " **RS" ":&-!" #*$% " 9*   ="6 #   B= " *3 -  )&" ?b*4  "" R&   5" !2,*+ =,"% zB   " * " =:+ (#8'" *( % " J  #" ;2" *3< 6=" *2*3)i"b % :EP"I  ' . (( 8R ")  " * " !"" (R4 :" 52.'  " *J  +(  ' " :"  " * *)1"* V " F9/ %("! >j.   " =J" * 74:5 " * " :A* " !9"2 & +'" *E H!" 2$#  " 6:%,   " *, 6- 7 " /J8374&" 8b"7 -* 0 -" *& %" *"&!#" ,*F E " !*" ;:  I"B       " 6*" * / 0" 8*+&0#="6 )H  (#  $ 5 " ;*-2 *1$" ?Z 'J!" >:  "" (R&@ )*"# r [( ,0  A" *!" =: *(?!5". #,23'" *P*O )"" R    " *2 $7" 2 0 3 " 5J $  * # " *$" ;Z)$ 21   " *!: $7 " :(Bv #I " J &(# " 8*  " (:-L&#-A": %   @"t+#  ) )   " * DC" $* " :$  " '*( <' ;" B$"#5" * " 6J$  " J 3 * P) " 28 !" *J &G %" ,*F E " 92   /"( gB$+ D  " 6: 3", ?$3$ ./" ;: ( "3" =*'>& "A" *,"% 7z%  " " *F(E' " :J%& '> 'D7 " J,">   1O" * " !J ?/" :D(/))"" 2B\;#5 * *( ) 1"* =&;  (A %B  $ " ::B';" >:$2" UA("! *j  , #" :: " :* * '" *" *   ="6 ?*  %4#7  1"* . 1 \ # +1" * F"? S (     (#U#) 0"1"* $& &+ C 1"* #(0 "+ &"' %,"% z_ %(83 " *. 9" *]:Z9" 2O&P#&" b $%" 8**Q&'P'" *( @) ?" 2!: " *   a"Z ". -   6" %  ! /$" Z !("! >j"+&   " :#,25   " =J   (" 92/0 " #BT  0!% O" 5* *+" *   " +J^  E 9"2 5 )   !8    /%" 8* " * " 82  " :B  " ** B+ A" *" ?:;& &) 1"* "0 :2*;)9 $" )Z$   *''" >B  ." -" *()9"2 P l*_*   -" 9:  " :*  " :%*%" B* D3" 7B+$" (*. - " =J#& !" !:( @- " 'JJ &G )$" Z      " "*H 0I+ " (J  7A" 6* " 5* "  *"# 8r/  .   " ?J   (" *$4 #3 " * @ A" =*# $ " J.  $/ 3" *$ 2# 5" .2T}'>+@" ;2'$  " J4*^   '_ " >J  #5". &  ) " 5:" ,%" 2 & +$" Z, <    7 " J+ " :" -27 EE " $* $" :Z  "="6 6@  &% @"! /E# " @J- " " @*  &" <b/4 " 2 L! M " >J+   " B, H1 U " J" F# 5" =*.+,"% z$& 41    "" 7R 1     " J&$ %" : ! " 72   " 8:. " ?:7. " &J ( >/-" *0 T- U" ;*$! " %J/ *=9"2    #" <* " 8*;$>#" =B " * " (*6 "/  " ;J' '$& &!" :6 H/  39"2 9&    '&',  %" $B&" ?bA $"" 5R#  $" Z F ("A" A" 7*) ,("! jJ>+    #" +27 GE ("! j 3 (" >*&%/"( .  2!* + %  ,"% 8z  8 .  ! *"# $r  ( s$" #ZZ("# #I" '22 . / " J" H ]" 2$ .# /1"* # ($' #("! %j(! ,"% 'z 0/ 1  +" 5:"   " 5*+ , &" >b$54$  ( O1" 92+ ." &22(!)" *$ .!-" *" =2  " 5: ( 1$" Z" =-" 9:  !2"+ %1" * &IM )  " ,2Q P " 7B!"    " =B) .$ 9" 2B &; %" <*#$$%5". :#(E "6 !< *"# r " 287 " >*0 1" 0*(5<,)89-5". $  %k" 62*S$.$#K"D (0, 5 (    %" )24, +" ?2  ! *"# %r 6 1" *^*]) " =J  " J4*r3 !7!" JT'%G )-" 92%$ #" +*J G " :2)& '" 4*   " 'B   5 " &2#*$)" <*'0*-3", 4$ 1 7" 5*" !" 4:  " 62&= #@ " >*-,  " =J5"" $R #,      " 9J     " 7*/ ." ""1 ?:4 %  8  26")       4 - &G " <:+   " 62 50("! j8N#   " * +" *" /**7*+8'" *" !" * " 5**"+" * J"C ##P .&  F " *(b'_ " J$  ! $" <Z@  8"?$" >Z   " ':6%"+   &" 4b  ! ",#" 2, 6 7" ,2G y.?" <:# " $" Z%  *"# ?r9 /$ (  8# " 2  " #2/. &+" ;*+&.%" 2h$Y #" 2PH ME" *,.)+" **7 8 " =2  )&" :b  , &  %"" 7R  (B!" ?*" *"" "{2Q4Rq#?  B  9Z B<+ j 94P%   %=q<3 n3 s3 " :   &" 5b  "" R4 6I/("! j   <G" *   " 4J.$  '1"* (   ## " <J! ." **$ )#" 62"9"* !" * 3", , 6,=    " =J%2& +" *2B1?" 4*  " 4:#." *)*&" b&   $" 7Z 0"&' #" =*#&&%" <*#,&/&" b   " 6B  " 2 " !:>Q" <:'0  )" *VPUO" =:$  " ;*+ *!" *   " 8B,U>D)" <:     " 9B  " " J( :#5" 62- . " :" ,7" ":( '" * ""!" *2Q 6C " !285" $*" 4*   " $J5 j " J 8 -R- _g"` B!   #7Z  &4"  J7/]I  S "" 3R  8(%,"% 'z.!     " :& H7 %" : " *  " *> &?%" * !$  % " *> &; %$" Z  " 7:1 &   " 9J ?   2" <* '(" 32  " /:  " "*H$G#" : "+ " J@ A)m" *0 /" *" *@? " #J  $7 '" : 1 ( " * 0 / " J" *  " :   $" (Z  !1" <*#>&";#" 3:('" ;27@: 3" <2&; !8 " 42" 7*  " "*&#" ;* ! " ;*  " *""!!" *  " * 1"* : '  $   $" Z " / -$" ZD%/ " &J*0!" 92  " * " $25"4"" R$ % " *>&? %" *  " : 2 '" $*   " 9*98 " ** 8)9" 2   " *2 &/ %&" b," 3*'&(%$" 'Z"  !'7"0 (   ,  " 8*N*M) " 9J (3 " J"  ) !" ** N' K" 3*" * " *$ #" : " =*" ":,$37" )* " " * & #" *$ & %" *  $" <Z/ $   '" 52+ ,%" ;:  9!" : . # " :("  C7"0       $  %QE"> ;+ 5 (   (5 *)3  " 923 4 " 4*- ." 4* ,"% z,& ?   '" &2 " :(*1'" <:+"$  " * 1"* 9   ,  !" *  " #2B .A3C"< mF ** 2     *)  w" :*8"7!1"* ".D5K&4F(  '-E"" 3R$ )" :" #" * " 32 # " *%(*%;"4   )@  " *" <*  " 2*"' #* " 52'* ,"% $z :   " J2< C-"& 8z-F   K'  " J  %=" <2  $" ;Z%  & A": $ $f# !   "" 0R    " 4J     " *   " :*% (! " "J4:# &" %b* '$/A\ 5)" :  1"*  &  $I " 5*  " * *% " 3J   & " *    " :*)* " J. &# %" B " *R~O}"" ;R $, !" ;* " 82 0 -" 2 " 2**-)." *( )" <*   " 4B    " !* ( '" * &" b>R! 3# " J  7   " *   " 3J!    " 92*  " *,F+G" 2.\)[" $*.0/-" 2*("! j6'  "' #  "" ;R)   *%3", &%  ( %" 20-" %*  "" 3R+,  " 2^ ,M +" 12 " B> &2 (M!M&" b( $   " * " 6J   " 8:@,#"" R$ !  40\q< &" b#I:L    (_%" B    " ;B'   3 " J("! j "     " 1*  " :&" 7b   " :: $  " *" 6B  &" "b " #*" 8*!$ #?"8 0($"',#! '# 7/]" :%P 4  A " J>&d? + +" :*.+D"= "G9    !'?" : y2b3 *"# "r& .%!" % " 2*$ %" " :  Q"J Q"J Q"J Q"J " * + ," *"!Q"J &" b $  %' " :2, %" * $" Z/ " ;*$!$" Z* %   " /*\pD[oC" 2 " B"  " 22$#%$" *  " 9*%$&%*"# 8r      " :X 4S1"*  " F   '   " 5J  ,"% 7z      " : * &" !b#   " :6! 63 /O" %:4-""#"+$" &Z$#,0 $" Z*"  " :B!( " #** .)-$" 7Z " *  " 3*.%-"/"( 4*'0+ $   '( " **7 *A":  $  $! ! !V   '" 2$; 0 " : n+ [" :*)*" *7  8"" R N U &" b&\#!" 9B $ ("! j( -" * " :J$+  $" Z("  " **" :  <"5 O )   V#) Q" !2 , -" *   E"> %@7   )      ("! *jT?B12%1&A0K8K"D !  (  < B/ )   % ;" 4:,*-#" *  " J0 & KY$" Z$ + " *   " "J  "" 2R   " *( ' " * *  ) ("! j    4H 5I" 2LK" :*  " 3B&! " :  " *    " J"   " 6B:E5@/%"" 8R #. " J24,11Y" 2O"H  )     ,  )  3 " *$" Z  " 4*.1-." 7*  " #2(M 0" :2% &" 2*,-" 1* " !J  )  " *  " BR#(  ' 7" 92*7 )8" $:#  " 2 TI  " J   ("! #j ( %#" :2   " 7*" 2,) "" 6R09 (+cl)" 9*&5'2 O"H & !  %  % 3" !2"" 7: " 3*"#" " 32"$ %" ::%"0+"  ,"% z*$%!" ?*   " 7J(1   " $J :  (%" 72 &  " !BI"B .    M@   " (*a(b%" :3( 27"0    & !$" Z( &    " #J " ! ! " J = 0 $" :B1& %" *  " *  " 8:# "%4%" %:/8* $" Z@ ( !  A": d >  #  ("! #j     !" *   " J435" 5:.' 5,#"" #R<  " ?*   !" $* * )" 6B   #" 9*&5%6" :2$B%  -"" $R ("! j   " 2,"% z&F Q " 92'  " @*  " "B*- #" B&!=" 1* "" ?R 2 $" Z N #c("! j( 2 0)U" :" $:   " (B=$" 8*"5&#4#" $: " ?*& '" 3*PSYR" :" @*( /"( 2   6@=4#+" 2@=" !:  () ("! !j"   " # ) I" @*  " * " ?: ,   " 5J(&  " )* " &Jg.  D" *At$Ds%" 9B  , " 62.1" #*#" #**"# r8#("! :j% #0    ,"% z ,    " *$ #  " *  " 2*"!" 1*,-  " 9J  &!" *  " 2" 21, 0+ " 82.E+D("! 0j "(   #" #B   " &*$("! j '" $ $M"" &R1  6 '$" Z( " . " *" %*" #B    " &*!$ 9"2  "    !    " "B   !" ?*& # " * :;" ?: :% %1"*  .(   !"" 4R"$!"" 4)     561 9  ( $b* T!  1-<mV" :8 )" '*  " !2 $(K" #*" @*( " :J %&$   " J* $ % " 1J(!) " 0*"$#!*"# 5r     " /2$#" 9:%$/;V-" @"5". ! 4   5" : " ?*& % " =*" *  " 6*("'" B% 9"2  N0 ,  ]"   +"" R 3@  6-  " 9B&3    " 5J" #&-+&" b.   C  3", %&  *!1" "2 !A": 2~c.-/? #4D%/$, "# OT!''"28?8CKI"B &! (      %   " J4*  " J, "7" 1*(() '" *  " J"   " $J  % " /*  " =2" 9*.;+<&" 7b '"CI" 6:*3" $*"! "" R   * " !2001" 32$ ("! 0j"#" 1:  " 6*#""" * I. L/" $*  " #2*")" 4: " 2,"% z Xz )9 ;S" 9:" -%5".      $   9" =B$" *& % 5".  " $b!   " 1J( (!,8 M:1A" ?22% /&" *&%" #*$#3",    ,1 " 02 )"" %R@  M" * " 9*(' $" 5Z   " >**%)&" *   " 3* $4 #3" 7B !6. 3+("! 4j  " 8*&/%0 " 9J   " 2-P, E" "2:8G 9$" Z6  +M" 8:  *"# !r  ,3&" b+ 6"#! " 6:   " =J8/"-,!" :"  #" 12 4 5" %*@=" *  " 12   " J, -" :   " *    " 72()#$" >**'&*+$#% " >J  " 0: &" B V$ %  " 2'   " '2  " *(' " 1J   " 3B  (# " *h#g$&" -b$)  " :4+$" Z " %*CD="6 64  . "1/1 " &:6"" #R&6 ) " J"(  '" #B<6+ &" =b<7 &  !%" ":(. /"" "R *5 " 7J,+  " B " 5B89,, ', !" *~GJJG" 2' * " >:  $$!,"% =z +1" *   7"0 2   -$   " !21(0 " 0:  #" 62&% " :  ("! 3j  " <23", &     " $*" !:: V =!" &*89" 4:  ' " 22 "5" 2* ;" =*" B.  5" 8*8A5D" 3*  7"0 =0   2  " 32*)&" b5 &   " J2  1; " 0J*  O"H /<  (    M+   7("! j4 "    ! #" * " ?J  %!" @*%0*5 "" R  '" 62&% " :$$0 " : 6b 3aU"N      $0+  !*5 " 'J " B;@"&    &" b "- " J( ',"% 5z  ,. 1$ &" =b "$+*19 " $J * C" :  3" 6*"" *(l'k"" <R2- "1. " *( '$" #Z= $)" %*  ( '" #:A "-" *  " *A. L),"% 3z"  ')7 " /*<9\^;<[_ " J  ,"% >z.'&, $" ZFg0t y" *  ,"% z  *   9!- 3",  3=+& BP] " 5*"(!'"" $R&  " * " !" 4:"&  +$'1*"# 8r  $   " $J"#  " ,*x{w|!" JP   )M/ " J3,(# $" ?Z"  -$ &" -b VI kZ!"" : "0! !3", % 7;3  (6,.i(/"(    J ++3" ,:    " ?*2+1," :   $" Z > ; " 72&%%(G"@ 9(         % " 3B  " 7 2 " #*,,++&" b  " "! 7I"B  ""   "  *"I$!J#" 52" " B"  * " *.L+I7"0 "&6 6 )G $'/*"# $ r  ."%*"# r.  0  -%" B9\,( %+ " ? J "" $ : <.G" 7 2 " " * ("! !j  @ '5". . */ &--6 !"  *=D4?" ! * "#" :"(>#" @ " "  *.!-5". <    %" $" > Z*' !"$" 6 Z %*"  * " > 2*#'$ 3",  ?( ,+("! $ j  %  " / J*' !!G"@ %.&     *  #-/ " 4 J ( " > *"!"" 0 *   "  J    *7$'" ; *" :"   " ? :('" *" @ *  *%;"4 >    3)  "  JB* A ;" < :.%%')("! " j. *   53",           " > *0+ -* "" - R20   " " J 1"* 7    !)/"(  (< '- %&"  b>"  /"( $ B  + "  J     + " 6 J$!>>-+ @"9 .*`H! 0      J = +]" ? B ;"4 * 2$ @MA  !""  R$ * )F"? * EbQg2%'X  ~P 8=GReYHD" # * "4!5/"(  & ! 6 )  " & *&4%57"0 ! "     -  )" 6 *  "  *  7"0 " "  0 "+ *'1"* 4 2#$0$(#$!  9M""  R( -?" = :%"" % *('" !B  "  *Z"Y" 6 *"" :!*"" > R,0 %'" : :" #" !*f#c$" $ *$2!/ " ; J,) %'" . :&! )/" !*  " &!**)" #!* " ;!B  "" 4!R  ) %;"4 ?!.' (   '$" !*D$E %C"< 0 F= {(,z>FID E@!FA%UL " !*  " 6!* "#" "!*&%" !*" 3!B$!  ! ''("! 0!j&1   % $" %!Z   +$" !Z 1&(' " !J#    " =!2,)-,,"% !z "- "" 5!R69 #(  " ;!J&#!  " ?!J0-! M"F #!  N"  2%     ("! j4.~/  %   %" 3!26) 5* "  :6#4T ;!_4"-  ,Q>:  $%'J! q" !* " !!* ), (+ " !*LK" #!B  ) " 0!*("! "!j""   ! " !J " 0/ 5" =!*:796" !* " $!J" &"  b$T5  1" ?!* " :!B&!%"" :!*" !2 =& &+ " ;!J" !" ?!* "$ !!" 4!*.!"-$#" !*"" ,!J& %}"v ! %M # "  )  $  %# 0%   (9 %" !2 " !* < ;" ":i l " /!B")*"   '!/"( -!-     " !J0-"" #!R8 "5/" 2!26152" "!*, ./ )" !!*RQ;"4 !! -@ 0 5 @QS" !B, )I"B =!.)  (# &# # $!c`  " :!*.)-(" !2*0!/&" !b    !-"" 5!R(+ .,) 7"0 $!!& . .0 %  " ?!J4/$*  %)" !:*' " "J" !"* :9"" >"R(' ,0MH!!/"( 0"     #" #"*  " "B * )" "":$>9!" #"*   " ":,2/" +":0. /)" ,"*&.'+ " "2 / 4 " <"2(%&*#$ 3", !$    #[,"% !z@ & ; #c" #"B  $%-" @""" !"2&" +"b/$ , ,  O !("! *"b2.%<m" :":$%" -. " <"* " "2 " 0"J   -#$" "Z*:  1" ":$  "! / " "J.*!!" "B&B ) " ="B   +$!e"^ !4  &,  ,  B  1? 0 1! " "J04   3" "B8 .O7,"% -"z %" ,  &   "" 1"R8C$" " 9"*&" >"b>7,4 %& 0-/.$" "Z2   .' - ("! "j(    ) " >"J61%" ?"8  4= (@ $ C #'  " ": H+%e" #": - " "2)*,'" "*KL" "":t6 " %"27 ," "B  ("! +"j   K"D <" $#:9 %$ "2(#" #*4  3 ="6 " P) *  $" "Z *    " 9#*$#W"P ""  1&.)B   &  ,% /" @#2( 7"0 "B&  3   " #:("! &#j9 6 1"* %# ,   = " #: $  -" "*n 4o9O"H ;#"!  *,  +(    " "24D3 I?"8 !#`      " @#" /"( *#    "" #R% &(1"" #R  +" ,#2 G  2!" #*'&" +#B&* "" #R)" #2,, +5" /#:(C &!" #** .) / " #J".!' " ?#J " ,"J.Z Y" #*   " #B    ,"% =#z('   *23. ("! 0#j(/     " #*  E"> 4#   (- #"%#4;\FGR+0 #&+' &" 7#b2C& ,'" ?#*&%%$$" #Z 8 $ )" #*&4'3 " %#J * ) 5". =#  &*-* ("! %#j* H)      " #*" #*="6 " "$3 </ +" "2T*S!s" *#**)" #*4635" #B$1" 8#:  " #*" 9#2 &  " $#*(#" +#*" 8#21 2 ("! -#j' "( +&" ;#b( "   " #*  /"( 1# #    &" 0#b 0*  " #B#( = /"( !#-"  &7!" ?#B (%#" " #*&0!/" 6#* " "*& *# +" #*$" "#Z: Z'  O"H ## 4#      "" #R5" @O" "#:6 -1" =#B*2 $" $ZG, 23 " #J   /" )#::  G" 8$: " )#:< I"" $$R " 8$*+( $" 6#Z!   "$"%" #*( h)i" $*  "" ;#R*)"   $" #Z     " ?#J0) 10" #:  3" $#***)+" $*  " $*    " >#J  ""/,#"" 7$R%     O"H #:&  !  4/ 5R U " @$"" #: ,R/! -" $:   " .$J# &!" &%5" $*("'#" 0$*!  " 7$J " *!  "" ,#R.Z +[ " 4#J   OE" 8$* @ = " $J * '" *#* @!A" $2 " *$:B - 3", #  *%   5" %$B $#+1"* $1    *  " ,$*  /"( 8$  " 4   %" $*  " $:  ,- #" #$2 " 6$B 3(    $" &$Z   1"* <$     " 3$:67,-" 9@%(#!&" 4$b    " $: *  1" #$2  +"" >$R<9%"%)" $:5 &"" 1$R ") #* " %$:* ) " $J %" 6$*# "!" %$*" $# #"" $R  2  '*"# &$r   " $J8+ JK" 8$*9&6%*"# 0$r(-&  +#" $*" $:    " "$J0@%7" @$B(#$ " $*"431"* $ $   <#3  " 5$B  &E"> /$  *5 <0  $ !#$-  1@% " $*,+" >$B &('& ("! $$j      1 !5 " $J<F9'" %*" ?%2&!%"" %**)" 0%*/0" >%*  " %:" 6%:&1 *+7"0 !% ?T $" $ZV 0#9q"j 9$,)   "      **   " %* " %*$" $Z $ =" <%*(%'&" @%20  i"b $0    /   ( #     #" $R` * r' ])&" 7%b  !" 6%2(= )>" %*-".!" >%*&#%$1"* %.0        ;"4 %=?^ &   l !1)(3", %n(  % <"5 $& 9  " $JF"#" E="6 %+  ? '..1"" %R(4G+ " 7%J  ,"% =%z2-"&<9=:#" " %%: * *% ("! ?%j&! %" " -%: 0/"~ ;%$# $  83 $*'"   61*.+(  30     (,'&&% !" %*Z[*"# %r  (  %" :%*0+/," 8%*  " %J .! !g"` %3 $(      &%     ="6 $ "X &:R  "  #c,"% "%z   3 " =%*&!%" " %J$" %ZPB/   #" 2%:4? 2G@,[U9 " %J    $" 6%Z% ,   7T+!" %*  " %B 0#'("! %j&  )% % " ,%J  DL 9?" ;%28154 " 7&2&5'8" &*  " 6%*!$"#" &*"" %*DC" :%B(#!  " %J00/5". %  " (   #   " &J  " %%:%0(E+" "%*6653" &*="6 %.+&*=  . C7" 8&*! """ &R ()#" !&*-L .E " &*   ("! %j ,   " 2&* >* =) " &J  "!" >&*(' )( 0") "z2LH*9- =-U3", <&   4198101"* %      8S(9 " &J    " 5&*" $&*:!; " &:&# " &*  " ?&2*'1"* && &    ("! &j 6    " :&J  #'" &:H 9+O"H &6  U"N %v 10D7:    !)1  =" 5&* e"^ >&*'0-2-2+ 1, (#;8+1)(  '$#'" &*" &B& 3" &*  "" @&R&! &!" &*   " 0&BF]" 5D)" &*" 7&*L I!" &*  1"* <& " :7""96#" )1 " &J    " &*D DEA" >&2.)'$" 1':"  " &2    " &J :  3" +&: *%$" &Z B  %= " &J(&4 !Q$" &Z(. D 3 ;,"% &z     /1"* ' &  G" 1':LK a` " 'B _"X &&   C" "1  & )!%" '*.-" ':" I"B % F 2  G'   %%  E" 8'*L$K# " 'J   ("! 'j(C"  #3", ?&(#  , '+*"# 'r 'D :/ 3 " 9'*2C$/B%" &2&" 'A " &J&R  7" ':&  y"r '+*+1" #52&>  # "*2A  +" ':..' !" ':  )" /': %!2!" ':)&"" >'2$#!$ " 'J     " '*   E"> $'       /"( ='  (%;8')9"2 5'  #     &$   " ;'J8)" -&" '*'N(O" .'*" 'B   "" ,'R S&I @(," "'*7> :?("! ?'j *, " #'B,$7"" 'R  " 8'*4u$3t# " @'JH " '* " ': " '*t) q, $" ;'Z #  " &*$%}E"> &0V   c !!" '*$" 'Z  $!;" '*-^.]" -'B$ $" 'Z   21 " 'J J# " '*  "" 'R8<5 " '*(@'?9"2 !' C %   ,( +  !" ?'*02/3" ?'2 ;"4 ,' H !  !3 J" k " (B $ #*"# ='r"#*'"&'&   " 2'JH  G" >'*(%)(" 6'*L I!" <'2" !" (:  " (*;0<-"" :'R 0& !("! "'jr  *+)3  " ?(J&! 1"* 5'  &&   1"* ' &  / ,"% 'z    )" @'B  4 " '**4' 5" '* &P!#O3", ' !9 $*0(!(1)" (B,  ' " (J   ,))"" 9(R" '*TS" (:Y$;#" 7(*L"I#" (*   3", (   9 " ?(*  " .(:" (*  " (* $ ! " 'JZ*"; U" (B /B &" !(b.   " (:  + /" (*    " ?(: " #(*h5.u@ 7("! (j%(:%#" (*P D5 K" (*a&d%" 8(*2s 3v" (B  ("! (j  " (* 3", (    3  &" ;(b    " 7(*3$4! " (J  " !(* $" (Z&!" <(2*!%" 2(B ./" !(*& ' " (:    " (:  1"* 1(0     " (J $ #" (* U"N (    '8  * !  ' " (B0-% " "(J   ! )" L(Jp#7! " >(:6 /"( !($   "4%  %_"X (K< 9 $*  &2  >    ("! )j3 *'$,?$" *)Z"/    " @):( " )2  " (*&t#q" <(B  $.!'7"0 (   '   " )*  3", (<H G#kC"< ?)*% 1-&1$"((  #"  " >)2  ,"% (z 4 .' K  " ;)J  #%" ):_ j#" 7)*< =" 8)" " =)J"$0 " `)*hg" )* ["T )&" 1)b   "=*  " (*( X' W" )B  $" !)Z( ,   " )2@ 5  ("! (j$  # / " :)J,- ")%" ?)* " ! " )J " )*o$r%["T >( *RK (!   !F- -* G"@ <*&!& $G:  "" *R8 ,9" ** " :*B$!  " *2 F"? )      "  *B )C&" *b'$   #" 3*B-.N ("! =*j  "" <*R   " >*B   " *J  2) /" *B #:5  " )*J"/ (  /"( 9*9LKot"" *R" $" *Z ;$$ " **)&*%" **  " !**" :**="6 !*( & . " @*"" <** &!' " ;*J6:!#" 7**-D8"I+&" =*b2:"   33,"% *z*  X#6W& # $" *ZR&  " **   $" =*Z0+     " :*J &(  &" "*b  " 4*21629" @*2 . +" **% *!I"B 1* $  #z5 O" 'Y" +: :( )" +* $ #" @+* " +B ; D!" +*   " ++* : 7" +*  " :+*,-" +:1!0*>+*"# +r  &   " +21 2" +*0-("! !+j%$&+" +*5 4O"H ?*46 ' 0<  /a("! ,+j :  9" +:T#=44t<5" !+*1 2! 3", -+.?  $'6 " +*   &" >+bt? :+%/    " +J  * 4+  " +*  &" +b    >)E" +*    " +J/  8)" =+*" +*> .= +"" 8+R H2 " ?+**&+#" ,+*C B " 1+*"(!%" 3+* * )$" <+Z 0/,*)058-)" +**0%/" 3+*8,9)" 2+B.#  9" +24 " +* :9 " @+J&  " !+*+ * 7"0 ,  5. `; 5   "~ +=    6 0(   ,' - -    )" #,2 A": ?+.1&        #+"$ +rF! P#>6>+ A" +*$7,'6'<"5 5+*G6_ @mZ4 k 5b'1 - 0 -" 1+*"&#%U"N :+#$ (%     3($ I7$" ,Z*  " +J " +* 2 /" 1+2$ *+" 2+:"*#" 2+B"%'/"( ,) & & 1  ("! =+j0" $ !" @,B  &  " 8,*.AB.-BA-5". ,%     $" #,*   " +2@"R;#Q" ,B  F#$" ,Z )"& !" 9,*  "" ;,RHO16 9"2 , #     8-# " ;,22516!" 2,:& ,) 9&" 8,b  &    " ,* " ,*  " ?,: 4 !" ,* "  !$" ,Z 0" 1,* $# " >,J $" =,Z (" !,2(  '" ,* " ,*87,"% ,z       " ,*- ,"" ,R    " ,B 74 6+" ?,*,&+%&" ,b  #   '* " :,2   ("! ,j      " 7,2 S*H )" ,2.?"->&" ,b03     " ,2-<($3#" =,B$  &" !,b &  " 0,B ,"% ,z   >+("! 9,j45$ $" #$!A": 0,    " ( , # "  " ) $ *^  *:v&=c,B% !O    .      &3 = /=59" ,*" !,*" ?,* " ,*, R)!Q1"* ,1&   " ?,:  ,- %" ,*    ,"% 3,z&%$ A1" ,:.A 7L'" -,:8X  /K " ,J   " :,*(")" 2,2$ 8! 7" 7,*/F 0GK"D 6,l  '0Q, 'H /20# ,s -hg+5". ,  ZH %'" 3-:, " 7,J   ?" 0,:,   " 8-J    " 1,*$ 0# /" 1,*$*!) " /,J& # !$" <,Z%@.   %($%'" 0-*  "" ,R* & 6S&']" /-*    " =,2 "+/" @-" ?"8 ," r-"=-FX } +i" 2-*l i " 4-*)*('" -*  !" -* """ -R  " --*  ,"% -z&'  ."   " -:  3", -  - $F  ! " -*   W"P !-A"K/  &O1   '.   & #N)^!N  " 6-: ,/C,"% -z  3#5". 4- "     " 7-* %T &S " -JA&# " =-J  "''" -*N!K ,"% ,z #. &  E" @-2&$$" -Z&   E " -J   " -* * )("! -j &(% "<%/;"4 !-        +$" 7-Z 6  M/ " @-*  " 0-2(' " -2#@.$ 5%F"? #-!        6Q9" =,$   :*'*#* )$  $  S$   )    " $ '  % &    !" 4-*!.$ "-#"" -R "" -Rk6PY1"* 0-   "    '5". 1- &4 ,  " -B% &1A": , %   ' ( ( @h =c $" -Z&    " 6-*!Z8"Y7" >-:  " --B   " ?-*$!" 8-225 . /-("! =-j ""1*!" ?-:,, `"Y *-- (./7/(CN@$%*-?% 1"    (,G+D8  c+" ;.2$C"#Da"Z -$       $ (! - +  " 4.*!< $; " ?-* "!" .*"" -R(%!1" @.B" 8.: " 6-: 0 / " -J     " .*" ,4D      6"  2<   3w,fM&  ,%!#   I$1 ' #E %K" ,-2y26UR)(35" ".*7 8 " 1.B&'" ?.* ! f"_ -x1,1 ;\%TI 0  W*      " =.2,& '!" 0.2$   !" @."&" -:b+(;@%-g" <.2-,*+" ?.*"! " .J"  !  " <.2*M */X/ " .J    " ..*zC4wF5/"( .O 1,V\ " 4.2  " +.JF_ %0* &" .b7.() " -.*"","% -.z$  ;2  %!" ?.* " ).: %" 4.2c"\ 9- )I3$ hP$9 2(8#D& )  !! I#!"" .R3$ "A": .        ^) u6 " /.*01" 1.*"!" =.2 " @.B$"+)" .*=>" 7.*8K 9L " .J*   "" 5.R  $ ,' " ?.*"!!&" .*  7"0 9.&u&$JF-i!FT  $ o'" <.*) ( " .J3  **"# .r* + -"" .R:" $;%" ?.20($" :.*" .*F!$6A2'E,"% .z    #" ?.2 *"# .r0& &/ % %" .*   " -.J.1"" /2  " *.*4*3'" ?.* ! ("! ;.j-$* +" .:  " .:> ,'" =. " -.J  " /*3( 6' " =/2;4  " /B   " 9.J !:K/"( .   &  %" .*  " 1.:@> -_&" 3/b/ *5  T"M -0   X    W! 7 " +.JL_.& I\'/#,"% .z   " .J  ">'9 " =/*  " //2T/Q2  " /J5 $" .R +HJDi  $" 0.Z  ,#;" /*'* " 5/* '*$&+!" 8/2'," ?/* " ..*":H;G" 8/2" =/J " ?/*" /*$/#0*"# ,/r'(   K"D .$    88   "7 !  " /* )& *% e"^ /  ,$       &     " /*$ ! " /* ,"% .0(   -) " /J$,B!  " /*9"2 .(   &)!K)" 2/: "%5". )/    5D$A` '" ?/B    " //B:!* '/" ?/2   " /2   " :/J    " /*$i$ %j! " ;/*&!" /*' &! &" 2/b  B4 A" 0/: !)?"8 8., 2    "*  3  " /B2+  " /: +6&*I7 " -/J*+  " ;/*$"!g"` 7/9,   *(   3 &# J &&6% ;',"% /z; 2   /"( /$   ## " :/2  9"2 ,/ $  "'=@ #$ -" /20$L-%%" //:$# 7"0 /$e *- B' 9)$" 8/Z%  * !,"% /z+$#- " /*  " @/: * " /2 9"2 /          " 10J%(" 3/* 5*6+" */**#-" " /*! " " >/B&" " ;/*% $!  " 40J)*C("! ,0j N7)" ;/*  " */*.! 1$  " +/J   " 02&" ?/: " -/*"!! " @/: Z= ("! +0j " 0Z .( ,"% 0z       " 0:(  " <0:> 11"* 700 - %  /. 0 & ./ " ,0*/$.#7"0 0 !   H 2+$" /Z&4% " ;0: (  ("! :0j-  " 10*+ , " /J$0:"" )'" 0*" 0*#&" 0: 2' $" 70Z94   ' K"D ..6(  @@ -  6zY*5y1qM"F /  & #2 "  =)     ("! -0j6E " 02  " 0:%" %" 0*01&" 0b$     " 0:>&) " 80:5 ." 0* & " +0b  " 0*   " 0:":'  " =0:&$   " =0*'* ('$ " 0Z@%,J%    '= "6 .0 ^I  ! !$ " 0Z: 3 # " %02hs%4i " 1*&# " 1:-0<'  " :0    %0    $  # $)   (   )   ) ' " 1*  a "Z 6114:      =7  " 41J98"'4  " 02*.h)33 " ,1** 1 " .1B .0! " =1*&" #!{ "t 0 m$ &  # P!&X ?&0l# 5B'    G 1w5 " 1*    " 1:9. '" " ?1R!$    " ;1: $ # " 1*     " 51*:<=9; "4 81   ,  * ( ! /#  " <1J)   &-!/ "( 1    0 p;, "% 1z4" '    " 61: " " 61R    " ;1*"$% " 1* [ "T +1  &  23 &    " .1*&&%' " 1*  1 "* 1,  1 Q "J 41=,         " 71B/D*% " ,1:.    " 0  2   ,  (     (=Ge=" ' J / #  A ": )04C0"TB7N  --#;/     " 1J      $ " 1Z!( !  " 81B  ",! " ?1:! " 1:"  g "` 1 " 91*' & " .1B"$+# " ;1B    " 01*  ; "4 1 $ (    Y  " ;1* 3$6# " +1*, "% 1z   I4 &  $31# " 12*6`-/Q$ " 31Z " 1 " @1: "M "F 0,  J     %''1 "* :1   5$&<   " ,1: % k "d >1 $$!*) 10 %$  !"  " 31B    S "L %1 4E" "  PH<8  IA r? #  A? "8 71D    !"5  " 61*   " <1J."  " 12    " 1BBWOh& " 2bA "3 ", 71     !'!  " 1*06/ 1 " 1*  " ;22$ #, "% 2z      " 2J ?  <   " =12  $ " 1Z=J !!( "! *1j68# " 822&" " /2B     " 52*  !  " 71* ( '7 "0 1" 4 + *  / %5 ". 1"mB )|#  @ "9 0 V  /s   +a " >2* " ?2: " 3222+ " 2*  " ,0(   $/&  )% .. 2  ) ""' $ +# " 42*( "! )2j:  ) " 2*'( " 2*/00/* "# 0b'$a+ Nc w  " @2J   \ " 2: & ! $ " 11Z4. $  = " 2B"g =$ 8%n+ & " 1b,$,= E ( "! :2j   $   " 2* J0 K-& " /2b(#  4!  " " 62R   * '; " 22*&'  " ,2J   (5") " 32:'"  " ,2:. 7" " >2* " ,22   " 2*M0h- " 2*Z1Y2 , "% ?2z    " 32*  " 22J& " 2* =4 @3   " @2J!!$ " ;2Z"5& ( 1 "* -22F-    $ " 92Z1706$ ( "! 2j     " =2J*+$% %&50! " 2*  " 62: !' " 2:` >U> )!" ?2*$ !$ *!"# 2r2)  !" 2* !" >2*$ #!!" 2*    &!" <2b"/ $# !" 2J    &!" 2b    !" (2*,+a!"Z +1        ",      !" 2:)!" "2*DE(!"! 2j6   !#k!"d 72&       )$6!3   21  !" 2*1 2!" 2*@4?3q!"j 52&%:3          '$"!" 32R(,++ 1!"* :2 >  $ # =!" =2B   !" 2*!" 2* !" 2J     7!" 2:  I!"B 92'       !" @2*  !" &3:,5+4!" 03*(!"! *2j #  "%!" 62: $ &!" (2b: -> e!" <2* %(!" <2** +!" 33B1" (&!" .2b      &!" 02b H !!" ?2B"$g!"` 3  $/ a @(C8,  .*3 Ig!"` 1  , .0+<  #%S     /)O!"H 63"    %   "!" ?2R   @!"9 2*/" $ , " R+/; R !" 3*   !" *3J ,!"% +3zB!  $  ! ="#!" <32  !" 32  !" 3B;> R5,!"% :2z!2  4   %&!" 3b %(8/ !!" 2:&$B/03 '!" ?3:  !" /2J"%*$ !* %#!" .3: %5!". 3 y* 8  !" 3*  *!"# 3r) 0).D !" ;3*'&&%!" 3*   !" )3J&* 1!"* +2:) ,    #!" 3B H  1!" 3*,8-5!" 3:  !" 3*4EJ45FG30!") 3 o!" 232!" >3*(''& !" <3J(  !" 13*( $' !!" 33**)!" 3*Z'&[*'!" 3B+J* W!" 93*&!" <3b !" 3: !" +32$",%+3!", )3      #"!" ;3R    & +*!"# *3r "    !" @3B 8$!" (3Z(  ) C!" *3*!" =3: "#*!" )3: !" 12    ( %"J#   -<.       6 "D   )5  / ''    7&!" '3bBM:^!k7!"0 >3  *-    !" -32,+!" 3:> / !" 32 4 7!" @3" !" ,322"%!$!" 3Z !" &3J  !" :3:-6> +!!" 4* !" 4*!" &3**)!" ?3**(+'!" >4*'$ !" *3B   #!" 32&2 1$!" )3Z  "!" ;4R   "!" 3R**Z   )_1!"* 134 "   -!" :42%" 8! !" &3* ./ !" 4JC(D7!"0 3 8      .?I!" 94*,$+!!" ,42   !" 33:P"FU=(!"! <3j  !" =4J  "1%!" !4*  !" ?4*&%%&!" /42 #!" 4*+",# 1!"* 3#"     !" -4*&%(!"! 4j1  6 !" 4*!, +!" ?42$! ! !" )42.>+=/!"( 4   2 ! !" ;4:  ! 7""0 4B>  $9   g""` 2Lo  BN"Nw2   !   :!  '  !  %-!"" 03$  !  !3V%*  +( ,% ) $ 5  2- 0        !"" :4*2/"" @4" #B$"" .4Z"(21( #"" 4*  "" /4*  "" ,4* (""! ,4j    % !"" =42   "" 3>S"   0     +: J28")<kM\$g C""< <4 A  B  %6 5   %;""4 +4('  *( %$"" ,4*  (""! :4j " '"" 42! "" 64* "" 4* "" 4*   &"" ?4b(%"" ! ! "" 74  1.& ! (!   0, "  2 *    !#"" ?42  "" 245"'#5" # +'&  &  &     M, !E%  # V  % (""! 4j   !"" 4* 9""2 '4"      -C"" +4* "" +4: $"" 4Z "" '4:>dm$"" ;4Z- ( !"" 84* "" -4J"" :4**)"" ;4:   *""# 4r   .-  """ &5R   3$"" /4Z@1 "7, %"" 4: 6)?"" =4*/&0%"" 4:4o"!<07!7""0 4 4>  H4 ?  [*%"" <42#&"" +52) &""" 54R  !7"" *5B "# "" ?52  "" 45*   "" 5*+",# "" *5*$#"" 52F1 1""* 44     "" 45:   :% "" 5*"" +5:$"!  """ '4R  * ) '"" ?5B%""" >5:   "" 5*0/"" "5B%& "" 5*  "" <5B!! "" 5J63 *""# =5r5     K""D 048&"! '"$,      !A"" ;5*  "" /5224"" 5: %4 +"" <5*"" 45*&%"" +5*""" 35* ":#9/""( ,5    "" -5:>-3$!#"" $5:"C<"bk;E""> 57&^),[(.    # H:)   *""# 5r MXZ_ "" 95:  """ 65R "" *5B "!  "" 5B #/""( 4 6 &M  -!1""* ;5 ? "     &"" ,5b&'""" *5: (%"" &52,   "" <52 "" <5:  "" '5B* 4C)""" >5R / """ 5B   $"" 85Z  & -"" 35*2231""" &5R  *1+/""( $4'f"z!6/;C  A"" 45*"87"" 5*_""X ;5 ,  .*   "         """ ;5R     "" .5JNP ))'%I""B 75"   2 1<-# %$   _""X =40 %&(->@( /    '    '  '/""( 5 % (& &(B 0E##"" ,5: "" 75B "" =5: %2a""Z &50 C4  ,   ( ) <, )   1"" 15* .H'K,""% 5z       "" 45*."+=""6 5 2     1""* .4 Hh ")2!    #)-"" 55B$  :+/"" 35:  "" 52Z *C' "" 6B"" )5:" "+""" -5R% &%"" ;5*#&"" 5  - !# # @  0   -           ,         %       &(  %&                    "           -""& 74z  hO8" %A +Q(""! 6j !   "   "" ,5* "" 46:&  "" 76*   "" =6J'$  (""! 6j3 4! /#"( (5$     %!#" 648   (  -  (' (     6  +  4   #/  #   1#" ?6*(;%>#" 6*  ! #" 5:2$ #" 84  . &+ *'2"&    !  "   *  !   '  #  ', 0!15$#" :5B)$0 ##" 66B  #" 6" #" 26:,  1(#"! <5j!$$#" 36*(%(#"! +5j "  !(#"! 6jST ( #* P)  '#" >6:$ '"#" @6R $#" 6*HEI#"B 85"  "!  /&#! #" +6J(  #" 6   L% 3 #M      4p          A"    #" 96: !K#"D 4& N$8*   '_77*#"# =6r  "   #" -6**1)4&#" *6b .  #" 66B  / +#" ,6:   #" "6:(k  ;#" 5B * )  #" ;6J"##" 6*   #" 36*& ##" 62Q$R! #" 562$ # &#" <6b")"!& =)$#" 66Z $ !  #" 36* "#" 6R 0 $  ,#"% 6z    .;#"4 5 H. %   / #" $6J=B#" ,6*c#"\ /5$%! *'   ,    ' !&;#"4 86<)    !  #" 6* #" .6*#" 46:*" )#" :6:!(#" 6B)DR' % #" +6*$+%, #" ;6J%$   #" 6*('O#"H <6  "        !" 9#"2 '6      2"  A-  #" 6J -, .1#" 6*   #" 6J/  1#" 76*0 / (#"! (6j     - #" ?6J"1   #" 16*& # #" ;6B34 #" 6B   J#"C 5D H" ( &% ? 3'"#" 76R( ' #" <6*"#" $6R    !  #" 6BP! W(  $#" ,6Z  ! #" 6J  #" 46*"!(#"! 26j   $"!  +&#" +6b,.   #" *6B      #" *6: #" 56*"*)#" 62?6z }63{#" ;6:'  " #" 6J  $R5#MW#"P 66((    '        ) # )3"#" 16R$#" -6B&1#" -7: #" 7*#" )7* =#"6 /6$"  $+ =?#" 7*#" (6B  *+%#" (72  #" (7*#" 7*& % W#"P 36$ 6       # .% $ M#"F 26   ,H   #%    #" !7*W.X-"#" 6R    0% #" (7:  "#" 97R  #" ?72"3 &(#"! 17j &#" )7b7     &!$#" 6Z&   < = #" ;7B&+  "" #" 72&"!,#"% 7z  $ X#"Q 5 `+"*357,*\    5CCI #" 6J$L  ?#" ,7*"!#" 47*  7#"0 <6#  *     #" =7*!&$#9#"2 6* "       #" 6J . A#" 7*" !  #" 37J& #73#", 7* :j@%-e%  + ,#"% 7rC "$ %$#" 7ZI"$ %#" ?7:   #" 7*" ! #" 17*  a#"Z 7#  3&S,K\4   ,"3%'8 +(AV ##" 7*%L &M#" 47B   #" <72#" )7: 8*   $#" /7Z       ;*'#" '7:#" <72$ %$" 7:, /1$$" ,7Z    $" (72 $" 7*+../$" 27*0/i$"b -7 *!$ /;  *2 ?4 <)  3$ 5      $" 7J   $" :72($"! 57j:  ( A$" 17*  *$"# (7r    $" -7:&# #"$$" 87Z  $" .72&*%# $" 57J"># 5$" *7*0+$*-*%'$" 7*$" 7: 4" ' $" ?7:!   %$" )7:-& *$"# 5j(,b#< 2t/3s7"+a$" 7Br0 -! $" :7*$" 7*,6+5$" 7:  **!$$" ,7Z   "5$". 7) 2Y5 EH $"} 5V' BD *b#G  6      >%= $" -72%$" -7B $" +7*  $" 7B @  !  $" 8*% ($" <7:)  &5*$"# 47r  "! &$" 87b*/  &$" 67:  $" :8B   &$" 8b #  . 0B$$" (7Z 4$!2    $" /8:(! -( $" )7*43"10$" 8B lK kL $" ;8*$" =8*#  "$" 47R*    1$"* 27    - $" !8*W2X/*$"# %7r#&'"0L)  )$" )8*!"$" #8*,),$"% 7z@" $ !$" 8:   $" 58: ! !$" 8:%0  +$" =6( 1 *      &)$)>       :K7  .A" "1 -   5% !$" 8*   &   &    *,       ,%* m0 !c($"! =8j8& $" =8*"!$$" <8Z $  #"$" %8R#,*+$,$"% 8z@Y       $" :82 $" 382 $" 18:   $" 8*8C ;J  $" 8J" #  $" 8*# $ $"x 172      $  '   ()"        (# %K   $" 8J   $" 08* "#!$" 8* 0 /$" :8* " $!%$" )8* $" 8J'2 7  $" '8J !$" 58:"&,34')*$"# 8r   ,    '$" '8*&$8'!7E$"> 8' 3  %V < 7$" 8B&T %'$" <8*& %$" 68B: * %$$" 18Z     Y$"R 97      %' !#$" -8* $" 8*QP $" %8*!"$" 8*- ."$" 58R* 2  $" 8J    $" 8* 0 -+$"$ 8r:$ ( $*  3{$"t (7(!      # !#-) #%$" '8B  $" (8* "$" '8R  $" 28:2%" 8* %" =8J*"%" 98B  %" ,8: @$3  %" 9J%" 08:*  %" 92  M%"F -86) ""4      3%", %8"3    0$) %" 08:2 !%" 9*n}ev =%"6 8$)  4 ev   !   %" 9J  %" 9* 0 -$%" 38Z& '%" ;8: .  %" 68:    !$%" 9Z0 23  (%"! 09j   -$ %" )9*$ #C%"< 28$+   (     &!!%" 9*)"*!%" !9*&S.%T-%" /881 *   "%  <->V(    #!"4%          %" /9* 3%", 78\# dc G  (%"! 48j&*<     %" 69*  %" 09*  #%" 9Bb9d'J {%"t 6" &" %   b-  j1  X#  !30*$ *\a27/]'[ "%" ,9R,-  !" %" 9B    e%"^ *8 ,:%/    ")1  "-0:=SXKP  (%"! '9j*   1- %" 9* . -$%" $9Z 2, ''%" 09* " !%" (92# $%" :8Z(, #%" 9*  %" /9*  A%": )9        %" /9:%" 09*  %" ;9B  (%"! 58j2   1%" 9* . -%" %9* ",!)%" ,9*$#%%" 8Z^'le.'W !  #G%" >9* & #%" 392&2%1%" /9B%" 19* %" 59:$ #)&%" )9b  !%!%" 49*)$*%;%"4 (8!$ ( "*!    %" 9: 0*%$%" $9Z!($(($;1"%" 9R4   ' E%" 59*-&.%N%"G 8 ,0H ))8;   ~5  $  Vta%" ;9B%" '92:=%" 92 !. "/y%"r 09  $ , J1    !      ,    !  3%", 9Y # # $d" &#d:K'"%" (9R   Q%"J %96'   4B#     3(%" 9: (05I%" 69B$( 9 %" <9J.?  )H+#%" 974!    *     (&   /'%'$   2& &  !   !  .#6 & $0/!%        ! 3 #>   /  1  !   (#    /=  &/C1%"* 9 2       %" 59J" (   %%" &9*"!%" 09: ' %" 982 %" 9*&S.%T-(%"! 3:j $*/ %" 09*   ,%"% :z ' .::+A%": 29  9*#, +   * %" 79* "8 !7%" &9*  %" *9*`g" ah%" 9::(% %" .9B*/ND !(1++' %" 9J1 . ,K7%"0 29"'     %" 19J ,(- /%" +:*"%" 6:R&  %" 59*(8'7%" =:* . /%" &9: " -%"& 9rC  (s" 9" < AC% 1%"* /:6+ & "%" ;:R    ;%"4 )9 #  !$     {%"t :9     &@ ,       $   ! !+9%"2 ,94@-2 %" 4:2  %" 3:B&   %  %" 0:J  %" :*($'#0%") *:z&'!& ?D 16%" :2"!: *5*%"# (:r   ,%"% >:z     & !,%"% 8:z  &%" ":b      %" $::  (%"! &:j  &#  %" 1:* .- %" &:J  #%" 9R'L&  u5%" :* , "-%" 3:*% & W%"P :4% (+  1$.!  $("+ 0#3s20l  ahit/+%" /:2$ % %" $:* %" ::)$  '(%"! 2:j , $%" .:Z$ T%"M 9  *   :0l 8z>GJ E   - &" ;:*"!&" /::$# ?&"8 0: & &   &     5&" 0::! (&"! -:j   &" :2 <;5&". -:JI,(  ".   ' ,&"% ):z   &" :*  &" &:*&" 6:*2.1+&" 3::&" ::**)&" =::F(  _5(&"! (:j  &" 5:**)&" ,:*(&"! :j     $&" 6:Z   :! #&" 2::$'  &" :JU  " #f  (&"! %:j %$&" ):*  &"| $9  &      !,     '  &" $::"# &" :JO4P# &" *9 NV&    )    "    !  !  53&" &::  &" 5:B , 07 %&" :*&" "::) 2"%89&" $::  &" /:2,%&" -:: '$*&"# #:r  *"! &" 1:J 3"&" 4:B$   ##&" .:2   &" 3:**-&" 3:B" @# C&" 1:*  ! "&" :R &&" 0:b   D!/2!E&" 2;*&" :2   '(&"! 79ZhWeVRC5.)/&" :*x*w)&" 2:*!:("='O&"H (:  &   '  ,      31&"* &:  $&" :Z&G * ( 1 &" ;:JNQ*& '%&" +:: #&&" ;* # " &" 7:J.4 # +3*&"# $;r!$  &" ;: 4 %  &" -;2"! ""&" 0;R  &" ;*4c:3d9&" );:! +8#&" 1;2"#&" 6;256&" ,;2 &" 3;B   &" 2;:F2 !%&" :*"JM&" 9;2  &" *;J ( "' &" +;* "!!&" 6;:'&>)&" &;* %&&" ;"  1&"* %:    ",  )&" ;* ! &" ;:J5&" 6:*&P%Q&&" %;b" "%3&", .:B/ 10( 4 =a&&" 0:b  ,0/-' &" 5;J ,  )&" 2;*  "  !$&" -;Z    '"#)/&"( );'"& !  4&"- ;      &" /;J" ,+ #&&" (;b( "   +)&" 5;B" ./ %a&"Z *: 2   && +&  !   #  "&" ';R( &"<-";; &" ;J&[   & /&"( :z36y:;.,7<'$ws&" .;*$&2%#1&" 2;*  &" 1;*( ") &" 7;:! . ',&"% ;z   % (Z *\M")[&" @;*  Q&"J :   28w.  :(Gj   #:&"3 :bc6' s  "%##!&" ;*6?,*1@/)&" &;:%( )&" 3;*,&"% 3;z  ,(  #5I&"B ;      )=&" 4;*8493&" );*  &" %;* M&"F 7:< &8D- )  '!&K '$&" ;ZL&" ,;2,/+0 7&"0 0; #+F2*5 #  % $&" ? "+'  '" ;2`Z_Y'" *<*&"%!&'" (<*1"2#'" 3<24 ,!  +"'" 7<*'" ) P G5'". %< $     "'" 7 6= )  + $$25'" 0=*  '" ==22  7'" 8=B$" #&'" (=b  *'  '" %=*"'%&;'"4 '=       -'" -=*#&'" %=: &'" ,=*;'"4 =e  * :/A NE='"6 -<")82 &(  S'"L )<      KR# &'" -=b&'" =b '" 4=:$- '" .=2# $'" /=Z "67  #5 '" =J Z4 Y3$'" #=Z.&,    '" (=J *() !,'"% %=z $ !$'" %=Z  '" 1=**'*'"# 2=r,"  "'" 3=R  '" *=B   '" 4=2'"$'" '=*",!-"'" 3=R   $ ?'"8 /="     "!% !'" !=2!." ('"! =j` >  "% /% ,'"% !=z "% #  !'" =B|M!+<(}7(" $=2! $!(" 5=B2$% (" $=:   (" %=*$#U("N =  LD$        (" <=*(" 1=*( ) &(" ==b$(  )(" !=*"!(" -=2 !(" #=2+,?("8 = 258;bi_j ] WQ(" >* =  @(" 1=*  (" *=: (" ==:$    ,("% <=z<" '+ (" @=*   (" >*  (" >* % & (" =J b6 _7(" =:27 =D##(" ?=*2R'_(("! >>j  (" .=*(%(" >*  (" =>:"(" %=*(" %=B"/ /B%(" ->*&(" =b &  (" #>*-. .3&(" (=b 46#1("* "=' ! "'L#   (" +>*  "(" *>R (" !>2 #(" 3>2! $ (" (>*(" <>*&#5(". ;=& (#$ !  -(" #>*+$,# &(" &>b0  %+(" !>27$@#"(" >R  (" +>*4437(" .>** )  (" $>J!F6  %(" 9>:8-'(" >*&''((" =:49JJ16MC(" >*=(@% "(" >R>C84& '!',3/5(". ->  *   -(" #>*(" &>*( ) Y("R =>;,. 2 ?  %(" 3>*" #(" >*. F- C (" >JW9:B#\Q!(" 1>    =&4 ""  /, 2*   #  6/"   "   1q("j <`m!0*9Dfq:.-2 $$]  4 6  LR +4G? IC*/#'.?=(("! .>j>++   "(" />R, "  7("0 = "!S 3  K(" !>:   $(" +>Z+)(" +=    !  #,&-    " ,  "6  !""'( (" +>2 $* !+(" >B 7 &(" &>b  #(" ;>*(  % (" =>B0  ! (" >:+.(" $>* #6 (3(" *>*$#(" l>*  (" 8>* , +(" #>* ( '(" $>* !" ! (" ">*"  (" !>*(" ->* (" 1>B   (" !>*(" />* (" 0>J$ . - (" >*%4 &3(" %>*8(7)G("@ =03:0 "0. #*OG A9(" <>*7("0 ->   & ' (" :>*C("< '> # "18 %  $(" >Z$=# +L (" ,>*  (" =>J #5(". 4> # a("Z 8>"" !$ 4    .T    +  !! (" ?>J .) !(" >*"(" +>RB+( '   c("\ 7=." ! (6&!$ @%#"  !" '#%%1("* 8>   (" 9>:   (" 8>2"   !(" &>*#"{("t 0>*   .&D%  !  -**  +" 9 (" !>J   $(" <>Z$  ( 7W("P :?   = <      #  #;("4 "?   B   (" 6>2 (" ">B . !  (" ;>2."+ E("> >ME J - 8 5` 5!GP- (" >JH'$ #& %*)%*("# 1>r    (" ,?*()  (" 1>J /0 "+ #(" &?*(" $?*!,"+,("% %?z%    &!(" >:0. !(" ?*G2H1(" @?2( (" /?2.$ /)(" 9?:   O)"H (?$-   %#   .*%*+#)" @?"$)" %?Z-*)" >*"9`:!:_9)" .?2.*/ Q)"J ;>       ) *     )" ?B/& ( ")" >R b8 +5/)"( 0?    )" +?2%/$)" ?j:'     )" =?*, -  )" ?*$"#! )" /?J.&w)"p 6?8# <  ) H#  $ %*"7' "#!  )" 0?: M)"F )>   *: $  !#&  &)" ??b4$  %M)"F ,?"      & (M( 9A)": ?    )" $?*)*(+)" :?2 ")" .?R ((+)" =?*,)  )" &?J' * *)" %?: * )" ;?:    )" 1?J     )" ?J$'$ %*QK3)", 1?# $)" =?Z  )" 0?* )" .?J   )" %?*12  )" %?J    )" 3?   !9' & . .(("" ! )%#   6 !& , " !   '  & %  &C)"< 9?:3.)# /  " OH)" 7?* )" >?24 ) )" 1?*)" ?* 34$)" ;?Z*   # #)" 3?*  /)"( 0?     ()"! /?j)$    $)" %?Z  & )" ?2 )" ?*:a8"9b7! )" 1?J  )" %?*   )" 7?:* "7)" 1?B  )" 9?* 9)"2 !? *)  % "  )" ?*  )" ?* d$ c#)" ?*RK8OJ9)" ?* " 7)"0 *( $  %)" ;?B(  $ # #)" 1?*$)" ?@Z  )" 8@*  $)" 6?Z*6    )" (?2.+&((%")" ?R03NH/4 &)" =?b &  !)" !?** ))" 1@*I)"B ?          ()"! .?j"$!- )" :@2    ")" :?R   )" 7?"  !*   8( #) 2         # '   )" @*:c8$9b7!)" !@* )" @*  )" %@*%$)" @@" )" 1@2,0)" .@B"# )" &? 05 72         D>" '# DDGG)0$)\\    /)"( @Bs6 0("77#n>?`)+C)" 8@:& )" 0@J /)"( @Q 5 2RK P ")" >?R0 " %33)", &?"$*%))" @:!"))" *@2H% E$ )" -@B$* A)": 1@       )" %@J  -)" @2")" ;@R0   /)"( 0?    (   )" >@J   )" "@:!6,! )" =@J# ,  )" = L    0*  4.6     !    ($"$     7  D!   =113 Y nTb )" @2/t& 7A")" ,@R $"#) )" @ M)"F ?#!XJ   "/91 A1 )" $@J   (!)" %@2)" :@* ,'1)"* 9@ !$*  /)" =@)" :@"   ")" &@! ()"! @jH? 9)" ?@"7)"0 7@(,&%& #K&   *" .@"*" @: *" @@2(3*" 8@*  *" ;@B   *" !@*$/5*". !@      ?!*" @ *" @b *" >@*" 9@*" 2@  *" @*" @ 3*", $@5( &(U) !* *" @: !:*" @ *" @*" 9@*'*" @*K, &x*"q .@  !!0  *$   9     A*": ,?>' !" C   #7*" #@ *" &@:%   *" @*" @:4U8 6 1 *" 0@"  *" @$*" =@*"~ =^X0.2. 0.&$]/-2, YW      + MG;*"4 (@ !,)     %'(N(>*" 4?  ,& $# "2. ( #:)  ) 5'#"#*%  )&#< " "*7M+;MP>) '  (B  , " C  .   y     b*"[ @$'$   0,4     !"%xf:*"3 =@M.( *" 1@&!"*" 2? #        E ,\  0 (   #*(+'%_ -/*" @ V&  Db$": & 2 # H <W0   B $-  .$ $ ' + I 1  ! $ D(X*&   "K @ $J  *" +@2. 8$ *" @"( x landuse_overlay" } >&;)/]31q+q;Q=u%j  @ 7 ! "# -7  F ,  8* H    ^! 0#$&  lL T,0 *" }'b*#[^1BE$#) " ! *V0]D ".%  $ .(H#^('L 2$  @ ,$28 H `% <;  @ *4 4O6*36m=w U% /)')r]7, BW! )wG")S <- # $!M"1"+ CmS] { C? +I/*F3<L9 !+  C"'E%/7#$2C- '' !1g +  " ,+S1"83nN5!6=%! &(1&".%(#4&07C3%G2IR_G> 1/)$3S7-D5<4o4>F>>U![-3^\g@aOX{<$[ =^7T&Zg^m4!= gu/b6P_~ b zIF.d\ `Lclass" wetland( xf tunnel"  "FFJF" *MC1;classoneway" motorway" ( x road" ,B"6 >6        '5") !j9=::m0b!ae,9;t"h : l` +  G l"` =      C   "  Ip"  hB" 9 > " #"0*P1'Q\ "P 93%-    B&y*uoq(W+   "n9 "- 9 .      4 "( @ZDOr #!  " .: & *" .L7  "" !B,*<',;+);*+<" .F" . " - :"" B  " *,"$*$ 6"  fB"  A^" & " %B8*" &b ."0"#/#!/" ' " ':"J7"+ '       " ! A"   "  4 "  !"  ""  '#" " F!"$" B    %" ,.4&"( P* * , 6.,'" ,jU  #!  L,(h  .("" V,r   +7KW $."4)"( @RIIQM%'395CA "!r(*" x,@+" # z," " ?-" r/<.."" ,r  .)+/" \+"$"  0" 1 1" 1 (2" 1 3" ?""7/[O4" 0 >5" "- 6" $NZ7" "- k8" ++ 9" 3 :" ;68X(*;" 1  <" 2.(-<hN(=" :Z V")< ("N~+ T ,>" = !,?" >2*+ %@" /(d1qA" >" &+B" 3 LC" = c[D" ( $E" +" FF" 1 LG" 2 H" 1 I" + ;4J" 1 K" 0 PL"  @M" 9?N" 0O" 3 P" * &Q" 3 PR" ( $(S" R  T" !( KU" !(( V" !)* b 7$#@tW" *2 aA/L : ,X" &b@B HPH& l2T0Y" !$ UZ" $ [" ) \" !" : @R]"  )"^" !B6 2 6P ":@!_" ) :# D8- e? `" Am|*a" 0b:<B* Bv (B,4b" >[[c" ?"o ]WC ?d" G Ce" G7*f" y8  : ?k,!%g" 8 h" Y5+i" < j" >8k" -%":"J4H$Rl" 5("#$*g?3m"' !j!* 5i QO?' )!J'R D DJ n" 2 =u!m\5-o"  Mp" 2>F\l4D *Fq" / /or" " ]%os" 3< {t" 4;"WAC1 u" 2=2V{oNV'( &v" ? Ow" A "#x" > 'y" ;JZ>03I?g^ f/8z"  {" =5%O[-/|"# 2r6 pt:!"W IEC m!_,mk3:}". /.s/  %t"$ -:!~" " @A:!" 8 4o" ,5=O1S" //Q3 9>" .4Mg/=I" .-"RB2L" ,/*DJLV(\" 6 +)" +$ E5" * p" 8 S" . RM" 9#7w" - js" +K," +$ K" 4/3" * 6^$" 0 "kk%##1?!" /!"a3}Qa'"" 6:%=W =M:?L\" 6 ." 1 "qEmc!" 0:)/%%M" ;*Ccq["" #$>q8" 4 Z" 9#"  mI" 1 E" /vX" >'>" 44P" A  " 7A*6_Hqvh :*" C'" 6="E 'B" 6; ,z" ,$"akQ" 1 Y" 5K7O" % Q " 1""EUF" -QIy[1"$ /b+5%7 Q+_ ob/hQ$" #):"`o=Y K>&" 1BN ch(]P6u&Ka" "":!L%""  HH"  p" (. 4"  " &= cj" '=B&" %$~" $ =k" `+gS" #$7E-" "*qcT3 i " "*T ]" "/2 * 0FlhR " 2;>6 `P#" ,)2= #2Sy#"" :$H*6 )I";&" :={G7gOM-" 8ZT"'0; mI5.3ZR "  0 "  ;"  <"  5" l+"  5 " X!"  :'KYAg39%" BR<[ 579Mo6YN"  0" , Z" FM%" (<2-. !<3 Q!A1 " 2[n+l l)8" !* "H0"# 'rGS#-UI ygOU 13"" /*of)CQ" =" 8 " , " ,)$" 2WI;yR" %yg3 B" *&," F " @ " }5 $ '" *2:s^9%" :-pAH /I" %(1"  " ;(u"8"+ - 1;&& "& 0 *8"1 ;9" +hP%" %Bm7?U+,,& >"1 ?rI?==q]eeq%Us{" 6"  "  P" /"I YT)" 6JC?" 1 " " /+c9" $"  B*-#n |Nj"  9&@"3 #, Bf 6"86 f#,J>!6?Ba2/6X\42HLj@"  u" =;?"  T"  H" B "  29a)+Oe3."! "j&F4J', ."`Lh<*/6E2u/0=, +" !:" $(."! b'%M's/A)=_G3'hO%" J-;SacQK  " ;*lB"Xn" 5@.'" 72 L\" 3&@~!" ;3:@6>8rNf>6 `F($#" 7/*W-Q7 " <1"ZBl" ;(t " 9**Ga =@9~7"" 9("X" 9# " 9%" 6# " ? "" 5! " 0% " 8 " 6 Mw" 4pwHY"" 302? Y!)" 1%:9M1#'" 25 3'" +*-I%CIGm[_M" (n,n" ." =?K#<%" )Br'!56[K 7"* * >XV P *^`@T,>>2 *R" * /"" )b!W kCGaa2&W8e:i%" 120 " " !)" 0'& " ) #" B% ,=*E@QJKVU5" "." 5 #" . $"  2V0R4<"   " 1 #1" }b " e " /A " @2 " >3JK" @.."! @bK,m\<>2"\-H V hX" #9= " }9D'" R?;$E4ql;H5F+D-R%" L|#r-" JYlRf%+ /," 92JVJP0C`4q %m" 411"$ 9JA7[1A" 1 #" ;1B 8pb\" @ :U" ="j~2E" @  " > 6-," 9R' 3$<U +@<$;*" ;Z ?_}a O1g0" < u"" 72  A)Q" H#   B " L^" H6X" UEKW*" ZFF$pqXaPeV]\CJAZCz" +=!1'"  BR0M,(<)" J<)p't+V > " 2 (\," 'RN2V":.PB(>(4"" %*(Q/m5"( jB N>RT:/b'(" ,JVm CI9g!#']1"$ 3r)]-o- 19& 7-!7/!@BN"A 4L%X1 Q IK9` `J!Q4 D1xWcV5 u/."!  Z-!'  i3s33'G" @1"; I)Y ["N -$Fw>MzfDOL*g8D2$<+1@74"' *@b uuL 6,%-F-" <-BaE =A" :%" *@1 )" 9B>IPk%0& " *A !" <-2.*XRHBzpJF8"+ uFvuJVA8=L41J=@1$=q2 " *%/Qq];{!" <2:  >` T "G *&" (526w<" }#@L)" @4JIPgr$mY1 f" @"Ou1a )"  hH" 7 (" 7:O}3](" AByum7Ke -]]" A(#C)" @  72 "  )B"5 A:jRMtM,*yK 4,7 %:$c$" :2,nNP(R*" +#e-%" }8Bl&&I 9*;ba)" "4JC+%//Kq/Q3Y;3+" &&RK1.{On@4]PU"H * s .>(Y8 [i's] KS =-9%{__"R $$,XpF&fZf28xhz&Jh"\8J6$ ( P,'" 9B|P*$bPhPhn&" A*RH"; <-IbY>L@s,m(X ;:'"Obk|y-8" %6"/!q?W/\"O %6^/@[P'k} Qh?> ( `6~X*Y_!m6") 9       " )>"FL*!" @)2M.9:Yd"#:" >=6/Z1#" >*9xFG"  zJ' " REA~K~i|OFc@Q 5C% " B(W"!f3\?\Q~NzB "5  3) ))-& N4 .@@ 2)+' " ;:,\PP "C ;$"*      !#$:0@ " A# /$ " B|l Jd>V*F  "9  "   -'    #3!  $ " B#  w$_y_K" " *:*dtD%ZCT " 0BB3 "& b SQf J- " " .zjq " &(*]! " 1*t(wd  " 2""& " A $ " #1:}Y6y4q@c4 "' 2b!7}6B6;W< "/ ($rD\}ZERMNefA&^  " 2H. "! -ZLSDQF_@qA ;? d  " +S.Um " " 2*D, >  " ,*WJ8>;D9! " 2*B*}(0 . "! #2Z3S  O&[4q)z " ($ +J1 "$ )!Z6ZD9dQDWDiT8?" " 3* _ ?#? " 3"I , " )bE)'+%;?eC"Q,G*%X)N1 " 3]\ "O ($F^},3>I 05'v S* )  !* " #3J7 waQdN$SF "9 3*N0,OOUx1 "$ '&Z1<L`x+s " 3 " 3" w " 3*,gguclassoneway" mini_roundabout" street_limited" " path" driveway" service" street" " main" " motorway" minor_rail" major_rail( x bridge" . " (% *" ) *!" #5 s7" 4 " >= B" ($ %"  1 " '$ ' " ) ; " ($ $ " + 4  " ^, " !: 7classonewaylayer" path" " main" " street" major_rail" minor_rail( x admin( x country_label_line( x country_label( x marine_label( x state_label( x place_label" 2ldirnamename_dename_enname_esname_fr scaleranktype" " Yaoundé" Jaunde" Yaounde" Yaundé" " city( xy water_label " <areanamename_dename_enname_esname_fr" W@" Lac Municipal( x area_label" " +" -      " $      " 7+ "  " '"  " J " J " ' " L@ " 8'" L     "  !"""""" ,#$%%%%%" N&'''''" A=($)))))" AG*+++++" @E,$-----" ./////" 99011111"  233333" 455555" /677777" l(899999" ?G:$;;;;;" <=====" >?????" &@AAAAA" +9 BCCCCC" !DEEEEE" "FGGGGG" 5N#HIIIII" $JKKKKK" %LMMMMM" G&NOOOOO" 'PQQQQQ" 7.(RSSSSS" )TUUUUU"  *VWWWWW"  +XYYYYY" /6,Z[[[[[" :.-\]]]]]" =.^_`````"  /abbbbb" H0cddddd" 881efffff" 32g$hhhhh" 63ijjjjj" 4klmmmmm" . 5nooooo" CJ6pqqqqq"  7rlsssss" #areaclassnamename_dename_enname_esname_fr" `V @" school"( &École Nationale Supérieure de Police" @" hospital" Hopital Central de Yaoundé" `O@" park" Bois Saint-Anastasie" @" Collège de la Retraite" @" Hôpital de la Caisse" @" Lycée de Nkol-Eton"  @" Lycée d'Elig-Essono" @@"" Hôpital Protestant de Djoungolo" `@" Écoles Publiques Mfandena II" jo@" École Publique Anglophone" "@"7 5École d'Infirmiers et Techniciens Médico-Sanitaires" @#@" Lycée d'Anguissa" @" Groupe Scolaire de Djoungolo" lV@" Lycée Bilingue d'Application" )@" École EPC Djoungolo" Z@" École du Camp Bone" @@@" pitch"! Stade Omnisports Ahmadou Ahidjo" r@"- +Our Lady of Victory Catholic Primary School" К@" Stade Malien" Ҹ@" Collège la Mefou" /@" Stade Camp Nlongkak" @" École Primaire Catholique" @" École de Nlongkak" "!@" Lycée Fustel de Coulange" `M@"/ -Écoles Publiques et Etoa-Maki Groupe I et II" @" ESEDA" `@"' %Écoles Publiques de Nkolndongo Mbida" Yر@" Tennis Club de Yaoundé" ?@"& $Collège Charles et Thèrése Mbakok" wk@" Jardin Comunal" 0@" CETI Notre-Dame" @@"# !Saint Vicent Pallotti de NLONGKAK"  @" École Maternelle Bilingue EPC" ^@" Ecole Charles Lwuanga"  pv@"- +École Primarie et Maternelle les Cherubins" 0@" Collège Adventiste" |}@" Collège Montesquieu" @y@"* (École Primaire et Maternelle Catholique" Ѣ@" École Maternell d´ESSOS" `x@"# !Centre de la Mère et de l'Enfant"  =@" École Maternelle Publique" ȉ@" Institut Matamfen" `@" Institut Samba" R@" Collége Privé Larousse" @" Clinique de La Cathédrale" +@" wood" Mango Trees with fruitbats" ~J@" École Publique du Centre" `@" École Maternelle" 76@"! École Maternelle Parc Repiquet"  Ž@" Pablo Escobar Stadium" @F@" Jardin Publique"  b@" cemetery" Cimetiere" @" La Petite Severine" s@" Collège Protestant Jhonson" `f@" Cimetière( x rail_station_label" #-" #-classgroupnamename_dename_enname_esname_frnetwork" rail" name" Yaoundé" network( x airport_label( x road_label1" B|l Jd>V*(" 0BB+ " O"Ku9o "  "FFJF " *MC1;/      " *:*dtD%ZCTE"9  "   -'    #3!  I "/ (W"!f3\?\Q~NT,w 9P  "6 A=MEA~K~i|OFc@Q 5C1 " B#  w$_y_KO "C ;$"*      !#$:0@6 " ;B,\P. " G* /M"7 FA@ #<4D"8N!. HES'-')#)K"5  3) ))-& N4 .@@ 2)+@"& b SQf J- "2 !" E:+2/i#i $"#$$$$$ !"  #"%&&&&& !"  e;'())))) !"! IJ[%;go{3gi4"*+++++ !" M:7?  ,',----- !" *%/Qq];{/".///// !" /*of)CQ("011111 !" =$"233333 !" 8 0'455555 !" >*9xFG$"677777 !" , ,"899999 !" N2 $5T#2-0<":;;;;; !"" OR+!-+i[5K)Wg#"<===== !" F ?>????? !"% HZC}K]EMg0 ?, "@AAAAA !" @**/X/<@TM!BCCCCC !"3 y8)'2k,!%1}kqU[ R4"DEEEEE !" Y5:#UaG)4#"FGGGGG !" *2:s^92$"H&&&&& !" :-pAH /I$%'IJJJJJ !" 'A *&'KLLLLL !" &C"D%R)$(''MLLLLL !" *@1E$1("NOOOOO !" ;(*u*aE)"PQQQQQ !"+ - 1;&& "& 0 *8"1 ;9)*"RSSSSS !" O"1,E6GK+"TUUUUU !"1 ?rI?==q]eeq%Us{(,"VWWWWW !" 6/-"XYYYYY !" F:e40* J:j'."Z[[[[[ !"  U6/\SSSSS !" MR0X,8:b:0n.k++uBi20']^^^^^ !" :C7? ):Q(1'_````` !" +NAMz.2abbbbb !" H:F0 J) *,3"cddddd !" M*%)WKA+4"efffff !" H"+P%$',5"ghhhhh !" O*&._0gJW*6"ijjjjj !" /"I YT)'7"klllll !" 6JC?"8mlllll !" / /o$9"nooooo !" 1 *:pqqqqq !" Cd}(;rsssss !" O"W 6<'tuuuuu !" ABbf^Z<xyyyyy !" J (?"z{{{{{ !" J,+"@"|}}}}} !" O 3&A"~ !" OIm*B !" <c"3,C" !" /G !" C"?eM+q -H !" 17(w*-I !" 0:M<&S5J !" :$H*6 )I";SK" !"3 #, Bf 6"86 f#,J>!6?Ba2/6X\42HLj@.L" !"  u8M !" BR<[ 579Mo6YN)N" !"  T)O" !"  H&P"QQQQQ !" B3Q" !"  29a)+Oe30R" !" "$D b ,S" !" &@;8S$/,T" !" )GDU" !"$ +bs ?+ w  S E {,EV" !"% #j8X.^ HL&82009W" !" $ J!>/6E2u/0=, +5X !" ) :# D8- e? ,Y" !" !:-Z" !" $(A[" !"! b'%M's/A)=_G3'hO>\ !" 0b:<B* Bv (B,4M]" !"- ;zlB"XQ3bYPF;^" !" PB [e._ !" P()` !" L )a !" O %6b" !" I2d2`4< ,c" !" G(?M)d" !" E [6e" !" K2)8,p" !" 3&@~4q" !" ;3:@6>8rNf>6 `F($6r" !" 7/*W-Q73s" !" <1"ZBl+t" !" ;(t +u"OOOOO !" 9**Ga =@9~79v" !" 9(*X*w" !" 9# .x" !" 9%*y" !" 6# 4z" !" ?**$"fLF*{" !" 8 .|" !" 4pwHY.}" !" 25 30~" !" />*-I%CIGm[_M/" !" ." =?K#<9" !" )Br'!56[K K" !"* * >XV P *^`@T,>>2 *R*" !" * C" !"" )b!W kCGaa2&W8e:i3 !" 1 "qEmc9" !" 120 5 !" 0:)/%%M3 !" ;*Ccq["5' !" K*nP~(-" !" NCU*" !" O 3&"lllll !" . %lllll !" 1 E8" !"  2V0R4<+' !" 8 9' !" 9J7=%$)t"))4" !" N2 =/ U4!;1" !" KB#*) !" 3Bma5A" !" L&:1l+" !" C# U" !"4 Mgc7 "$Lm\<>2"\-H V hX8" !" G;*KsC@" !" C1JxH;n=pUZUj:6" !" D)*ldRdZ)" !" P) 5." !" PO)7T)" !" PC - !" M= 2" !" KA`;" !" OOB u_E#CcIg?" !" P>R>=2.RVX@Vp*0" !" KK(7 1" !" LIyy0" !" KKBCy-" !" MI133" !" MI"}a-a3" !" LO*pI i o])" !" 6 k3' !" @*Ou1a%o}d' !"C M# @]XO]_d7$ORMRgr$mY1 fP' !"/ bn<fXf6l0' !" I"<`A" !" JYlRf%+ /." !"  a" !"@ 92VJP0C`4q %nMH#J%R%6 K*" !" M g3" !" 41*" !" L =9" !" M :+ 44*7" !" N2s+! IH-" !" M 2 !" >"vh rN-' !" -$vA' !" <-BaE =AC'LLLLL !"' *@b uuL 6,%-F: !" G:EA&Ei*5 !" J*3qWk?F' !"% &Bb`^`^M$UW]5OW?' !" HJJ|`PP%]z9E" !"$ 9JA7[1A2 !" 1""EUF+" !" 1 E !"$ /b+5%7 Q+_ ob/hQ8 !" #):"`o=Y K>: !" 1BN ch(]P6u&Kaq' !"P -$Fw>MzfDOL*g8D2$<+1@ C&}R" !"1 A+M%C=](]jPzoL-4~A*$7" !" ;1B 8pbb3" !" ="j~2E/" !" @.|Z5" !" 52P  XVJ"@" !" 8J%0":LA" !" C JSP.j\,N0^F' !"% Lz!4yJ;&KV9NN H " B<(." !" HIO>aA" !" <j9B#C1 7wD; M$q S [G]H' !"' A+jbJ* ;{P+'9 p' !"O I B(  $FJ"l@Jd JDl60j |` \h5" !" C * L-" !" G  7" !" F *>B5" !" F * = ?" !" FJomY-]0_N" !"- :+bT;3-^!. !" 4NodQ6" !" ;F*Jv B' !"!  Z-!'  i3s33'G6" !"  2xF0:fh" !"G  K(< T2~h(xFP F  D((^ V661%c]aeO*" !"  Ph' !"G  <GP%L9>K9` `J!Q4 D1xWcV5 uq/ !" r/<7' !" )>*Y_!mW'JJJJJ !"; <-IbY>L@s,m(X ;:'"Obk|y-8/' !" %6"/!q?W/p' !"O %6^/@[P'k} Qh?> ( `6~XFL*(v`fdj((.(H >R%VS' !"2 P"t" s2uf|=$M.9:Yd"#:: !" K82A{WE?'LLLLL !"# >=Z6/ocR H`j4@ F"GGGGG !"* #(rjE.g_ S8}0 S8._FEG' !"& +b\*J6&PLNd8nb.' !" OE 3>" !" ZFF$pqXaPeV]\CJAZCz;" !"  BR` /' !" :%/";;;;; !" C2#eo}{7GC1C' !"" 0Z5G o  [km % ," !" "[ 4" !" . 2}G s}y-" !" *O7'6" !" D*l+ wf/" !" C 6" !" B *bXpPp2" !" H"m-%e:" !" F :<<5T9|+" !" C )" !" O z." !" MN h4" !" ?* G/0(A !" 8ZT"'0; mI5.3ZR H" !"' 1Ib'%32=w*#Bwb'5" !" 5*tF/<&5' !" 12Q 7'|AQ" !"0 ?4d%Cr9" !" M9*y6" !" . 2f"p{"*3" !" I*Q$K!c:' !" <-:.*XRHBzp|8" !" (23757 +' !" 7 <' !" 7:O}3]D' !"# EZ1EAUyum7Ke -]]0' !" BX#C8" !" G92l%hC?U:" !" EH2QT\f2=' !" "4JC+%//Kq/Q3Y;3+" !" 5 =' !" 9B>IPk%0& ^' !"= EVO*c`8:jRMtM,*yK 4,7 %:$c4" !" B*\?\E^Qd?' !" &&RK1.{On@4]Pi' !"H * s .>(Y8 [i's] KS =-9%{_s' !"R $$,XpF&fZf28xhz&Jh"\8J6$ ( P,;' !" 9B|P*$bPhPhn@' !" G: 5R:" !" "BtlH,Dx0`"=" !" J<)p't+V > ." !" 2 (\1 !" " ]%o* !"  M@" !" 'RN2V":.PB(>(46" !" %*(Q/mI" !"( jB N>RT:/b'E" !"$ 3r)]-o- 19& 7-!7/!@Bb" !"A 4L%X1 Q I]@" rue 1.014" 4ޯs@" Rue Marie Goker" s^@" rue 1.024" nWa@" rue 3.085" *= @" rue 3.025" {s@" rue 1758" @" rue 3.021" gIGe@" rue 3.036" k @" rue 2.003" 4Tv@" rue 2.005" :j+z@" Rue Edjoa Mbede" eL݁@"  } ŎY@" Rue Antonie Essomba Many" /Gf@" Rue Martin Tabi Essomba" Pb@" dfz~@" rue 1.285" Ƽ')n@" rue 1.121" §yjDp@" rue 4.040" z.&@" Rue de Narvik" ̪#j@" rue 1.075" d*:@" Rue Mpondo Akwa" 0P3@" Boulevard de l'U.R.S.S." Yt@"  fCw@" Rue Marcus Etoundi" wj@" rue 4.102" yZ@" rue 1.004" 8"ꮅ5j@" rue 1.163"  8h@" rue 1.171" $|$ g@" Essono Ela" VQ蚔c@" rue 1.020" R7h@" rue 1.055" iPB@"  8l]@" rue 1.088" ++f@" rue 1.141" ?Pa@" rue 3.009" B ׁ@" Avenue des Ministères" kYL`@" rue 3.012" =q1Q@" rue 3.013" Fa[@" rue 3.014" Vπ\\@" rue 3.017" FOE)f@" rue 3.020" 7\]H@" rue 3.023" ]a@" rue 3.027" ~̅@" rue 3.029" z{m@" rue 3.040" (sˍ}W@" rue 3.056" u5G_@" rue 3.075" YvMZ@" rue 1.139" Ʋr[@" rue 2.056" Dxx@" rue 1.062" 8YFni@" rue 1.065" SCc@" rue 1.084" ,kd@" rue 1.107" b@" rue 1.109" wvÏx@" rue 1.133" [i@" rue 1.123"  l@" rue 1.302" v#@" rue 1.306" bhrNu@" rue 1.354" XW@" rue 1.375" ?X@" rue 1.377" {tk}@" rue 1.413" ΥX?M\@" rue 1.279"  ~-t@" rue 1.284" uS2]u@" rue 1.286" 9Ww@" rue 1.334" *6{v@" rue 1.340" < o@" rue 1.320"  xmw@" rue 1.322" )Cʌ@" Rue de la Briqueterie" V@" rue 1.296" ×XW@" rue 1.298" wh@" rue 1.300" 7Ro@" Avenue Marchand" i$d d@" Ministries of Transport" DmNM_@" rue 3.018" CYW@" I@" A.,@" Rue du Cercle Municipal" ï XV@" N 3" :sb@" rue 3.008"  s 5Ld@" rue 1.002" ŀH@" Rue 4.092" @ b@" Rue 4.111" 9P@x@" Rue 4.123" 0bu@" Rue 4.129" ǣ Ԕ@" rue 4.090"  1=s@" rue 4.100" _rr@" rue 4.113" Ukz@" rue 4.115" ]V@" rue 1.250" ib0o@" rue 1.255" @Tl#@" rue 1.270" r3cP@" rue 1.272" BU@" rue 1.274" JN_@" rue 1.281" h_*))@" rue 1.291" VEްI{@" Rue 4.121" kUp@" rue 1.266" gT>Wzq@" rue 1.277" VQJ/m@" rue 1.318" ;Ag{@" Rue 4.108" Oqvj@" rue 4.112" 1f@" rue 4.114" K彁@" rue 4.118" 5νz@" rue 4.137" d:Ј@" rue 4.139" u<`}@" rue 4.131"  x@" rue 4.133" 8%r@" rue 4.135" ƨ06@" rue 4.161" 16[@" Rue 4.119" c{@" Rue 4.086" P|@" )L@\@@" N3" ێXo@" rue 3.083" ͤO]@" rue 1.273" R@" Rue Sébastien Essomba" EL|d@" Avenue Charles Atangana" c}@" rue Onembele Nkou" %@" Rue Simekoa" OI}@" rue 1.276" d9@" rue 1.338" 6Q6t@" rue 1.364" E>X@" rue 1.606" trkrz@" rue 1.589" lw@" rue 1.587" ds@" rue 1.514" A(sj@" rue 1.332" TYvj@" Rue Joseph Omgba Nsi" Qx@" Avenue Germaine Ahidjo" iH@" \[fSt@" rue 1.033" !!Dso@" rue 1.031" Fm@" Rue Many Ewondo" .超@" nf-h@" Avenue de l'indépendance" ^o@" rue 1.053" 7 HY@" rue 1.018" F|@" Rue Menge Sogo" Sp@" rue 1.093" a[mu@" "\ߣ~@" Rue Marc-Vivien Foé" U!@" rue 1.577" `zm@" rue 1.417"  >NHz@" {,1a@" rue 1.415" ڦHh@" rue 1.368" i` y@" rue 1.411" [_p,@" rue 1.502" .X̴s@" rue 1.393" `7b@" rue 1.583" J.s@" rue 1.374"  }v@" Omnisport" %);@" rue 1.307" \lqm@" rue 1.308" 7 Czp@" rue 1.309" z@" rue 1.311" $co@" rue 1.313" 6.T@" rue 1.315" D65rx@" Rue de Kondengui" _`ʹ@" rue 1.271" h} a@" rue 4.105" cN|v@" Rue 4.155" ܌:0p@" rue 4.117" զq{@" rue 1.070"  Ӡkp@" rue 1.113" {z82@" rue 1.115" pb@" rue 1.052" G:@" rue 1.064" path" Q]@" rue 1.066" Y鼍t@" Rue Rudolf Abessolo" uE,@" \-pX@" Rue Monseigneur Graffin" [Qz@" Rue Manfred Otto Fouda" ]dY|@" rue 1.397" |>@" Rue Ze Mendouga"  @" Rue Jean Abanda" =$t@" Rue 4.127" eWVr@"  @" ̊@" Rue Henri Dunant" G'@" W_* @" Boulevard de la Réunification" nWMew@" Rue Albert Ateba Ebé" @" Rue Noah Tsogo" U-a@" rue 1.076" }nl@" rue 1.618" Qd"ohJ@" rue 1.111" \~q@" rue 1.504" <7r@" rue 1.506" p!x@" rue 1.579" ` oGq@" rue 1.583" qd%]ϳ@" UlO[@" rue 1.604" RU߾l@" rue 1.518" ֣Hq@" rue 1.671" PՂi@" rue 1.041" 3x@" rue 1.145" BY@" rue 4.104" Sn@" rue 1.051" ⇼3@" Rue Martin Paul Samba" IJNl8@" j[m@" Rue 4.098" T"t@" rue 1.661" eh@" t@" rue 1.280" @" Rue de Nachtigal"  3bBtO]@" rue 1.016" "3ɓ@" Avenue Maréchal Foch" ^e^@"- +Avenue du Président El Hadj Ahmadou Ahidjo" FGiv@" Avenue John F Kennedy" @" Rue 4.125" su9@" v@" 1Qb@" rue 1.010" X{@" Avenue Mvog-Fouda Ada" ;@" Rue Monseigneur Vogt" r/z@" zMUË@" Rue de Mfoundi" M7)u@" rue 1.105" _z@" rue 1.054" G"Wk[@" rue 1.161" -jm@" KwգM@" rue 1.103" hR(v@" rue 1.026" V\%X@" Avenue Charles de Gaulle" ^UЏ@" Avenue Winston Churchill"  Ru@" rue 1.073" c@" Rue Frédéric Foe"  ġ @" Avenue Marcel Marigoh Mboua" (@" rue 1.258" G t]@" rue 1.090( x waterway_label " M ` " $ 8@: H (R4\"@$&,$,  @P\R  <6,J &V8&&    <& 0,j*B"   $   '*4 $: " % .  & "4 8"   " :$2   "B& * 28"4  * ( ,, 20. 6 " A  +$' '    -  9>  /*9(  5*%'" UBE8?6  #/29Z  %F&2: VB\ " .t*. &$ , (" &(>  " 8 "w F   0.       8""     &*",*W "C 6 ,nF &6]es iUsSk'A1 " /JV{b3*hId=|7ponamename_dename_enname_esname_frtype" Mfoundi" river" Abiergué" Tongolo" stream" Ntem" Mingoe" Djoungolo" Ebogo( x building_label "  " / " ? " .      " (      " 8      " J " >  " !  " G  "    " +  " 0 " 2 " M      " 9 !"""""" C #$$$$$"  %&&&&&" 1 '((((("  )*****" % +,,,,," * -....." H /00000" O> 122222" NJ 344444" L: 544444" H? 644444" GI 788888" GI 9:::::" LH ;<<<<<" H9  =>>>>>" K=! ?@@@@@" LO" ABBBBB" E(# CDDDDD" N)$ EFFFFF" <*% GHHHHH" ? & IJJJJJ" @' KLLLLL" <.( MNNNNN" =-) OPPPPP" E* QRRRRR" F#+ STTTTT" N, UVVVVV" D- WXXXXX" D#. YZZZZZ" I$/ [\\\\\" G!0 ]^^^^^" @&1 _`````" I2 abbbbb" E3 cddddd" D%4 efffff" D%5 ghhhhh" N(6 ijjjjj" O"7 klllll" Aj8 mnnnnn" N9 oppppp" B: qrrrrr" ; ; sttttt" D$< uvvvvv" @,= wxxxxx" C> yzzzzz" =? {|||||" E@ }~~~~~" AA" CB" H C" HD" <.E" 8F" ;-G" ,!H" :/I" '/J" 8K" :L" 2%M" $$N" ,$O" 9P FFFFF" )2Q" 8R" 54S" 20T" 34U" 15V" 2.W" ,X" 4Y" 41Z" 1([" %\" ;)]" /!^" 8._" +!`" *!a" 8+b" *#c" 3d" :e :::::" .-f" 5*g" :h" /i" 1 j" /k" 26l" 4m" /$n" '5o" ,,p" . q" ;+r lllll" :0s" .%t" :,u" 2v" 8-w" 7,x" #(y" 8,z" %{" #-|" 3}" 5~" 1" % " & " $ " # "  "  " " " ! "  "  " ## "   " ' " " "   "  " " "  " "! " " " # "   "  "  " " "  "  "  " ' " / " # "  " % " 2 "  "  " ! " 5 "  "  "  "   "  "  :::::" !& " . "   " ' "  "   :::::" % "  "  "  " # " ( "  "  " "' "  "  " & " . " . "   "  "  " ! " ! "  "  "   "  "  " "# "  "  "  " % "  "  "  "   "  " * " * " , "  "  " 5 "  "  "  " "2 "  BBBBB" 6< " 0G " 9N " 0F 44444" << " 3J " 'A " 5I " I " >B " 6O :::::" 5< " 8 " :; :::::" 67 " 8H " $9 " @ " :: " >D " 7 " ?K " .9 " I jjjjj" *@ lllll" #C lllll" F " >N " DG " 2L " AB " 2K " >H " BO " G " 0E " 2N " H " 2N " 2M " 0N " = " 8 " ; " ? " ? " B " A " 7 " D " : " 7 " J " J " = " K " N " 8 " > " > " M " K " O " B " D " D " M " J " > " ? " = " K " O " 6 " L " G " A " K " K " M " F " K " G " F " I " F " I " J " D " A " O " H " E " N " ? " C " E " D " O " K " ; " J " 8 " 8 " G " M " ?" @ " A " 8 " 6 " 7 " 8" rM" #; " A" U "   "  "  "  "  " 6 "  "  " * "  "  "  "   "  "  "  "   "  44444"  "   " 2 " . " . "  "  " " "  " 5 " ) " + "   "  "  " & " " / "  " ( "  "  "  "   " " @ " " o. " 2 "  "  " ) " * "   "  " 4 "  " 1 "  " 6 "  " . " ( " . "  "  "  " 1 "  " ' "  "  "  " 3 "  " % " areanamename_dename_enname_esname_fr" `8@" Service du Gouverneur" ï@" Mahima"  Aq@" Pharmacie vallée" TW@" Chambre de Commerce"  Կr@" Air France" UU@"; 9Ministère de la Défence Etat-Major de l'Armée de Terre" 6@" Immeuble de la Mort" "m@" Goethe Institute" @v@" ringo" 3@"$ "Ministère de la Fonction Publique" )@"( &Fonds des Nations Unies pour l'Enfance" `a@" American Cultural Centre" Xl@" Chamber of Agriculture"  #k@"# !Institut National de Cartographie"# !National Institute of Cartography" u@" Ordre des géomètres Expert" ;@"3 1Ministère de la Défence Etat-Major de la Marine" @@" Fonction Publique" @ @"; 9Ministère de l'Emploi et de la Formation Professionnelle" >A@" Chambre d'Agriculture" `@"2 0Délégation générale de la Sûreté Nationale" @") 'Caisse Nationale de Prévoyance Sociale"  @"% #Electricity development Corporation" S@"H FMinistère des Mines, de l'Industrie et du Developpement Technologique" Nn@" Centre Médical" `n@" CASE" }X@" Centre de Santé" qb@" g@" OS@" IPAO" `8€@" Église"  &Un@" Collège Prive Pharadas" @(a@" François Xavier" \@"' %Groupe Scholaire Bilingue la Shekinah" `4"a@" Mosquée" \@" Marché"  yq@" Hôtel" @@" Hotel The Sport" nx@" Pharmacie la Colombe"  0}@" Pharmacie la Rosée" @#o@" Credit du Sahel" @" Bureau des Impôts" `@" Centre Santé" "@" Laborex" @"' %Paroisse Sainte-Thérése de L'Enfant" `fc@" CMC" @Ir@" les Petits Élus" oD@" MOJAS" f5t@" Centre Italien Nicolo Andrea" @W#c@" EB" @o@" GS la Poussette" Ue@" École Maternelle" Ut@" Paroisse Saint-Jean d'Essos" o@" Mosquée d'Essos" :'r@" Oillibya" '`@" Texaco" +"w@" Hotel Felydac" 0x@" Kaelly Hotel" `{o@" Mansel"  ԴV@" Hôtel Magny" `i@" Auberge Le Marseillais" wh@" Mfandena Hotel"  HAp@" Ndjanji Hotel"  w@"@ >Bureau Central des Recensements et des Etudes de la Population" z@" US Peace Corps" y@"r pMinistère de l'Economie, de la Planification et de l'Aménagement du Territoire Délégation Regional du Centre"  {@"< :Programme de Développement Rural de la zone Péri-Urbaine" d@"8 6Haut Commissariat des nations unies pour les refugiés"  k@" Développement Rural" @" MICHELIN" p@" Fokou ESSOS" @" AMM" ,]@" 0ܮ@" HYSACAMP" iD@" SAFCA"  l@" Menuiserie" `,@" AFRIGAZ"  v@" Sanza" Dy@" Schunda Company" @" SMALTO" Q}@" `'s@" Parapharmacie" ui@" Pharmacie Saint-Luc" q@" Cousin Castor" `fӀ@" Quiferon" @il@" COGENI" ~@" Lido" @gi@" Centre Medical Social" v@" Centre Veterinaire" @" Clinique et Maternité" 5s@"$ "Clinique Médicale Enfants Malades" :u@" Clinique Sainte-Maithe" ]z@"% #Fondation Médicale Bengolo et Fils" oo@" Fondation Médical Andre Fouda" E@" Gynecologie" @@" SCIMPOS" E@" Tôles et Acier du Cameroun" @" Mairie de Yaoundé 5éme"  b@" Winner Chapel" ҋ@" Paroisse Saint-Michel" @O]x@"+ )Mission Apostolique du Samaritain de Sion" b@" `Er@"" CNPS Centre Hospitalier d´Essos" r@"# !École Publique du Quartier Fouda" BAw@") 'École Maternalle Publique et Etoa-Maki" 7@" Fondation Médicale Fouda" )@"= ;Institut Supérieur de Technologie Appliquée et de Gestion" hd@" Sainte-Hélène" `kX@" Institut Mode'stta" @(q@" Centre et technique Likalo" )r@"# !église pentécotiste chrétienne" @". ,Eglise Méthodique unie Paroisse John Wesley" OXp@" Paroisse Fouda" \@" Chapelle du christ" ǐO@" \8e@" Total" @" Résidence Hoteliere d'Essos" OZ@" Hotel Jouvence 2000" `îs@" Centre Social" u@" Femmes en Detresse" ҂@" Mindaf Impôts" t@" RDPC" `-l@"H FMinistère de l'Administration Territoriale et de la Décentralisation" @" Gare de Yaoundé" ׃@" Fonds National de l'Emploi" g@" Imprimerie" So@" La Terrasse" @>yv@" Cours Suprême" M@" Independance Square" p@" Business Development Service" ͑@" CEPER" t@" EBAT" >@" Foundation Bandjoun"  r@" SPIC" Lt@" Mahima Supermarché" `4@" Meumi Hôtel" ֞~@" Hôtel Grand Moulin" @" Girafe Hôtel" @@" Tou'ngo Hôtel"   @" Tango Hôtel" 0u@" Hôtel Las Vegas"  A@" Pharmacie le Cristallis" @" Lion's Club International" @o@" CIGALON"  u7t@" Librairie Protestante" `4k@" Dog Security" 'Wy@" Financial House"  kt@" Samiris Asurance" G@" Hotel Franco" 2c@" Poste de Police" @^@" Boulangerie Centrale"  ~@" Centre Medical Le Jourdain" @&@" Cabinet Médical" S3@" Clinique"  !~p@" Cabinet Dentaire" S`@"' %Clinique Pharmaceutique Vétérinaire"  Yq@" Hôpital" 4p@" Lh@"' %Laboratoire Prima Analyses Médicales" v@" Afriland First Bank" aw@"- +Société Générale de Banques au Cameroun" @@"\ ZRéseau des Institutions De Formation Forestière Et Environnementale d’Afrique Centrale" z{@"7 5Mission d'Aménagement des Terrains Urbains et Ruraux" }e@" SCB" i@"( &Banque des Etats de l'Afrique Centrale" bq@" Clinique de Bastos" ~tj@" Polyclinique Emmanuel" !J@" Église Adventiste"  u@" Cabinet Dentaire EPC" @p@"" Secrétariat à l'Éducation EPC" `k3n@" Eglise" `Dkr@" @" Église Bethel" w@" Secrétariat Général EPC" w@" Chapelle Elig-Essono" @" CEPCA" `{@"0 .Église Presbytérienne Camerounaise Djoungolo" `@" k@"$ "Congregation du Saint-Esprit Casba" ɞ@" Paroisse Adna" `+"u@" Bureaux CEPCA" @`Centre De Formation Professionelle Rapide d'Employes de BAREAU" ̆n@"W UCentre de Coopération Internationale en Recherche Agronomique pour le Développement" `g@"9 7Agence nationale d'appui au dévéloppement forestier (" @؅@" Chambre Des Comptes" `|Fv@"% #Institut National Du Travail Social" nu@": 8Ministère des Affaires Sociales Délégation Regionale" @k@" Siège de L'UNDP" ?o@" Musée" @ц@"G EMinistère des Postes et Télécommunications Délégation Regionale"  0 @" SAIL"  ,@" Ministère de la Communication" Ministry of Communication" &@"$ "Société Immobilière du Cameroun" ϋ@" Union Européenne" |@" Recette Municipale" 6Cx@"2 0Institut de Recherches Géologiques et Minières"  /@"/ -Organisation des Nations Unies pour l'Enfance" `d@". ,Institut de Recherche pour le Développement" `O@" Hôtel Clamantis" @" Colis Postaux de Yaoundé"  /J@" France Volontaires" kt@" vY@" Pharmacie Le Cygne" @"/ -Menuiserie et Pompes Funèbres La Commerciale" `ew@" @" C@" Clinique du Bon Secours" }&r@" Dispensaire Mvog-Ada"  ^r@"$ "Hôpital de District de Nkolndongo" @g@" Merina Hotel" w@"$ "Église Presbytérienne Réformée" @"' %Paroisse Charles Lwanga de Nkolndongo" ߘz@" ,@"3 1Église Presbytérienne Camerounaise Marie Golker" #@"9 7Archidiocese of Yaoundé Saint-Joseph Anglophone Parish"  W|@"  u@" Secrétariat à l'Éducation" 2@" Le Caveau" @A@" NIKI" `4D@"* (Saint Joseph's Anglophone Primary School" Q@" Lycée de Nkolndongo" ӓ@" École Maternelle et Primaire" \@" Hôtel Venus" oօ@" Paroisse Saint Joseph" -x@"0 .Eglise presbitérrienne cameruonaise orthodoxe" df@" R@"  X@" q^@" Total Nkolndongo" $\c@" Pharmacie Balance" 5@" École Primaire les Papillons" `p@" Salina Douma" k@" CEFTI"  }@") 'Gouvernemental Bilingual Primary School" 4Zr@"& $Ecoe Publique Maternelle de la CNPS" @" Hotel Mirador" {@" Auberge Essos"  l@" Dépôt de Bois" `@" Centre des Impôts" yqt@" Maison du Parti de Nkolndongo" u@"( &Promotion de la Femme et de la Famille"  7b@" International Brain Consulting" @`Ww@" Niki"  }@" STAVAL"  $@" Marché Central" &s@" Librairie Saint-Paul" @" Hôtel Merina" m\y@" BICCEC" ؂@" Pharmacie Française" @" @j@" Pharmacie du 20 Mai" wws@" Pharmacie de l'Intendance" n@" Pharmacie du Soleil" @" Poste Centrale" @" Trésor Public" DĀ@" CamerCo"  g@"& $Direction de la Police Scientifique" J @" Ministère de Transport" i@"' %Ministère des Forêts et de la Faune" VTr@" Nigerian Embassy" #v@" École" @"4 2Ministère du Travail et de la Prévoyance Sociale" .o@" Cour Suprême du Cameroun" `ޓ@" Archives nationales" 7}@"& $Cathédrale Notre-Dame des Victoires" `*s@" Restaurant Populaire" s>v@"! Restaurant Municipal le Mfoundi" Uu@" Central Hotel" o}T@"' %Poste de police de la poste centrale"  KG@" Hotel Hilton" T@"( &Complexe Commercial de l'Hôtel Hilton" @" BEAC Nationale" @:.@" Caisse d'Epargne Postale" @,@" CAMTEL"  Qn~@"$ "Commissariat du 1er Arrondissement" R}@"0 .Centre National de Développement Informatique" d~@" Cameroon Telecommunications" -΍@" Centre Linguistique Pilote"  @" PTT" {@"! Ministere des Affaires Sociales" @" Sonel Centrale" `~@"' %Société de Recouvrement du Cameroun"  @": 8Ministère de la Promotion de la Femme et de la Famille" @݂@" MINADER" @@") 'Ministère de l'Enseignement Supérieur" Œ@"J HMinistère de l'Administration Térritoiriale et de la Décentralisation" @" Ministère de la Justice"  z@" Immeuble Ministériel N° 2" 1'l@" Palais de Justice" `I @" Institut Français du Cameroun" @" Tribune Officielle"  t@"B @Organisation des Nations Unies pour le Développement Industriel"  N@"8 6Ministere de l'Agriculture et du Dévéloppement Rural"  ,@" Ministère des Finances" }.@" Ministère des Transports" `o@"" Institut National de Statistique" Щ@"3 1Ministère du Travail et de la Sécurité Sociale" @"" Ministère de la Santé Publique"  [@"* (Poste de police du centre administratif" @~@"O MMinistère de l'Économie, de la Planification et du Développement régional" `h@" Musée National" %y@"4 2Ministères des Postes et des Télécommunications" @@"5 3Ecole Nationale d'Administration et de Magistrature" sW@"@ >Ministère des Domaines du Cadastre et des Affaires Foncières" B e@" i@" le Normalien" +h`@" Poste de police de la vallée" _@" Hôtel des Députés"  #ܲ@" Complexe Ministériel" z@" Attestation de Distance"  "@"$ "Ministère de l'Education de Base" W@" r@"+ )Ministère des Enseignements Sécondaires" @"D BMinistère de la Fonction Publique et de la Reforme Administrative" 6ѹ@" Imprimerie Nationale" X@" Premier Ministère" uf@" Résidence du Premier Ministre" k@" Ambassade du Tchad"  @" Cercle Municipal" @6@" Chez Wou" j@" CRTV RADIO" Ғ@" PMUC" `ԑ@" Économat" '@" Bricolux" @Cu@" Hôtel Somatel" `|+p@" Indra Hôtel" Ƒ@" Djeuga Palace" OeV@" Pharmacie de la Brique" b f@" Pharmacie Emmanuel" `}n@" Pharmacie École de Police" 3|@" Pharmacie 2000" `94t@" UBC" $@"% #Ministère des Affaires Etrangères" @"9 7Organisation Africaine de la Propriété Intellectuelle" `)@" Ambassade du Nigeria" y@" Sous-Préfecture Yaoundé 1" j@" @" Hôtel de ville"  X@" Croix Rouge Camerounaise" _t@" Fondation Chantal Biya" @"' %Laboratoire de Santé Hygiène Mobile" `l@" ?t@" NFC Bank" P~@" Programme Alimentaire Mondial" 9 @"$ "GMC Assurances SA Bureau Régional" @|@" Bibliothèque Nationale" r?@" Centre Pasteur" @" Morgue" @" UEEC" @@" UEBC Église de l'Esperance" q@" Église du Christ" `#P@"= ;Église Évangélique du Cameroun Paroisse de Briqueterie I" y@" Paroisse Catholique" @" Paroisse Tohé" 3|@" Centrale Diocesaine" Pn@" ESEDA" G;@" CTSP" @ @" Banque Atlantique Yaoundé"  3M@" Centre d'approvisionnement" `͞u@" CETIC Charles Atangana" @H@" SGBC" @Ph@" CSI la Gaité" `Ӗ}@" CETIC Communale" @"% #UCAC École des Sciences Infiermers" I@"% #Ministère de l'Eau et de l'Energie" @" Usine Bastos" R@" Le Moulin de Don Quichotte" @" `̓@" CEMAC ISSEA" 3*@". ,École Primaire et Maternelle de la Retraite" @e@" École Maternelle Annexe" 2y@"+ )Centre D'accueil des Enfants en Détresse" :v@" ASCOMA Assurance" @6@"! Direction Générale de Impôts" sv@" AER" @^@" CAMPOST" @" Centre Culturel" S@"* (Comité National de Lutte contre le Sida" @"4 2Caisse de Stabilisation des Prix des Hydrocarbures" @"C ACentrale Nationale d'Approvisionnement en Médicaments Essentiels" @q@" GMI" v@"D BOrganisation pour l'Harmonisation en Afrique du Droit des Affaires"   @" SONEL" O@"0 .Ministère de l'Eau et de l'Energie Batiment B" @f?q@"+ )Inspection d'Arrondissement de Yaoundé 2" @s@"U SOrganisation de Coordination pour la lutte contre les Endémies en Afrique Centrale" @ |@"$ "Délégation Régionale du Travail"  u@"$ "Organisation Mondiale de la Santé" zqx@" Forest Governance Facility" j@" Ministère des Travaux Publics" Z@" PAM" @;@"> <Église Évangélique du Cameroun Paroisse de Briquetterie I" "j@"# !Société Alimentaire du Cameroun( xmapnik-vector-tile-0.3.2/examples/data/14_2620_6331-area_label.geojson0000644000175000017500000004325612174360626023120 0ustar devdev{ "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4290120601654, 37.806321294872326 ] }, "properties": { "area": 420936.875, "class": "park", "name": "Fort Mason", "name_de": "Fort Mason", "name_en": "Fort Mason", "name_es": "Fort Mason", "name_fr": "Fort Mason" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43312656879425, 37.80212943883419 ] }, "properties": { "area": 78644.2890625, "class": "park", "name": "Moscone Recreation Center", "name_de": "Moscone Recreation Center", "name_en": "Moscone Recreation Center", "name_es": "Moscone Recreation Center", "name_fr": "Moscone Recreation Center" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42762804031372, 37.791566093394444 ] }, "properties": { "area": 74781.1484375, "class": "park", "name": "Lafayette Park", "name_de": "Lafayette Park", "name_en": "Lafayette Park", "name_es": "Lafayette Park", "name_fr": "Lafayette Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42220997810364, 37.80701214416185 ] }, "properties": { "area": 54851.48046875, "class": "park", "name": "Aquatic Park", "name_de": "Aquatic Park", "name_en": "Aquatic Park", "name_es": "Aquatic Park", "name_fr": "Aquatic Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43235409259796, 37.790641940767166 ] }, "properties": { "area": 46714.70703125, "class": "hospital", "name": "CPMC Pacific Campus", "name_de": "CPMC Pacific Campus", "name_en": "CPMC Pacific Campus", "name_es": "CPMC Pacific Campus", "name_fr": "CPMC Pacific Campus" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43551909923553, 37.80181578179817 ] }, "properties": { "area": 37927.9453125, "class": "school", "name": "Marina Middle School", "name_de": "Marina Middle School", "name_en": "Marina Middle School", "name_es": "Marina Middle School", "name_fr": "Marina Middle School" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40603625774384, 37.80274827178258 ] }, "properties": { "area": 37910.67578125, "class": "park", "name": "Pioneer Park", "name_de": "Pioneer Park", "name_en": "Pioneer Park", "name_es": "Pioneer Park", "name_fr": "Pioneer Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42033243179321, 37.801391918822475 ] }, "properties": { "area": 18318.51953125, "class": "park", "name": "George Sterling Park", "name_de": "George Sterling Park", "name_en": "George Sterling Park", "name_es": "George Sterling Park", "name_fr": "George Sterling Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41092324256897, 37.80479970830737 ] }, "properties": { "area": 17887.583984375, "class": "school", "name": "Francisco Middle School", "name_de": "Francisco Middle School", "name_en": "Francisco Middle School", "name_es": "Francisco Middle School", "name_fr": "Francisco Middle School" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41206049919128, 37.802493957499856 ] }, "properties": { "area": 15649.849609375, "class": "park", "name": "North Beach Playground", "name_de": "North Beach Playground", "name_en": "North Beach Playground", "name_es": "North Beach Playground", "name_fr": "North Beach Playground" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.407506108284, 37.7879372441879 ] }, "properties": { "area": 14722.525390625, "class": "park", "name": "Union Square", "name_de": "Union Square", "name_en": "Union Square", "name_es": "Union Square", "name_fr": "Union Square" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41007566452026, 37.80084513199106 ] }, "properties": { "area": 14162.384765625, "class": "park", "name": "Washington Square Park", "name_de": "Washington Square Park", "name_en": "Washington Square Park", "name_es": "Washington Square Park", "name_fr": "Washington Square Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4165290594101, 37.789603315074956 ] }, "properties": { "area": 13636.7626953125, "class": "hospital", "name": "Saint Francis Memorial Hospital", "name_de": "Saint Francis Memorial Hospital", "name_en": "Saint Francis Memorial Hospital", "name_es": "Saint Francis Memorial Hospital", "name_fr": "Saint Francis Memorial Hospital" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40883648395538, 37.794647931681375 ] }, "properties": { "area": 12502.6455078125, "class": "school", "name": "Gordon J. Lau Elementary School", "name_de": "Gordon J. Lau Elementary School", "name_en": "Gordon J. Lau Elementary School", "name_es": "Gordon J. Lau Elementary School", "name_fr": "Gordon J. Lau Elementary School" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42612063884735, 37.79780594071465 ] }, "properties": { "area": 10926.486328125, "class": "school", "name": "Sherman Elementary School", "name_de": "Sherman Elementary School", "name_en": "Sherman Elementary School", "name_es": "Sherman Elementary School", "name_fr": "Sherman Elementary School" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42436647415161, 37.80485480808938 ] }, "properties": { "area": 10491.86328125, "class": "pitch", "name": "George White Field", "name_de": "George White Field", "name_en": "George White Field", "name_es": "George White Field", "name_fr": "George White Field" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4209600687027, 37.80437586245604 ] }, "properties": { "area": 9823.4970703125, "class": "park", "name": "Russian Hill Park", "name_de": "Russian Hill Park", "name_en": "Russian Hill Park", "name_es": "Russian Hill Park", "name_fr": "Russian Hill Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40533351898193, 37.79483444871761 ] }, "properties": { "area": 8338.2763671875, "class": "park", "name": "Portsmouth Square", "name_de": "Portsmouth Square", "name_en": "Portsmouth Square", "name_es": "Portsmouth Square", "name_fr": "Portsmouth Square" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40746855735779, 37.7879414836017 ] }, "properties": { "area": 7855.46435546875, "class": "parking", "name": "Union Square Garage", "name_de": "Union Square Garage", "name_en": "Union Square Garage", "name_es": "Union Square Garage", "name_fr": "Union Square Garage" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41215705871582, 37.792168058155134 ] }, "properties": { "area": 6761.63525390625, "class": "park", "name": "Huntington Park", "name_de": "Huntington Park", "name_en": "Huntington Park", "name_es": "Huntington Park", "name_fr": "Huntington Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40516722202301, 37.792045122088425 ] }, "properties": { "area": 6754.05224609375, "class": "park", "name": "Saint Mary's Square", "name_de": "Saint Mary's Square", "name_en": "Saint Mary's Square", "name_es": "Saint Mary's Square", "name_fr": "Saint Mary's Square" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41188883781433, 37.784486280685954 ] }, "properties": { "area": 5962.169921875, "class": "park", "name": "Boeddeker Park", "name_de": "Boeddeker Park", "name_en": "Boeddeker Park", "name_es": "Boeddeker Park", "name_fr": "Boeddeker Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42767095565796, 37.79746259325332 ] }, "properties": { "area": 5467.72900390625, "class": "park", "name": "Allyne Park", "name_de": "Allyne Park", "name_en": "Allyne Park", "name_es": "Allyne Park", "name_fr": "Allyne Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41339087486267, 37.79822982426816 ] }, "properties": { "area": 5286.7763671875, "class": "park", "name": "Ina Coolbrith Park", "name_de": "Ina Coolbrith Park", "name_en": "Ina Coolbrith Park", "name_es": "Ina Coolbrith Park", "name_fr": "Ina Coolbrith Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42066502571106, 37.795767026835556 ] }, "properties": { "area": 5055.89599609375, "class": "park", "name": "Helen Wills Playground", "name_de": "Helen Wills Playground", "name_en": "Helen Wills Playground", "name_es": "Helen Wills Playground", "name_fr": "Helen Wills Playground" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41659343242645, 37.80190055410142 ] }, "properties": { "area": 4614.470703125, "class": "school", "name": "Yick Wo Elementary School", "name_de": "Yick Wo Elementary School", "name_en": "Yick Wo Elementary School", "name_es": "Yick Wo Elementary School", "name_fr": "Yick Wo Elementary School" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40673899650574, 37.80204466679365 ] }, "properties": { "area": 4535.21484375, "class": "school", "name": "Garfield Elementary School", "name_de": "Garfield Elementary School", "name_en": "Garfield Elementary School", "name_es": "Garfield Elementary School", "name_fr": "Garfield Elementary School" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41504311561584, 37.80095109874748 ] }, "properties": { "area": 4380.76220703125, "class": "school", "name": "Sarah B. Cooper Child Development Center", "name_de": "Sarah B. Cooper Child Development Center", "name_en": "Sarah B. Cooper Child Development Center", "name_es": "Sarah B. Cooper Child Development Center", "name_fr": "Sarah B. Cooper Child Development Center" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41178691387177, 37.794211310414276 ] }, "properties": { "area": 4241.5634765625, "class": "park", "name": "Chinese Recreation Center", "name_de": "Chinese Recreation Center", "name_en": "Chinese Recreation Center", "name_es": "Chinese Recreation Center", "name_fr": "Chinese Recreation Center" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41104662418365, 37.79760247574503 ] }, "properties": { "area": 3482.419677734375, "class": "school", "name": "Jean Parker School", "name_de": "Jean Parker School", "name_en": "Jean Parker School", "name_es": "Jean Parker School", "name_fr": "Jean Parker School" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40708231925964, 37.79358816685511 ] }, "properties": { "area": 3241.57275390625, "class": "park", "name": "Willie \"Woo Woo\" Wong Park", "name_de": "Willie \"Woo Woo\" Wong Park", "name_en": "Willie \"Woo Woo\" Wong Park", "name_es": "Willie \"Woo Woo\" Wong Park", "name_fr": "Willie \"Woo Woo\" Wong Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42011785507202, 37.80156570293673 ] }, "properties": { "area": 3144.7783203125, "class": "pitch", "name": "Alice Marble Tennis Courts", "name_de": "Alice Marble Tennis Courts", "name_en": "Alice Marble Tennis Courts", "name_es": "Alice Marble Tennis Courts", "name_fr": "Alice Marble Tennis Courts" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41690993309021, 37.801116406583915 ] }, "properties": { "area": 2637.12255859375, "class": "park", "name": "Michelangelo Playground", "name_de": "Michelangelo Playground", "name_en": "Michelangelo Playground", "name_es": "Michelangelo Playground", "name_fr": "Michelangelo Playground" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40846633911133, 37.78405807864497 ] }, "properties": { "area": 2256.60009765625, "class": "park", "name": "Hallidie Plaza", "name_de": "Hallidie Plaza", "name_en": "Hallidie Plaza", "name_es": "Hallidie Plaza", "name_fr": "Hallidie Plaza" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41035461425781, 37.795826372317386 ] }, "properties": { "area": 2005.4078369140625, "class": "park", "name": "Woh Hei Yuen Recreation Center", "name_de": "Woh Hei Yuen Recreation Center", "name_en": "Woh Hei Yuen Recreation Center", "name_es": "Woh Hei Yuen Recreation Center", "name_fr": "Woh Hei Yuen Recreation Center" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40888476371765, 37.79552116647442 ] }, "properties": { "area": 1817.8153076171875, "class": "hospital", "name": "Chinese Hospital", "name_de": "Chinese Hospital", "name_en": "Chinese Hospital", "name_es": "Chinese Hospital", "name_fr": "Chinese Hospital" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40505993366241, 37.80187936103475 ] }, "properties": { "area": 1763.20166015625, "class": "park", "name": "Filbert Steeps Gargen", "name_de": "Filbert Steeps Gargen", "name_en": "Filbert Steeps Gargen", "name_es": "Filbert Steeps Gargen", "name_fr": "Filbert Steeps Gargen" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4178808927536, 37.80290509848712 ] }, "properties": { "area": 1628.5638427734375, "class": "park", "name": "Fay Park", "name_de": "Fay Park", "name_en": "Fay Park", "name_es": "Fay Park", "name_fr": "Fay Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41820275783539, 37.785406270739166 ] }, "properties": { "area": 1243.2176513671875, "class": "park", "name": "O'Farrell-Larkin Mini-Park", "name_de": "O'Farrell-Larkin Mini-Park", "name_en": "O'Farrell-Larkin Mini-Park", "name_es": "O'Farrell-Larkin Mini-Park", "name_fr": "O'Farrell-Larkin Mini-Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41145431995392, 37.78912427055049 ] }, "properties": { "area": 1096.6558837890625, "class": "parking", "name": "California Parking", "name_de": "California Parking", "name_en": "California Parking", "name_es": "California Parking", "name_fr": "California Parking" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41743564605713, 37.796441019146776 ] }, "properties": { "area": 944.394775390625, "class": "park", "name": "Broadway Tunnel West Mini Park", "name_de": "Broadway Tunnel West Mini Park", "name_en": "Broadway Tunnel West Mini Park", "name_es": "Broadway Tunnel West Mini Park", "name_fr": "Broadway Tunnel West Mini Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43233263492584, 37.78646615291675 ] }, "properties": { "area": 668.4193725585938, "class": "park", "name": "Cottage Row Mini Park", "name_de": "Cottage Row Mini Park", "name_en": "Cottage Row Mini Park", "name_es": "Cottage Row Mini Park", "name_fr": "Cottage Row Mini Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41070866584778, 37.80046365040925 ] }, "properties": { "area": 511.5633850097656, "class": "park", "name": "Marini Plaza", "name_de": "Marini Plaza", "name_en": "Marini Plaza", "name_es": "Marini Plaza", "name_fr": "Marini Plaza" } } ], "name": "area_label" }mapnik-vector-tile-0.3.2/examples/data/14_2620_6331-rail_station_label.geojson0000644000175000017500000000306512174360626024672 0ustar devdev{ "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40694284439087, 37.78496111569185 ] }, "properties": { "class": "light", "group": "name", "name": "Powell Muni", "name_de": "Powell Muni", "name_en": "Powell Muni", "name_es": "Powell Muni", "name_fr": "Powell Muni", "network": "light" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40691065788269, 37.78493143859335 ] }, "properties": { "class": "light", "group": "name", "name": "Powell", "name_de": "Powell", "name_en": "Powell", "name_es": "Powell", "name_fr": "Powell", "network": "light" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40694284439087, 37.78496111569185 ] }, "properties": { "class": "light", "group": "network", "name": "Powell Muni", "name_de": "Powell Muni", "name_en": "Powell Muni", "name_es": "Powell Muni", "name_fr": "Powell Muni", "network": "light" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40691065788269, 37.78493143859335 ] }, "properties": { "class": "light", "group": "network", "name": "Powell", "name_de": "Powell", "name_en": "Powell", "name_es": "Powell", "name_fr": "Powell", "network": "light" } } ], "name": "rail_station_label" }mapnik-vector-tile-0.3.2/examples/data/14_2620_6331-road.geojson0000644000175000017500000116762612174360626022007 0ustar devdev{ "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41441011428833, 37.79789071761994 ] }, "properties": { "class": "turning_circle" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42340624332428, 37.801023156054995 ] }, "properties": { "class": "turning_circle" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4150002002716, 37.80457507030913 ], [ -122.41506457328796, 37.80485056964608 ], [ -122.41512894630434, 37.805248982254014 ] ] }, "properties": { "class": "street_limited", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40991473197937, 37.79367718768535 ], [ -122.40993618965149, 37.793804360113924 ] ] }, "properties": { "class": "street_limited", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41068184375763, 37.79168903025815 ], [ -122.41062283515932, 37.79175685740575 ], [ -122.41042435169221, 37.791778053376625 ], [ -122.41041898727418, 37.79173566142882 ], [ -122.41057991981508, 37.79156185418857 ], [ -122.41064429283146, 37.791553375776175 ], [ -122.41065502166752, 37.791553375776175 ], [ -122.41068184375764, 37.79168903025815 ], [ -122.41068184375764, 37.79168903025815 ], [ -122.41068184375763, 37.79168903025815 ] ] ] }, "properties": { "class": "street_limited", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41658806800842, 37.79902671876394 ], [ -122.41568148136139, 37.79914540444266 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41773068904877, 37.799874469428296 ], [ -122.41826176643372, 37.799781217331464 ], [ -122.41855680942535, 37.799743068712466 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41544544696808, 37.79176533579482 ], [ -122.41552591323853, 37.7921807756676 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42077767848969, 37.79047660949114 ], [ -122.42078840732574, 37.790531719957585 ], [ -122.42080450057983, 37.79061226595001 ], [ -122.4208152294159, 37.790671615572435 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41262376308441, 37.80209976863108 ], [ -122.41266667842865, 37.80205738260592 ], [ -122.41273105144501, 37.80200228073689 ], [ -122.4127846956253, 37.80195565604636 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43091642856598, 37.79113369314532 ], [ -122.4315655231476, 37.79104466925053 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41214096546173, 37.80220573358751 ], [ -122.4121570587158, 37.80230322121314 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4129992723465, 37.80210400723224 ], [ -122.41295099258423, 37.8020743370189 ], [ -122.41288125514986, 37.8020234737683 ], [ -122.41286516189577, 37.80201499655647 ], [ -122.41278469562532, 37.80195565604636 ], [ -122.41270422935487, 37.801904792714005 ], [ -122.41265594959263, 37.801866645191794 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41209268569946, 37.8019810876994 ], [ -122.41214096546173, 37.80220573358751 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41576731204987, 37.78929384418857 ], [ -122.41574585437775, 37.78917938202556 ], [ -122.41569757461548, 37.7889504571676 ], [ -122.4157726764679, 37.78894197845551 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41216778755188, 37.792227406527935 ], [ -122.412189245224, 37.79222316736003 ], [ -122.41219997406006, 37.7922146890235 ], [ -122.41221070289612, 37.79220621068598 ], [ -122.41222143173218, 37.792197732347496 ], [ -122.41222679615021, 37.792185014837955 ], [ -122.41222679615021, 37.792172297326196 ], [ -122.41222679615021, 37.79215957981227 ], [ -122.41222143173218, 37.79214262312365 ], [ -122.41221070289612, 37.79212990560461 ], [ -122.41219997406006, 37.79212142725738 ], [ -122.412189245224, 37.79211718808339 ], [ -122.41217315196992, 37.79211294890915 ], [ -122.41215705871583, 37.79210870973468 ], [ -122.41214632987977, 37.79210870973468 ], [ -122.41212487220766, 37.79211294890915 ], [ -122.41210877895357, 37.79212142725738 ], [ -122.4120980501175, 37.79212990560461 ], [ -122.4120926856995, 37.79213838395086 ], [ -122.41208195686345, 37.79215534064047 ], [ -122.41208195686345, 37.792163818983845 ], [ -122.41208195686345, 37.7921807756676 ], [ -122.41208732128145, 37.79219349317789 ], [ -122.4120980501175, 37.79220621068598 ], [ -122.41210877895357, 37.7922146890235 ], [ -122.41212487220766, 37.79222316736003 ], [ -122.41213560104372, 37.79222316736003 ], [ -122.4121516942978, 37.792227406527935 ], [ -122.41216778755188, 37.792227406527935 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41856217384338, 37.80407916891281 ], [ -122.41857290267944, 37.80414274620098 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42814838886261, 37.791498266071706 ], [ -122.42822349071504, 37.7918458804425 ], [ -122.42822349071504, 37.791985773569245 ], [ -122.42816984653473, 37.79221044985483 ], [ -122.42812693119049, 37.79226979819359 ], [ -122.4280893802643, 37.792392733886466 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41522550582886, 37.799687965116924 ], [ -122.41532742977142, 37.80016694115013 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41021513938904, 37.80060776590507 ], [ -122.4101722240448, 37.800637436707525 ], [ -122.41009175777435, 37.8006331980222 ], [ -122.41001665592194, 37.80061200459185 ], [ -122.4099415540695, 37.80055690164453 ], [ -122.40989327430725, 37.8005357081923 ], [ -122.40979135036469, 37.80053994688323 ], [ -122.40966796875, 37.80055690164453 ], [ -122.40963578224182, 37.80056961771293 ], [ -122.4095606803894, 37.800620481964714 ], [ -122.40952849388123, 37.80065015276208 ], [ -122.40950167179108, 37.80067982354754 ], [ -122.40945875644684, 37.800760358476495 ], [ -122.40945339202881, 37.80081969994693 ], [ -122.40945875644684, 37.800849370664245 ], [ -122.40948021411896, 37.80095109874748 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43000447750092, 37.80373585061088 ], [ -122.4299830198288, 37.80362564933614 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40948021411896, 37.80095109874748 ], [ -122.40954995155334, 37.80103163338067 ], [ -122.40965187549591, 37.80109097463317 ], [ -122.40977525711058, 37.80112064524154 ], [ -122.4098879098892, 37.80112064524154 ], [ -122.41000592708588, 37.80112064524154 ], [ -122.41010248661041, 37.801116406583915 ], [ -122.41011857986449, 37.80119270238364 ], [ -122.41014003753662, 37.80128171405037 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41630375385284, 37.8038630057236 ], [ -122.41663098335266, 37.80382062071034 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41010248661041, 37.801116406583915 ], [ -122.41012394428253, 37.80107825865449 ], [ -122.41018295288086, 37.801023156054995 ], [ -122.41027414798735, 37.80096805341439 ], [ -122.4103707075119, 37.80097653074639 ], [ -122.41045653820038, 37.80099772407214 ], [ -122.41050481796265, 37.80103163338067 ], [ -122.41052627563477, 37.8010824973143 ], [ -122.41053164005278, 37.80113759986951 ], [ -122.41054773330687, 37.80123085025394 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41392731666565, 37.798958898290465 ], [ -122.41461396217346, 37.798891077754746 ], [ -122.41466760635376, 37.79884021231206 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41780042648315, 37.801256282156544 ], [ -122.41832077503204, 37.80117998642249 ], [ -122.41840660572053, 37.801196941036885 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41903424263, 37.80279489597278 ], [ -122.41907715797424, 37.80301530083702 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41468906402588, 37.799276806221656 ], [ -122.41402924060822, 37.79937005895526 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41283297538757, 37.7980772264691 ], [ -122.41373419761658, 37.797950061395746 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43018686771393, 37.803684988504514 ], [ -122.43017077445985, 37.803600218249386 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42754757404327, 37.79150250528121 ], [ -122.42752611637115, 37.79141348183073 ], [ -122.42750465869904, 37.79135413280419 ], [ -122.42748320102692, 37.79133293671171 ], [ -122.42748856544493, 37.79126086995186 ], [ -122.42749929428099, 37.791171846210275 ], [ -122.42747247219086, 37.791095540060674 ], [ -122.42748320102692, 37.79098955916663 ], [ -122.42747783660889, 37.79081151092244 ], [ -122.42745101451874, 37.79066737631527 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42038607597351, 37.801035872043144 ], [ -122.42086350917816, 37.800993485407474 ], [ -122.42109417915344, 37.800938382744725 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4287760257721, 37.7914261994731 ], [ -122.428759932518, 37.79132869749249 ], [ -122.42874383926393, 37.791235434608055 ], [ -122.42871701717378, 37.79109130082786 ], [ -122.42874920368196, 37.79090477434197 ], [ -122.42887258529665, 37.79072672589345 ], [ -122.42901742458345, 37.79055715554363 ], [ -122.42909252643587, 37.79045965241627 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41243064403534, 37.799764262392124 ], [ -122.41245210170746, 37.79976002365667 ], [ -122.41256475448608, 37.79976002365667 ], [ -122.41301000118256, 37.7996922038565 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42600798606873, 37.79188403313969 ], [ -122.42613136768341, 37.79187555476423 ], [ -122.42628157138824, 37.791837402062676 ], [ -122.42637276649475, 37.791807727725605 ], [ -122.42647469043732, 37.79176957498901 ], [ -122.42660343647003, 37.79170598705089 ], [ -122.4267429113388, 37.791650877460256 ], [ -122.42686092853548, 37.79163815985657 ], [ -122.42695212364197, 37.79163815985657 ], [ -122.42705941200258, 37.79162544225071 ], [ -122.4271720647812, 37.79162120304828 ], [ -122.4272793531418, 37.79158728941997 ], [ -122.4273866415024, 37.791549136569564 ], [ -122.42754757404332, 37.79150250528116 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42009103298187, 37.795987452670616 ], [ -122.4197906255722, 37.79603408112835 ], [ -122.41968333721161, 37.79604679797535 ], [ -122.4194473028183, 37.796084948503236 ], [ -122.41934537887575, 37.796097665341506 ], [ -122.41930246353151, 37.796097665341506 ], [ -122.41927027702332, 37.79609342639566 ], [ -122.4192649126053, 37.796072231662805 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42216169834137, 37.80196413326501 ], [ -122.42217779159546, 37.80193446299548 ], [ -122.42214024066925, 37.80175220250688 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41555273532867, 37.79338469026892 ], [ -122.41562247276306, 37.79369414402182 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42816984653473, 37.792210449854856 ], [ -122.42798745632172, 37.79224012403017 ], [ -122.4276602268219, 37.792282515688555 ], [ -122.426598072052, 37.792422407988575 ], [ -122.42638885974884, 37.792439364613 ], [ -122.42636740207672, 37.79232490732258 ], [ -122.4263834953308, 37.79226979819359 ], [ -122.42645323276518, 37.792227406527935 ], [ -122.42648541927336, 37.792176536497024 ], [ -122.42650151252745, 37.79211294890915 ], [ -122.42651224136351, 37.791990012750766 ], [ -122.42651760578151, 37.7919094682602 ], [ -122.42651760578151, 37.79181620610884 ], [ -122.42647469043727, 37.79176957498901 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41297245025635, 37.79691577733512 ], [ -122.41272032260893, 37.79694121072341 ], [ -122.41269886493681, 37.79691577733512 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43190348148346, 37.801569941568545 ], [ -122.43186056613922, 37.801374964252865 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43188202381134, 37.80324842065075 ], [ -122.43183374404907, 37.803028016482195 ], [ -122.43186056613922, 37.802909337042074 ], [ -122.43186056613922, 37.80279913453407 ], [ -122.43186056613922, 37.802663500452326 ], [ -122.43184983730316, 37.80251938896754 ], [ -122.43177473545074, 37.80245157170093 ], [ -122.43168890476227, 37.80239223154159 ], [ -122.43162453174591, 37.802379515786946 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43184983730316, 37.80251938896754 ], [ -122.43188202381134, 37.802413424461115 ], [ -122.43186593055727, 37.80231169839192 ], [ -122.43175327777864, 37.8022438809346 ], [ -122.43167817592622, 37.80231169839192 ], [ -122.43162453174591, 37.802379515786946 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43186593055725, 37.80231169839192 ], [ -122.43193566799162, 37.80226507389672 ], [ -122.43198394775389, 37.8022438809346 ], [ -122.43198394775389, 37.80212096163453 ], [ -122.43197858333588, 37.80209976863108 ], [ -122.43189275264739, 37.801667430033376 ], [ -122.43190348148345, 37.801569941568545 ], [ -122.43198394775389, 37.801569941568545 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43175327777863, 37.8022438809346 ], [ -122.43165135383606, 37.80216758622069 ], [ -122.43153870105743, 37.80209553002967 ], [ -122.4314421415329, 37.80209553002967 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43175327777863, 37.8022438809346 ], [ -122.43171036243439, 37.80201923516251 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42945194244385, 37.792218928191865 ], [ -122.42922127246857, 37.7921087097347 ], [ -122.42913544178008, 37.792049361266564 ], [ -122.42907106876372, 37.79200696947442 ], [ -122.4289584159851, 37.79188827232706 ], [ -122.42882966995238, 37.79171446544581 ], [ -122.42877602577208, 37.79142619947307 ], [ -122.42927491664885, 37.79134141514943 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42907106876373, 37.79200696947442 ], [ -122.42879211902618, 37.79199849111306 ], [ -122.42856681346895, 37.79202816537352 ], [ -122.42836296558382, 37.79208751385868 ], [ -122.42816984653474, 37.792210449854856 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42887258529663, 37.79072672589345 ], [ -122.42870092391968, 37.790786075423945 ], [ -122.42849171161652, 37.79083694641218 ], [ -122.42823421955109, 37.79085390340045 ], [ -122.42795526981354, 37.79083694641218 ], [ -122.42765486240387, 37.79074792215984 ], [ -122.42754757404327, 37.79065889780023 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41269886493683, 37.79691577733512 ], [ -122.41260766983032, 37.79691577733512 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41510212421417, 37.79343132036943 ], [ -122.41517186164856, 37.793770447487695 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40998446941376, 37.79419435419653 ], [ -122.40990400314332, 37.793808599191095 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41517186164856, 37.793770447487695 ], [ -122.41522014141083, 37.79402903086939 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41222143173218, 37.79248175615706 ], [ -122.41243064403534, 37.79245208207878 ], [ -122.41237163543703, 37.79214262312365 ], [ -122.41230726242067, 37.79184164125269 ], [ -122.41209805011749, 37.79186707638781 ], [ -122.41188883781433, 37.79189251151417 ], [ -122.41194784641266, 37.792197732347496 ], [ -122.41201221942902, 37.7925071910718 ], [ -122.41222143173218, 37.79248175615706 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41255939006805, 37.79211718808339 ], [ -122.41243600845337, 37.79213414477786 ], [ -122.41237163543701, 37.79214262312365 ], [ -122.41222679615021, 37.79215957981227 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4120819568634, 37.7921807756676 ], [ -122.41194784641266, 37.792197732347496 ], [ -122.41187810897827, 37.79220621068598 ], [ -122.41181910037996, 37.792210449854856 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4122428894043, 37.79259197405775 ], [ -122.41223216056824, 37.79254110427786 ], [ -122.41222143173218, 37.79248175615703 ], [ -122.41216778755188, 37.79222740652791 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41214632987976, 37.7921087097347 ], [ -122.41212487220764, 37.79200273029387 ], [ -122.41211950778961, 37.79196457765796 ], [ -122.41209805011749, 37.79186707638783 ], [ -122.41208195686342, 37.79179501014891 ], [ -122.4120604991913, 37.791684791059375 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41223216056824, 37.791990012750766 ], [ -122.41212487220764, 37.79200273029387 ], [ -122.41201758384705, 37.79201544783479 ], [ -122.41200685501099, 37.79201544783479 ], [ -122.41200149059296, 37.79201120865472 ], [ -122.41199612617494, 37.79201120865472 ], [ -122.41199076175691, 37.79200273029387 ], [ -122.41199076175691, 37.79199849111309 ], [ -122.41199076175691, 37.791990012750766 ], [ -122.41199612617494, 37.791985773569245 ], [ -122.41199612617494, 37.791981534387475 ], [ -122.412006855011, 37.79197729520547 ], [ -122.41211950778961, 37.79196457765796 ], [ -122.41222143173218, 37.79195186010829 ], [ -122.41223216056824, 37.79195186010829 ], [ -122.4122428894043, 37.79195186010829 ], [ -122.41225361824036, 37.79196033847499 ], [ -122.41225361824036, 37.79196457765796 ], [ -122.41225898265839, 37.79197305602321 ], [ -122.41225361824036, 37.79197729520547 ], [ -122.41224825382234, 37.791985773569245 ], [ -122.41223752498628, 37.791990012750766 ], [ -122.41223216056825, 37.791990012750766 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41318702697754, 37.797742357971856 ], [ -122.41366982460022, 37.79767029746383 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41283297538757, 37.7980772264691 ], [ -122.41287052631378, 37.79842480988598 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41753220558167, 37.79990837925248 ], [ -122.41773068904877, 37.799874469428296 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42162525653839, 37.804036784023594 ], [ -122.42172718048096, 37.80449030107562 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43004739284515, 37.8056431543148 ], [ -122.42999911308289, 37.80569401507263 ], [ -122.42997229099275, 37.80571096865078 ], [ -122.42945194244386, 37.80571096865078 ], [ -122.42941975593568, 37.80567282309445 ], [ -122.42938220500947, 37.80561348552322 ], [ -122.42934465408327, 37.8055202406721 ], [ -122.42931783199315, 37.805473618202406 ], [ -122.42921590805058, 37.805397326824874 ], [ -122.42914080619816, 37.805325273784824 ], [ -122.4290978908539, 37.805274412773024 ], [ -122.42907106876378, 37.80522355172624 ], [ -122.42905497550969, 37.80516845221935 ], [ -122.42905497550969, 37.805104875814145 ], [ -122.42906033992772, 37.805041299354215 ], [ -122.42908179759984, 37.80496924596682 ], [ -122.42912471294407, 37.804905669390145 ], [ -122.42916762828831, 37.80485056964608 ], [ -122.42921054363255, 37.80481242364534 ], [ -122.42927491664891, 37.80477427762488 ], [ -122.4293285608292, 37.80475732383168 ], [ -122.42970407009129, 37.80471070088035 ], [ -122.42973625659948, 37.80481666209083 ], [ -122.42973625659948, 37.80486328497526 ], [ -122.42971479892736, 37.804909907830286 ], [ -122.42968797683722, 37.804952292218374 ], [ -122.429650425911, 37.80499043814688 ], [ -122.42957532405859, 37.80504553778657 ], [ -122.42956459522253, 37.805075206806336 ], [ -122.42956459522253, 37.805104875814145 ], [ -122.42954313755041, 37.8051260679553 ], [ -122.42952704429632, 37.80514726009035 ], [ -122.42952167987832, 37.805189644342235 ], [ -122.42952167987832, 37.80528288961077 ], [ -122.42951631546029, 37.805325273784796 ], [ -122.42950022220622, 37.805367657934546 ], [ -122.42946803569802, 37.805405803648476 ], [ -122.42941975593577, 37.805435472523484 ], [ -122.4293178319932, 37.805473618202406 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43154406547546, 37.805087922096874 ], [ -122.43141531944273, 37.80505825308222 ], [ -122.43129730224608, 37.80502010718875 ], [ -122.4311739206314, 37.80496924596682 ], [ -122.43113100528716, 37.80493957690451 ], [ -122.43109881877898, 37.804905669390145 ], [ -122.43107736110686, 37.80485056964608 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43102371692657, 37.805189644342235 ], [ -122.43106126785277, 37.80513878323706 ], [ -122.4311739206314, 37.80496924596682 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43117392063141, 37.80496924596682 ], [ -122.43137240409851, 37.80468950862004 ], [ -122.4314421415329, 37.804592024144156 ], [ -122.43147432804108, 37.804524208780705 ], [ -122.4314957857132, 37.804456393354975 ], [ -122.43150115013123, 37.8044012932757 ], [ -122.4314957857132, 37.80432076231669 ], [ -122.43146896362305, 37.80415546165202 ], [ -122.43146359920503, 37.8040876458877 ], [ -122.43147432804109, 37.804036784023594 ], [ -122.43149042129518, 37.80399016061739 ], [ -122.43152260780336, 37.80395201417221 ], [ -122.43157088756561, 37.80390962921005 ], [ -122.43159234523773, 37.803888436719845 ], [ -122.43160843849182, 37.80385876722335 ], [ -122.43161916732788, 37.80381214370476 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42163062095642, 37.80375280463857 ], [ -122.42167890071869, 37.80377823567278 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41783261299133, 37.79839937700852 ], [ -122.41792917251588, 37.79886564503779 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42038607597351, 37.801035872043144 ], [ -122.41945266723633, 37.801146077182054 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41840660572052, 37.804083407400384 ], [ -122.41833150386809, 37.804087645887726 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42214024066925, 37.80175220250688 ], [ -122.42212414741518, 37.801658952780684 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41309583187103, 37.80243885595654 ], [ -122.41294026374817, 37.802332891334544 ], [ -122.41286516189575, 37.80227778967103 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41478562355042, 37.80023052180601 ], [ -122.41487681865692, 37.80067982354754 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41537570953369, 37.80438433939691 ], [ -122.41515576839447, 37.80440553174483 ], [ -122.4151396751404, 37.80428685451822 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41539180278778, 37.80452844724276 ], [ -122.41518259048462, 37.80454963954931 ], [ -122.4152684211731, 37.80499043814688 ], [ -122.4153220653534, 37.80521507488171 ], [ -122.41533815860748, 37.80533798903228 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41480708122253, 37.80460050106022 ], [ -122.41500020027159, 37.80457507030913 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41505920886993, 37.80378671268225 ], [ -122.41509675979614, 37.80374008911817 ], [ -122.41515040397644, 37.803668034461275 ], [ -122.41518259048462, 37.80362141082225 ], [ -122.41506457328796, 37.80352392493655 ], [ -122.41496801376341, 37.803464585638736 ], [ -122.41484463214873, 37.80337981513064 ], [ -122.41472125053406, 37.80330352159015 ], [ -122.41469442844391, 37.8033586224884 ], [ -122.41467297077179, 37.80340100776679 ], [ -122.4146568775177, 37.80343915449654 ], [ -122.41464078426363, 37.80348153972872 ], [ -122.4147266149521, 37.80356631012008 ], [ -122.41478562355043, 37.80362988784974 ], [ -122.41483390331268, 37.80365955743819 ], [ -122.41488218307495, 37.803680749994065 ], [ -122.41491973400116, 37.80370194254389 ], [ -122.41493582725523, 37.80371465807083 ], [ -122.41505920886992, 37.80378671268225 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41532742977142, 37.80016694115013 ], [ -122.41478562355042, 37.80023052180601 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42172718048096, 37.80449030107562 ], [ -122.42174863815308, 37.80457507030913 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4150002002716, 37.80457507030913 ], [ -122.41498410701753, 37.80449030107562 ], [ -122.41497337818147, 37.80442672408664 ], [ -122.41504311561584, 37.80441824715063 ], [ -122.41505920886993, 37.80441824715063 ], [ -122.41508066654205, 37.804414008682265 ], [ -122.41515576839447, 37.804405531744806 ], [ -122.41516649723053, 37.804469108752045 ], [ -122.41518259048462, 37.80454963954928 ], [ -122.4151074886322, 37.8045623549303 ], [ -122.41507530212402, 37.8045623549303 ], [ -122.41500020027159, 37.80457507030913 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43011176586151, 37.80407493042498 ], [ -122.42999911308289, 37.804087645887726 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.428759932518, 37.79132869749249 ], [ -122.42813766002655, 37.7914177210451 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41857290267944, 37.80414274620096 ], [ -122.4184763431549, 37.804151223168596 ], [ -122.41840660572052, 37.804083407400384 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4244737625122, 37.80537613476155 ], [ -122.42456495761871, 37.8053464658627 ], [ -122.4246346950531, 37.805278651192005 ], [ -122.42461860179901, 37.80516845221932 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42451667785645, 37.80558805512094 ], [ -122.4244737625122, 37.80537613476155 ], [ -122.42437183856964, 37.805367657934546 ], [ -122.4242752790451, 37.805321035368515 ], [ -122.42425918579102, 37.80521507488171 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4263083934784, 37.7925071910718 ], [ -122.42615282535553, 37.79263860465855 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42638885974884, 37.792439364613 ], [ -122.42630839347841, 37.7925071910718 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41417407989502, 37.795618662922415 ], [ -122.4142438173294, 37.79597897476603 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41027414798737, 37.80278641884947 ], [ -122.41032242774963, 37.8030322550301 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41961896419525, 37.80192598577343 ], [ -122.41951704025269, 37.801930224384584 ], [ -122.41949021816255, 37.80194294021658 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41512894630432, 37.805248982254014 ], [ -122.41524159908295, 37.80541851888209 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43004739284515, 37.8056431543148 ], [ -122.43003129959106, 37.805702491862185 ], [ -122.43003129959106, 37.80571096865078 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41906106472015, 37.80216758622069 ], [ -122.41952776908875, 37.80210400723224 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41949021816254, 37.80194294021658 ], [ -122.41932928562163, 37.80196837187395 ], [ -122.41912007331847, 37.801989564915125 ], [ -122.41905570030211, 37.80200651934365 ], [ -122.41879284381865, 37.80202771237386 ], [ -122.41868019104002, 37.802053144002095 ], [ -122.41857826709746, 37.80204890539802 ], [ -122.41846561431883, 37.80206585981292 ], [ -122.41836369037628, 37.802091291428006 ], [ -122.41819202899931, 37.802091291428006 ], [ -122.41804718971251, 37.80212943883419 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42557346820831, 37.80453268570453 ], [ -122.42551982402802, 37.80428685451822 ], [ -122.42547690868378, 37.80410459983463 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41000592708588, 37.794313047639136 ], [ -122.40998446941376, 37.79419435419653 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40935146808624, 37.80424446974821 ], [ -122.40944802761078, 37.80471070088038 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4218076467514, 37.8026635004523 ], [ -122.42229580879211, 37.80259144474508 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41891086101532, 37.80217606341504 ], [ -122.41887331008911, 37.802171824817975 ], [ -122.41884648799898, 37.802171824817975 ], [ -122.4188143014908, 37.80218030201184 ], [ -122.41876602172853, 37.80219301780076 ], [ -122.418669462204, 37.80220997218259 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41906106472015, 37.80216758622069 ], [ -122.41894841194154, 37.80218877920469 ], [ -122.41891086101533, 37.80217606341504 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4196457862854, 37.8020743370189 ], [ -122.41957068443298, 37.80208705282608 ], [ -122.41952776908873, 37.80210400723224 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41811692714691, 37.802256596712596 ], [ -122.41799890995026, 37.80227778967103 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42765486240387, 37.79074792215982 ], [ -122.427858710289, 37.79084966415375 ], [ -122.42799818515778, 37.79097684144913 ], [ -122.42810010910034, 37.791231195383254 ], [ -122.42813766002655, 37.7914177210451 ], [ -122.42814838886261, 37.791498266071706 ], [ -122.42796063423157, 37.79151098369947 ], [ -122.42777287960052, 37.79151522290824 ], [ -122.42754757404327, 37.79150250528121 ], [ -122.42765486240387, 37.791672073461534 ], [ -122.42769777774811, 37.79178653176325 ], [ -122.42775678634644, 37.791930664187284 ], [ -122.42778360843658, 37.79203240455262 ], [ -122.42775678634644, 37.79208751385868 ], [ -122.42770314216614, 37.792146862296164 ], [ -122.42767095565796, 37.79219349317789 ], [ -122.4276602268219, 37.792282515688555 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42874383926392, 37.791235434608055 ], [ -122.42826640605927, 37.791078583127835 ], [ -122.42799818515778, 37.79097684144913 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40990400314331, 37.793554254129674 ], [ -122.40993082523345, 37.79366447043045 ], [ -122.40991473197937, 37.79366447043045 ], [ -122.40991473197937, 37.79367718768535 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41866946220398, 37.80220997218259 ], [ -122.41864264011383, 37.80220997218259 ], [ -122.4186158180237, 37.80220997218259 ], [ -122.41857826709749, 37.802214210777436 ], [ -122.41839051246644, 37.802248119527505 ], [ -122.41828858852388, 37.802239642341455 ], [ -122.41811692714693, 37.802256596712596 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41481244564056, 37.80571096865078 ], [ -122.41476953029633, 37.805473618202406 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43019223213196, 37.80427413908977 ], [ -122.4299830198288, 37.80431652384273 ], [ -122.42989182472229, 37.80434619315537 ], [ -122.4298220872879, 37.80438433939691 ], [ -122.42977917194366, 37.80442672408664 ], [ -122.42974162101746, 37.804473347217254 ], [ -122.42972016334534, 37.804524208780705 ], [ -122.42970407009126, 37.80456659339016 ], [ -122.4296933412552, 37.804613216432486 ], [ -122.4296933412552, 37.804659839445364 ], [ -122.42970407009126, 37.8047107008804 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42911398410797, 37.80571096865078 ], [ -122.42910861968996, 37.805689776677475 ], [ -122.42907643318178, 37.80564739271261 ], [ -122.42903351783752, 37.80561772392273 ], [ -122.42897987365723, 37.805609247123456 ], [ -122.42892086505891, 37.805609247123456 ], [ -122.42864191532136, 37.80565163111018 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43102371692657, 37.805189644342235 ], [ -122.43092179298401, 37.805248982254014 ], [ -122.4308305978775, 37.80529136644753 ], [ -122.43074476718903, 37.805325273784824 ], [ -122.43059456348419, 37.80538037317473 ], [ -122.43046045303345, 37.80541851888209 ], [ -122.43028342723846, 37.805460902978304 ], [ -122.43019223213196, 37.805499048644094 ], [ -122.4301278591156, 37.80554143269408 ], [ -122.43007957935333, 37.805592293521954 ], [ -122.43004739284515, 37.8056431543148 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43106126785278, 37.80513878323706 ], [ -122.43108808994293, 37.805075206806336 ], [ -122.43109881877899, 37.80502858405566 ], [ -122.4310827255249, 37.80488447718576 ], [ -122.43107736110689, 37.80485056964608 ], [ -122.43106663227083, 37.80479546986089 ], [ -122.43105053901674, 37.80470222397696 ], [ -122.43102371692659, 37.804617454889396 ], [ -122.43099153041841, 37.804541162627416 ], [ -122.43094861507417, 37.804473347217225 ], [ -122.43090569972993, 37.80442248561876 ], [ -122.43083059787752, 37.8043673855142 ], [ -122.4307554960251, 37.80432500079042 ], [ -122.43066966533662, 37.80429109299386 ], [ -122.43057847023012, 37.804269900613114 ], [ -122.43048727512361, 37.80425718518177 ], [ -122.4303960800171, 37.80425718518177 ], [ -122.43029415607454, 37.80426566213625 ], [ -122.430192232132, 37.80427413908975 ], [ -122.43017077445988, 37.80418089254759 ], [ -122.43014395236973, 37.80412579226278 ], [ -122.43011176586155, 37.80407493042495 ], [ -122.43007421493535, 37.80396472965613 ], [ -122.43005812168127, 37.8039053907125 ], [ -122.4300473928452, 37.803846051721194 ], [ -122.4300473928452, 37.80379518969071 ], [ -122.43006885051733, 37.80376552015676 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43154406547546, 37.805087922096874 ], [ -122.4313884973526, 37.805087922096874 ], [ -122.4312973022461, 37.805096398955996 ], [ -122.43121147155762, 37.80510911424287 ], [ -122.43112564086914, 37.805134544810045 ], [ -122.43102371692657, 37.80518964434226 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4319839477539, 37.805079445236736 ], [ -122.43185520172119, 37.805092160526534 ], [ -122.43172109127045, 37.805096398955996 ], [ -122.43162989616394, 37.805096398955996 ], [ -122.43154406547546, 37.805087922096874 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43155479431152, 37.80349001677221 ], [ -122.4315869808197, 37.80351968641686 ], [ -122.43160843849182, 37.803557833085314 ], [ -122.43161916732788, 37.80360869527926 ], [ -122.43161916732788, 37.80381214370479 ], [ -122.43163526058197, 37.80399016061739 ], [ -122.43164062499999, 37.8040706919369 ], [ -122.43165671825408, 37.80415546165205 ], [ -122.4316835403442, 37.8042402312699 ], [ -122.43175327777858, 37.8044521548888 ], [ -122.43176937103267, 37.804519970318424 ], [ -122.43178546428675, 37.80459626260232 ], [ -122.43180155754084, 37.80479970830737 ], [ -122.4318122863769, 37.804876000302286 ], [ -122.43185520172113, 37.805092160526534 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4318015575409, 37.80339676924003 ], [ -122.43173718452454, 37.80339676924003 ], [ -122.43167281150818, 37.80339676924003 ], [ -122.43163526058197, 37.80343067744717 ], [ -122.43155479431154, 37.80349001677224 ], [ -122.4315118789673, 37.80347730120659 ], [ -122.43145823478699, 37.80348153972872 ], [ -122.43106663227083, 37.80357902567038 ], [ -122.43097007274629, 37.803600218249386 ], [ -122.43087351322174, 37.80361293379386 ], [ -122.4307769536972, 37.80362564933614 ], [ -122.43068039417267, 37.803629887849716 ], [ -122.43046045303345, 37.803634126363086 ], [ -122.4303638935089, 37.80363836487621 ], [ -122.4302726984024, 37.80365531892627 ], [ -122.43018686771391, 37.803684988504514 ], [ -122.43012249469756, 37.803727373595606 ], [ -122.43006885051726, 37.80376552015679 ], [ -122.4300044775009, 37.803735850610906 ], [ -122.42991864681242, 37.80374432762523 ], [ -122.42897450923918, 37.80386300572362 ], [ -122.42893159389494, 37.803807905201644 ], [ -122.4284380674362, 37.803846051721244 ], [ -122.42814302444454, 37.8038799597221 ], [ -122.42796599864955, 37.803909629210104 ], [ -122.4277567863464, 37.80393082169422 ], [ -122.42747247219081, 37.80397744513788 ], [ -122.42731690406795, 37.80399863760256 ], [ -122.42724716663356, 37.80400711458672 ], [ -122.42726325988765, 37.804045261003424 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41528987884521, 37.79770420829989 ], [ -122.41531670093536, 37.79772540256451 ], [ -122.41532742977142, 37.79777202992531 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41532742977142, 37.79777202992531 ], [ -122.41539716720581, 37.7977593133753 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4153220653534, 37.79785680686951 ], [ -122.41533815860748, 37.7978228961035 ], [ -122.41532742977142, 37.79777202992529 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41373419761658, 37.797950061395746 ], [ -122.41385757923126, 37.79793310603611 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41385757923126, 37.79793310603611 ], [ -122.41391122341156, 37.79790343414736 ], [ -122.41397023200987, 37.798026360466025 ], [ -122.4139755964279, 37.798026360466025 ], [ -122.41396486759184, 37.79792462835481 ], [ -122.41401851177214, 37.797950061395746 ], [ -122.41400778293608, 37.79789071761994 ], [ -122.41404533386229, 37.797831373796456 ], [ -122.41413116455077, 37.797844090334074 ], [ -122.41431891918181, 37.79781865725665 ], [ -122.41441011428832, 37.79789071761994 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41467833518982, 37.79712348308311 ], [ -122.41463005542757, 37.796877627236306 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41751611232758, 37.796292656587205 ], [ -122.41753220558167, 37.796335045920344 ], [ -122.41754293441772, 37.79635624057777 ], [ -122.4175375699997, 37.79636471843907 ], [ -122.41744101047516, 37.796373196299385 ], [ -122.41743564605713, 37.796381674158695 ], [ -122.41745173931122, 37.79640286880277 ], [ -122.41745710372923, 37.796407107730865 ], [ -122.4174302816391, 37.79643678022064 ], [ -122.41740882396698, 37.79643678022064 ], [ -122.41738736629486, 37.796441019146776 ], [ -122.41736054420471, 37.79645373592373 ], [ -122.41732835769653, 37.79646645269848 ], [ -122.41731226444244, 37.79646645269848 ], [ -122.41728007793427, 37.7964622137738 ], [ -122.41726398468019, 37.7964622137738 ], [ -122.4171942472458, 37.796470691622936 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41804718971252, 37.80212943883419 ], [ -122.41797745227814, 37.80213791603292 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41064429283142, 37.80085360933718 ], [ -122.41050481796265, 37.80103163338067 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4103707075119, 37.80097653074639 ], [ -122.41038680076598, 37.80095957608142 ], [ -122.41045117378233, 37.80087056402646 ], [ -122.41048872470854, 37.800794267894 ], [ -122.41045653820036, 37.8007434037619 ], [ -122.41038680076598, 37.80067982354751 ], [ -122.41033315658568, 37.80065439144644 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41077303886414, 37.800756119798216 ], [ -122.41070866584778, 37.80081546127204 ], [ -122.41064429283142, 37.80085360933718 ], [ -122.41048872470856, 37.800794267894 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40945339202881, 37.80081969994693 ], [ -122.4093943834305, 37.80082393862155 ], [ -122.40933001041412, 37.800832415970085 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40965187549591, 37.80109097463317 ], [ -122.40958750247955, 37.801150315837965 ], [ -122.40934610366821, 37.80118422507647 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41038680076599, 37.80048484388214 ], [ -122.41021513938904, 37.80060776590507 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40952849388123, 37.80065015276208 ], [ -122.40937292575836, 37.80054842426436 ], [ -122.40933001041412, 37.80055266295457 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41032242774963, 37.8030322550301 ], [ -122.41034924983978, 37.80316364989455 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40966796875, 37.80055690164453 ], [ -122.40964114665985, 37.8003915925559 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40989327430725, 37.8005357081923 ], [ -122.40986108779907, 37.80036192165469 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4101722240448, 37.800637436707525 ], [ -122.41033315658571, 37.80065439144644 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41495192050934, 37.804299569944476 ], [ -122.41497337818146, 37.80442672408664 ], [ -122.41477489471436, 37.8044521548888 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43187129497528, 37.80557533991654 ], [ -122.4318391084671, 37.805664346301484 ], [ -122.43183374404907, 37.80571096865078 ] ] }, "properties": { "class": "driveway", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43166208267212, 37.80569401507261 ], [ -122.43181228637695, 37.80561348552322 ], [ -122.43187129497528, 37.80557533991654 ], [ -122.43192493915558, 37.80554143269405 ], [ -122.4319839477539, 37.80552871748163 ] ] }, "properties": { "class": "driveway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4319839477539, 37.805354942692176 ], [ -122.43160843849182, 37.80541428047113 ], [ -122.43166208267212, 37.80569401507263 ] ] }, "properties": { "class": "driveway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.431640625, 37.80571096865078 ], [ -122.43166208267212, 37.80569401507261 ] ] }, "properties": { "class": "driveway", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42909789085388, 37.80413850771679 ], [ -122.42989182472229, 37.804032545533346 ], [ -122.42985427379608, 37.8038502902222 ], [ -122.42905497550966, 37.80395201417224 ], [ -122.4290978908539, 37.80413850771679 ] ] }, "properties": { "class": "driveway", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4319839477539, 37.80440553174483 ], [ -122.43190348148346, 37.80441824715063 ] ] }, "properties": { "class": "driveway", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42891013622284, 37.80412155377767 ], [ -122.42909789085388, 37.80413850771679 ] ] }, "properties": { "class": "driveway", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41190493106842, 37.79716163305497 ], [ -122.41179764270782, 37.79717434970787 ] ] }, "properties": { "class": "driveway", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42909789085388, 37.80413850771679 ], [ -122.42909252643585, 37.804176654065614 ], [ -122.42914080619812, 37.8044394394888 ], [ -122.42914080619812, 37.804519970318424 ], [ -122.42916762828827, 37.80471070088035 ], [ -122.42916762828827, 37.80472341623366 ], [ -122.42916226387024, 37.804740370034615 ], [ -122.42915153503418, 37.804753085382806 ], [ -122.42913007736206, 37.804761562280376 ], [ -122.42908716201782, 37.80477003917697 ], [ -122.42867410182953, 37.80481666209083 ] ] }, "properties": { "class": "driveway", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41176009178162, 37.78815345398132 ], [ -122.41239309310913, 37.78807290530868 ], [ -122.4127846956253, 37.78802627182651 ], [ -122.41341233253479, 37.78794572301525 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4176824092865, 37.79235034229134 ], [ -122.41856753826141, 37.79224012403017 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41113245487213, 37.79338469026892 ], [ -122.41172790527344, 37.79331262551028 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41234481334686, 37.79532193420228 ], [ -122.41251647472383, 37.796152771615276 ], [ -122.41254329681396, 37.79619516102869 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41099834442139, 37.79083694641218 ], [ -122.41109490394592, 37.79129902295112 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40936756134033, 37.795686486462564 ], [ -122.40933001041412, 37.79549997157738 ] ] }, "properties": { "class": "service", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41076231002808, 37.79153217974085 ], [ -122.41120755672455, 37.791477070020576 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42177546024323, 37.7880177930084 ], [ -122.42021441459656, 37.788225523771885 ], [ -122.41856217384338, 37.78843325395139 ] ] }, "properties": { "class": "service", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41860508918762, 37.79269371351246 ], [ -122.41868555545807, 37.79304980050072 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41052627563477, 37.79644949699833 ], [ -122.41059064865114, 37.79676317682161 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41070866584778, 37.79344403766446 ], [ -122.41113245487213, 37.79338469026892 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41090714931488, 37.79639862987445 ], [ -122.4110358953476, 37.79703870529732 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41694211959839, 37.79707261642332 ], [ -122.41699039936066, 37.797051421971396 ], [ -122.41747856140137, 37.79699207747368 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41233944892883, 37.787814301082065 ], [ -122.41239309310913, 37.78807290530868 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4155580997467, 37.80395201417224 ], [ -122.41566002368927, 37.803913867707394 ], [ -122.41600334644318, 37.80387148272332 ], [ -122.41630375385284, 37.8038630057236 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41245746612549, 37.80182425903287 ], [ -122.41245746612549, 37.80170133903446 ], [ -122.41232335567474, 37.801010440064665 ] ] }, "properties": { "class": "service", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40956604480743, 37.79566105264231 ], [ -122.40965187549591, 37.796089187449574 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41671681404114, 37.7959238683626 ], [ -122.41722106933595, 37.79586028399988 ], [ -122.41834223270416, 37.79571192027404 ], [ -122.41835832595825, 37.79571192027404 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41281688213348, 37.79616124949991 ], [ -122.41297245025635, 37.79691577733512 ], [ -122.41301000118254, 37.79711500530891 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41254329681396, 37.79619516102869 ], [ -122.41257011890411, 37.796233311479945 ], [ -122.41269886493683, 37.79691577733512 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41274178028107, 37.787814301082065 ], [ -122.4127846956253, 37.78802627182651 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41160452365875, 37.80204466679365 ], [ -122.41145968437195, 37.801336816456995 ], [ -122.41146504878998, 37.801294429994016 ], [ -122.41149723529816, 37.80124780485665 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.80472341623366 ], [ -122.40944802761078, 37.80471070088035 ], [ -122.41004884243011, 37.80463864717042 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41596579551697, 37.790205295826226 ], [ -122.41598188877106, 37.79030279928923 ], [ -122.41601407527924, 37.79045965241627 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40965723991394, 37.79847143680532 ], [ -122.40974843502045, 37.798937704379746 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41183519363403, 37.79505911634061 ], [ -122.41189956665039, 37.795381280041674 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42660343647003, 37.79479205852346 ], [ -122.42711842060089, 37.79471999513757 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41010785102844, 37.801862406576994 ], [ -122.41053700447083, 37.80181578179817 ], [ -122.41060674190521, 37.802171824817975 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42193639278412, 37.788000835369274 ], [ -122.42345988750458, 37.787814301082065 ] ] }, "properties": { "class": "service", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42008566856384, 37.804235992791284 ], [ -122.421555519104, 37.804049499492926 ], [ -122.42162525653839, 37.804036784023594 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41185665130615, 37.799806649733185 ], [ -122.41239309310913, 37.799721875026755 ], [ -122.41241991519928, 37.79971763628886 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42914080619812, 37.8044394394888 ], [ -122.42867946624756, 37.804494539539625 ], [ -122.42865800857544, 37.80449877800336 ], [ -122.42864191532135, 37.80450301646686 ], [ -122.42863118648529, 37.80451149339313 ], [ -122.42862582206726, 37.804524208780705 ], [ -122.42862045764925, 37.804541162627416 ], [ -122.42862045764925, 37.804553878009884 ], [ -122.42867410182954, 37.80481666209083 ], [ -122.42869555950166, 37.80493957690451 ], [ -122.42869555950166, 37.80496500753008 ], [ -122.42869019508363, 37.804986199711365 ], [ -122.42867946624757, 37.805011630320884 ], [ -122.42866337299351, 37.80503282248878 ], [ -122.42863655090336, 37.80504977621872 ], [ -122.42860436439518, 37.80506249151361 ], [ -122.428572177887, 37.80507096837568 ], [ -122.42850780487065, 37.805087922096874 ], [ -122.4282342195511, 37.8051557369427 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41337478160858, 37.80440977021365 ], [ -122.4150002002716, 37.80420632343443 ], [ -122.4150162935257, 37.80420632343443 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41643249988556, 37.79112097545263 ], [ -122.41645932197571, 37.791231195383254 ], [ -122.41652369499207, 37.79152794053307 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41141676902771, 37.78853499913242 ], [ -122.41181910037994, 37.78848412655941 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41173326969147, 37.79017986011907 ], [ -122.41215705871582, 37.7901247493902 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4110895395279, 37.7931769740092 ], [ -122.4116849899292, 37.793100669930396 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4105155467987, 37.80505401465057 ], [ -122.41059601306915, 37.80546090297828 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4167650938034, 37.787869413534104 ], [ -122.41664707660675, 37.78788637120338 ], [ -122.41648614406584, 37.787903328868786 ], [ -122.4164968729019, 37.78797115949147 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4219685792923, 37.78896741458879 ], [ -122.42040216922759, 37.78916666399649 ], [ -122.41875529289244, 37.7893786308617 ] ] }, "properties": { "class": "service", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41070866584778, 37.78848412655941 ], [ -122.41016685962677, 37.78855195664898 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40972697734833, 37.79749226531914 ], [ -122.40989863872528, 37.79844176513279 ] ] }, "properties": { "class": "service", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.79899280853499 ], [ -122.40974843502045, 37.79893770437972 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40944802761078, 37.80471070088035 ], [ -122.40954458713531, 37.80517692906923 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42369055747986, 37.78874696780958 ], [ -122.42212414741516, 37.78894197845551 ] ] }, "properties": { "class": "service", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41753220558167, 37.79464369265235 ], [ -122.41761803627014, 37.795093028375305 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40985572338104, 37.80371041956209 ], [ -122.41029024124146, 37.80365955743819 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41145968437195, 37.79920898597781 ], [ -122.41166353225708, 37.80014574758602 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40968406200409, 37.796983599684395 ], [ -122.41016685962677, 37.79692001623378 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41692066192627, 37.795220198366735 ], [ -122.41700112819672, 37.79563561881328 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41054773330688, 37.79464369265235 ], [ -122.41046726703644, 37.79427065714581 ], [ -122.4103707075119, 37.793808599191095 ], [ -122.41036534309387, 37.7937492520884 ], [ -122.4102795124054, 37.79330838640464 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42140531539917, 37.794147724577606 ], [ -122.42158770561217, 37.795029443297494 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42948412895203, 37.80073492640316 ], [ -122.4295002222061, 37.80080698392156 ], [ -122.42967188358307, 37.801654714153955 ], [ -122.42985963821411, 37.80258296759842 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42784261703491, 37.800942621412574 ], [ -122.42782652378084, 37.80084513199108 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4311363697052, 37.80052299211805 ], [ -122.43115246295928, 37.80059928853073 ], [ -122.43122220039366, 37.80098500807743 ], [ -122.43131339550017, 37.801447021146885 ], [ -122.43144214153288, 37.802095530029646 ], [ -122.43150115013121, 37.802379515786946 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42946803569794, 37.800637436707525 ], [ -122.42948412895203, 37.80073492640316 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43112027645111, 37.80042974083997 ], [ -122.4311363697052, 37.80052299211805 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4249941110611, 37.8031975582087 ], [ -122.42656588554382, 37.80299834664004 ], [ -122.42821276187898, 37.80279489597278 ], [ -122.42985963821413, 37.80258296759842 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42387294769287, 37.797615192322034 ], [ -122.42543935775757, 37.79741172682703 ], [ -122.42709159851074, 37.7972040218895 ], [ -122.42872774600983, 37.79699207747368 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42424845695496, 37.79947602782782 ], [ -122.42436647415161, 37.79945907281843 ], [ -122.42570757865906, 37.799289522510435 ], [ -122.42581486701965, 37.799276806221634 ], [ -122.42591679096222, 37.79926408993067 ], [ -122.42663562297821, 37.79917083706328 ], [ -122.42746710777283, 37.79906910652822 ], [ -122.42910325527191, 37.79885716746353 ], [ -122.43075013160706, 37.79864946659016 ], [ -122.4319839477539, 37.79849263084982 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42368519306183, 37.79667839862234 ], [ -122.42525160312653, 37.79648340839478 ], [ -122.42690920829773, 37.796275700847126 ], [ -122.42853999137878, 37.79606375376797 ], [ -122.43018686771393, 37.79585604504044 ], [ -122.43182301521301, 37.79564409675727 ], [ -122.43198394775392, 37.79562714086835 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42406070232391, 37.79854349653181 ], [ -122.42419481277466, 37.79852654130836 ], [ -122.4256271123886, 37.798344272410596 ], [ -122.42727935314177, 37.79813657009509 ], [ -122.42891550064085, 37.79792886719558 ], [ -122.43056237697601, 37.797716924859415 ], [ -122.43144214153288, 37.79760671460429 ], [ -122.43198394775389, 37.79753889282709 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42443084716797, 37.80041278604948 ], [ -122.4245595932007, 37.800395831255116 ], [ -122.4259275197983, 37.800222044388356 ], [ -122.42600262165071, 37.80020932826012 ], [ -122.4261260032654, 37.80019661212968 ], [ -122.42649614810945, 37.80014998629934 ], [ -122.42685556411743, 37.80010336043956 ], [ -122.42757976055145, 37.80001010863167 ], [ -122.4276602268219, 37.80000163118878 ], [ -122.4277675151825, 37.79998467630002 ], [ -122.42929100990295, 37.79978969479964 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42330431938171, 37.794809014604034 ], [ -122.42486000061037, 37.7946097804114 ], [ -122.42652833461763, 37.79440206759597 ], [ -122.42815911769867, 37.79419011514147 ], [ -122.42980599403383, 37.79397816207892 ], [ -122.43145287036897, 37.793770447487695 ], [ -122.43198394775392, 37.793702622188576 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42480635643005, 37.802269312488406 ], [ -122.4249565601349, 37.802252358120164 ], [ -122.42637813091278, 37.80207009841604 ], [ -122.42802500724794, 37.801862406576994 ], [ -122.42967188358308, 37.801654714153955 ], [ -122.43131339550018, 37.801447021146885 ], [ -122.43186056613922, 37.80137496425289 ], [ -122.4319839477539, 37.80136224832311 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41192638874054, 37.797271843974116 ], [ -122.41191565990448, 37.7972167385351 ], [ -122.41190493106842, 37.79716163305497 ], [ -122.41187274456024, 37.79700055526198 ], [ -122.41173326969147, 37.79629689552161 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41173326969147, 37.79629689552161 ], [ -122.41163671016693, 37.79583908920013 ], [ -122.41155624389648, 37.79541519192846 ], [ -122.41147577762605, 37.7950633553458 ], [ -122.41136848926544, 37.79454195588281 ], [ -122.41136848926544, 37.79452923877677 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42929100990295, 37.7997896947997 ], [ -122.42945194244386, 37.80056114033423 ], [ -122.42946803569794, 37.800637436707525 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42872774600983, 37.79699207747368 ], [ -122.42891550064087, 37.79792886719558 ], [ -122.42910325527191, 37.7988571674635 ], [ -122.42917835712433, 37.79923441857653 ], [ -122.42929100990295, 37.79978969479967 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41336941719055, 37.796084948503236 ], [ -122.41346061229706, 37.79652579761845 ], [ -122.41355180740355, 37.79694121072341 ], [ -122.41355180740355, 37.797034466405485 ], [ -122.41356253623961, 37.797131960856326 ], [ -122.41366982460022, 37.79767029746383 ], [ -122.41371273994446, 37.797844090334074 ], [ -122.41373419761658, 37.797950061395746 ], [ -122.41375029087065, 37.798030599300965 ], [ -122.41390585899352, 37.79887836139735 ], [ -122.41392731666564, 37.798958898290465 ], [ -122.4140292406082, 37.79937005895526 ], [ -122.41412580013274, 37.79983208212613 ], [ -122.41422235965729, 37.80030257981648 ], [ -122.41430282592772, 37.800756119798216 ], [ -122.41439938545227, 37.80122661160268 ], [ -122.4144959449768, 37.801692861785654 ], [ -122.41468906402588, 37.80261687617921 ], [ -122.41484463214873, 37.80337981513064 ], [ -122.41488218307494, 37.80354511753136 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42365837097168, 37.80528712802926 ], [ -122.42374420166016, 37.80571096865078 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42223680019379, 37.7903451920591 ], [ -122.42214560508728, 37.79036214916025 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42240846157074, 37.790328234954075 ], [ -122.42223680019379, 37.7903451920591 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42398023605347, 37.79016290297611 ], [ -122.4225264787674, 37.790315517122764 ], [ -122.42240846157074, 37.790328234954075 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42037534713745, 37.80571096865078 ], [ -122.42028415203094, 37.80523626699121 ], [ -122.42019295692444, 37.80478699296722 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4108213186264, 37.791837402062676 ], [ -122.41110563278198, 37.791799249341395 ], [ -122.41171717643738, 37.79172294383976 ], [ -122.41206049919128, 37.79168479105935 ], [ -122.41245210170746, 37.79163815985659 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41136848926544, 37.79452923877677 ], [ -122.41128802299501, 37.79453771684771 ], [ -122.41124510765076, 37.79454619491767 ], [ -122.4111968278885, 37.7945589120208 ], [ -122.4111592769623, 37.79456315105469 ], [ -122.4105477333069, 37.79464369265235 ], [ -122.41008639335634, 37.794707278062184 ], [ -122.4098986387253, 37.7947284731866 ], [ -122.4097377061844, 37.79474966830498 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40973770618439, 37.79474966830498 ], [ -122.40988254547119, 37.79551268851633 ], [ -122.40990400314331, 37.795618662922415 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40954458713531, 37.79385522902405 ], [ -122.40973770618439, 37.79474966830498 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40954458713531, 37.79385522902405 ], [ -122.4095231294632, 37.79385522902405 ], [ -122.40933001041412, 37.79388066346596 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.803295044525235 ], [ -122.40976452827452, 37.803239943579534 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4130368232727, 37.80282880445625 ], [ -122.41294026374817, 37.802332891334544 ], [ -122.41290807723998, 37.802184540608394 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41245210170746, 37.79163815985659 ], [ -122.41410970687866, 37.791421960259214 ], [ -122.41576731204987, 37.791209999255514 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.792782735420424 ], [ -122.4093621969223, 37.792960778914576 ], [ -122.4095445871353, 37.79385522902405 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.79203664373147 ], [ -122.4108213186264, 37.791837402062676 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41145431995392, 37.80112064524151 ], [ -122.41232335567474, 37.801010440064665 ], [ -122.41266131401063, 37.80098076941203 ], [ -122.41267740726471, 37.80098076941203 ], [ -122.41269886493683, 37.80098076941203 ], [ -122.41430282592773, 37.800756119798216 ], [ -122.41487681865692, 37.80067982354754 ], [ -122.41596579551697, 37.80053994688325 ], [ -122.41667926311493, 37.80044669562654 ], [ -122.41749465465546, 37.80034496684863 ], [ -122.41762340068817, 37.80032801203869 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41102516651154, 37.80117574776828 ], [ -122.41130948066713, 37.801141838525915 ], [ -122.41145431995393, 37.80112064524151 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40976452827454, 37.803239943579534 ], [ -122.41034924983978, 37.80316364989455 ], [ -122.41138994693756, 37.80303649357777 ], [ -122.41231262683868, 37.8029220527055 ], [ -122.4130368232727, 37.80282880445625 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.80109945195105 ], [ -122.4093461036682, 37.80118422507645 ], [ -122.40938365459441, 37.801379202895646 ], [ -122.40946948528288, 37.80184969073116 ], [ -122.40957677364348, 37.802303221213165 ], [ -122.40976452827452, 37.803239943579534 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.80042974083997 ], [ -122.40964114665985, 37.8003915925559 ], [ -122.40986108779907, 37.80036192165466 ], [ -122.41015613079071, 37.80032377333558 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41015613079071, 37.800323773335606 ], [ -122.4102795124054, 37.800311057224846 ], [ -122.41084277629852, 37.800251715345794 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41717278957367, 37.79634352378406 ], [ -122.41719424724579, 37.796470691622936 ], [ -122.41721034049988, 37.796559708979885 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42462933063507, 37.80129019134637 ], [ -122.42446303367615, 37.80132833916636 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42484390735626, 37.803218750897145 ], [ -122.4249941110611, 37.8031975582087 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42352962493896, 37.79669959318127 ], [ -122.42368519306183, 37.79667839862234 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42348670959473, 37.7957246371765 ], [ -122.42505848407745, 37.79552964443152 ], [ -122.42671072483061, 37.79532193420228 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42372810840607, 37.797636386612204 ], [ -122.42387294769287, 37.797615192322034 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42409288883209, 37.79949722158412 ], [ -122.42424845695496, 37.79947602782782 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42428600788116, 37.80042974083997 ], [ -122.42443084716797, 37.80041278604948 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42467224597931, 37.8022905054432 ], [ -122.42480635643005, 37.802269312488406 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42225289344788, 37.79042573825485 ], [ -122.42242455482484, 37.790396063350826 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42242455482483, 37.790396063350826 ], [ -122.42254257202148, 37.79037910625748 ], [ -122.42398023605347, 37.79016290297611 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41963505744934, 37.80199804212988 ], [ -122.41961896419525, 37.80192598577343 ], [ -122.41945266723633, 37.80114607718208 ], [ -122.41944193840027, 37.80109521329224 ], [ -122.41943657398224, 37.80106978133419 ], [ -122.41931855678558, 37.80045517301839 ], [ -122.41925418376923, 37.80012455401583 ], [ -122.41913080215454, 37.79951417658475 ], [ -122.41912543773653, 37.79948874408232 ], [ -122.4190664291382, 37.79919626967515 ], [ -122.41900742053987, 37.798916510462924 ], [ -122.41897523403169, 37.79874272011575 ], [ -122.41893768310548, 37.79856892935968 ], [ -122.41887867450718, 37.79826373484735 ], [ -122.41869091987614, 37.797339665996475 ], [ -122.4185031652451, 37.79643254129425 ], [ -122.41849780082707, 37.796398629874425 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42347061634064, 37.804358908571395 ], [ -122.42365837097168, 37.80528712802926 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41850316524506, 37.79643254129425 ], [ -122.41861045360565, 37.79641982451364 ], [ -122.41999447345734, 37.79623755041776 ], [ -122.42006957530975, 37.796241789355314 ], [ -122.42013931274414, 37.79625450616659 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42012321949005, 37.79614429372968 ], [ -122.42013931274414, 37.79625450616659 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42010712623596, 37.79606375376797 ], [ -122.42012321949005, 37.79614429372968 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42013931274414, 37.79625450616659 ], [ -122.42031633853912, 37.797110766421454 ], [ -122.42050409317017, 37.79804755463823 ], [ -122.42063820362091, 37.798696093367674 ], [ -122.42069721221924, 37.79898433097531 ], [ -122.42088496685028, 37.79991261797943 ], [ -122.42107272148132, 37.800832415970085 ], [ -122.42109417915344, 37.800938382744725 ], [ -122.4212658405304, 37.80178187284963 ], [ -122.42145359516144, 37.80271436326215 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41685092449188, 37.804977722839574 ], [ -122.41688847541809, 37.80521507488168 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42019295692444, 37.80478699296722 ], [ -122.42008566856384, 37.804235992791284 ], [ -122.42001593112946, 37.80388843671987 ], [ -122.4198228120804, 37.8029220527055 ], [ -122.41964578628541, 37.8020743370189 ], [ -122.41963505744936, 37.80199804212988 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42243528366089, 37.80354087901289 ], [ -122.42224752902985, 37.80362141082225 ], [ -122.42178618907927, 37.803672272972435 ], [ -122.42174327373503, 37.803684988504514 ], [ -122.4217003583908, 37.80371041956209 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41855680942535, 37.80500739188654 ], [ -122.41870164871216, 37.80571096865078 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42174863815308, 37.80423175431249 ], [ -122.42181837558745, 37.80456659339016 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4130368232727, 37.80282880445625 ], [ -122.41362690925598, 37.8027567489103 ], [ -122.41365909576416, 37.80275251034657 ], [ -122.41372346878052, 37.8027440332184 ], [ -122.41378784179688, 37.80272707895914 ], [ -122.41387367248535, 37.80270588612963 ], [ -122.41457104682922, 37.80262111475069 ], [ -122.41468906402588, 37.80261687617921 ], [ -122.41481781005861, 37.80260839903546 ], [ -122.41623938083649, 37.802430378792366 ], [ -122.41634130477905, 37.80240494729402 ], [ -122.41645395755768, 37.80238375437207 ], [ -122.4178808927536, 37.80220573358751 ], [ -122.4179881811142, 37.80220997218259 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41362690925598, 37.80571096865078 ], [ -122.41360545158386, 37.80561772392276 ], [ -122.41351962089539, 37.80515573694268 ], [ -122.41343379020691, 37.80468527016725 ], [ -122.41337478160858, 37.80440977021365 ], [ -122.41322457790375, 37.80376128165094 ], [ -122.4130368232727, 37.80282880445625 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41576731204987, 37.791209999255514 ], [ -122.4161159992218, 37.79116336775309 ], [ -122.41643249988557, 37.79112097545263 ], [ -122.4171942472458, 37.79102771230599 ], [ -122.41741418838502, 37.79099803764374 ], [ -122.41763412952425, 37.79097260220947 ], [ -122.41907179355623, 37.790798793174275 ], [ -122.42069184780122, 37.79057835185864 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42243528366089, 37.80354087901289 ], [ -122.4232828617096, 37.803426438922145 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42145359516144, 37.802714363262176 ], [ -122.42152333259583, 37.802803373095095 ], [ -122.42160379886627, 37.80321451235996 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42145359516144, 37.802714363262176 ], [ -122.42143750190736, 37.80282032733683 ], [ -122.42152333259584, 37.803295044525235 ], [ -122.42157161235811, 37.80340100776679 ], [ -122.42161452770235, 37.80349001677221 ], [ -122.42177009582521, 37.80354511753136 ], [ -122.42183446884157, 37.80354935604959 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41845488548279, 37.80405373798221 ], [ -122.41842806339265, 37.804019830061115 ], [ -122.41840660572053, 37.8039732066442 ], [ -122.41829931735992, 37.80347306268421 ], [ -122.41821885108948, 37.8033586224884 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42170035839081, 37.80371041956209 ], [ -122.42168426513672, 37.80375280463857 ], [ -122.4216789007187, 37.80377823567278 ], [ -122.42168426513672, 37.803871482723345 ], [ -122.42168426513672, 37.8038969137167 ], [ -122.4216789007187, 37.8039350601903 ], [ -122.42167353630067, 37.80396472965615 ], [ -122.42166280746461, 37.80399016061739 ], [ -122.42164671421055, 37.8040155915699 ], [ -122.42162525653843, 37.804036784023616 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41741418838501, 37.79099803764377 ], [ -122.41720497608185, 37.79004844215926 ], [ -122.4170172214508, 37.789111552511955 ], [ -122.41682946681976, 37.788178890386014 ], [ -122.4167650938034, 37.78786941353413 ], [ -122.41675436496735, 37.787814301082065 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42561638355255, 37.7899551776589 ], [ -122.4254232645035, 37.78899709006654 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.78913698858683 ], [ -122.41025805473328, 37.78901828682906 ], [ -122.41097152233122, 37.78892502102847 ], [ -122.41188883781433, 37.78881055829413 ], [ -122.41355180740355, 37.78860282917525 ], [ -122.41518795490263, 37.78839086008467 ], [ -122.41682946681975, 37.788178890386014 ], [ -122.41788625717162, 37.78804322945981 ], [ -122.41846561431883, 37.78796692007937 ], [ -122.41969943046566, 37.787814301082065 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42069184780121, 37.79057835185864 ], [ -122.42080450057983, 37.79061226595001 ], [ -122.42216169834137, 37.79043845606721 ], [ -122.42225289344788, 37.79042573825485 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42369055747986, 37.78874696780958 ], [ -122.42533206939697, 37.78853923851192 ], [ -122.42696821689606, 37.788331508630314 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41102516651154, 37.80117574776828 ], [ -122.41120755672455, 37.802095530029646 ], [ -122.41138994693756, 37.80303649357777 ], [ -122.41148114204405, 37.80347306268421 ], [ -122.41158306598662, 37.80396472965615 ], [ -122.41177082061766, 37.80489719250909 ], [ -122.41186201572417, 37.80536341952066 ], [ -122.41193175315856, 37.80571096865078 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4262011051178, 37.80115455449363 ], [ -122.42621719837189, 37.80123932755579 ], [ -122.42637813091278, 37.80207009841604 ], [ -122.42656588554382, 37.80299834664004 ], [ -122.42676973342896, 37.80394353718175 ], [ -122.42682337760925, 37.80419784647312 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41840660572052, 37.801196941036885 ], [ -122.418674826622, 37.80115879314906 ], [ -122.41908252239227, 37.80112064524151 ], [ -122.41931319236755, 37.80109097463317 ], [ -122.41943657398224, 37.801069781334164 ], [ -122.42036461830139, 37.80095109874748 ], [ -122.4204236268997, 37.80094262141255 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41187274456024, 37.79700055526198 ], [ -122.41189420223236, 37.79699631636796 ], [ -122.41260766983032, 37.79691577733512 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40990400314331, 37.795618662922415 ], [ -122.41001665592194, 37.795605946001736 ], [ -122.41003274917601, 37.795605946001736 ], [ -122.41108417510985, 37.79547029871132 ], [ -122.41155624389648, 37.79541519192846 ], [ -122.41189956665039, 37.79538128004165 ], [ -122.41234481334685, 37.79532193420228 ], [ -122.41318166255951, 37.795220198366735 ], [ -122.41402387619019, 37.795105745384284 ], [ -122.41483390331267, 37.79499129222454 ], [ -122.41647541522978, 37.79477934146046 ], [ -122.41695821285248, 37.79471999513755 ], [ -122.41753220558167, 37.79464369265235 ], [ -122.41796135902405, 37.79458858525292 ], [ -122.41812765598297, 37.794567390088325 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41290807723999, 37.802184540608394 ], [ -122.41288125514986, 37.80202347376832 ], [ -122.41285979747774, 37.801892076875475 ], [ -122.41275787353517, 37.80143006658992 ], [ -122.41267740726472, 37.80098076941203 ], [ -122.41254866123201, 37.80034072814651 ], [ -122.41248428821565, 37.80003977967424 ], [ -122.41243064403534, 37.799764262392124 ], [ -122.41241991519928, 37.79971763628886 ], [ -122.4122965335846, 37.79909453917511 ], [ -122.41210877895355, 37.79816624189021 ], [ -122.41192638874055, 37.797271843974116 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.79949298283334 ], [ -122.41064965724944, 37.799314955081435 ], [ -122.41145968437193, 37.79920898597781 ], [ -122.41194248199463, 37.799141165671685 ], [ -122.4122804403305, 37.79909877794875 ], [ -122.4122965335846, 37.79909453917511 ], [ -122.41231799125671, 37.79909030040123 ], [ -122.41293489933014, 37.7990097636514 ], [ -122.41390585899353, 37.79887836139735 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41096079349518, 37.800883280040885 ], [ -122.41098761558533, 37.801103690609615 ], [ -122.41102516651154, 37.80117574776828 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41095542907715, 37.80077731318719 ], [ -122.41084277629852, 37.800251715345794 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40990400314331, 37.795618662922415 ], [ -122.41000592708588, 37.79605527587214 ], [ -122.41009712219237, 37.79650036408717 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41454422473907, 37.79877663045951 ], [ -122.41459250450133, 37.79881054078769 ], [ -122.41466760635375, 37.798840212312086 ], [ -122.41475343704224, 37.7988359735236 ], [ -122.41512894630432, 37.79879358562553 ], [ -122.41520941257477, 37.79877239166739 ], [ -122.41540253162383, 37.79872152614298 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41104662418365, 37.797314232745414 ], [ -122.41127729415895, 37.79735662149236 ], [ -122.41191029548645, 37.797271843974144 ], [ -122.41192638874054, 37.797271843974144 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41926491260529, 37.796072231662805 ], [ -122.41918981075287, 37.796089187449574 ], [ -122.41915225982666, 37.796097665341506 ], [ -122.41856217384338, 37.79616972738355 ], [ -122.41854608058931, 37.79617396632503 ], [ -122.41847634315492, 37.79616972738355 ], [ -122.41844952106477, 37.79616972738355 ], [ -122.41833150386812, 37.79618244420722 ], [ -122.41751611232759, 37.796292656587205 ], [ -122.41717278957368, 37.79634352378406 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41721034049988, 37.796559708979885 ], [ -122.41731226444244, 37.79656394789897 ], [ -122.41839587688446, 37.79644525807265 ], [ -122.41850316524506, 37.79643254129425 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41846024990082, 37.79621635572625 ], [ -122.41844952106476, 37.79616972738355 ], [ -122.41835832595825, 37.79571192027404 ], [ -122.41831004619598, 37.79547877667427 ], [ -122.41821885108948, 37.795008248259386 ], [ -122.41812765598299, 37.794567390088325 ], [ -122.41793990135194, 37.79368566585404 ], [ -122.41777360439302, 37.7928124093659 ], [ -122.41774678230287, 37.79267251780427 ], [ -122.41768240928651, 37.792350342291314 ], [ -122.41760194301607, 37.79192642500235 ], [ -122.41741418838502, 37.79099803764374 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42671072483063, 37.79532193420228 ], [ -122.42834150791168, 37.79512270139288 ], [ -122.42999374866486, 37.79489803396326 ], [ -122.43163526058197, 37.79468608293166 ], [ -122.4319839477539, 37.794639453623084 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42580950260162, 37.79087933887559 ], [ -122.42561638355255, 37.7899551776589 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42872774600983, 37.79699207747368 ], [ -122.43037462234497, 37.79678437135622 ], [ -122.43119001388551, 37.7966826375346 ], [ -122.43198394775392, 37.796580903572895 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42158770561218, 37.795029443297494 ], [ -122.4217700958252, 37.795945063138014 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.794809014604034 ], [ -122.40960359573364, 37.79477510243896 ], [ -122.40963041782379, 37.79476662439528 ], [ -122.40973770618439, 37.79474966830498 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42598116397858, 37.791761096600425 ], [ -122.42433965206148, 37.79197305602319 ], [ -122.42278397083282, 37.792168058155134 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41410970687866, 37.791421960259214 ], [ -122.4140989780426, 37.79141348183073 ], [ -122.41406679153442, 37.79131597983338 ], [ -122.41392195224762, 37.79057835185864 ], [ -122.41391122341156, 37.79045965241627 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41245210170746, 37.79163815985659 ], [ -122.41245746612547, 37.79165511666101 ], [ -122.4124789237976, 37.79174413982033 ], [ -122.41255939006804, 37.79211718808339 ], [ -122.41265058517455, 37.79254110427786 ], [ -122.41274178028105, 37.79299469191242 ], [ -122.41283297538753, 37.79343555946803 ], [ -122.41300463676451, 37.79433000382966 ], [ -122.4131816625595, 37.79519900338339 ], [ -122.4131816625595, 37.795220198366735 ], [ -122.41336941719054, 37.796084948503236 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41907179355621, 37.7907987931743 ], [ -122.41923272609712, 37.791701747853054 ], [ -122.41932392120363, 37.792185014837926 ], [ -122.41942584514618, 37.79259621320449 ], [ -122.41952240467073, 37.79312186551574 ], [ -122.4195921421051, 37.7934779504405 ], [ -122.41976916790009, 37.79435967715371 ], [ -122.41994082927705, 37.795241393344035 ], [ -122.42009103298189, 37.795987452670616 ], [ -122.42010712623598, 37.79606375376797 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41226971149445, 37.790675854829374 ], [ -122.41226971149445, 37.790781836173345 ], [ -122.41241991519928, 37.791549136569564 ], [ -122.41244673728943, 37.79162544225071 ], [ -122.41245210170746, 37.79163815985659 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42278397083282, 37.792168058155134 ], [ -122.42262303829193, 37.792185014837955 ], [ -122.42106199264526, 37.792396973044646 ], [ -122.41942584514618, 37.79259621320451 ], [ -122.41860508918762, 37.79269371351246 ], [ -122.417773604393, 37.7928124093659 ], [ -122.41644322872162, 37.792973496290564 ], [ -122.4161159992218, 37.79301588752816 ], [ -122.41553127765654, 37.79309219169453 ], [ -122.41526305675507, 37.793126104632066 ], [ -122.41505920886993, 37.79315153932501 ], [ -122.41447448730469, 37.7932236042408 ], [ -122.41283297538757, 37.793435559468 ], [ -122.41211950778961, 37.79352881957535 ], [ -122.41151869297029, 37.79360512321199 ], [ -122.41118609905244, 37.79364751408718 ], [ -122.4106013774872, 37.79371957851917 ], [ -122.41036534309389, 37.7937492520884 ], [ -122.4099361896515, 37.793804360113896 ], [ -122.40990400314332, 37.793808599191095 ], [ -122.40957140922548, 37.793850989949526 ], [ -122.40954458713533, 37.793855229024025 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4108213186264, 37.791837402062676 ], [ -122.4110037088394, 37.792765778874795 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41100370883942, 37.792765778874795 ], [ -122.41108953952791, 37.7931769740092 ], [ -122.41113245487215, 37.79338469026892 ], [ -122.41118609905244, 37.79364751408718 ], [ -122.41127192974092, 37.794062943376915 ], [ -122.41136848926546, 37.79452923877677 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41793990135193, 37.79368566585406 ], [ -122.41629302501678, 37.793893380683656 ], [ -122.41567611694335, 37.79397392301147 ], [ -122.41522014141083, 37.79402903086939 ], [ -122.41465687751769, 37.7941053339894 ], [ -122.41300463676453, 37.79433000382966 ], [ -122.41184592247008, 37.794465653213706 ], [ -122.41136848926544, 37.79452923877677 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43156552314758, 37.79104466925053 ], [ -122.4319839477539, 37.7909937984053 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41576731204987, 37.791209999255514 ], [ -122.41578876972198, 37.79131597983335 ], [ -122.41583168506622, 37.791544897362755 ], [ -122.41589605808258, 37.79187555476423 ], [ -122.41594970226288, 37.79212990560461 ], [ -122.4161159992218, 37.79301588752816 ], [ -122.41629302501678, 37.793893380683656 ], [ -122.4164754152298, 37.79477934146046 ], [ -122.41666316986084, 37.795678008523424 ], [ -122.41671681404114, 37.7959238683626 ], [ -122.41674900054932, 37.79611886006703 ], [ -122.41685092449188, 37.796602098159795 ], [ -122.41694211959839, 37.79707261642332 ], [ -122.41703867912292, 37.79755160941504 ], [ -122.41722106933594, 37.79847991442385 ], [ -122.41731226444244, 37.79894618194477 ], [ -122.41739273071288, 37.799319193842436 ], [ -122.4173980951309, 37.7994082077669 ], [ -122.41753220558165, 37.79990837925248 ], [ -122.41762340068816, 37.80032801203869 ], [ -122.41773068904875, 37.80084089331766 ], [ -122.41780042648314, 37.801256282156544 ], [ -122.41780579090114, 37.8012859526985 ], [ -122.41789162158962, 37.801718293529156 ], [ -122.41797745227812, 37.80213791603292 ], [ -122.41798818111418, 37.80220997218259 ], [ -122.41799890995024, 37.80227778967103 ], [ -122.41817593574523, 37.80312974156482 ], [ -122.41821885108946, 37.8033586224884 ], [ -122.41821885108946, 37.80349001677221 ], [ -122.41833150386809, 37.804087645887726 ], [ -122.41839051246639, 37.80421480039474 ], [ -122.41855680942531, 37.80500739188654 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43168354034424, 37.80327809039246 ], [ -122.43188202381134, 37.80324842065075 ], [ -122.4319839477539, 37.80323570504354 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42494583129883, 37.801209656995105 ], [ -122.42471516132355, 37.80126899810456 ], [ -122.42462933063507, 37.801290191346396 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43150115013123, 37.802379515786946 ], [ -122.43168354034422, 37.80327809039246 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42985963821411, 37.80258296759844 ], [ -122.43150115013123, 37.802379515786946 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42985963821411, 37.80258296759844 ], [ -122.43006348609924, 37.803532401975204 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42215096950531, 37.797831373796456 ], [ -122.42372810840607, 37.797636386612204 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42929100990295, 37.7997896947997 ], [ -122.4309378862381, 37.799581996548405 ], [ -122.43198394775392, 37.799446356558846 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4217700958252, 37.795945063138014 ], [ -122.42196321487425, 37.79690306063769 ], [ -122.4220597743988, 37.797373576984334 ], [ -122.4221509695053, 37.797831373796456 ], [ -122.42232799530028, 37.798696093367674 ], [ -122.42233872413634, 37.79877239166739 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42233872413635, 37.79877239166739 ], [ -122.42235481739044, 37.79884445110031 ], [ -122.4224728345871, 37.79941244652253 ], [ -122.4225103855133, 37.79962014525055 ], [ -122.4225264787674, 37.79970068133491 ], [ -122.42254793643951, 37.79978969479964 ], [ -122.42270350456238, 37.800556901644505 ], [ -122.42271423339844, 37.80062895933659 ], [ -122.42273032665251, 37.80070949432101 ], [ -122.42288589477538, 37.801480930249134 ], [ -122.42290198802947, 37.801548748406965 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42290198802948, 37.80154874840699 ], [ -122.42291808128357, 37.801633521016726 ], [ -122.42307901382446, 37.80241342446109 ], [ -122.42309510707855, 37.802489718921066 ], [ -122.42311120033264, 37.802587206171864 ], [ -122.4232828617096, 37.803426438922145 ], [ -122.42347061634064, 37.804358908571395 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.798513824888246 ], [ -122.40965723991394, 37.79847143680529 ], [ -122.40989863872528, 37.798441765132765 ], [ -122.41045653820038, 37.79837394412226 ], [ -122.41176009178162, 37.79820863014824 ], [ -122.4120819568634, 37.79817048071708 ], [ -122.41210877895355, 37.79816624189018 ], [ -122.41213560104369, 37.79816200306305 ], [ -122.41283297538756, 37.7980772264691 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.80233712992234 ], [ -122.40957677364348, 37.802303221213165 ], [ -122.4106067419052, 37.802171824817975 ], [ -122.41120755672453, 37.80209553002967 ], [ -122.41160452365874, 37.80204466679365 ], [ -122.41209268569945, 37.8019810876994 ], [ -122.41238236427306, 37.801947178826744 ], [ -122.41243600845335, 37.80190055410142 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4168348312378, 37.804833615870386 ], [ -122.41672754287718, 37.80429533146929 ], [ -122.41663098335265, 37.80382062071034 ], [ -122.41653442382811, 37.80334166837023 ], [ -122.41634130477904, 37.80240494729402 ], [ -122.41615891456604, 37.80148940752228 ], [ -122.41605699062347, 37.801010440064665 ], [ -122.41596579551697, 37.80053994688323 ], [ -122.41594970226288, 37.80046365040925 ], [ -122.41577804088593, 37.79962014525055 ], [ -122.41568148136139, 37.79914540444263 ], [ -122.415611743927, 37.79879782441643 ], [ -122.41559028625488, 37.798696093367674 ], [ -122.41556882858276, 37.798598600981116 ], [ -122.41546154022217, 37.79806450997163 ], [ -122.41539716720581, 37.79775931337528 ], [ -122.41533815860748, 37.79746259325332 ], [ -122.41530060768127, 37.79728879948555 ], [ -122.41520404815674, 37.796805565884746 ], [ -122.4151074886322, 37.796326568055655 ], [ -122.4150162935257, 37.79588995670929 ], [ -122.41483390331268, 37.79499129222454 ], [ -122.4146568775177, 37.7941053339894 ], [ -122.4144744873047, 37.79322360424077 ], [ -122.41438865661621, 37.792786974556215 ], [ -122.41429746150972, 37.79233762480803 ], [ -122.4141150712967, 37.791438917113226 ], [ -122.4141097068787, 37.791421960259214 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42107272148132, 37.800832415970085 ], [ -122.42262303829193, 37.800637436707525 ], [ -122.42271423339844, 37.80062895933659 ], [ -122.42283225059509, 37.80061200459185 ], [ -122.42289662361145, 37.800603527218016 ], [ -122.42416799068451, 37.80044245693025 ], [ -122.42428600788116, 37.800429740839945 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41859436035156, 37.80020932826012 ], [ -122.41925418376923, 37.80012455401583 ], [ -122.41935610771179, 37.800111837870794 ], [ -122.42058455944061, 37.79995076651085 ], [ -122.42080986499786, 37.79992109543255 ], [ -122.42088496685028, 37.79991261797943 ], [ -122.42243528366089, 37.79971339755073 ], [ -122.4225264787674, 37.79970068133491 ], [ -122.42265522480011, 37.7996837263771 ], [ -122.42400169372559, 37.79950993783495 ], [ -122.42409288883209, 37.79949722158409 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41859436035156, 37.80020932826012 ], [ -122.41762340068816, 37.80032801203869 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.80424446974821 ], [ -122.40935146808624, 37.80424446974821 ], [ -122.40995228290556, 37.804176654065614 ], [ -122.41158306598662, 37.80396472965615 ], [ -122.41285443305968, 37.803807905201644 ], [ -122.41322457790373, 37.80376128165094 ], [ -122.41371810436247, 37.803697704034384 ], [ -122.41472661495207, 37.803566310120054 ], [ -122.41480171680449, 37.80355359456757 ], [ -122.41488218307494, 37.80354511753136 ], [ -122.41506457328795, 37.80352392493655 ], [ -122.41641104221343, 37.80336286101732 ], [ -122.41653442382811, 37.80334166837023 ], [ -122.41663634777068, 37.80332047571705 ], [ -122.41817593574523, 37.803129741564796 ], [ -122.4190771579742, 37.80301530083702 ], [ -122.41982281208034, 37.8029220527055 ], [ -122.4214535951614, 37.80271436326215 ], [ -122.42180764675136, 37.8026635004523 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41285979747772, 37.801892076875475 ], [ -122.41283297538757, 37.80190055410142 ], [ -122.41270422935486, 37.80190479271403 ], [ -122.41260766983032, 37.80192174716204 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41285979747772, 37.801892076875475 ], [ -122.41288661956786, 37.801887838262154 ], [ -122.41368055343628, 37.801790350088226 ], [ -122.4144959449768, 37.801692861785654 ], [ -122.41495192050934, 37.80163775964465 ], [ -122.41615891456604, 37.80148940752228 ], [ -122.41780579090118, 37.8012859526985 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41562247276306, 37.79369414402182 ], [ -122.41567611694336, 37.79397392301147 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42520332336426, 37.805096398955996 ], [ -122.42532670497894, 37.80571096865078 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4232828617096, 37.803426438922145 ], [ -122.42484390735626, 37.803218750897145 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41699039936066, 37.80571096865078 ], [ -122.41688847541809, 37.80521507488171 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4153059720993, 37.80571096865078 ], [ -122.41524159908295, 37.80541851888209 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42778897285461, 37.80515573694268 ], [ -122.42733299732208, 37.80521507488171 ], [ -122.4272471666336, 37.80521931330409 ], [ -122.4271559715271, 37.80521931330409 ], [ -122.42704331874847, 37.80521931330409 ], [ -122.4269038438797, 37.8051938827661 ], [ -122.42680728435516, 37.805164213794036 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42682337760925, 37.80419784647312 ], [ -122.42679655551912, 37.80427837756615 ], [ -122.42679655551912, 37.804337716210114 ], [ -122.42680191993713, 37.80440129327573 ], [ -122.42685556411743, 37.80462593180253 ], [ -122.42691993713379, 37.80482937742587 ], [ -122.42704331874847, 37.80521931330409 ], [ -122.42712914943696, 37.80543123411352 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42712914943695, 37.80543123411352 ], [ -122.42715060710907, 37.805321035368515 ], [ -122.42715597152709, 37.80521931330409 ], [ -122.42702186107634, 37.8048081851996 ], [ -122.42696821689604, 37.80460050106022 ], [ -122.42691993713379, 37.80438433939691 ], [ -122.42689311504364, 37.80432500079042 ], [ -122.42685556411743, 37.80426990061314 ], [ -122.42682337760925, 37.80419784647312 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42022514343262, 37.80192174716204 ], [ -122.42062211036682, 37.80187512242067 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42062211036682, 37.80187512242067 ], [ -122.42114245891571, 37.80179882732586 ], [ -122.4212658405304, 37.80178187284963 ], [ -122.42198467254639, 37.80168014591061 ], [ -122.42212414741518, 37.801658952780684 ], [ -122.42280542850496, 37.80156570293673 ], [ -122.4229019880295, 37.80154874840699 ], [ -122.42300927639012, 37.80153603250714 ], [ -122.4243557453156, 37.80134529374666 ], [ -122.42446303367619, 37.80132833916636 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42181837558746, 37.80456659339016 ], [ -122.42201149463654, 37.80549481023774 ], [ -122.42205440998077, 37.80571096865078 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41084277629852, 37.800251715345794 ], [ -122.41166353225708, 37.80014574758602 ], [ -122.41246819496155, 37.80004401839364 ], [ -122.41248428821564, 37.80003977967424 ], [ -122.41251647472382, 37.800035540954596 ], [ -122.41412580013274, 37.79983208212613 ], [ -122.41522550582884, 37.799687965116924 ], [ -122.41577804088591, 37.79962014525055 ], [ -122.41649150848387, 37.79952689283269 ], [ -122.4173980951309, 37.7994082077669 ], [ -122.41822957992552, 37.79930223879704 ], [ -122.41905033588408, 37.79919626967515 ], [ -122.41906642913814, 37.79919626967515 ], [ -122.41908252239223, 37.79919203090711 ], [ -122.4200856685638, 37.799064867752875 ], [ -122.42034852504726, 37.799030957541454 ], [ -122.42069721221922, 37.79898433097531 ], [ -122.42226898670195, 37.798780869251374 ], [ -122.42233872413634, 37.79877239166739 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41540253162384, 37.798721526143 ], [ -122.41559028625488, 37.798696093367674 ], [ -122.41722106933594, 37.79847991442385 ], [ -122.41783261299133, 37.79839937700852 ], [ -122.41887867450714, 37.79826373484738 ], [ -122.41963505744934, 37.79816200306305 ], [ -122.41989254951476, 37.79812809243717 ], [ -122.42039144039153, 37.79806450997163 ], [ -122.42050409317015, 37.79804755463823 ], [ -122.4221509695053, 37.797831373796456 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41963505744934, 37.80199804212988 ], [ -122.41953313350677, 37.8020107579502 ], [ -122.41951167583466, 37.80201499655647 ], [ -122.41947948932648, 37.802036189584236 ], [ -122.41942584514618, 37.80207857562153 ], [ -122.41940438747406, 37.802091291428006 ], [ -122.41938292980194, 37.80209553002967 ], [ -122.41935610771179, 37.80209553002967 ], [ -122.41933465003967, 37.802091291428006 ], [ -122.41931855678558, 37.8020743370189 ], [ -122.41926491260529, 37.80201499655647 ], [ -122.41923809051514, 37.80200228073689 ], [ -122.419211268425, 37.80199804212988 ], [ -122.41918444633485, 37.80200228073689 ], [ -122.4191576242447, 37.80201499655647 ], [ -122.41914153099064, 37.80203195097919 ], [ -122.41910934448246, 37.80210400723224 ], [ -122.41909325122838, 37.802125200234485 ], [ -122.41906642913824, 37.80213791603292 ], [ -122.41903424263005, 37.80214215463189 ], [ -122.41900742053991, 37.80213367743367 ], [ -122.4189859628678, 37.80211672303431 ], [ -122.41892695426947, 37.80206162120955 ], [ -122.41890549659735, 37.80204466679365 ], [ -122.4188786745072, 37.80204042818906 ], [ -122.41884648799902, 37.80204466679365 ], [ -122.4188250303269, 37.80205314400207 ], [ -122.41880893707284, 37.8020743370189 ], [ -122.41877675056463, 37.80214639323063 ], [ -122.41876065731057, 37.80216758622069 ], [ -122.41873919963845, 37.80217606341501 ], [ -122.41870701313027, 37.80218030201182 ], [ -122.41868019104012, 37.802171824817975 ], [ -122.418658733368, 37.802159109025396 ], [ -122.41859972476968, 37.80209976863108 ], [ -122.41857826709756, 37.80208705282608 ], [ -122.41855144500742, 37.80207857562153 ], [ -122.4185299873353, 37.80208281422394 ], [ -122.41850316524516, 37.802095530029646 ], [ -122.41848707199107, 37.80211672303431 ], [ -122.41845488548289, 37.80218877920469 ], [ -122.41843879222881, 37.802205733587485 ], [ -122.41841197013866, 37.802218449372056 ], [ -122.41838514804851, 37.80222268796642 ], [ -122.41835296154034, 37.802218449372056 ], [ -122.41833150386822, 37.802205733587485 ], [ -122.41827785968792, 37.80214639323063 ], [ -122.4182564020158, 37.80212943883419 ], [ -122.41823494434368, 37.80212096163453 ], [ -122.41820812225353, 37.80212096163453 ], [ -122.41818130016341, 37.80212943883419 ], [ -122.41816520690932, 37.80214639323063 ], [ -122.41813838481917, 37.80218030201182 ], [ -122.41812765598311, 37.802197256396575 ], [ -122.418106198311, 37.80220997218259 ], [ -122.41808474063888, 37.802214210777436 ], [ -122.41806328296676, 37.802214210777436 ], [ -122.41798818111434, 37.80220997218259 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42685556411743, 37.787814301082065 ], [ -122.42686629295349, 37.78786517411618 ], [ -122.42696821689606, 37.788331508630314 ], [ -122.4270647764206, 37.788789361472034 ], [ -122.4272632598877, 37.78974321244753 ], [ -122.42745101451874, 37.79066737631527 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41488218307495, 37.80354511753136 ], [ -122.41491973400116, 37.80370194254386 ], [ -122.4150162935257, 37.80420632343443 ], [ -122.41505920886993, 37.80441824715063 ], [ -122.415069937706, 37.80448182414693 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42214560508728, 37.790362149160224 ], [ -122.42078840732574, 37.790531719957585 ], [ -122.4206918478012, 37.79057835185864 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.80520235961308 ], [ -122.4095445871353, 37.80517692906923 ], [ -122.41014003753662, 37.805104875814145 ], [ -122.4105155467987, 37.80505401465057 ], [ -122.41177082061766, 37.80489719250912 ], [ -122.4134337902069, 37.80468527016725 ], [ -122.4149841070175, 37.80449030107562 ], [ -122.41505920886992, 37.80448182414693 ], [ -122.41506993770598, 37.80448182414693 ], [ -122.4150913953781, 37.80447758568221 ], [ -122.41516649723052, 37.804469108752045 ], [ -122.41598725318907, 37.8043673855142 ], [ -122.41614818572998, 37.80434619315537 ], [ -122.41659879684448, 37.8043038084194 ], [ -122.4167275428772, 37.80429533146929 ], [ -122.41684556007387, 37.80428685451822 ], [ -122.41750538349153, 37.8042020849539 ], [ -122.41833150386812, 37.804087645887726 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41192638874054, 37.797271843974116 ], [ -122.41195321083069, 37.79726760509566 ], [ -122.41301000118254, 37.79711500530889 ], [ -122.41346061229706, 37.797047183080274 ], [ -122.41355180740355, 37.797034466405464 ], [ -122.41366446018218, 37.79701751083568 ], [ -122.4144798517227, 37.79690306063769 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41453886032104, 37.796890343938095 ], [ -122.41463005542755, 37.796877627236306 ], [ -122.41520404815674, 37.796805565884775 ], [ -122.41685092449188, 37.796602098159795 ], [ -122.41721034049988, 37.796559708979885 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41533815860748, 37.79746259325332 ], [ -122.41526305675507, 37.79749650418472 ], [ -122.415252327919, 37.79752617623693 ], [ -122.4152898788452, 37.79770420829989 ], [ -122.41528451442719, 37.7977381191204 ], [ -122.4152684211731, 37.79778474647316 ], [ -122.41530060768127, 37.79781865725668 ], [ -122.4153220653534, 37.79785680686953 ], [ -122.41535425186157, 37.798013643959806 ], [ -122.41537570953369, 37.79804331580431 ], [ -122.41546154022218, 37.79806450997163 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40976452827454, 37.803239943579534 ], [ -122.40985572338104, 37.80371041956209 ], [ -122.40995228290558, 37.804176654065614 ], [ -122.41004884243013, 37.80463864717042 ], [ -122.41014003753662, 37.805104875814145 ], [ -122.4102634191513, 37.80571096865078 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41963505744934, 37.80199804212988 ], [ -122.41971552371977, 37.80198532630738 ], [ -122.4202251434326, 37.80192174716204 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42012858390808, 37.787814301082065 ], [ -122.42021441459656, 37.788225523771885 ], [ -122.4203109741211, 37.78870033475276 ], [ -122.4204021692276, 37.78916666399649 ], [ -122.4204933643341, 37.789620272346355 ], [ -122.42069184780121, 37.79057835185864 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42554128170013, 37.80571096865078 ], [ -122.42547154426575, 37.80537613476155 ], [ -122.42541253566743, 37.80515573694268 ], [ -122.42536962032318, 37.805075206806336 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41173326969147, 37.79629689552161 ], [ -122.41176009178162, 37.79628841765255 ], [ -122.41254329681396, 37.79619516102869 ], [ -122.41281688213348, 37.79616124949991 ], [ -122.41336941719057, 37.796084948503236 ], [ -122.41424381732942, 37.79597897476603 ], [ -122.41501629352571, 37.79588995670932 ], [ -122.41666316986085, 37.79567800852345 ], [ -122.41700112819673, 37.79563561881331 ], [ -122.418310046196, 37.79547877667427 ], [ -122.4191200733185, 37.795360085104505 ], [ -122.4198228120804, 37.79527106630204 ], [ -122.41994082927705, 37.79524139334406 ], [ -122.4215877056122, 37.795029443297494 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41173326969147, 37.79629689552161 ], [ -122.41171717643739, 37.79629689552161 ], [ -122.4109071493149, 37.79639862987445 ], [ -122.41052627563478, 37.79644949699833 ], [ -122.4100971221924, 37.79650036408717 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41009712219238, 37.79650036408717 ], [ -122.41016685962677, 37.79692001623378 ], [ -122.41022050380707, 37.79721249965347 ], [ -122.41025805473328, 37.79741596569723 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41025805473328, 37.79741596569721 ], [ -122.41045653820038, 37.79837394412226 ], [ -122.41064965724944, 37.799314955081435 ], [ -122.41084277629851, 37.800251715345794 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42289662361145, 37.800603527218016 ], [ -122.42327749729156, 37.800955337414564 ], [ -122.42340624332428, 37.801023156054995 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41219997406006, 37.787814301082065 ], [ -122.41170108318329, 37.787873652951795 ], [ -122.41007566452026, 37.78808138412048 ], [ -122.40933001041412, 37.788178890386014 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41843342781067, 37.787814301082065 ], [ -122.41846561431885, 37.78796692007934 ], [ -122.41856217384338, 37.78843325395142 ], [ -122.41865873336793, 37.78891230295563 ], [ -122.41875529289247, 37.78937863086172 ], [ -122.41884648799898, 37.78983223791039 ], [ -122.4190664291382, 37.79078183617337 ], [ -122.41907179355621, 37.7907987931743 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41789162158966, 37.801718293529156 ], [ -122.4185299873352, 37.801633521016726 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42246747016907, 37.80409612286167 ], [ -122.42253720760345, 37.804473347217254 ] ] }, "properties": { "class": "street_limited", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42002665996552, 37.79877239166739 ], [ -122.42063820362091, 37.798696093367674 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41568148136139, 37.79914540444266 ], [ -122.41468906402588, 37.799276806221656 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4160248041153, 37.790692811854626 ], [ -122.4161159992218, 37.79115065006551 ], [ -122.4161159992218, 37.79116336775309 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41897523403168, 37.79874272011575 ], [ -122.41998910903932, 37.798598600981116 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41100907325745, 37.795093028375305 ], [ -122.41108417510986, 37.79547029871132 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41387367248535, 37.80270588612963 ], [ -122.41368055343628, 37.801790350088226 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42752611637115, 37.80571096865078 ], [ -122.427499294281, 37.805689776677475 ], [ -122.42723643779755, 37.80551600226697 ], [ -122.42712914943695, 37.80543123411352 ], [ -122.42689311504364, 37.80544818775199 ], [ -122.42672145366669, 37.80546937979462 ], [ -122.42648541927338, 37.80551176386163 ], [ -122.42632985115051, 37.80552871748163 ], [ -122.42621183395386, 37.80551600226699 ], [ -122.42610991001129, 37.80546514138659 ], [ -122.42592215538025, 37.80530408170084 ], [ -122.42583632469176, 37.80520235961308 ], [ -122.42576122283934, 37.805087922096874 ], [ -122.42569684982298, 37.80493957690451 ], [ -122.42565393447875, 37.80481242364534 ], [ -122.4255734682083, 37.80453268570453 ], [ -122.42573976516722, 37.804312285368546 ], [ -122.42616355419158, 37.80425294670417 ], [ -122.42657661437987, 37.80421480039474 ], [ -122.42666244506835, 37.80435043162762 ], [ -122.4268341064453, 37.80506672994478 ], [ -122.42680728435516, 37.805164213794036 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41502702236176, 37.791799249341395 ], [ -122.41505920886993, 37.79193914255643 ], [ -122.41511821746826, 37.792235884863004 ], [ -122.41512358188628, 37.79229523318131 ], [ -122.41521477699278, 37.79274458318729 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41441011428833, 37.79789071761994 ], [ -122.41482853889465, 37.797831373796456 ], [ -122.41508603096008, 37.79780170186684 ], [ -122.41526842117308, 37.797784746473134 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43122220039368, 37.80098500807743 ], [ -122.4319839477539, 37.80088751871189 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41989254951477, 37.79812809243717 ], [ -122.41998910903932, 37.798598600981116 ], [ -122.42002665996552, 37.79877239166739 ], [ -122.42008566856384, 37.799064867752875 ], [ -122.42014467716217, 37.79935310392155 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42183446884155, 37.80354935604959 ], [ -122.42193102836609, 37.803557833085314 ], [ -122.42217242717743, 37.80355359456757 ], [ -122.4224352836609, 37.80354087901289 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42001593112946, 37.80388843671987 ], [ -122.41856217384338, 37.80407916891281 ], [ -122.41849780082703, 37.8040706919369 ], [ -122.41845488548279, 37.80405373798221 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41000592708588, 37.79605527587214 ], [ -122.41162061691284, 37.79583908920016 ], [ -122.41163671016692, 37.79583908920016 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41903424263, 37.80279489597278 ], [ -122.41892158985138, 37.802269312488406 ], [ -122.41892158985138, 37.802239642341455 ], [ -122.41892695426941, 37.802214210777436 ], [ -122.41894841194153, 37.80218877920469 ], [ -122.41896986961365, 37.802171824817975 ], [ -122.41899669170378, 37.802159109025396 ], [ -122.41900205612181, 37.80214639323063 ], [ -122.41900742053984, 37.80213367743367 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41190493106842, 37.79263436551425 ], [ -122.41181910037994, 37.792210449854856 ], [ -122.41171717643738, 37.79172294383976 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41530060768127, 37.79728879948555 ], [ -122.41689383983612, 37.79708957198048 ], [ -122.41694211959839, 37.79707261642332 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41913080215454, 37.79951417658475 ], [ -122.41874992847443, 37.79956080281643 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41508603096008, 37.79780170186684 ], [ -122.4151611328125, 37.79822134662093 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41000592708588, 37.794313047639136 ], [ -122.41008639335631, 37.794707278062184 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42676973342896, 37.7996922038565 ], [ -122.42685556411743, 37.80010336043956 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4203485250473, 37.799030957541454 ], [ -122.42044508457184, 37.79950569908492 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4220597743988, 37.797373576984334 ], [ -122.42317020893096, 37.79724217181975 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4171245098114, 37.79609342639566 ], [ -122.41717278957367, 37.79634352378406 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42229580879211, 37.80259144474508 ], [ -122.4224352836609, 37.80257449045081 ], [ -122.42300927639009, 37.80250243465672 ], [ -122.42309510707857, 37.802489718921066 ], [ -122.42319703102113, 37.80247700318321 ], [ -122.42455422878267, 37.802303221213165 ], [ -122.42467224597932, 37.8022905054432 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42712914943695, 37.80543123411352 ], [ -122.42722570896149, 37.80571096865078 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42828786373138, 37.80571096865078 ], [ -122.42864191532135, 37.80565163111018 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41902351379395, 37.79490227297768 ], [ -122.41912007331848, 37.795360085104505 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41649150848389, 37.79952689283269 ], [ -122.41658806800842, 37.79999739246696 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42028415203094, 37.80523626699121 ], [ -122.42078304290771, 37.805172690644405 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41833686828613, 37.798640988991096 ], [ -122.41893768310547, 37.79856892935968 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.412548661232, 37.80034072814651 ], [ -122.41257011890411, 37.800336489444156 ], [ -122.41312265396118, 37.800251715345794 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.801387680180454 ], [ -122.40938365459442, 37.801379202895646 ], [ -122.41014003753662, 37.80128171405037 ], [ -122.41054773330688, 37.80123085025394 ], [ -122.41102516651154, 37.80117574776828 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41275787353516, 37.80143006658992 ], [ -122.41279006004333, 37.80143006658992 ], [ -122.41439938545227, 37.80122661160265 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4148553609848, 37.80116727045915 ], [ -122.41605699062349, 37.801010440064665 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4297684431076, 37.799149643213354 ], [ -122.43082523345947, 37.7990140024299 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4284166097641, 37.80374008911817 ], [ -122.42821276187898, 37.80279489597278 ], [ -122.42802500724794, 37.801862406576994 ], [ -122.42785871028902, 37.801014678728365 ], [ -122.42784261703493, 37.800942621412574 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43134021759033, 37.79710652753374 ], [ -122.4314421415329, 37.797606714604264 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41912543773651, 37.79948874408232 ], [ -122.42014467716217, 37.79935310392155 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41422235965729, 37.80030257981648 ], [ -122.41433501243591, 37.800289863702076 ], [ -122.41478562355042, 37.80023052180601 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41583168506622, 37.791544897362755 ], [ -122.41630375385284, 37.791489787651976 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43186593055725, 37.80424446974821 ], [ -122.4319839477539, 37.80423175431249 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41470515727997, 37.79036638843492 ], [ -122.41464614868164, 37.79003572427978 ] ] }, "properties": { "class": "street_limited", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41187274456024, 37.79700055526198 ], [ -122.41185665130615, 37.79700055526198 ], [ -122.41121828556061, 37.79709381086916 ], [ -122.41106808185577, 37.797140438628595 ], [ -122.41048336029051, 37.79726336621694 ], [ -122.41038680076598, 37.797271843974116 ], [ -122.41034924983978, 37.797271843974116 ], [ -122.41030097007751, 37.797259127338 ], [ -122.41022050380707, 37.79721249965347 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41190493106842, 37.79263436551425 ], [ -122.41211950778961, 37.79352881957535 ] ] }, "properties": { "class": "street", "oneway": -1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42927491664886, 37.79134141514943 ], [ -122.43091642856598, 37.79113369314532 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40990400314331, 37.795618662922415 ], [ -122.40956604480742, 37.79566105264231 ], [ -122.40936756134032, 37.795686486462564 ], [ -122.40933001041412, 37.795694964400674 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4112719297409, 37.794062943376915 ], [ -122.41135239601135, 37.794058704314324 ], [ -122.41186201572418, 37.79399087927983 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41900742053986, 37.798916510462924 ], [ -122.4188894033432, 37.798929226813755 ], [ -122.41848707199097, 37.798963137071866 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42682337760925, 37.80419784647312 ], [ -122.4269038438797, 37.80426990061314 ], [ -122.42696821689606, 37.804341954682855 ], [ -122.4272632598877, 37.804876000302286 ], [ -122.42730617523195, 37.804952292218374 ], [ -122.4273544549942, 37.80500739188654 ], [ -122.42741882801056, 37.80505401465057 ], [ -122.427499294281, 37.805096398955996 ], [ -122.42759048938751, 37.805134544810045 ], [ -122.42767095565796, 37.80515149851663 ], [ -122.42778897285461, 37.80515573694268 ], [ -122.42791771888733, 37.80513878323706 ], [ -122.42803037166595, 37.805104875814145 ], [ -122.42821276187897, 37.804998915017194 ], [ -122.42823421955109, 37.80515573694268 ], [ -122.42825031280516, 37.805244743833335 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42825031280518, 37.805244743833335 ], [ -122.4272632598877, 37.80537189634818 ], [ -122.42719352245332, 37.805388850000256 ], [ -122.42712914943696, 37.80543123411352 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41357862949371, 37.80038735385647 ], [ -122.41422235965729, 37.80030257981648 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41346061229706, 37.79652579761845 ], [ -122.41510748863222, 37.796326568055655 ], [ -122.41674900054932, 37.79611886006703 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4282556772232, 37.803918106204456 ], [ -122.42833077907562, 37.8038969137167 ], [ -122.42840588092804, 37.803884198221105 ], [ -122.42882966995239, 37.80388843671987 ], [ -122.42887258529663, 37.80390115221473 ], [ -122.42889940738678, 37.803930821694195 ], [ -122.42893695831297, 37.804049499492926 ], [ -122.42893159389496, 37.804087645887726 ], [ -122.42891013622284, 37.80412155377767 ], [ -122.42888331413269, 37.80414274620098 ], [ -122.42884576320648, 37.80415546165205 ], [ -122.42865800857544, 37.80418936951085 ], [ -122.42853999137878, 37.80422327735411 ], [ -122.42843806743622, 37.80427837756618 ], [ -122.42835760116579, 37.804358908571395 ], [ -122.42833614349365, 37.804439439488824 ], [ -122.42829859256746, 37.80481242364534 ], [ -122.42827177047731, 37.80489295406824 ], [ -122.42823958396913, 37.80496076909309 ], [ -122.42821276187898, 37.804998915017194 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4272632598877, 37.804045261003395 ], [ -122.42763876914978, 37.80474460848425 ], [ -122.42768704891205, 37.80479546986092 ], [ -122.4277514219284, 37.8048081851996 ], [ -122.42781579494476, 37.80479970830737 ], [ -122.42786943912508, 37.80476580072879 ], [ -122.42789626121521, 37.80470646242878 ], [ -122.42794990539551, 37.804235992791284 ], [ -122.4279659986496, 37.80415546165205 ], [ -122.4280035495758, 37.804083407400384 ], [ -122.42806792259216, 37.80401559156988 ], [ -122.42814302444458, 37.80396472965615 ], [ -122.4282556772232, 37.803918106204456 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4282556772232, 37.803918106204456 ], [ -122.42797672748566, 37.80397744513788 ], [ -122.4277514219284, 37.8040155915699 ], [ -122.42751002311707, 37.80404102251361 ], [ -122.4272632598877, 37.804045261003395 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4272632598877, 37.804045261003395 ], [ -122.42712378501892, 37.80405797647123 ], [ -122.42707014083862, 37.80406645344859 ], [ -122.42702186107635, 37.804087645887726 ], [ -122.42698431015016, 37.80411307680662 ], [ -122.42695212364197, 37.80415546165205 ], [ -122.42693066596985, 37.80420632343443 ], [ -122.42690384387971, 37.80426990061314 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4272471666336, 37.80521931330409 ], [ -122.42726862430573, 37.8051938827661 ], [ -122.42727935314178, 37.80516845221935 ], [ -122.42729008197784, 37.805113352671334 ], [ -122.42729544639587, 37.80504129935424 ], [ -122.42728471755981, 37.80496076909309 ], [ -122.4272632598877, 37.804876000302286 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.418133020401, 37.798840212312086 ], [ -122.41822957992555, 37.79930223879704 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4148553609848, 37.80116727045915 ], [ -122.41495192050935, 37.80163775964465 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4107837677002, 37.794122290227605 ], [ -122.4112719297409, 37.794062943376915 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41750538349152, 37.8042020849539 ], [ -122.41760730743408, 37.80476580072879 ], [ -122.41787552833557, 37.80473189313464 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41908252239227, 37.80112064524151 ], [ -122.41913616657257, 37.80140887338821 ], [ -122.4191629886627, 37.80154027114065 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41912007331848, 37.795360085104505 ], [ -122.41926491260529, 37.796072231662805 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41467833518982, 37.79712348308311 ], [ -122.41482853889467, 37.797831373796456 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41274178028107, 37.79299469191242 ], [ -122.41438865661621, 37.792786974556215 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42229580879211, 37.80259144474508 ], [ -122.42238700389862, 37.803053447766 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42216169834137, 37.80196413326501 ], [ -122.42223143577576, 37.802387992956945 ], [ -122.42239773273468, 37.80248124176272 ], [ -122.42243528366089, 37.80257449045078 ] ] }, "properties": { "class": "street_limited", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41362690925598, 37.80275674891027 ], [ -122.41371810436249, 37.80322298943413 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41187274456024, 37.798780869251374 ], [ -122.41194248199463, 37.799141165671685 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41620719432831, 37.79165935586148 ], [ -122.41629302501678, 37.79208327468276 ], [ -122.41629302501678, 37.79214262312365 ], [ -122.41637349128723, 37.79252838682742 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42610991001129, 37.8007434037619 ], [ -122.42656588554382, 37.80055266295457 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41276323795319, 37.80334166837025 ], [ -122.41285443305969, 37.803807905201644 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41667926311493, 37.80044669562654 ], [ -122.41675436496735, 37.80085784800986 ] ] }, "properties": { "class": "street_limited", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4195009469986, 37.79722945517852 ], [ -122.41962432861328, 37.79786104571417 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42494583129883, 37.801209656995105 ], [ -122.42472052574158, 37.801218134299376 ], [ -122.42464542388916, 37.801196941036885 ], [ -122.42459177970886, 37.801141838525915 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43024587631226, 37.787814301082065 ], [ -122.43035852909088, 37.78836966314214 ], [ -122.43055164813995, 37.78932775886951 ], [ -122.430739402771, 37.79025616721429 ], [ -122.43091642856598, 37.79113369314532 ], [ -122.43109345436096, 37.79201120865472 ], [ -122.43126511573792, 37.79289295287215 ], [ -122.43138313293457, 37.79344827676231 ], [ -122.43145287036896, 37.793770447487695 ], [ -122.43163526058197, 37.79468608293166 ], [ -122.43182301521301, 37.79564409675727 ], [ -122.4319839477539, 37.79641982451366 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41788625717163, 37.78804322945978 ], [ -122.41784870624542, 37.787814301082065 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41751074790955, 37.79000604921915 ], [ -122.41759121417998, 37.79030703856731 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41841733455658, 37.78988734885741 ], [ -122.41848170757294, 37.79020105654232 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41765022277832, 37.78903524423471 ], [ -122.4177360534668, 37.789518528659656 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.415069937706, 37.787814301082065 ], [ -122.41518795490265, 37.78839086008464 ], [ -122.41538107395172, 37.78934471620411 ], [ -122.4155741930008, 37.79025616721429 ], [ -122.4156868457794, 37.79081151092244 ], [ -122.41575121879578, 37.791116736221234 ], [ -122.41576731204985, 37.791209999255514 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41186201572418, 37.80536341952066 ], [ -122.41351962089539, 37.80515573694268 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40942120552063, 37.80571096865078 ], [ -122.40933001041412, 37.80525745909466 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41539716720581, 37.7977593133753 ], [ -122.41703867912292, 37.79755160941504 ], [ -122.4186909198761, 37.797339665996496 ], [ -122.4195009469986, 37.79722945517852 ], [ -122.42031633853912, 37.797110766421454 ], [ -122.42196321487427, 37.79690306063772 ], [ -122.42352962493898, 37.79669959318127 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42233872413635, 37.79877239166739 ], [ -122.42244601249696, 37.79875967528956 ], [ -122.4237871170044, 37.79857740696702 ], [ -122.42390513420106, 37.79856469055563 ], [ -122.42406070232393, 37.79854349653181 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41658806800842, 37.79902671876394 ], [ -122.41731226444244, 37.79894618194477 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.79296501804014 ], [ -122.4093461036682, 37.792960778914576 ], [ -122.40936219692229, 37.792960778914576 ], [ -122.40937829017638, 37.792956539788726 ], [ -122.4097108840942, 37.792922626773354 ], [ -122.4110037088394, 37.792765778874795 ], [ -122.41112172603606, 37.79273610491059 ], [ -122.4119049310684, 37.79263436551425 ], [ -122.4122428894043, 37.79259197405775 ], [ -122.41265058517456, 37.79254110427786 ], [ -122.4142974615097, 37.792337624808056 ], [ -122.41511821746826, 37.79223588486298 ], [ -122.41552591323853, 37.7921807756676 ], [ -122.41594970226288, 37.79212990560459 ], [ -122.41629302501678, 37.79208327468274 ], [ -122.41760194301604, 37.79192642500235 ], [ -122.41923272609709, 37.791701747853054 ], [ -122.42088496685027, 37.79149402686194 ], [ -122.4224406480789, 37.79130750139274 ], [ -122.42259621620177, 37.79129054450855 ], [ -122.42415189743042, 37.79109130082783 ], [ -122.42580950260162, 37.79087933887556 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.796597859242894 ], [ -122.41009712219237, 37.79650036408717 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42580950260162, 37.79087933887559 ], [ -122.42745101451874, 37.79066737631527 ], [ -122.42754757404327, 37.790658897800206 ], [ -122.42909252643585, 37.79045965241627 ], [ -122.430739402771, 37.79025616721429 ], [ -122.4319839477539, 37.7900950743653 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42782652378082, 37.80084513199106 ], [ -122.42781043052673, 37.80076459715455 ], [ -122.42767095565796, 37.80006521198694 ], [ -122.4276602268219, 37.80000163118878 ], [ -122.42764413356781, 37.79992957288471 ], [ -122.42746710777283, 37.79906910652822 ], [ -122.42727935314178, 37.79813657009509 ], [ -122.42709159851074, 37.7972040218895 ], [ -122.42690920829773, 37.796275700847126 ], [ -122.42671072483063, 37.79532193420228 ], [ -122.42660343647003, 37.79479205852346 ], [ -122.42652833461761, 37.79440206759597 ], [ -122.42636740207672, 37.79362631865265 ], [ -122.42632985115051, 37.79351610229493 ], [ -122.42629766464233, 37.79343132036946 ], [ -122.42616355419159, 37.7927784962844 ], [ -122.42615282535553, 37.79263860465857 ], [ -122.42614209651947, 37.79250719107183 ], [ -122.42600798606873, 37.79188403313971 ], [ -122.42598116397858, 37.79176109660045 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42398023605347, 37.79016290297611 ], [ -122.42561638355255, 37.7899551776589 ], [ -122.4272632598877, 37.78974321244753 ], [ -122.42891013622285, 37.789535485950495 ], [ -122.43055164813995, 37.78932775886951 ], [ -122.4319839477539, 37.789145467276555 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42598116397858, 37.791761096600425 ], [ -122.42580950260162, 37.79087933887556 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4285614490509, 37.787814301082065 ], [ -122.42871701717377, 37.78857739291647 ], [ -122.42891013622284, 37.789535485950495 ], [ -122.42909252643584, 37.79045965241627 ], [ -122.42927491664885, 37.79134141514943 ], [ -122.42945194244383, 37.792218928191865 ], [ -122.42962896823882, 37.793100669930396 ], [ -122.4298059940338, 37.79397816207892 ], [ -122.42999374866484, 37.79489803396326 ], [ -122.43018686771391, 37.79585604504041 ], [ -122.43037462234496, 37.79678437135622 ], [ -122.430562376976, 37.797716924859415 ], [ -122.43075013160704, 37.79864946659016 ], [ -122.43082523345946, 37.7990140024299 ], [ -122.43093788623808, 37.799581996548376 ], [ -122.43110954761504, 37.800366160355566 ], [ -122.4311202764511, 37.80042974083997 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42158770561218, 37.795029443297494 ], [ -122.42314875125885, 37.79483020969929 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42615282535553, 37.79263860465855 ], [ -122.42451667785645, 37.792850561564016 ], [ -122.42295563220978, 37.79304980050074 ], [ -122.42280006408691, 37.79306251786141 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42314338684082, 37.79392729325345 ], [ -122.4246883392334, 37.79372805668306 ], [ -122.42632985115051, 37.79351610229493 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42314875125885, 37.79483020969929 ], [ -122.42330431938171, 37.794809014604034 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42280006408691, 37.79306251786141 ], [ -122.42122828960419, 37.79327023444296 ], [ -122.4195921421051, 37.7934779504405 ], [ -122.41797208786011, 37.79368142676982 ], [ -122.41793990135193, 37.79368566585406 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42632985115051, 37.79351610229493 ], [ -122.42798745632172, 37.79330838640464 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42798745632172, 37.79330838640464 ], [ -122.42815911769867, 37.79419011514147 ], [ -122.42834150791168, 37.79512270139288 ], [ -122.42853999137878, 37.79606375376797 ], [ -122.42872774600983, 37.79699207747368 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42798745632172, 37.79330838640464 ], [ -122.4280196428299, 37.79318121312238 ], [ -122.42793381214142, 37.79274034404906 ], [ -122.42788553237915, 37.7926725178043 ], [ -122.4279123544693, 37.792579256616065 ], [ -122.42789089679718, 37.79248175615706 ], [ -122.42783725261688, 37.792426647145035 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42783725261688, 37.792426647145035 ], [ -122.42781043052673, 37.792490234462946 ], [ -122.42783188819885, 37.79261740893458 ], [ -122.42788553237915, 37.7926725178043 ], [ -122.42785334587097, 37.79274882232528 ], [ -122.42791771888733, 37.79318969134799 ], [ -122.42798745632172, 37.79330838640464 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4108213186264, 37.791837402062676 ], [ -122.41076231002808, 37.79153217974085 ], [ -122.41062819957733, 37.79088357812059 ], [ -122.4105316400528, 37.79039182407786 ], [ -122.41044580936432, 37.78995941695693 ], [ -122.41025805473328, 37.78901828682906 ], [ -122.41016685962677, 37.78855195664898 ], [ -122.41007566452026, 37.78808138412048 ], [ -122.41002202033997, 37.787814301082065 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42615282535553, 37.79263860465855 ], [ -122.42783725261688, 37.79242664714506 ], [ -122.42808938026428, 37.792392733886466 ], [ -122.42945194244385, 37.792218928191865 ], [ -122.43109345436096, 37.79201120865472 ], [ -122.43198394775389, 37.791896750701035 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42798745632172, 37.79330838640464 ], [ -122.42962896823883, 37.793100669930396 ], [ -122.43126511573792, 37.79289295287215 ], [ -122.4319839477539, 37.79279969196218 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41812765598297, 37.794567390088325 ], [ -122.41814911365509, 37.79456315105469 ], [ -122.41892695426941, 37.79446141417424 ], [ -122.41976916790009, 37.79435967715371 ], [ -122.42140531539917, 37.794147724577606 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42069184780121, 37.79057835185864 ], [ -122.42088496685028, 37.79149402686194 ], [ -122.42106199264526, 37.792396973044646 ], [ -122.42122828960419, 37.79327023444296 ], [ -122.42140531539917, 37.794147724577606 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42140531539917, 37.794147724577606 ], [ -122.42296099662781, 37.79394848860165 ], [ -122.42314338684082, 37.79392729325345 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.79976002365667 ], [ -122.41015613079071, 37.800323773335606 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41722643375397, 37.805172690644405 ], [ -122.41800963878632, 37.80571096865078 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41096079349518, 37.800883280040885 ], [ -122.41130948066713, 37.801141838525915 ], [ -122.41149723529817, 37.80124780485665 ], [ -122.41243600845338, 37.80190055410142 ], [ -122.41266667842866, 37.80205738260592 ], [ -122.41290807724, 37.80218454060837 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41015613079071, 37.800323773335606 ], [ -122.41038680076599, 37.80048484388214 ], [ -122.41077303886414, 37.800756119798216 ], [ -122.41096079349518, 37.800883280040885 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42542326450348, 37.78899709006654 ], [ -122.42533206939697, 37.78853923851192 ], [ -122.42524087429047, 37.78807290530868 ], [ -122.42518723011017, 37.787814301082044 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41391122341156, 37.79045965241627 ], [ -122.41374492645264, 37.789548203916084 ], [ -122.41355180740356, 37.78860282917525 ], [ -122.41341233253479, 37.78794572301528 ], [ -122.41338551044464, 37.787814301082065 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41095542907715, 37.80077731318719 ], [ -122.4102795124054, 37.800311057224846 ], [ -122.40933001041412, 37.799649816449765 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42040753364563, 37.80571096865078 ], [ -122.42201149463654, 37.80549481023774 ], [ -122.42365837097168, 37.80528712802926 ], [ -122.42425918579102, 37.80521507488171 ], [ -122.42461860179901, 37.80516845221935 ], [ -122.42520332336426, 37.805096398955996 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41688847541809, 37.80521507488171 ], [ -122.41722643375397, 37.805172690644405 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41169035434723, 37.787814301082065 ], [ -122.41170108318329, 37.787873652951795 ], [ -122.41176009178162, 37.78815345398132 ], [ -122.41181910037994, 37.78848412655941 ], [ -122.41188883781433, 37.78881055829413 ], [ -122.41207659244537, 37.78974321244753 ], [ -122.4121570587158, 37.7901247493902 ], [ -122.41226971149443, 37.790675854829374 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42350280284882, 37.787814301082065 ], [ -122.42359399795532, 37.78828063591724 ], [ -122.42369055747986, 37.78874696780958 ], [ -122.42378175258636, 37.78920481807711 ], [ -122.42398023605347, 37.79016290297611 ], [ -122.42415189743042, 37.79109130082786 ], [ -122.42433965206148, 37.79197305602321 ], [ -122.42451667785646, 37.79285056156404 ], [ -122.42468833923341, 37.79372805668306 ], [ -122.42486000061037, 37.79460978041143 ], [ -122.42505848407747, 37.79552964443154 ], [ -122.42524087429048, 37.79642406344077 ], [ -122.42525160312654, 37.7964834083948 ], [ -122.42543935775758, 37.79741172682703 ], [ -122.42562711238863, 37.798344272410596 ], [ -122.42579877376558, 37.79920050844297 ], [ -122.42581486701967, 37.799276806221684 ], [ -122.42583096027376, 37.799348865162536 ], [ -122.42599189281465, 37.8001542250124 ], [ -122.42600262165071, 37.80020932826014 ], [ -122.42602407932283, 37.80029834111194 ], [ -122.4261099100113, 37.8007434037619 ], [ -122.42618501186375, 37.801052826690615 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41951704025269, 37.796212116787245 ], [ -122.42012321949005, 37.79614429372968 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42446303367615, 37.80132833916636 ], [ -122.4244898557663, 37.80144278250799 ], [ -122.42465615272522, 37.80220997218259 ], [ -122.42467224597931, 37.802290505443175 ], [ -122.42468833923338, 37.802379515786924 ], [ -122.42484390735625, 37.803218750897145 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41145431995392, 37.80112064524151 ], [ -122.41095542907715, 37.80077731318719 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41722643375397, 37.805172690644405 ], [ -122.41855680942535, 37.80500739188654 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41949558258057, 37.79613157689948 ], [ -122.41784870624542, 37.796335045920344 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41282761096954, 37.80571096865078 ], [ -122.41360545158385, 37.80561772392276 ], [ -122.41476953029631, 37.805473618202406 ], [ -122.41524159908295, 37.80541851888209 ], [ -122.41688847541809, 37.80521507488168 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42181837558746, 37.80456659339016 ], [ -122.42253720760345, 37.804473347217254 ], [ -122.42347061634064, 37.804358908571395 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42019295692444, 37.80478699296722 ], [ -122.42174863815309, 37.80457507030913 ], [ -122.42181837558746, 37.80456659339016 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41855680942535, 37.80500739188654 ], [ -122.42019295692444, 37.80478699296722 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.79754313168997 ], [ -122.40972697734833, 37.79749226531914 ], [ -122.41025805473328, 37.79741596569721 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41104662418365, 37.797314232745414 ], [ -122.41128802299501, 37.797254888458816 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42347061634064, 37.804358908571395 ], [ -122.42502093315125, 37.804159700135244 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.79104890848602 ], [ -122.41062819957732, 37.79088357812059 ], [ -122.41099834442137, 37.79083694641215 ], [ -122.41226971149443, 37.79067585482935 ], [ -122.41391122341155, 37.79045965241627 ], [ -122.41470515727995, 37.79036638843492 ], [ -122.4155741930008, 37.79025616721429 ], [ -122.41596579551695, 37.790205295826226 ], [ -122.41720497608183, 37.79004844215926 ], [ -122.41751074790955, 37.79000604921912 ], [ -122.41841733455658, 37.78988734885741 ], [ -122.41884648799896, 37.78983223791036 ], [ -122.4204933643341, 37.78962027234633 ], [ -122.42206513881683, 37.789421024161776 ], [ -122.4222207069397, 37.78940406684465 ], [ -122.42378175258636, 37.78920481807708 ], [ -122.42542326450348, 37.78899709006654 ], [ -122.4270647764206, 37.78878936147201 ], [ -122.42871701717375, 37.78857739291647 ], [ -122.43035852909087, 37.78836966314214 ], [ -122.43198394775389, 37.788161932783865 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43086814880371, 37.80343067744717 ], [ -122.4314957857132, 37.80338405365836 ], [ -122.4315494298935, 37.80338829218583 ], [ -122.43159770965576, 37.803405246293295 ], [ -122.43163526058197, 37.80343067744717 ], [ -122.4316620826721, 37.803464585638764 ], [ -122.43173718452452, 37.80362564933614 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42517650127411, 37.80413850771679 ], [ -122.4249941110611, 37.8031975582087 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42461860179901, 37.80134529374666 ], [ -122.42462933063507, 37.80129019134637 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43086814880371, 37.80343067744717 ], [ -122.43168354034424, 37.80327809039246 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42517650127411, 37.80413850771679 ], [ -122.42547690868378, 37.80410459983463 ], [ -122.42676973342896, 37.80394353718175 ], [ -122.4284166097641, 37.80374008911817 ], [ -122.43006348609924, 37.803532401975176 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42462933063507, 37.80129019134637 ], [ -122.42461860179901, 37.80125204350671 ], [ -122.42459177970888, 37.801141838525915 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43173718452454, 37.80362564933614 ], [ -122.43186593055727, 37.80424446974821 ], [ -122.43190348148346, 37.80441824715063 ], [ -122.4319839477539, 37.80481666209083 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42502093315125, 37.804159700135244 ], [ -122.42517650127411, 37.80413850771679 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42536962032318, 37.805075206806336 ], [ -122.42520332336426, 37.805096398955996 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43006348609924, 37.803532401975204 ], [ -122.43086814880373, 37.80343067744717 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42536962032318, 37.805075206806336 ], [ -122.42517650127411, 37.80413850771679 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42010712623596, 37.79606375376797 ], [ -122.41949558258057, 37.79613157689948 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42618501186371, 37.801052826690615 ], [ -122.4262011051178, 37.80115455449363 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43173718452454, 37.80362564933614 ], [ -122.4317479133606, 37.80354935604959 ], [ -122.4317479133606, 37.80347306268421 ], [ -122.43173718452454, 37.80339676924006 ], [ -122.43171572685242, 37.803337429840084 ], [ -122.43168354034424, 37.80327809039246 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42484390735626, 37.803218750897145 ], [ -122.42502093315125, 37.804159700135244 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42727398872375, 37.787814301082065 ], [ -122.42686629295349, 37.78786517411618 ], [ -122.42524087429047, 37.78807290530868 ], [ -122.42359399795532, 37.78828063591724 ], [ -122.42202758789062, 37.78847140841073 ], [ -122.42187738418578, 37.788492605324016 ], [ -122.42031097412108, 37.78870033475276 ], [ -122.4186587333679, 37.78891230295563 ], [ -122.4176502227783, 37.78903524423471 ], [ -122.41701722145079, 37.789111552511926 ], [ -122.41576731204985, 37.78929384418857 ], [ -122.4153810739517, 37.78934471620411 ], [ -122.41450130939484, 37.78945069945736 ], [ -122.41374492645264, 37.789548203916084 ], [ -122.41207659244537, 37.78974321244753 ], [ -122.41044580936432, 37.78995941695691 ], [ -122.40933001041412, 37.79010779223455 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42012321949005, 37.79614429372968 ], [ -122.42099225521089, 37.79608070955667 ], [ -122.42163598537446, 37.79600016952563 ], [ -122.42177009582521, 37.79594506313799 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41025805473328, 37.79741596569721 ], [ -122.41039216518402, 37.797445637781784 ], [ -122.41104662418365, 37.797314232745414 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4217700958252, 37.795945063138014 ], [ -122.42332577705383, 37.79574159304304 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41785407066345, 37.79641558558629 ], [ -122.41951704025269, 37.79621211678722 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4217700958252, 37.795945063138014 ], [ -122.42162525653839, 37.79593234627349 ], [ -122.42098689079285, 37.79601288637848 ], [ -122.42021441459654, 37.79605951482018 ], [ -122.42010712623595, 37.79606375376797 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4319839477539, 37.788068665902436 ], [ -122.43193030357361, 37.787814301082065 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4112719297409, 37.7971785885917 ], [ -122.41111636161804, 37.7972040218895 ], [ -122.41084277629852, 37.79726336621694 ], [ -122.41038680076599, 37.79736086036572 ], [ -122.41025805473328, 37.79741596569723 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41290807723999, 37.802184540608394 ], [ -122.41273105144501, 37.80200228073689 ], [ -122.41260766983032, 37.80192174716204 ], [ -122.41245746612549, 37.80182425903287 ], [ -122.41145431995392, 37.80112064524154 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42332577705383, 37.79574159304304 ], [ -122.42348670959474, 37.7957246371765 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4249941110611, 37.8031975582087 ], [ -122.42482781410217, 37.80237103861598 ], [ -122.42480635643005, 37.802269312488406 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42480635643005, 37.802269312488406 ], [ -122.42479026317598, 37.802197256396575 ], [ -122.42463469505311, 37.80142158930995 ], [ -122.42461860179903, 37.80134529374666 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41290807723999, 37.802184540608394 ], [ -122.41372346878053, 37.8027440332184 ], [ -122.4146729707718, 37.80340100776679 ], [ -122.41488218307497, 37.80354511753136 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41722643375397, 37.805172690644405 ], [ -122.41683483123781, 37.804833615870386 ], [ -122.41614818573, 37.80434619315537 ], [ -122.41555809974672, 37.80395201417224 ], [ -122.41515040397645, 37.803668034461275 ], [ -122.41488218307497, 37.80354511753136 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42502093315125, 37.804159700135244 ], [ -122.42520332336426, 37.805096398955996 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41488218307495, 37.80354511753136 ], [ -122.41509675979614, 37.80374008911819 ], [ -122.41598725318907, 37.8043673855142 ], [ -122.41685092449187, 37.804977722839574 ], [ -122.41722643375395, 37.805172690644405 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42618501186371, 37.801052826690615 ], [ -122.4260938167572, 37.80106554267365 ], [ -122.42494583129883, 37.801209656995105 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42173790931702, 37.787814301082065 ], [ -122.42177546024321, 37.7880177930084 ], [ -122.42187738418578, 37.788492605324016 ], [ -122.42196857929228, 37.78896741458879 ], [ -122.42206513881682, 37.7894210241618 ], [ -122.42223680019379, 37.79034519205912 ], [ -122.42225289344786, 37.79042573825485 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42314875125885, 37.79483020969929 ], [ -122.42332577705383, 37.79574159304304 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42443084716797, 37.80041278604948 ], [ -122.4244147539139, 37.800336489444156 ], [ -122.42426991462709, 37.79956928030996 ], [ -122.42424845695497, 37.79947602782785 ], [ -122.42423772811891, 37.79942092403308 ], [ -122.424076795578, 37.79862403379003 ], [ -122.42406070232393, 37.79854349653181 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43112027645111, 37.80042974083997 ], [ -122.43102371692657, 37.80044245693027 ], [ -122.42958068847656, 37.80062472065078 ], [ -122.42946803569794, 37.800637436707525 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42332577705383, 37.79574159304304 ], [ -122.42352962493896, 37.79669959318127 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42946803569794, 37.800637436707525 ], [ -122.42936611175537, 37.80065439144644 ], [ -122.42790699005127, 37.80083665464399 ], [ -122.42782652378084, 37.80084513199108 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4319839477539, 37.80031529592869 ], [ -122.43121147155762, 37.800417024747446 ], [ -122.43112027645111, 37.80042974083997 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42280006408691, 37.79306251786141 ], [ -122.42296099662781, 37.79394848860165 ], [ -122.42314875125885, 37.79483020969929 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42387294769287, 37.797615192322034 ], [ -122.42368519306183, 37.79667839862234 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42461860179901, 37.80134529374666 ], [ -122.42471516132356, 37.80133257781179 ], [ -122.4261099100113, 37.80116727045915 ], [ -122.4262011051178, 37.80115455449363 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42406070232391, 37.79854349653181 ], [ -122.42404460906982, 37.79847143680532 ], [ -122.42387294769287, 37.797615192322034 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42352962493896, 37.79669959318127 ], [ -122.42372810840607, 37.797636386612204 ], [ -122.42388904094696, 37.79848839204139 ], [ -122.42390513420105, 37.79856469055563 ], [ -122.42392659187317, 37.798657944188264 ], [ -122.42408215999603, 37.79942940154263 ], [ -122.42409288883209, 37.79949722158409 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42459177970886, 37.801141838525915 ], [ -122.42456495761871, 37.801052826690615 ], [ -122.42444694042206, 37.80048908257599 ], [ -122.42443084716797, 37.80041278604948 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42314338684082, 37.79392729325345 ], [ -122.42295563220978, 37.79304980050074 ], [ -122.42278397083281, 37.792168058155134 ], [ -122.42259621620177, 37.79129054450855 ], [ -122.42242455482481, 37.790396063350826 ], [ -122.42240846157073, 37.79032823495405 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42948412895203, 37.80073492640316 ], [ -122.42960214614868, 37.800722210363176 ], [ -122.43103444576263, 37.80053994688323 ], [ -122.4311363697052, 37.80052299211805 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42240846157074, 37.790328234954075 ], [ -122.4222207069397, 37.789404066844675 ], [ -122.42212414741516, 37.78894197845551 ], [ -122.42202758789062, 37.78847140841073 ], [ -122.42193639278412, 37.788000835369274 ], [ -122.42189347743988, 37.787814301082044 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42368519306183, 37.79667839862234 ], [ -122.42348670959473, 37.7957246371765 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42784261703491, 37.800942621412574 ], [ -122.42792308330536, 37.800929905408374 ], [ -122.42939829826355, 37.80074764244092 ], [ -122.42948412895203, 37.80073492640316 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42782652378082, 37.80084513199106 ], [ -122.42774605751038, 37.80085784800986 ], [ -122.42618501186371, 37.801052826690615 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42330431938171, 37.794809014604034 ], [ -122.42314338684082, 37.79392729325345 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42225289344788, 37.79042573825485 ], [ -122.42244064807892, 37.79130750139274 ], [ -122.42262303829193, 37.792185014837955 ], [ -122.42280006408691, 37.793062517861436 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42409288883209, 37.79949722158412 ], [ -122.42411434650421, 37.79959047403946 ], [ -122.42426991462708, 37.80035768295351 ], [ -122.42428600788116, 37.800429740839945 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4311363697052, 37.80052299211805 ], [ -122.43123292922974, 37.80051451473398 ], [ -122.4319839477539, 37.800417024747446 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42348670959473, 37.7957246371765 ], [ -122.42330431938171, 37.794809014604034 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4262011051178, 37.80115455449363 ], [ -122.42777287960052, 37.80095109874748 ], [ -122.42784261703491, 37.80094262141255 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42428600788116, 37.80042974083997 ], [ -122.42430210113525, 37.800510276041585 ], [ -122.42445766925812, 37.801256282156544 ], [ -122.42445766925812, 37.80129019134637 ], [ -122.42446303367615, 37.80132833916636 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42446303367615, 37.80132833916636 ], [ -122.42461860179901, 37.80134529374666 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41119146347046, 37.79454619491767 ], [ -122.41031169891359, 37.79466064876697 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.792049361266564 ], [ -122.41245746612549, 37.79165511666101 ], [ -122.41312265396118, 37.791566093394444 ], [ -122.41411507129669, 37.79143891711325 ], [ -122.41567075252534, 37.79123967383262 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41686165332794, 37.79108282236141 ], [ -122.41681337356567, 37.79108706159474 ], [ -122.41678655147554, 37.79109130082786 ], [ -122.41675972938539, 37.79109130082786 ], [ -122.416689991951, 37.79108706159474 ], [ -122.41666853427888, 37.79108706159474 ], [ -122.41664707660676, 37.79108706159474 ], [ -122.41660952568058, 37.79109130082786 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40980207920074, 37.79514813539847 ], [ -122.4098128080368, 37.79517780839393 ], [ -122.40981817245483, 37.79520324238054 ], [ -122.4098289012909, 37.79523291535386 ], [ -122.40983963012695, 37.79525411032749 ], [ -122.40984499454497, 37.79528378328038 ], [ -122.40987181663512, 37.79545758176509 ], [ -122.40988254547118, 37.79549149361689 ], [ -122.40989863872527, 37.79552116647442 ], [ -122.40991473197933, 37.795542361365385 ], [ -122.40993618965145, 37.79556355625024 ], [ -122.40995764732357, 37.79557627317825 ], [ -122.40998446941371, 37.79558899010405 ], [ -122.41000592708583, 37.79559746805339 ], [ -122.41003274917598, 37.795601707027686 ], [ -122.41007030010218, 37.795601707027686 ], [ -122.41010248661036, 37.795601707027686 ], [ -122.41108417510982, 37.795474537692954 ], [ -122.41134166717524, 37.79543638684983 ], [ -122.41142213344568, 37.79542790888202 ], [ -122.41151869297022, 37.79541519192849 ], [ -122.41154551506037, 37.7954109529435 ], [ -122.41252720355982, 37.795292261264755 ], [ -122.41318166255945, 37.79519900338339 ], [ -122.41791844367975, 37.794592824285104 ], [ -122.41795599460596, 37.794592824285104 ], [ -122.41798281669611, 37.794592824285104 ], [ -122.41800427436823, 37.794597063317056 ], [ -122.41803109645835, 37.79460554138021 ], [ -122.41805255413047, 37.79461401944239 ], [ -122.41807401180259, 37.794626736533836 ], [ -122.41809546947471, 37.79464369265237 ], [ -122.41811692714683, 37.79466488779506 ], [ -122.41812765598289, 37.79469032195825 ], [ -122.41813838481897, 37.7947199951376 ], [ -122.41814911365503, 37.794745429281804 ], [ -122.4181652069091, 37.79483444871764 ], [ -122.41821348667136, 37.79508031136412 ], [ -122.41828322410575, 37.79541943091325 ], [ -122.41830468177787, 37.79552964443154 ], [ -122.41844415664664, 37.79622059466508 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.792049361266564 ], [ -122.41245746612549, 37.79165511666101 ], [ -122.41312265396118, 37.791566093394444 ], [ -122.41411507129669, 37.79143891711325 ], [ -122.41567075252534, 37.79123967383262 ], [ -122.4158638715744, 37.79121423848154 ], [ -122.41686165332794, 37.79108282236141 ], [ -122.41717278957367, 37.79104466925053 ], [ -122.41767168045044, 37.79098108068854 ], [ -122.41896450519562, 37.79081998941997 ], [ -122.41915762424469, 37.790798793174275 ], [ -122.42060601711273, 37.79061226595001 ], [ -122.42159843444824, 37.790489327294715 ], [ -122.42184519767761, 37.79045541314694 ], [ -122.42207050323486, 37.79042573825485 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41203904151917, 37.79793310603611 ], [ -122.41205513477325, 37.797767791075536 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41516649723053, 37.805028584055684 ], [ -122.41515040397645, 37.80512182952755 ], [ -122.41517186164857, 37.805227790148145 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41226971149445, 37.79517780839393 ], [ -122.41227507591248, 37.79520748137745 ], [ -122.41228580474854, 37.79523291535386 ], [ -122.41230189800261, 37.79525411032749 ], [ -122.41232335567473, 37.79526682730876 ], [ -122.41235017776488, 37.79527954428784 ], [ -122.41237699985503, 37.79528802227267 ], [ -122.4124091863632, 37.79529226126473 ], [ -122.41244137287138, 37.79529650025653 ], [ -122.41247892379756, 37.79529650025653 ], [ -122.41252720355983, 37.79529226126473 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41565465927124, 37.791209999255514 ], [ -122.4140989780426, 37.79141348183073 ], [ -122.41283297538757, 37.79157457180537 ], [ -122.41244673728943, 37.79162544225074 ], [ -122.41206049919128, 37.79166783426177 ], [ -122.41171181201935, 37.79171446544581 ], [ -122.40933001041412, 37.79202392619421 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4097591638565, 37.79493194607189 ], [ -122.40980207920074, 37.79514813539847 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41717278957367, 37.79104466925053 ], [ -122.41722106933594, 37.79104043001474 ], [ -122.41725862026213, 37.79104043001474 ], [ -122.41729080677032, 37.79104466925053 ], [ -122.41731762886046, 37.79104890848602 ], [ -122.41733908653258, 37.79105738695633 ], [ -122.41736590862273, 37.791074343894024 ], [ -122.41738200187679, 37.79108706159474 ], [ -122.41740345954894, 37.79110825775774 ], [ -122.417419552803, 37.79112945391467 ], [ -122.41742491722103, 37.791154889294944 ], [ -122.41743564605709, 37.79118880312169 ], [ -122.41774141788478, 37.79270219179405 ], [ -122.41791307926174, 37.79361784047711 ], [ -122.41791844367977, 37.7936347968272 ], [ -122.4179238080978, 37.79364751408718 ], [ -122.41792917251581, 37.79365599225931 ], [ -122.41796672344202, 37.79369838310532 ], [ -122.41797208786005, 37.79371533943691 ], [ -122.41797745227805, 37.79372805668306 ], [ -122.41798281669608, 37.79374077392701 ], [ -122.41800963878622, 37.79385946809832 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41511821746826, 37.804820900536086 ], [ -122.41518795490263, 37.80494381534272 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41800963878632, 37.79385946809832 ], [ -122.41799890995026, 37.79382131642118 ], [ -122.4179881811142, 37.7938001210365 ], [ -122.41797208786012, 37.793778925645704 ], [ -122.417950630188, 37.7937619693287 ], [ -122.41791844367982, 37.79374501300782 ], [ -122.41788089275362, 37.793732295764606 ], [ -122.41784870624544, 37.793723817601226 ], [ -122.4178057909012, 37.793719578519195 ], [ -122.41777360439302, 37.793719578519195 ], [ -122.41771996021272, 37.793723817601226 ], [ -122.41177618503572, 37.79447413129194 ], [ -122.41138458251955, 37.79452499974094 ], [ -122.41119146347047, 37.79454619491767 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42184519767761, 37.79045541314694 ], [ -122.42178618907928, 37.79045965241627 ], [ -122.42176473140717, 37.79045965241627 ], [ -122.42165207862854, 37.79045965241627 ], [ -122.42161989212036, 37.79045965241627 ], [ -122.42159307003023, 37.79046389168536 ], [ -122.4206006526947, 37.79058683038295 ], [ -122.41916298866272, 37.790769118420094 ], [ -122.41906642913818, 37.79078183617337 ], [ -122.41896450519562, 37.790794553924414 ], [ -122.41767704486847, 37.79095988448907 ], [ -122.41715669631958, 37.791019233832294 ], [ -122.41660952568056, 37.79109130082786 ], [ -122.4161159992218, 37.79115065006551 ], [ -122.41585314273834, 37.79118032466647 ], [ -122.41565465927124, 37.791209999255514 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40980207920074, 37.79514813539847 ], [ -122.40982353687286, 37.79527106630204 ], [ -122.40986108779907, 37.79546605972949 ], [ -122.40986645221709, 37.79549149361689 ], [ -122.40988254547118, 37.7955254054531 ], [ -122.40989863872527, 37.79554660034284 ], [ -122.40991473197933, 37.79555931727375 ], [ -122.40993082523342, 37.79557627317823 ], [ -122.40995228290554, 37.79558475112901 ], [ -122.40997374057766, 37.79559746805339 ], [ -122.4100005626678, 37.795605946001736 ], [ -122.41003274917598, 37.79561018497555 ], [ -122.41007030010218, 37.79561442394911 ], [ -122.41010785102839, 37.79561018497555 ], [ -122.41135776042933, 37.79544486481667 ], [ -122.41139531135553, 37.795440625833365 ], [ -122.41143286228171, 37.79544486481667 ], [ -122.41146504878989, 37.79545758176509 ], [ -122.41149187088004, 37.79546605972952 ], [ -122.41151869297019, 37.79548301565542 ], [ -122.41154015064231, 37.7955042105573 ], [ -122.41155624389638, 37.79553388340973 ], [ -122.41156697273244, 37.79556355625024 ], [ -122.4115777015685, 37.79559746805339 ], [ -122.41162061691276, 37.79583908920016 ], [ -122.41171717643729, 37.796296895521635 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.79285480069591 ], [ -122.4093461036682, 37.79296077891455 ], [ -122.4095070362091, 37.793804360113924 ], [ -122.40952312946318, 37.79385522902405 ], [ -122.40953922271727, 37.79392305418307 ], [ -122.40967869758605, 37.7945589120208 ], [ -122.40972161293028, 37.79475390732791 ], [ -122.40975916385649, 37.79493194607189 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41031169891357, 37.79466064876697 ], [ -122.41019904613495, 37.79467760487772 ], [ -122.40991473197937, 37.79471151708755 ], [ -122.40988790988922, 37.79471151708755 ], [ -122.4098664522171, 37.79471151708755 ], [ -122.40983963012695, 37.79471151708755 ], [ -122.40981817245483, 37.794703039036534 ], [ -122.40979671478271, 37.79469456098458 ], [ -122.40978062152864, 37.79468184390482 ], [ -122.40976452827455, 37.79466912682284 ], [ -122.40974843502049, 37.794647931681375 ], [ -122.4097377061844, 37.79462249750358 ], [ -122.40972697734834, 37.794592824285104 ], [ -122.40971088409428, 37.794550433952274 ], [ -122.40958213806157, 37.7939145760416 ], [ -122.40957140922548, 37.793850989949526 ], [ -122.40956068038942, 37.793791642880905 ], [ -122.40937829017643, 37.792956539788705 ], [ -122.40933001041417, 37.79268947437132 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41567075252533, 37.79123967383262 ], [ -122.41586387157439, 37.79121423848154 ], [ -122.41686165332793, 37.79108282236141 ], [ -122.41717278957366, 37.79104466925053 ], [ -122.41767168045043, 37.79098108068854 ], [ -122.4189645051956, 37.79081998941997 ], [ -122.41915762424468, 37.790798793174275 ], [ -122.42060601711272, 37.79061226595001 ], [ -122.42159843444823, 37.790489327294715 ], [ -122.4218451976776, 37.79045541314694 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41848170757294, 37.79621635572625 ], [ -122.41837441921234, 37.79570768130605 ], [ -122.41833686828613, 37.7955254054531 ], [ -122.41832077503204, 37.79541519192846 ], [ -122.41825640201569, 37.795109984386826 ], [ -122.41820812225342, 37.79487683888746 ], [ -122.41815984249116, 37.7946182584731 ], [ -122.4181491136551, 37.79456315105469 ], [ -122.41800963878632, 37.79385946809832 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41848707199097, 37.79640286880277 ], [ -122.41850852966309, 37.7965215586972 ], [ -122.41852462291718, 37.796602098159795 ], [ -122.41887331008911, 37.79833579477649 ], [ -122.41888403892517, 37.79838242175199 ], [ -122.4190503358841, 37.79919626967515 ], [ -122.41930782794952, 37.800476366493726 ], [ -122.41962969303131, 37.80207009841604 ], [ -122.42015540599823, 37.8046979855249 ], [ -122.42035388946533, 37.80566858469807 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41826713085175, 37.79511422338909 ], [ -122.41822957992555, 37.79493194607189 ], [ -122.41817057132722, 37.79462249750358 ], [ -122.41800963878632, 37.793825555497385 ], [ -122.41799354553224, 37.793740773926984 ], [ -122.41799354553224, 37.793719578519195 ], [ -122.41798281669618, 37.7937068612716 ], [ -122.41795599460603, 37.793643275000754 ], [ -122.41795063018803, 37.79363479682717 ], [ -122.41795063018803, 37.79362207956497 ], [ -122.41776823997502, 37.79268947437132 ], [ -122.41746783256535, 37.791154889294944 ], [ -122.41746783256535, 37.79112521468376 ], [ -122.41747319698338, 37.79109977929326 ], [ -122.41748392581944, 37.791074343894024 ], [ -122.4175000190735, 37.79104890848602 ], [ -122.41752147674562, 37.79103195154249 ], [ -122.41754293441774, 37.791019233832266 ], [ -122.41756975650789, 37.79100651611991 ], [ -122.41760194301607, 37.7909937984053 ], [ -122.41763412952425, 37.79098955916663 ], [ -122.41767168045045, 37.79098108068854 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42206513881683, 37.7904087811683 ], [ -122.42185592651367, 37.79043421679666 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4193024635315, 37.8002856249968 ], [ -122.41930782794951, 37.800311057224846 ], [ -122.41930782794951, 37.800336489444156 ], [ -122.41930782794951, 37.80036616035559 ], [ -122.4193024635315, 37.800417024747446 ], [ -122.4193024635315, 37.80043821823375 ], [ -122.4193024635315, 37.800459411713945 ], [ -122.41930782794951, 37.800476366493726 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42207050323486, 37.79042573825485 ], [ -122.42184519767761, 37.79045541314694 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41816520690918, 37.79483444871761 ], [ -122.41817057132721, 37.794851404788496 ], [ -122.41817593574524, 37.79486412183907 ], [ -122.41818130016325, 37.79487259987156 ], [ -122.41818666458128, 37.794881077903106 ], [ -122.4182081222534, 37.79489803396326 ], [ -122.41821885108946, 37.794910751005816 ], [ -122.41822421550746, 37.79491922903299 ], [ -122.4182295799255, 37.79493194607189 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42038607597351, 37.805664346301484 ], [ -122.42019295692444, 37.8046937470726 ], [ -122.41966187953949, 37.80206585981292 ], [ -122.41930246353151, 37.8002856249968 ], [ -122.41908252239227, 37.79919203090711 ], [ -122.41892158985138, 37.79837818293725 ], [ -122.41855680942535, 37.79659362032577 ], [ -122.41854071617126, 37.796504603009666 ], [ -122.41851925849915, 37.79639862987445 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42039680480957, 37.80571096865078 ], [ -122.42038607597351, 37.805664346301484 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42207050323486, 37.79042573825485 ], [ -122.42184519767761, 37.79045541314694 ], [ -122.42178618907928, 37.79045965241627 ], [ -122.42176473140717, 37.79045965241627 ], [ -122.42165207862854, 37.79045965241627 ], [ -122.42161989212036, 37.79045965241627 ], [ -122.42159307003023, 37.79046389168536 ], [ -122.4206006526947, 37.79058683038295 ], [ -122.41916298866272, 37.790769118420094 ], [ -122.41906642913818, 37.79078183617337 ], [ -122.41896450519562, 37.790794553924414 ], [ -122.41767704486847, 37.79095988448907 ], [ -122.41715669631958, 37.791019233832294 ], [ -122.41660952568056, 37.79109130082786 ], [ -122.4161159992218, 37.79115065006551 ], [ -122.41585314273834, 37.79118032466647 ], [ -122.41565465927124, 37.791209999255514 ], [ -122.4140989780426, 37.79141348183076 ], [ -122.41283297538757, 37.79157457180539 ], [ -122.41244673728943, 37.79162544225074 ], [ -122.41206049919128, 37.79166783426177 ], [ -122.41171181201935, 37.79171446544583 ], [ -122.40933001041412, 37.79202392619421 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42206513881683, 37.7904087811683 ], [ -122.42185592651367, 37.79043421679666 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41524159908295, 37.80522355172624 ], [ -122.41518795490263, 37.80494381534272 ], [ -122.4151074886322, 37.8045623549303 ], [ -122.41509139537811, 37.80447758568221 ], [ -122.41508066654205, 37.80441400868229 ], [ -122.41503238677979, 37.8042020849539 ], [ -122.41493582725525, 37.80371465807083 ], [ -122.41488218307495, 37.80354511753136 ], [ -122.41479635238647, 37.80343915449654 ], [ -122.41469442844391, 37.803358622488425 ], [ -122.41392731666565, 37.802824565896664 ], [ -122.41378784179688, 37.802727078959165 ], [ -122.4137020111084, 37.802667739021146 ], [ -122.41306364536284, 37.80222692656055 ], [ -122.41298317909241, 37.802142154631916 ], [ -122.41295099258423, 37.80207433701892 ], [ -122.41290807723998, 37.80198532630738 ], [ -122.41288661956786, 37.801887838262154 ], [ -122.4128758907318, 37.8018242590329 ], [ -122.41279006004332, 37.80143006658992 ], [ -122.41269886493681, 37.80098076941205 ], [ -122.4125701189041, 37.800336489444156 ], [ -122.41252720355986, 37.800111837870816 ], [ -122.4125164747238, 37.80003554095462 ], [ -122.41250038146971, 37.799950766510875 ], [ -122.41245210170746, 37.799760023656695 ], [ -122.41233408451079, 37.79917931460157 ], [ -122.41231799125671, 37.799090300401254 ], [ -122.41230726242065, 37.799030957541476 ], [ -122.41214632987975, 37.79823830191443 ], [ -122.41213560104369, 37.79816200306308 ], [ -122.41211950778961, 37.798094181795705 ], [ -122.41205513477325, 37.797767791075565 ], [ -122.41195321083069, 37.79726760509566 ], [ -122.41189420223236, 37.79699631636796 ], [ -122.41176009178162, 37.79628841765257 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42039680480957, 37.80571096865078 ], [ -122.42038607597351, 37.805664346301484 ], [ -122.42019295692444, 37.8046937470726 ], [ -122.41966187953949, 37.80206585981292 ], [ -122.41930246353151, 37.8002856249968 ], [ -122.41908252239227, 37.79919203090711 ], [ -122.41892158985138, 37.79837818293725 ], [ -122.41855680942535, 37.79659362032577 ], [ -122.41854071617126, 37.796504603009666 ], [ -122.41851925849915, 37.79639862987445 ], [ -122.41848170757295, 37.79621635572625 ], [ -122.41837441921234, 37.79570768130605 ], [ -122.41833686828615, 37.7955254054531 ], [ -122.41832077503206, 37.79541519192846 ], [ -122.4182564020157, 37.795109984386826 ], [ -122.41820812225343, 37.79487683888746 ], [ -122.41815984249119, 37.7946182584731 ], [ -122.41814911365513, 37.79456315105469 ], [ -122.41800963878633, 37.79385946809832 ], [ -122.41799890995027, 37.79382131642118 ], [ -122.41798818111421, 37.7938001210365 ], [ -122.41797208786015, 37.793778925645704 ], [ -122.41795063018803, 37.7937619693287 ], [ -122.41791844367982, 37.79374501300782 ], [ -122.41788089275364, 37.793732295764606 ], [ -122.41784870624546, 37.793723817601226 ], [ -122.41780579090123, 37.793719578519195 ], [ -122.41777360439302, 37.793719578519195 ], [ -122.41771996021272, 37.793723817601226 ], [ -122.41177618503572, 37.79447413129194 ], [ -122.41138458251957, 37.79452499974094 ], [ -122.4111914634705, 37.79454619491767 ], [ -122.41031169891362, 37.79466064876697 ], [ -122.410199046135, 37.79467760487772 ], [ -122.40991473197941, 37.79471151708755 ], [ -122.40988790988928, 37.79471151708755 ], [ -122.40986645221716, 37.79471151708755 ], [ -122.40983963012701, 37.79471151708755 ], [ -122.40981817245489, 37.794703039036534 ], [ -122.40979671478277, 37.79469456098458 ], [ -122.40978062152868, 37.79468184390482 ], [ -122.40976452827462, 37.79466912682284 ], [ -122.40974843502053, 37.794647931681375 ], [ -122.40973770618447, 37.79462249750358 ], [ -122.40972697734841, 37.794592824285104 ], [ -122.40971088409432, 37.794550433952274 ], [ -122.40958213806161, 37.7939145760416 ], [ -122.40957140922555, 37.793850989949526 ], [ -122.40956068038949, 37.793791642880905 ], [ -122.40937829017648, 37.792956539788705 ], [ -122.40933001041422, 37.79268947437132 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41171717643738, 37.79629689552161 ], [ -122.41185665130615, 37.79700055526198 ], [ -122.41191029548645, 37.797271843974116 ], [ -122.41203904151918, 37.79793310603611 ], [ -122.41208195686342, 37.79817048071708 ], [ -122.41228044033052, 37.79909877794875 ], [ -122.41239309310915, 37.79972187502673 ], [ -122.41245210170746, 37.799963482683594 ], [ -122.41246819496155, 37.80004401839361 ], [ -122.41247892379761, 37.80011607658604 ], [ -122.4125325679779, 37.8003449668486 ], [ -122.41266131401063, 37.800980769412 ], [ -122.41274714469911, 37.801430066589866 ], [ -122.41282224655153, 37.80182849764983 ], [ -122.41283297538759, 37.8019005541014 ], [ -122.41286516189577, 37.802014996556444 ], [ -122.41290807724, 37.80218454060837 ], [ -122.41298854351045, 37.802269312488356 ], [ -122.41312801837923, 37.80239223154157 ], [ -122.4135732650757, 37.80269317042896 ], [ -122.41365909576417, 37.802752510346544 ], [ -122.41380393505098, 37.80285847436647 ], [ -122.41465687751771, 37.80343915449651 ], [ -122.41480171680452, 37.80355359456754 ], [ -122.41488218307497, 37.803680749994044 ], [ -122.41491973400117, 37.80379518969071 ], [ -122.4150002002716, 37.8042063234344 ], [ -122.41504311561584, 37.8044182471506 ], [ -122.41505920886993, 37.804481824146876 ], [ -122.41507530212402, 37.804562354930276 ], [ -122.41511821746826, 37.80482090053606 ], [ -122.41516649723052, 37.805028584055634 ], [ -122.41519331932066, 37.805172690644376 ], [ -122.41524159908293, 37.80522355172619 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.79285480069591 ], [ -122.4093461036682, 37.79296077891455 ], [ -122.4095070362091, 37.793804360113924 ], [ -122.40952312946318, 37.79385522902405 ], [ -122.40953922271727, 37.79392305418307 ], [ -122.40967869758605, 37.7945589120208 ], [ -122.40972161293028, 37.79475390732791 ], [ -122.40975916385649, 37.79493194607189 ], [ -122.40980207920073, 37.79514813539847 ], [ -122.40981280803679, 37.79517780839393 ], [ -122.40981817245482, 37.79520324238054 ], [ -122.40982890129088, 37.79523291535386 ], [ -122.40983963012694, 37.79525411032749 ], [ -122.40984499454494, 37.79528378328038 ], [ -122.40987181663509, 37.79545758176509 ], [ -122.40988254547115, 37.79549149361689 ], [ -122.40989863872524, 37.79552116647442 ], [ -122.40991473197931, 37.795542361365385 ], [ -122.40993618965143, 37.79556355625024 ], [ -122.40995764732355, 37.79557627317825 ], [ -122.4099844694137, 37.79558899010405 ], [ -122.41000592708582, 37.79559746805339 ], [ -122.41003274917597, 37.795601707027686 ], [ -122.41007030010215, 37.795601707027686 ], [ -122.41010248661033, 37.795601707027686 ], [ -122.4110841751098, 37.795474537692954 ], [ -122.41134166717524, 37.79543638684983 ], [ -122.41142213344565, 37.79542790888202 ], [ -122.41151869297022, 37.79541519192849 ], [ -122.41154551506034, 37.7954109529435 ], [ -122.41252720355979, 37.795292261264755 ], [ -122.41318166255942, 37.79519900338339 ], [ -122.41791844367972, 37.794592824285104 ], [ -122.41795599460593, 37.794592824285104 ], [ -122.41798281669608, 37.794592824285104 ], [ -122.4180042743682, 37.794597063317056 ], [ -122.41803109645834, 37.79460554138021 ], [ -122.41805255413045, 37.79461401944239 ], [ -122.41807401180259, 37.794626736533836 ], [ -122.41809546947471, 37.79464369265237 ], [ -122.41811692714683, 37.79466488779506 ], [ -122.41812765598289, 37.79469032195825 ], [ -122.41813838481895, 37.7947199951376 ], [ -122.418149113655, 37.794745429281804 ], [ -122.41816520690908, 37.79483444871764 ], [ -122.41821348667135, 37.79508031136412 ], [ -122.41828322410574, 37.79541943091325 ], [ -122.41830468177785, 37.79552964443154 ], [ -122.41844415664663, 37.79622059466508 ], [ -122.41848707199087, 37.79640286880277 ], [ -122.41850852966299, 37.7965215586972 ], [ -122.41852462291708, 37.796602098159816 ], [ -122.41887331008901, 37.79833579477651 ], [ -122.41888403892507, 37.79838242175201 ], [ -122.419050335884, 37.79919626967518 ], [ -122.41930782794942, 37.800476366493726 ], [ -122.41962969303121, 37.80207009841606 ], [ -122.42015540599813, 37.8046979855249 ], [ -122.42035388946523, 37.8056685846981 ], [ -122.42035925388325, 37.80571096865078 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.79285480069591 ], [ -122.4093461036682, 37.79296077891455 ], [ -122.4095070362091, 37.793804360113924 ], [ -122.40952312946318, 37.79385522902405 ], [ -122.40953922271727, 37.79392305418307 ], [ -122.40967869758605, 37.7945589120208 ], [ -122.40972161293028, 37.79475390732791 ], [ -122.40975916385649, 37.79493194607189 ], [ -122.40980207920073, 37.79514813539847 ], [ -122.40982353687285, 37.79527106630204 ], [ -122.40986108779906, 37.79546605972949 ], [ -122.40986645221706, 37.79549149361689 ], [ -122.40988254547115, 37.7955254054531 ], [ -122.40989863872524, 37.79554660034284 ], [ -122.40991473197931, 37.79555931727375 ], [ -122.4099308252334, 37.79557627317823 ], [ -122.40995228290552, 37.79558475112901 ], [ -122.40997374057764, 37.79559746805339 ], [ -122.41000056266779, 37.795605946001736 ], [ -122.41003274917597, 37.79561018497555 ], [ -122.41007030010215, 37.79561442394911 ], [ -122.41010785102836, 37.79561018497555 ], [ -122.4113577604293, 37.79544486481667 ], [ -122.4113953113555, 37.795440625833365 ], [ -122.4114328622817, 37.79544486481667 ], [ -122.41146504878989, 37.79545758176509 ], [ -122.41149187088003, 37.79546605972952 ], [ -122.41151869297018, 37.79548301565542 ], [ -122.4115401506423, 37.7955042105573 ], [ -122.41155624389638, 37.79553388340973 ], [ -122.41156697273244, 37.79556355625024 ], [ -122.4115777015685, 37.79559746805339 ], [ -122.41162061691274, 37.79583908920016 ], [ -122.41171717643728, 37.796296895521635 ], [ -122.41185665130605, 37.79700055526198 ], [ -122.41191029548635, 37.797271843974144 ], [ -122.41203904151908, 37.79793310603611 ], [ -122.41208195686332, 37.798170480717104 ], [ -122.41228044033042, 37.79909877794875 ], [ -122.41239309310905, 37.799721875026755 ], [ -122.41245210170736, 37.79996348268362 ], [ -122.41246819496145, 37.80004401839364 ], [ -122.41247892379751, 37.800116076586065 ], [ -122.4125325679778, 37.80034496684863 ], [ -122.41266131401053, 37.80098076941203 ], [ -122.41274714469901, 37.80143006658992 ], [ -122.41282224655143, 37.80182849764988 ], [ -122.41283297538749, 37.80190055410142 ], [ -122.41286516189567, 37.80201499655647 ], [ -122.4129080772399, 37.80218454060837 ], [ -122.41298854351035, 37.802269312488384 ], [ -122.41312801837913, 37.80239223154157 ], [ -122.4135732650756, 37.80269317042896 ], [ -122.41365909576407, 37.802752510346544 ], [ -122.41380393505088, 37.802858474366495 ], [ -122.41465687751761, 37.80343915449654 ], [ -122.41480171680442, 37.80355359456757 ], [ -122.41488218307487, 37.803680749994065 ], [ -122.41491973400106, 37.80379518969073 ], [ -122.4150002002715, 37.8042063234344 ], [ -122.41504311561575, 37.80441824715063 ], [ -122.41505920886983, 37.804481824146905 ], [ -122.41507530212392, 37.8045623549303 ], [ -122.41511821746816, 37.804820900536086 ], [ -122.41516649723042, 37.80502858405566 ], [ -122.41519331932057, 37.805172690644405 ], [ -122.41524159908283, 37.80522355172624 ], [ -122.41518795490254, 37.80494381534269 ], [ -122.41510748863209, 37.8045623549303 ], [ -122.415091395378, 37.80447758568221 ], [ -122.41508066654194, 37.804414008682265 ], [ -122.41503238677969, 37.80420208495388 ], [ -122.41493582725514, 37.80371465807083 ], [ -122.41488218307484, 37.80354511753136 ], [ -122.41479635238636, 37.80343915449654 ], [ -122.4146944284438, 37.8033586224884 ], [ -122.41392731666554, 37.802824565896664 ], [ -122.41378784179676, 37.80272707895914 ], [ -122.41370201110828, 37.802667739021146 ], [ -122.41306364536274, 37.80222692656055 ], [ -122.4129831790923, 37.80214215463189 ], [ -122.41295099258411, 37.8020743370189 ], [ -122.41290807723988, 37.80198532630738 ], [ -122.41288661956776, 37.801887838262154 ], [ -122.4128758907317, 37.80182425903287 ], [ -122.41279006004319, 37.80143006658992 ], [ -122.41269886493671, 37.80098076941203 ], [ -122.41257011890397, 37.800336489444156 ], [ -122.41252720355973, 37.800111837870794 ], [ -122.41251647472367, 37.800035540954596 ], [ -122.41250038146958, 37.799950766510875 ], [ -122.41245210170734, 37.79976002365667 ], [ -122.41233408451066, 37.79917931460154 ], [ -122.4123179912566, 37.799090300401254 ], [ -122.41230726242054, 37.799030957541454 ], [ -122.41214632987962, 37.79823830191443 ], [ -122.41213560104356, 37.79816200306305 ], [ -122.4121195077895, 37.798094181795705 ], [ -122.41205513477314, 37.797767791075536 ], [ -122.41195321083057, 37.79726760509566 ], [ -122.41189420223225, 37.79699631636796 ], [ -122.4117600917815, 37.79628841765255 ], [ -122.411668896675, 37.79583908920016 ], [ -122.4115777015685, 37.79538975801483 ], [ -122.4115401506423, 37.79519052538833 ], [ -122.4114328622817, 37.79468608293166 ], [ -122.41142213344564, 37.79465217071015 ], [ -122.41140604019155, 37.794626736533836 ], [ -122.41138994693746, 37.79460130234873 ], [ -122.41136312484733, 37.794584346220475 ], [ -122.41133630275718, 37.794567390088325 ], [ -122.41129875183097, 37.79455467298668 ], [ -122.41126120090479, 37.794550433952274 ], [ -122.41122364997858, 37.79454619491767 ], [ -122.4111914634704, 37.79454619491767 ], [ -122.41031169891352, 37.79466064876697 ], [ -122.4101990461349, 37.79467760487772 ], [ -122.40991473197931, 37.79471151708752 ], [ -122.40988790988918, 37.79471151708752 ], [ -122.40986645221706, 37.79471151708752 ], [ -122.40983963012691, 37.79471151708752 ], [ -122.40981817245479, 37.794703039036534 ], [ -122.40979671478267, 37.79469456098458 ], [ -122.40978062152858, 37.79468184390479 ], [ -122.40976452827452, 37.79466912682284 ], [ -122.40974843502043, 37.794647931681375 ], [ -122.40973770618437, 37.79462249750358 ], [ -122.40972697734831, 37.794592824285075 ], [ -122.40971088409422, 37.794550433952274 ], [ -122.40958213806151, 37.7939145760416 ], [ -122.40957140922545, 37.793850989949526 ], [ -122.40956068038939, 37.79379164288088 ], [ -122.40937829017638, 37.792956539788705 ], [ -122.40933001041412, 37.79268947437132 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41312265396118, 37.791566093394444 ], [ -122.41306900978088, 37.79157033260003 ], [ -122.4130368232727, 37.79157457180537 ], [ -122.41300463676453, 37.79157457180537 ], [ -122.41296172142029, 37.79157033260003 ], [ -122.41292953491211, 37.79157033260003 ], [ -122.41289734840392, 37.79157033260003 ], [ -122.41286516189574, 37.79157457180537 ], [ -122.41283297538756, 37.79157457180537 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41031169891357, 37.79466064876697 ], [ -122.41026878356934, 37.79466912682284 ], [ -122.41024196147919, 37.79467760487772 ], [ -122.41022050380707, 37.79468184390482 ], [ -122.41019904613495, 37.79468608293166 ], [ -122.40991473197937, 37.79471999513757 ], [ -122.40988790988922, 37.794724234162196 ], [ -122.4098664522171, 37.79473271221077 ], [ -122.40984499454498, 37.79474119025835 ], [ -122.40981817245483, 37.79475390732791 ], [ -122.40980207920076, 37.79477086341726 ], [ -122.40978598594667, 37.794783580481706 ], [ -122.40977525711061, 37.794800536564246 ], [ -122.40975916385655, 37.79482597068075 ], [ -122.40975379943852, 37.79485564380559 ], [ -122.40975379943852, 37.794881077903106 ], [ -122.40975916385655, 37.79493194607191 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42035388946533, 37.80566858469807 ], [ -122.42035925388335, 37.80571096865078 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4117761850357, 37.79447413129197 ], [ -122.41181910037994, 37.79446989225296 ], [ -122.4118673801422, 37.79446989225296 ], [ -122.4119049310684, 37.79447837033072 ], [ -122.41193711757658, 37.79448684840749 ], [ -122.41196393966673, 37.79449956552084 ], [ -122.41199076175688, 37.794516521668555 ], [ -122.41200685501094, 37.794533477812365 ], [ -122.41202831268306, 37.79455467298668 ], [ -122.41203904151912, 37.7945843462205 ], [ -122.41204977035518, 37.79461401944236 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41176009178162, 37.79628841765255 ], [ -122.41166889667511, 37.79583908920013 ], [ -122.4115777015686, 37.79538975801483 ], [ -122.41154015064241, 37.79519052538833 ], [ -122.41143286228181, 37.794686082931634 ], [ -122.41142213344574, 37.79465217071015 ], [ -122.41140604019166, 37.79462673653381 ], [ -122.41138994693758, 37.79460130234873 ], [ -122.41136312484745, 37.794584346220475 ], [ -122.4113363027573, 37.794567390088325 ], [ -122.4112987518311, 37.79455467298668 ], [ -122.4112612009049, 37.794550433952274 ], [ -122.4112236499787, 37.79454619491767 ], [ -122.41119146347052, 37.79454619491767 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } } ], "name": "road" }mapnik-vector-tile-0.3.2/examples/data/14_2620_6331-building_label.geojson0000644000175000017500000012550512174360626024003 0ustar devdev{ "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4292802810669, 37.78527484428987 ] }, "properties": { "area": 5516.33349609375, "name": "Miyako Mall", "name_de": "Miyako Mall", "name_en": "Miyako Mall", "name_es": "Miyako Mall", "name_fr": "Miyako Mall" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42416799068451, 37.80113759986951 ] }, "properties": { "area": 1380.7078857421875, "name": "Chase", "name_de": "Chase", "name_en": "Chase", "name_es": "Chase", "name_fr": "Chase" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41160988807678, 37.78994245976337 ] }, "properties": { "area": 230.83670043945312, "name": "Fire Chief's Residence", "name_de": "Fire Chief's Residence", "name_en": "Fire Chief's Residence", "name_es": "Fire Chief's Residence", "name_fr": "Fire Chief's Residence" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43130803108215, 37.78509254269906 ] }, "properties": { "area": 908.6409912109375, "name": "Webster Street Bridge", "name_de": "Webster Street Bridge", "name_en": "Webster Street Bridge", "name_es": "Webster Street Bridge", "name_fr": "Webster Street Bridge" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43186056613922, 37.78496535527636 ] }, "properties": { "area": 5365.01318359375, "name": "Kinokuniya Mall", "name_de": "Kinokuniya Mall", "name_en": "Kinokuniya Mall", "name_es": "Kinokuniya Mall", "name_fr": "Kinokuniya Mall" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4284702539444, 37.785393552060754 ] }, "properties": { "area": 3088.516357421875, "name": "Hotel Kabuki", "name_de": "Hotel Kabuki", "name_en": "Hotel Kabuki", "name_es": "Hotel Kabuki", "name_fr": "Hotel Kabuki" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41934537887573, 37.78665269060695 ] }, "properties": { "area": 520.3375244140625, "name": "San Francisco Fire Station 3", "name_de": "San Francisco Fire Station 3", "name_en": "San Francisco Fire Station 3", "name_es": "San Francisco Fire Station 3", "name_fr": "San Francisco Fire Station 3" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41794526576996, 37.80530408170084 ] }, "properties": { "area": 572.687744140625, "name": "Bayside Inn at the Wharf", "name_de": "Bayside Inn at the Wharf", "name_en": "Bayside Inn at the Wharf", "name_es": "Bayside Inn at the Wharf", "name_fr": "Bayside Inn at the Wharf" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41453349590302, 37.80774960805068 ] }, "properties": { "area": 1862.534912109375, "name": "The Wharf Inn", "name_de": "The Wharf Inn", "name_en": "The Wharf Inn", "name_es": "The Wharf Inn", "name_fr": "The Wharf Inn" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41641640663147, 37.80607123126648 ] }, "properties": { "area": 343.0441589355469, "name": "Knuckles Historic Sports Bar & Grill", "name_de": "Knuckles Historic Sports Bar & Grill", "name_en": "Knuckles Historic Sports Bar & Grill", "name_es": "Knuckles Historic Sports Bar & Grill", "name_fr": "Knuckles Historic Sports Bar & Grill" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4135947227478, 37.80428261604232 ] }, "properties": { "area": 830.158447265625, "name": "San Remo Hotel", "name_de": "San Remo Hotel", "name_en": "San Remo Hotel", "name_es": "San Remo Hotel", "name_fr": "San Remo Hotel" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4206006526947, 37.80551176386163 ] }, "properties": { "area": 1236.4427490234375, "name": "Suites at Fisherman's Wharf", "name_de": "Suites at Fisherman's Wharf", "name_en": "Suites at Fisherman's Wharf", "name_es": "Suites at Fisherman's Wharf", "name_fr": "Suites at Fisherman's Wharf" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41020441055298, 37.795237154349074 ] }, "properties": { "area": 1414.74072265625, "name": "Chinatown Branch Library", "name_de": "Chinatown Branch Library", "name_en": "Chinatown Branch Library", "name_es": "Chinatown Branch Library", "name_fr": "Chinatown Branch Library" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43674218654633, 37.79862827259065 ] }, "properties": { "area": 660.9341430664062, "name": "San Francisco Fire Station 16", "name_de": "San Francisco Fire Station 16", "name_en": "San Francisco Fire Station 16", "name_es": "San Francisco Fire Station 16", "name_fr": "San Francisco Fire Station 16" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40935146808624, 37.802549059002104 ] }, "properties": { "area": 422.4821472167969, "name": "San Francisco Fire Station 28", "name_de": "San Francisco Fire Station 28", "name_en": "San Francisco Fire Station 28", "name_es": "San Francisco Fire Station 28", "name_fr": "San Francisco Fire Station 28" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40993082523346, 37.79875119770314 ] }, "properties": { "area": 2133.2392578125, "name": "Central Police Station", "name_de": "Central Police Station", "name_en": "Central Police Station", "name_es": "Central Police Station", "name_fr": "Central Police Station" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40958750247955, 37.79821286897272 ] }, "properties": { "area": 2808.270751953125, "name": "North Beach Garage", "name_de": "North Beach Garage", "name_en": "North Beach Garage", "name_es": "North Beach Garage", "name_fr": "North Beach Garage" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4277138710022, 37.78465586496683 ] }, "properties": { "area": 1985.4339599609375, "name": "Consulate General of People's Republic of China, San Francisco", "name_de": "Consulate General of People's Republic of China, San Francisco", "name_en": "Consulate General of People's Republic of China, San Francisco", "name_es": "Consulate General of People's Republic of China, San Francisco", "name_fr": "Consulate General of People's Republic of China, San Francisco" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41189420223236, 37.79491499001951 ] }, "properties": { "area": 6071.3720703125, "name": "Cable Car Barn and Museum", "name_de": "Cable Car Barn and Museum", "name_en": "Cable Car Barn and Museum", "name_es": "Cable Car Barn and Museum", "name_fr": "Cable Car Barn and Museum" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40681946277618, 37.79345675495729 ] }, "properties": { "area": 391.3664855957031, "name": "First Chinese Baptist Church", "name_de": "First Chinese Baptist Church", "name_en": "First Chinese Baptist Church", "name_es": "First Chinese Baptist Church", "name_fr": "First Chinese Baptist Church" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42138385772705, 37.791171846210275 ] }, "properties": { "area": 1251.1688232421875, "name": "Old First Garage", "name_de": "Old First Garage", "name_en": "Old First Garage", "name_es": "Old First Garage", "name_fr": "Old First Garage" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43056237697601, 37.78513917803252 ] }, "properties": { "area": 8348.4609375, "name": "Kintetsu Mall", "name_de": "Kintetsu Mall", "name_en": "Kintetsu Mall", "name_es": "Kintetsu Mall", "name_fr": "Kintetsu Mall" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40898668766022, 37.784867844770744 ] }, "properties": { "area": 7335.865234375, "name": "Parc 55 Hotel", "name_de": "Parc 55 Hotel", "name_en": "Parc 55 Hotel", "name_es": "Parc 55 Hotel", "name_fr": "Parc 55 Hotel" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42539644241333, 37.78572423698848 ] }, "properties": { "area": 7462.6748046875, "name": "Cathedral Hill Plaza", "name_de": "Cathedral Hill Plaza", "name_en": "Cathedral Hill Plaza", "name_es": "Cathedral Hill Plaza", "name_fr": "Cathedral Hill Plaza" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42535352706909, 37.78424886203896 ] }, "properties": { "area": 8470.4453125, "name": "Cathedral of Saint Mary of the Assumption", "name_de": "Cathedral of Saint Mary of the Assumption", "name_en": "Cathedral of Saint Mary of the Assumption", "name_es": "Cathedral of Saint Mary of the Assumption", "name_fr": "Cathedral of Saint Mary of the Assumption" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41531133651733, 37.78618634549861 ] }, "properties": { "area": 505.65185546875, "name": "Luz Hotel", "name_de": "Luz Hotel", "name_en": "Luz Hotel", "name_es": "Luz Hotel", "name_fr": "Luz Hotel" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41287589073181, 37.80805476336766 ] }, "properties": { "area": 14876.345703125, "name": "Radisson", "name_de": "Radisson", "name_en": "Radisson", "name_es": "Radisson", "name_fr": "Radisson" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41165280342102, 37.80810562246455 ] }, "properties": { "area": 9020.443359375, "name": "Pier 39 Garage", "name_de": "Pier 39 Garage", "name_en": "Pier 39 Garage", "name_es": "Pier 39 Garage", "name_fr": "Pier 39 Garage" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43238627910614, 37.807872517982794 ] }, "properties": { "area": 3615.182861328125, "name": "Pier 1", "name_de": "Pier 1", "name_en": "Pier 1", "name_es": "Pier 1", "name_fr": "Pier 1" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40513503551483, 37.80599070212845 ] }, "properties": { "area": 1131.0096435546875, "name": "Houston's", "name_de": "Houston's", "name_en": "Houston's", "name_es": "Houston's", "name_fr": "Houston's" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43417799472809, 37.80141735066961 ] }, "properties": { "area": 1237.8514404296875, "name": "Marina Branch San Francisco Public Library", "name_de": "Marina Branch San Francisco Public Library", "name_en": "Marina Branch San Francisco Public Library", "name_es": "Marina Branch San Francisco Public Library", "name_fr": "Marina Branch San Francisco Public Library" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41409361362457, 37.80616447542192 ] }, "properties": { "area": 3546.529296875, "name": "Best Western Tuscan Inn", "name_de": "Best Western Tuscan Inn", "name_en": "Best Western Tuscan Inn", "name_es": "Best Western Tuscan Inn", "name_fr": "Best Western Tuscan Inn" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42490828037262, 37.80092142807103 ] }, "properties": { "area": 1123.26171875, "name": "Comfort Inn", "name_de": "Comfort Inn", "name_en": "Comfort Inn", "name_es": "Comfort Inn", "name_fr": "Comfort Inn" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41276860237122, 37.80238375437207 ] }, "properties": { "area": 755.2568969726562, "name": "North Beach Branch Library", "name_de": "North Beach Branch Library", "name_en": "North Beach Branch Library", "name_es": "North Beach Branch Library", "name_fr": "North Beach Branch Library" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40642786026001, 37.79746259325332 ] }, "properties": { "area": 382.2843933105469, "name": "Vesuvio", "name_de": "Vesuvio", "name_en": "Vesuvio", "name_es": "Vesuvio", "name_fr": "Vesuvio" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41563320159912, 37.808766787536605 ] }, "properties": { "area": 393.5412902832031, "name": "Boudin", "name_de": "Boudin", "name_en": "Boudin", "name_es": "Boudin", "name_fr": "Boudin" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41489827632904, 37.808533685141974 ] }, "properties": { "area": 2283.5849609375, "name": "Boudin", "name_de": "Boudin", "name_en": "Boudin", "name_es": "Boudin", "name_fr": "Boudin" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41548836231232, 37.80798271292044 ] }, "properties": { "area": 2022.918701171875, "name": "Ripley's Believe it or Not", "name_de": "Ripley's Believe it or Not", "name_en": "Ripley's Believe it or Not", "name_es": "Ripley's Believe it or Not", "name_fr": "Ripley's Believe it or Not" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40637421607971, 37.80851673221186 ] }, "properties": { "area": 24874.34375, "name": "Pier 35", "name_de": "Pier 35", "name_en": "Pier 35", "name_es": "Pier 35", "name_fr": "Pier 35" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40471661090851, 37.80765636589674 ] }, "properties": { "area": 15779.9248046875, "name": "Pier 33", "name_de": "Pier 33", "name_en": "Pier 33", "name_es": "Pier 33", "name_fr": "Pier 33" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41289734840393, 37.8071435319456 ] }, "properties": { "area": 12872.4033203125, "name": "Sheraton Fisherman's Wharf", "name_de": "Sheraton Fisherman's Wharf", "name_en": "Sheraton Fisherman's Wharf", "name_es": "Sheraton Fisherman's Wharf", "name_fr": "Sheraton Fisherman's Wharf" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42696285247803, 37.80784708835846 ] }, "properties": { "area": 983.818603515625, "name": "Salt Water Pumping Station #2", "name_de": "Salt Water Pumping Station #2", "name_en": "Salt Water Pumping Station #2", "name_es": "Salt Water Pumping Station #2", "name_fr": "Salt Water Pumping Station #2" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4093246459961, 37.80878797862691 ] }, "properties": { "area": 2921.8076171875, "name": "Aquarium of the Bay", "name_de": "Aquarium of the Bay", "name_en": "Aquarium of the Bay", "name_es": "Aquarium of the Bay", "name_fr": "Aquarium of the Bay" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41211414337158, 37.80909312965286 ] }, "properties": { "area": 1839.5250244140625, "name": "San Francisco Pier 41", "name_de": "San Francisco Pier 41", "name_en": "San Francisco Pier 41", "name_es": "San Francisco Pier 41", "name_fr": "San Francisco Pier 41" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41834759712219, 37.807393591920395 ] }, "properties": { "area": 3765.9267578125, "name": "Courtyard by Marriott", "name_de": "Courtyard by Marriott", "name_en": "Courtyard by Marriott", "name_es": "Courtyard by Marriott", "name_fr": "Courtyard by Marriott" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42360472679138, 37.79928104498482 ] }, "properties": { "area": 3528.04296875, "name": "Heritage Marina Hotel", "name_de": "Heritage Marina Hotel", "name_en": "Heritage Marina Hotel", "name_es": "Heritage Marina Hotel", "name_fr": "Heritage Marina Hotel" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41784334182739, 37.78583870450334 ] }, "properties": { "area": 1468.395751953125, "name": "Motel 6", "name_de": "Motel 6", "name_en": "Motel 6", "name_es": "Motel 6", "name_fr": "Motel 6" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42006957530975, 37.785592811104635 ] }, "properties": { "area": 888.1964111328125, "name": "Monarch Hotel", "name_de": "Monarch Hotel", "name_en": "Monarch Hotel", "name_es": "Monarch Hotel", "name_fr": "Monarch Hotel" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41901814937592, 37.78530452125047 ] }, "properties": { "area": 4581.5654296875, "name": "Trinity Towers", "name_de": "Trinity Towers", "name_en": "Trinity Towers", "name_es": "Trinity Towers", "name_fr": "Trinity Towers" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41949021816254, 37.78951005001279 ] }, "properties": { "area": 2203.13330078125, "name": "Redding Elementary School", "name_de": "Redding Elementary School", "name_en": "Redding Elementary School", "name_es": "Redding Elementary School", "name_fr": "Redding Elementary School" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41796672344208, 37.78779734339625 ] }, "properties": { "area": 1228.1376953125, "name": "Carlton Hotel", "name_de": "Carlton Hotel", "name_en": "Carlton Hotel", "name_es": "Carlton Hotel", "name_fr": "Carlton Hotel" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4329924583435, 37.790234970806864 ] }, "properties": { "area": 4045.7548828125, "name": "Dental School of the University of the Pacific", "name_de": "Dental School of the University of the Pacific", "name_en": "Dental School of the University of the Pacific", "name_es": "Dental School of the University of the Pacific", "name_fr": "Dental School of the University of the Pacific" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4302351474762, 37.80835991742361 ] }, "properties": { "area": 9903.87109375, "name": "Pier 3 — Festival Pavillion", "name_de": "Pier 3 — Festival Pavillion", "name_en": "Pier 3 — Festival Pavillion", "name_es": "Pier 3 — Festival Pavillion", "name_fr": "Pier 3 — Festival Pavillion" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43137240409851, 37.80821157880392 ] }, "properties": { "area": 7855.970703125, "name": "Pier 2 — Herbst Pavillion", "name_de": "Pier 2 — Herbst Pavillion", "name_en": "Pier 2 — Herbst Pavillion", "name_es": "Pier 2 — Herbst Pavillion", "name_fr": "Pier 2 — Herbst Pavillion" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42568075656891, 37.801569941568545 ] }, "properties": { "area": 2369.4833984375, "name": "Travelodge", "name_de": "Travelodge", "name_en": "Travelodge", "name_es": "Travelodge", "name_fr": "Travelodge" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41723716259003, 37.80567706149055 ] }, "properties": { "area": 4797.96875, "name": "Marriott", "name_de": "Marriott", "name_en": "Marriott", "name_es": "Marriott", "name_fr": "Marriott" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41663634777069, 37.8057194454384 ] }, "properties": { "area": 6233.70751953125, "name": "Hilton San Francisco Fisherman's Wharf", "name_de": "Hilton San Francisco Fisherman's Wharf", "name_en": "Hilton San Francisco Fisherman's Wharf", "name_es": "Hilton San Francisco Fisherman's Wharf", "name_fr": "Hilton San Francisco Fisherman's Wharf" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41614282131195, 37.805855073907956 ] }, "properties": { "area": 6987.13134765625, "name": "Hyatt at Fisherman's Wharf", "name_de": "Hyatt at Fisherman's Wharf", "name_en": "Hyatt at Fisherman's Wharf", "name_es": "Hyatt at Fisherman's Wharf", "name_fr": "Hyatt at Fisherman's Wharf" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4202573299408, 37.807198629978885 ] }, "properties": { "area": 7605.28759765625, "name": "Argonaut Hotel", "name_de": "Argonaut Hotel", "name_en": "Argonaut Hotel", "name_es": "Argonaut Hotel", "name_fr": "Argonaut Hotel" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42389440536499, 37.806423015418865 ] }, "properties": { "area": 1902.082275390625, "name": "National Maritime Museum", "name_de": "National Maritime Museum", "name_en": "National Maritime Museum", "name_es": "National Maritime Museum", "name_fr": "National Maritime Museum" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41769313812256, 37.80653745086623 ] }, "properties": { "area": 7447.5517578125, "name": "Holiday Inn", "name_de": "Holiday Inn", "name_en": "Holiday Inn", "name_es": "Holiday Inn", "name_fr": "Holiday Inn" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40583777427673, 37.80237527720156 ] }, "properties": { "area": 638.9163208007812, "name": "Coit Tower", "name_de": "Coit Tower", "name_en": "Coit Tower", "name_es": "Coit Tower", "name_fr": "Coit Tower" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40650832653046, 37.790001809923794 ] }, "properties": { "area": 10718.5927734375, "name": "Sutter-Stockton Garage", "name_de": "Sutter-Stockton Garage", "name_en": "Sutter-Stockton Garage", "name_es": "Sutter-Stockton Garage", "name_fr": "Sutter-Stockton Garage" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4104243516922, 37.7992301798107 ] }, "properties": { "area": 114.67269897460938, "name": "Northstar Cafe", "name_de": "Northstar Cafe", "name_en": "Northstar Cafe", "name_es": "Northstar Cafe", "name_fr": "Northstar Cafe" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41023123264313, 37.8015996119845 ] }, "properties": { "area": 2652.321533203125, "name": "Saint Peter and Paul Church", "name_de": "Saint Peter and Paul Church", "name_en": "Saint Peter and Paul Church", "name_es": "Saint Peter and Paul Church", "name_fr": "Saint Peter and Paul Church" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40573585033417, 37.800060973268764 ] }, "properties": { "area": 265.8677978515625, "name": "Fog Hill Market", "name_de": "Fog Hill Market", "name_en": "Fog Hill Market", "name_es": "Fog Hill Market", "name_fr": "Fog Hill Market" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40774214267731, 37.7990097636514 ] }, "properties": { "area": 1287.492431640625, "name": "The National Shrine of Saint Francis of Assisi", "name_de": "The National Shrine of Saint Francis of Assisi", "name_en": "The National Shrine of Saint Francis of Assisi", "name_es": "The National Shrine of Saint Francis of Assisi", "name_fr": "The National Shrine of Saint Francis of Assisi" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40420162677765, 37.79519052538833 ] }, "properties": { "area": 4514.34716796875, "name": "Hilton San Francisco Financial District", "name_de": "Hilton San Francisco Financial District", "name_en": "Hilton San Francisco Financial District", "name_es": "Hilton San Francisco Financial District", "name_fr": "Hilton San Francisco Financial District" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40862190723419, 37.78778038570655 ] }, "properties": { "area": 5864.0146484375, "name": "The Westin Saint Francis", "name_de": "The Westin Saint Francis", "name_en": "The Westin Saint Francis", "name_es": "The Westin Saint Francis", "name_fr": "The Westin Saint Francis" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40838050842285, 37.788980132652135 ] }, "properties": { "area": 1684.3642578125, "name": "Sir Francis Drake", "name_de": "Sir Francis Drake", "name_en": "Sir Francis Drake", "name_es": "Sir Francis Drake", "name_fr": "Sir Francis Drake" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40719497203827, 37.78702576457477 ] }, "properties": { "area": 13504.876953125, "name": "Macy's", "name_de": "Macy's", "name_en": "Macy's", "name_es": "Macy's", "name_fr": "Macy's" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40811228752136, 37.78861554730136 ] }, "properties": { "area": 3552.616455078125, "name": "Saks Fifth Avenue", "name_de": "Saks Fifth Avenue", "name_en": "Saks Fifth Avenue", "name_es": "Saks Fifth Avenue", "name_fr": "Saks Fifth Avenue" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40732371807098, 37.788751207176915 ] }, "properties": { "area": 1753.3902587890625, "name": "Levi's Strauss", "name_de": "Levi's Strauss", "name_en": "Levi's Strauss", "name_es": "Levi's Strauss", "name_fr": "Levi's Strauss" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4102795124054, 37.79964557770774 ] }, "properties": { "area": 866.610595703125, "name": "Fugazi Hall", "name_de": "Fugazi Hall", "name_en": "Fugazi Hall", "name_es": "Fugazi Hall", "name_fr": "Fugazi Hall" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40660488605499, 37.797636386612204 ] }, "properties": { "area": 256.4836120605469, "name": "City Lights Bookstore", "name_de": "City Lights Bookstore", "name_en": "City Lights Bookstore", "name_es": "City Lights Bookstore", "name_fr": "City Lights Bookstore" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41349816322327, 37.79182892368188 ] }, "properties": { "area": 4078.9423828125, "name": "Grace Cathedral", "name_de": "Grace Cathedral", "name_en": "Grace Cathedral", "name_es": "Grace Cathedral", "name_fr": "Grace Cathedral" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41298317909241, 37.79119728157595 ] }, "properties": { "area": 7263.853515625, "name": "Masonic Memorial Temple", "name_de": "Masonic Memorial Temple", "name_en": "Masonic Memorial Temple", "name_es": "Masonic Memorial Temple", "name_fr": "Masonic Memorial Temple" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41133630275726, 37.792235884863004 ] }, "properties": { "area": 3000.710205078125, "name": "Pacific Union Club", "name_de": "Pacific Union Club", "name_en": "Pacific Union Club", "name_es": "Pacific Union Club", "name_fr": "Pacific Union Club" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40650832653046, 37.790709768875985 ] }, "properties": { "area": 687.8807373046875, "name": "Notre Dame Des Victoires Church", "name_de": "Notre Dame Des Victoires Church", "name_en": "Notre Dame Des Victoires Church", "name_es": "Notre Dame Des Victoires Church", "name_fr": "Notre Dame Des Victoires Church" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41018831729889, 37.79244360376852 ] }, "properties": { "area": 13559.2392578125, "name": "The Fairmont San Francisco Hotel", "name_de": "The Fairmont San Francisco Hotel", "name_en": "The Fairmont San Francisco Hotel", "name_es": "The Fairmont San Francisco Hotel", "name_fr": "The Fairmont San Francisco Hotel" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41032779216766, 37.7864322369225 ] }, "properties": { "area": 5438.31689453125, "name": "Mason O'Farrell Garage", "name_de": "Mason O'Farrell Garage", "name_en": "Mason O'Farrell Garage", "name_es": "Mason O'Farrell Garage", "name_fr": "Mason O'Farrell Garage" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40706622600555, 37.78607187852223 ] }, "properties": { "area": 4905.40234375, "name": "Ellis O'Farrell Garage", "name_de": "Ellis O'Farrell Garage", "name_en": "Ellis O'Farrell Garage", "name_es": "Ellis O'Farrell Garage", "name_fr": "Ellis O'Farrell Garage" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41019904613495, 37.793126104632066 ] }, "properties": { "area": 2254.120849609375, "name": "Brocklebank Garage", "name_de": "Brocklebank Garage", "name_en": "Brocklebank Garage", "name_es": "Brocklebank Garage", "name_fr": "Brocklebank Garage" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41366982460022, 37.78643647642264 ] }, "properties": { "area": 1744.7864990234375, "name": "Geary Courtyard", "name_de": "Geary Courtyard", "name_en": "Geary Courtyard", "name_es": "Geary Courtyard", "name_fr": "Geary Courtyard" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40530133247375, 37.798251018382 ] }, "properties": { "area": 931.8032836914062, "name": "Green Tortoise Hostel", "name_de": "Green Tortoise Hostel", "name_en": "Green Tortoise Hostel", "name_es": "Green Tortoise Hostel", "name_fr": "Green Tortoise Hostel" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41027414798737, 37.791485548441756 ] }, "properties": { "area": 5916.74169921875, "name": "InterContinental Hotel Mark Hopkins", "name_de": "InterContinental Hotel Mark Hopkins", "name_en": "InterContinental Hotel Mark Hopkins", "name_es": "InterContinental Hotel Mark Hopkins", "name_fr": "InterContinental Hotel Mark Hopkins" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40504920482635, 37.796551231141 ] }, "properties": { "area": 203.70689392089844, "name": "Sentinel Building", "name_de": "Sentinel Building", "name_en": "Sentinel Building", "name_es": "Sentinel Building", "name_fr": "Sentinel Building" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4319839477539, 37.78945493878432 ] }, "properties": { "area": 2216.253662109375, "name": "Temple Sherith Israel", "name_de": "Temple Sherith Israel", "name_en": "Temple Sherith Israel", "name_es": "Temple Sherith Israel", "name_fr": "Temple Sherith Israel" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4357658624649, 37.787008806708016 ] }, "properties": { "area": 2847.9228515625, "name": "Saint Dominics Roman Catholic Church", "name_de": "Saint Dominics Roman Catholic Church", "name_en": "Saint Dominics Roman Catholic Church", "name_es": "Saint Dominics Roman Catholic Church", "name_fr": "Saint Dominics Roman Catholic Church" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43255257606506, 37.784914480246 ] }, "properties": { "area": 4337.994140625, "name": "Sundance Kabuki Theater", "name_de": "Sundance Kabuki Theater", "name_en": "Sundance Kabuki Theater", "name_es": "Sundance Kabuki Theater", "name_fr": "Sundance Kabuki Theater" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40720570087433, 37.78508830312183 ] }, "properties": { "area": 4147.34716796875, "name": "Flood Building", "name_de": "Flood Building", "name_en": "Flood Building", "name_es": "Flood Building", "name_fr": "Flood Building" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40446984767914, 37.790056920744384 ] }, "properties": { "area": 2156.785888671875, "name": "W&J Sloane Building", "name_de": "W&J Sloane Building", "name_en": "W&J Sloane Building", "name_es": "W&J Sloane Building", "name_fr": "W&J Sloane Building" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41510212421417, 37.786707803925296 ] }, "properties": { "area": 652.7189331054688, "name": "601 Leavenworth Street", "name_de": "601 Leavenworth Street", "name_en": "601 Leavenworth Street", "name_es": "601 Leavenworth Street", "name_fr": "601 Leavenworth Street" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40691065788269, 37.78492719900686 ] }, "properties": { "area": 15417.0107421875, "name": "Powell Station", "name_de": "Powell Station", "name_en": "Powell Station", "name_es": "Powell Station", "name_fr": "Powell Station" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40546226501465, 37.786398320912674 ] }, "properties": { "area": 3803.703125, "name": "Phelan Building", "name_de": "Phelan Building", "name_en": "Phelan Building", "name_es": "Phelan Building", "name_fr": "Phelan Building" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41386830806732, 37.78686466468337 ] }, "properties": { "area": 368.9371032714844, "name": "Hotel Adante", "name_de": "Hotel Adante", "name_en": "Hotel Adante", "name_es": "Hotel Adante", "name_fr": "Hotel Adante" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40652441978455, 37.78585990217182 ] }, "properties": { "area": 866.3295288085938, "name": "Apple Store", "name_de": "Apple Store", "name_en": "Apple Store", "name_es": "Apple Store", "name_fr": "Apple Store" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40636885166168, 37.784104714631205 ] }, "properties": { "area": 40016.9453125, "name": "Westfield San Francisco Centre", "name_de": "Westfield San Francisco Centre", "name_en": "Westfield San Francisco Centre", "name_es": "Westfield San Francisco Centre", "name_fr": "Westfield San Francisco Centre" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41469442844391, 37.809084653252505 ] }, "properties": { "area": 1289.7733154296875, "name": "Franciscan", "name_de": "Franciscan", "name_en": "Franciscan", "name_es": "Franciscan", "name_fr": "Franciscan" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42195248603821, 37.78492719900686 ] }, "properties": { "area": 4642.2548828125, "name": "KRON TV", "name_de": "KRON TV", "name_en": "KRON TV", "name_es": "KRON TV", "name_fr": "KRON TV" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43609845638275, 37.79726760509566 ] }, "properties": { "area": 1231.0413818359375, "name": "Metro Theatre", "name_de": "Metro Theatre", "name_en": "Metro Theatre", "name_es": "Metro Theatre", "name_fr": "Metro Theatre" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42194175720215, 37.79833155595906 ] }, "properties": { "area": 1569.696533203125, "name": "Alhambra Theatre", "name_de": "Alhambra Theatre", "name_en": "Alhambra Theatre", "name_es": "Alhambra Theatre", "name_fr": "Alhambra Theatre" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43282616138458, 37.8044521548888 ] }, "properties": { "area": 6547.6796875, "name": "Safeway 1711", "name_de": "Safeway 1711", "name_en": "Safeway 1711", "name_es": "Safeway 1711", "name_fr": "Safeway 1711" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43460714817047, 37.79132869749249 ] }, "properties": { "area": 1204.5052490234375, "name": "Pets Unlimited", "name_de": "Pets Unlimited", "name_en": "Pets Unlimited", "name_es": "Pets Unlimited", "name_fr": "Pets Unlimited" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42153406143188, 37.796373196299385 ] }, "properties": { "area": 1438.6531982421875, "name": "Walgreens", "name_de": "Walgreens", "name_en": "Walgreens", "name_es": "Walgreens", "name_fr": "Walgreens" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42484390735626, 37.805388850000256 ] }, "properties": { "area": 1308.3048095703125, "name": "Fontana West", "name_de": "Fontana West", "name_en": "Fontana West", "name_es": "Fontana West", "name_fr": "Fontana West" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42411971092224, 37.80546937979462 ] }, "properties": { "area": 1163.4339599609375, "name": "Fontana East", "name_de": "Fontana East", "name_en": "Fontana East", "name_es": "Fontana East", "name_fr": "Fontana East" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42282688617706, 37.80618990562568 ] }, "properties": { "area": 1523.4742431640625, "name": "Wurster Building", "name_de": "Wurster Building", "name_en": "Wurster Building", "name_es": "Wurster Building", "name_fr": "Wurster Building" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42120146751404, 37.79483020969929 ] }, "properties": { "area": 2583.54833984375, "name": "Pacific Terrace Apts", "name_de": "Pacific Terrace Apts", "name_en": "Pacific Terrace Apts", "name_es": "Pacific Terrace Apts", "name_fr": "Pacific Terrace Apts" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4330997467041, 37.79711924419614 ] }, "properties": { "area": 1806.2464599609375, "name": "Equinox Gym — Underconstruction", "name_de": "Equinox Gym — Underconstruction", "name_en": "Equinox Gym — Underconstruction", "name_es": "Equinox Gym — Underconstruction", "name_fr": "Equinox Gym — Underconstruction" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42416262626648, 37.802125200234485 ] }, "properties": { "area": 1164.0887451171875, "name": "America's Best Inn", "name_de": "America's Best Inn", "name_en": "America's Best Inn", "name_es": "America's Best Inn", "name_fr": "America's Best Inn" } } ], "name": "building_label" }mapnik-vector-tile-0.3.2/examples/data/14_2620_6331-barrier_line.geojson0000644000175000017500000001037612174360626023503 0ustar devdev{ "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4106764793396, 37.797488026453316 ], [ -122.41059064865112, 37.797500743050065 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42149651050568, 37.80330352159015 ], [ -122.42159307003023, 37.80351120937674 ], [ -122.42170572280884, 37.80357478715385 ], [ -122.4218773841858, 37.80360445676443 ], [ -122.42223143577577, 37.8035875027027 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41996765136719, 37.79620363890844 ], [ -122.41783797740936, 37.79647493054711 ], [ -122.41766095161438, 37.79650036408717 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41993546485901, 37.79603408112835 ], [ -122.4178057909012, 37.79630113445578 ], [ -122.41762340068819, 37.796326568055655 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42317020893097, 37.7972040218895 ], [ -122.42319703102112, 37.797318471621196 ], [ -122.42319166660309, 37.797318471621196 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42300391197205, 37.797314232745414 ], [ -122.42307364940643, 37.79730575499309 ], [ -122.42307901382446, 37.79733118824711 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42313802242279, 37.79686491053231 ], [ -122.42310583591461, 37.79686914943388 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41827249526978, 37.80348153972869 ], [ -122.41839051246643, 37.80405373798221 ], [ -122.41847634315491, 37.80414274620096 ], [ -122.4185460805893, 37.80413426923238 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42148578166962, 37.8028923828208 ], [ -122.42155015468599, 37.80322722797084 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41452276706696, 37.796983599684395 ], [ -122.41449058055878, 37.796835238214484 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41538643836975, 37.798017882795456 ], [ -122.41534352302551, 37.79781441840957 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41532742977142, 37.79772540256451 ], [ -122.41528451442719, 37.79752617623693 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41532742977142, 37.79781865725665 ], [ -122.41531133651733, 37.79772964141673 ] ] }, "properties": { "class": "fence" } } ], "name": "barrier_line" }mapnik-vector-tile-0.3.2/examples/data/14_2620_6331-bridge.geojson0000644000175000017500000000317212174360626022276 0ustar devdev{ "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41849780082703, 37.79639862987445 ], [ -122.41846024990083, 37.79621635572625 ] ] }, "properties": { "class": "street", "layer": 1, "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41861045360565, 37.79641982451364 ], [ -122.41856217384338, 37.79616972738355 ] ] }, "properties": { "class": "path", "layer": 1, "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41839587688446, 37.79644525807265 ], [ -122.41833150386809, 37.79618244420722 ] ] }, "properties": { "class": "path", "layer": 1, "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41844415664673, 37.79622059466506 ], [ -122.41848707199097, 37.79640286880277 ] ] }, "properties": { "class": "minor_rail", "layer": 1, "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41851925849915, 37.79639862987445 ], [ -122.41848170757295, 37.79621635572625 ] ] }, "properties": { "class": "minor_rail", "layer": 1, "oneway": 0 } } ], "name": "bridge" }mapnik-vector-tile-0.3.2/examples/data/14_2620_6331-tunnel.geojson0000644000175000017500000000150212174360626022342 0ustar devdev{ "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41784870624542, 37.796335045920344 ], [ -122.41178691387177, 37.797110766421454 ], [ -122.41127192974089, 37.7971785885917 ] ] }, "properties": { "class": "main", "layer": -1, "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.411288022995, 37.797254888458816 ], [ -122.41180300712585, 37.797187066358596 ], [ -122.41785407066345, 37.79641558558629 ] ] }, "properties": { "class": "main", "layer": -1, "oneway": 1 } } ], "name": "tunnel" }mapnik-vector-tile-0.3.2/examples/data/14_2620_6331-road_label.geojson0000644000175000017500000174013712174360626023140 0ustar devdev{ "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42946803569794, 37.800637436707525 ], [ -122.42936611175537, 37.80065439144644 ], [ -122.42790699005127, 37.80083665464399 ], [ -122.42782652378084, 37.80084513199108 ] ] }, "properties": { "class": "motorway", "len": 184.737921023889, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42618501186371, 37.801052826690615 ], [ -122.4260938167572, 37.80106554267365 ], [ -122.42494583129883, 37.801209656995105 ] ] }, "properties": { "class": "motorway", "len": 139.71186669914354, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43604481220245, 37.79980241100018 ], [ -122.435964345932, 37.79981512719847 ], [ -122.43449985980989, 37.80000163118878 ], [ -122.43440330028534, 37.800010108631696 ] ] }, "properties": { "class": "motorway", "len": 184.76161130760062, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42948412895203, 37.80073492640316 ], [ -122.42960214614868, 37.800722210363176 ], [ -122.43103444576263, 37.80053994688323 ], [ -122.4311363697052, 37.80052299211805 ] ] }, "properties": { "class": "motorway", "len": 186.47783273984427, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4311363697052, 37.80052299211805 ], [ -122.43123292922974, 37.80051451473398 ], [ -122.43267595767975, 37.800332250741526 ], [ -122.43278324604034, 37.80031529592869 ] ] }, "properties": { "class": "motorway", "len": 186.11676199570874, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4262011051178, 37.80115455449363 ], [ -122.42777287960052, 37.80095109874748 ], [ -122.42784261703491, 37.80094262141255 ] ] }, "properties": { "class": "motorway", "len": 185.3458172590662, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43112027645111, 37.80042974083997 ], [ -122.43102371692657, 37.80044245693027 ], [ -122.42958068847656, 37.80062472065078 ], [ -122.42946803569794, 37.800637436707525 ] ] }, "properties": { "class": "motorway", "len": 186.61022763211224, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42782652378082, 37.80084513199106 ], [ -122.42774605751038, 37.80085784800986 ], [ -122.42618501186371, 37.801052826690615 ] ] }, "properties": { "class": "motorway", "len": 185.30551717047499, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43278324604034, 37.80031529592869 ], [ -122.43287980556488, 37.80030257981648 ], [ -122.43431210517883, 37.800120315301065 ], [ -122.43443012237549, 37.80010336043956 ] ] }, "properties": { "class": "motorway", "len": 185.4256321395207, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4371337890625, 37.79966253267434 ], [ -122.43614137172699, 37.79979393353342 ], [ -122.43604481220244, 37.79980241100018 ] ] }, "properties": { "class": "motorway", "len": 185.1311305635713, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43440330028534, 37.800010108631696 ], [ -122.4343067407608, 37.80002282479424 ], [ -122.43285834789276, 37.80020508955023 ], [ -122.43276715278625, 37.800213566969795 ] ] }, "properties": { "class": "motorway", "len": 184.66599632077046, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43443012237549, 37.80010336043956 ], [ -122.43452668190002, 37.800094883007326 ], [ -122.43597507476807, 37.79990837925248 ], [ -122.43606090545656, 37.79989566307024 ] ] }, "properties": { "class": "motorway", "len": 184.20456691225687, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42784261703491, 37.800942621412574 ], [ -122.42792308330536, 37.800929905408374 ], [ -122.42939829826355, 37.80074764244092 ], [ -122.42948412895203, 37.80073492640316 ] ] }, "properties": { "class": "motorway", "len": 184.99709257762476, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43276715278625, 37.800213566969795 ], [ -122.43265986442566, 37.80023052180601 ], [ -122.43121147155762, 37.800417024747446 ], [ -122.43112027645111, 37.80042974083997 ] ] }, "properties": { "class": "motorway", "len": 185.92789437313337, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43606090545654, 37.79989566307024 ], [ -122.43616819381714, 37.79988294688579 ], [ -122.4371337890625, 37.79976002365667 ] ] }, "properties": { "class": "motorway", "len": 184.9897278124624, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42428600788116, 37.80042974083997 ], [ -122.42430210113525, 37.800510276041585 ], [ -122.42445766925812, 37.801256282156544 ], [ -122.42445766925812, 37.80129019134637 ], [ -122.42446303367615, 37.80132833916636 ] ] }, "properties": { "class": "motorway", "len": 128.2778210829967, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42368519306183, 37.79667839862234 ], [ -122.42348670959473, 37.7957246371765 ] ] }, "properties": { "class": "motorway", "len": 136.5028882485294, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42332577705383, 37.79574159304304 ], [ -122.42352962493896, 37.79669959318127 ] ] }, "properties": { "class": "motorway", "len": 137.0331321248979, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42387294769287, 37.797615192322034 ], [ -122.42368519306183, 37.79667839862234 ] ] }, "properties": { "class": "motorway", "len": 133.5035793525826, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42409288883209, 37.79949722158412 ], [ -122.42411434650421, 37.79959047403946 ], [ -122.42426991462708, 37.80035768295351 ], [ -122.42428600788116, 37.800429740839945 ] ] }, "properties": { "class": "motorway", "len": 133.1433528732395, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42352962493896, 37.79669959318127 ], [ -122.42372810840607, 37.797636386612204 ], [ -122.42388904094696, 37.79848839204139 ], [ -122.42390513420105, 37.79856469055563 ], [ -122.42392659187317, 37.798657944188264 ], [ -122.42408215999603, 37.79942940154263 ], [ -122.42409288883209, 37.79949722158409 ] ] }, "properties": { "class": "motorway", "len": 398.8752119340263, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42461860179901, 37.80134529374666 ], [ -122.42471516132356, 37.80133257781179 ], [ -122.4261099100113, 37.80116727045915 ], [ -122.4262011051178, 37.80115455449363 ] ] }, "properties": { "class": "motorway", "len": 178.0452893370852, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42406070232391, 37.79854349653181 ], [ -122.42404460906982, 37.79847143680532 ], [ -122.42387294769287, 37.797615192322034 ] ] }, "properties": { "class": "motorway", "len": 132.28270155674133, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42348670959473, 37.7957246371765 ], [ -122.42330431938171, 37.794809014604034 ] ] }, "properties": { "class": "motorway", "len": 130.55038720718602, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42443084716797, 37.80041278604948 ], [ -122.4244147539139, 37.800336489444156 ], [ -122.42426991462709, 37.79956928030996 ], [ -122.42424845695497, 37.79947602782785 ], [ -122.42423772811891, 37.79942092403308 ], [ -122.424076795578, 37.79862403379003 ], [ -122.42406070232393, 37.79854349653181 ] ] }, "properties": { "class": "motorway", "len": 266.44218449370885, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42165744304657, 37.78660605622855 ], [ -122.42162525653839, 37.78644495542216 ], [ -122.42146432399748, 37.78567760202419 ], [ -122.42136240005493, 37.78521549033291 ], [ -122.42126047611237, 37.78474913615547 ], [ -122.42117464542389, 37.78428701865866 ], [ -122.42107808589934, 37.78381641897222 ], [ -122.42106199264526, 37.78374434488178 ] ] }, "properties": { "class": "motorway", "len": 931.5280869634124, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42168962955475, 37.787572653691726 ], [ -122.42177546024323, 37.7880177930084 ], [ -122.42187738418579, 37.788492605324016 ], [ -122.4219685792923, 37.78896741458879 ], [ -122.42206513881683, 37.7894210241618 ], [ -122.42223680019379, 37.79034519205912 ], [ -122.42225289344788, 37.79042573825485 ] ] }, "properties": { "class": "motorway", "len": 406.9126600716541, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42240846157074, 37.790328234954075 ], [ -122.4222207069397, 37.789404066844675 ], [ -122.42212414741516, 37.78894197845551 ], [ -122.42202758789062, 37.78847140841073 ], [ -122.42193639278412, 37.788000835369274 ], [ -122.42183983325958, 37.78755145651453 ], [ -122.42174863815308, 37.787080877614905 ], [ -122.42165744304657, 37.78660605622852 ] ] }, "properties": { "class": "motorway", "len": 530.8518497886237, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42459177970886, 37.801141838525915 ], [ -122.42456495761871, 37.801052826690615 ], [ -122.42444694042206, 37.80048908257599 ], [ -122.42443084716797, 37.80041278604948 ] ] }, "properties": { "class": "motorway", "len": 104.60431610245338, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42446303367615, 37.80132833916636 ], [ -122.42461860179901, 37.80134529374666 ] ] }, "properties": { "class": "motorway", "len": 17.4174625020387, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42330431938171, 37.794809014604034 ], [ -122.42314338684082, 37.79392729325345 ] ] }, "properties": { "class": "motorway", "len": 125.35821034090405, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42225289344788, 37.79042573825485 ], [ -122.42244064807892, 37.79130750139274 ], [ -122.42262303829193, 37.792185014837955 ], [ -122.42280006408691, 37.793062517861436 ] ] }, "properties": { "class": "motorway", "len": 376.31890481789424, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42314875125885, 37.79483020969929 ], [ -122.42332577705383, 37.79574159304304 ] ] }, "properties": { "class": "motorway", "len": 130.0152010345565, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42280006408691, 37.79306251786141 ], [ -122.42296099662781, 37.79394848860165 ], [ -122.42314875125885, 37.79483020969929 ] ] }, "properties": { "class": "motorway", "len": 251.90400155211125, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42314338684082, 37.79392729325345 ], [ -122.42295563220978, 37.79304980050074 ], [ -122.42278397083281, 37.792168058155134 ], [ -122.42259621620177, 37.79129054450855 ], [ -122.42242455482481, 37.790396063350826 ], [ -122.42240846157073, 37.79032823495405 ] ] }, "properties": { "class": "motorway", "len": 513.7380007233647, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42091178894043, 37.78374434488178 ], [ -122.42093324661255, 37.78383337757154 ], [ -122.42101907730103, 37.78430397714999 ], [ -122.42112100124359, 37.78476609454075 ], [ -122.42121756076814, 37.78523668818016 ], [ -122.42130339145662, 37.785694560196426 ], [ -122.42140531539918, 37.78618634549861 ], [ -122.42152333259584, 37.78676715668372 ], [ -122.42149651050569, 37.78663149316584 ], [ -122.42159843444826, 37.787102074927084 ], [ -122.42168962955476, 37.787572653691726 ] ] }, "properties": { "class": "motorway", "len": 705.4033468001305, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40569829940796, 37.79887836139735 ], [ -122.40566074848175, 37.79868337697672 ], [ -122.4055427312851, 37.79811113711837 ] ] }, "properties": { "class": "path", "len": 109.7592293529278, "name": "Peter Macchiarini Steps", "name_de": "Peter Macchiarini Steps", "name_en": "Peter Macchiarini Steps", "name_es": "Peter Macchiarini Steps", "name_fr": "Peter Macchiarini Steps", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40558564662933, 37.798891077754746 ], [ -122.40547835826874, 37.79836970530704 ], [ -122.4054354429245, 37.79811537594843 ] ] }, "properties": { "class": "path", "len": 110.44634750447173, "name": "Peter Macchiarini Steps", "name_de": "Peter Macchiarini Steps", "name_en": "Peter Macchiarini Steps", "name_es": "Peter Macchiarini Steps", "name_fr": "Peter Macchiarini Steps", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40752220153809, 37.79410957304932 ], [ -122.4073988199234, 37.7934821895364 ], [ -122.40733444690704, 37.793490667727504 ], [ -122.40727543830872, 37.79323208246155 ] ] }, "properties": { "class": "path", "len": 133.77684616970024, "name": "Hang Ah Alley", "name_de": "Hang Ah Alley", "name_en": "Hang Ah Alley", "name_es": "Hang Ah Alley", "name_fr": "Hang Ah Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.798178958370166 ], [ -122.40469515323639, 37.79811537594843 ], [ -122.4054890871048, 37.798017882795456 ] ] }, "properties": { "class": "main", "len": 182.97421269792386, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.799776978597 ], [ -122.404265999794, 37.80013727015868 ], [ -122.40430891513824, 37.80034496684863 ] ] }, "properties": { "class": "street", "len": 303.8718420779123, "name": "Montgomery St", "name_de": "Montgomery St", "name_en": "Montgomery St", "name_es": "Montgomery St", "name_fr": "Montgomery St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40596115589142, 37.80662645609157 ], [ -122.4058485031128, 37.80656288094155 ], [ -122.4051457643509, 37.80619414399211 ], [ -122.40488827228548, 37.80606275451926 ], [ -122.40478098392487, 37.8059949405063 ], [ -122.40466833114625, 37.805910172902585 ], [ -122.40446984767915, 37.80577454453419 ], [ -122.40443766117096, 37.805744875795405 ], [ -122.40418016910554, 37.80556262470992 ] ] }, "properties": { "class": "main", "len": 540.2997532702911, "name": "The Embarcadero", "name_de": "The Embarcadero", "name_en": "The Embarcadero", "name_es": "The Embarcadero", "name_fr": "The Embarcadero", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.79169750865503 ], [ -122.40424454212189, 37.79168903025815 ], [ -122.40452885627747, 37.79165511666101 ], [ -122.40544617176056, 37.7915364189484 ], [ -122.40574657917023, 37.791498266071706 ], [ -122.40716814994812, 37.79132869749249 ], [ -122.4073451757431, 37.79130750139274 ], [ -122.4080640077591, 37.791205760029214 ], [ -122.40817129611969, 37.79119304234894 ], [ -122.40838050842285, 37.79116760698179 ], [ -122.40898132324219, 37.791095540060674 ], [ -122.4090027809143, 37.79109130082786 ] ] }, "properties": { "class": "main", "len": 1312.8583089500025, "name": "Pine St", "name_de": "Pine St", "name_en": "Pine St", "name_es": "Pine St", "name_fr": "Pine St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40479707717896, 37.79445293609456 ], [ -122.40418016910553, 37.794533477812365 ] ] }, "properties": { "class": "street", "len": 186.87536648900215, "name": "Clay St", "name_de": "Clay St", "name_en": "Clay St", "name_es": "Clay St", "name_fr": "Clay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40997910499573, 37.809279610214595 ], [ -122.41007566452026, 37.8094448994097 ], [ -122.41026878356934, 37.809779714850585 ] ] }, "properties": { "class": "path", "len": 202.17417323434879, "name": "Pier 39", "name_de": "Pier 39", "name_en": "Pier 39", "name_es": "Pier 39", "name_fr": "Pier 39", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.805973748614505 ], [ -122.40455031394957, 37.80624500437047 ], [ -122.40470051765442, 37.80634248666441 ], [ -122.40479707717896, 37.8063933469406 ], [ -122.40588068962097, 37.80695704598944 ], [ -122.40689456462862, 37.807465642942425 ], [ -122.40756511688234, 37.80764365104846 ] ] }, "properties": { "class": "path", "len": 2847.90071389486, "name": "Herb Caen Way", "name_de": "Herb Caen Way", "name_en": "Herb Caen Way", "name_es": "Herb Caen Way", "name_fr": "Herb Caen Way", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42774605751038, 37.8071138637568 ], [ -122.42828786373138, 37.80700790584237 ], [ -122.42834150791168, 37.80698671424124 ], [ -122.42885112762451, 37.80688499447117 ] ] }, "properties": { "class": "street", "len": 127.02433388408431, "name": "Funston Rd", "name_de": "Funston Rd", "name_en": "Funston Rd", "name_es": "Funston Rd", "name_fr": "Funston Rd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42774605751038, 37.8071138637568 ], [ -122.42772459983826, 37.80706724229317 ], [ -122.42771923542023, 37.80702909743741 ], [ -122.42773532867432, 37.80698671424122 ], [ -122.42773532867432, 37.80694433102072 ], [ -122.42770850658417, 37.80686804116251 ], [ -122.42768168449403, 37.80680446622046 ], [ -122.42764949798584, 37.80676208289537 ], [ -122.42760121822359, 37.80673241455334 ], [ -122.42755293846132, 37.80671122287313 ] ] }, "properties": { "class": "street", "len": 65.31910178357704, "name": "Funston Rd", "name_de": "Funston Rd", "name_en": "Funston Rd", "name_es": "Funston Rd", "name_fr": "Funston Rd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42471516132355, 37.78541898941539 ], [ -122.42498338222504, 37.78541474985691 ], [ -122.42522478103638, 37.785393552060754 ], [ -122.42799818515778, 37.78504590733613 ] ] }, "properties": { "class": "main", "len": 369.50623090765384, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42797136306763, 37.7848848031288 ], [ -122.42643177509309, 37.78507982396663 ], [ -122.42516577243806, 37.78524940688557 ], [ -122.42483854293823, 37.785279083856395 ], [ -122.42468297481537, 37.785279083856395 ] ] }, "properties": { "class": "main", "len": 370.3749078342734, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43443548679352, 37.78410895426485 ], [ -122.43139922618866, 37.784494759909215 ] ] }, "properties": { "class": "main", "len": 343.1258703445386, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43110418319702, 37.78443540532579 ], [ -122.43112564086914, 37.78453291640197 ], [ -122.43115246295929, 37.78465586496683 ], [ -122.43117392063141, 37.78474065696133 ] ] }, "properties": { "class": "main", "len": 43.9374386128022, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43460178375244, 37.78430397714999 ], [ -122.43476808071136, 37.78426158091439 ], [ -122.43546009063722, 37.78410047499729 ] ] }, "properties": { "class": "street", "len": 99.99036235992222, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4369353055954, 37.78374434488178 ], [ -122.43541181087492, 37.783930889442026 ] ] }, "properties": { "class": "main", "len": 273.1622823023084, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42799818515778, 37.78504590733613 ], [ -122.4290657043457, 37.78491024065857 ], [ -122.42950558662415, 37.78485088640879 ], [ -122.42956459522247, 37.784842407226364 ], [ -122.43019223213196, 37.78476609454075 ] ] }, "properties": { "class": "main", "len": 246.90071093811025, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43458032608032, 37.78421494502713 ], [ -122.4354600906372, 37.78410047499729 ] ] }, "properties": { "class": "main", "len": 98.99132941823262, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43453741073608, 37.78401144262929 ], [ -122.43448376655579, 37.78374434488178 ] ] }, "properties": { "class": "street", "len": 796.9525422784027, "name": "Steiner St", "name_de": "Steiner St", "name_en": "Steiner St", "name_es": "Steiner St", "name_fr": "Steiner St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43110418319702, 37.78443540532579 ], [ -122.43081450462343, 37.78447780146168 ], [ -122.43023514747621, 37.784558354052855 ], [ -122.43005812168123, 37.784630427349484 ] ] }, "properties": { "class": "street", "len": 120.59901360400228, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43453741073608, 37.78401144262929 ], [ -122.4344140291214, 37.784015682268304 ], [ -122.43289053440094, 37.78419798651539 ], [ -122.43141531944275, 37.78438876954822 ], [ -122.43138313293457, 37.784393009165576 ], [ -122.43125438690186, 37.78440996763259 ], [ -122.43110418319702, 37.78443540532579 ] ] }, "properties": { "class": "street", "len": 387.46292855770764, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43019223213196, 37.78476609454075 ], [ -122.43115246295929, 37.78465586496683 ], [ -122.43130266666412, 37.784634666952996 ], [ -122.43144214153291, 37.78461770853756 ] ] }, "properties": { "class": "main", "len": 141.18643556389938, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43131875991821, 37.784723698570225 ], [ -122.4329549074173, 37.78452019757324 ], [ -122.43379175662996, 37.78441844686463 ], [ -122.4344837665558, 37.78432517525866 ], [ -122.43460178375246, 37.78430397714999 ] ] }, "properties": { "class": "street", "len": 370.69020596579514, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42948412895203, 37.80073492640316 ], [ -122.4295002222061, 37.80080698392156 ], [ -122.42967188358307, 37.801654714153955 ], [ -122.42985963821411, 37.80258296759842 ] ] }, "properties": { "class": "street", "len": 263.6676040895868, "name": "Octavia St", "name_de": "Octavia St", "name_en": "Octavia St", "name_es": "Octavia St", "name_fr": "Octavia St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4311363697052, 37.80052299211805 ], [ -122.43115246295928, 37.80059928853073 ], [ -122.43122220039366, 37.80098500807743 ], [ -122.43131339550017, 37.801447021146885 ], [ -122.43144214153288, 37.802095530029646 ], [ -122.43150115013121, 37.802379515786946 ] ] }, "properties": { "class": "street", "len": 264.1923343285631, "name": "Laguna St", "name_de": "Laguna St", "name_en": "Laguna St", "name_es": "Laguna St", "name_fr": "Laguna St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43278324604034, 37.80031529592869 ], [ -122.43279933929442, 37.80040006995406 ], [ -122.43286371231079, 37.80077307450988 ], [ -122.43295490741728, 37.80123508890499 ] ] }, "properties": { "class": "street", "len": 131.1222974403771, "name": "Buchanan St", "name_de": "Buchanan St", "name_en": "Buchanan St", "name_es": "Buchanan St", "name_fr": "Buchanan St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43440330028534, 37.800010108631696 ], [ -122.43438720703126, 37.79993805033589 ], [ -122.43432819843294, 37.79963286148024 ], [ -122.43422091007234, 37.79916235952403 ], [ -122.43412971496583, 37.798696093367674 ], [ -122.4340331554413, 37.79822982426816 ], [ -122.43384540081026, 37.797301516116576 ], [ -122.43364691734315, 37.796373196299356 ], [ -122.43344843387605, 37.79544486481667 ], [ -122.43327677249908, 37.79464369265235 ], [ -122.43327677249908, 37.79448684840749 ] ] }, "properties": { "class": "street", "len": 788.7854607301381, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43604481220245, 37.79980241100018 ], [ -122.43602335453033, 37.79971763628886 ], [ -122.43595898151398, 37.79942092403308 ], [ -122.43586242198944, 37.7989546595088 ], [ -122.43577122688293, 37.79848839204139 ], [ -122.4356746673584, 37.79802212163085 ], [ -122.43548691272736, 37.79709381086916 ] ] }, "properties": { "class": "street", "len": 387.1206080608945, "name": "Fillmore St", "name_de": "Fillmore St", "name_en": "Fillmore St", "name_es": "Fillmore St", "name_fr": "Fillmore St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4249941110611, 37.8031975582087 ], [ -122.42656588554382, 37.80299834664004 ], [ -122.42821276187898, 37.80279489597278 ], [ -122.42985963821413, 37.80258296759842 ] ] }, "properties": { "class": "street", "len": 547.9933606097763, "name": "Francisco St", "name_de": "Francisco St", "name_en": "Francisco St", "name_es": "Francisco St", "name_fr": "Francisco St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42387294769287, 37.797615192322034 ], [ -122.42543935775757, 37.79741172682703 ], [ -122.42709159851074, 37.7972040218895 ], [ -122.42872774600983, 37.79699207747368 ] ] }, "properties": { "class": "street", "len": 547.5952812802853, "name": "Green St", "name_de": "Green St", "name_en": "Green St", "name_es": "Green St", "name_fr": "Green St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42424845695496, 37.79947602782782 ], [ -122.42436647415161, 37.79945907281843 ], [ -122.42570757865906, 37.799289522510435 ], [ -122.42581486701965, 37.799276806221634 ], [ -122.42591679096222, 37.79926408993067 ], [ -122.42663562297821, 37.79917083706328 ], [ -122.42746710777283, 37.79906910652822 ], [ -122.42910325527191, 37.79885716746353 ], [ -122.43075013160706, 37.79864946659016 ], [ -122.43239164352417, 37.79844176513279 ], [ -122.43403315544128, 37.798229824268184 ], [ -122.4356746673584, 37.79802212163088 ], [ -122.4371337890625, 37.797839851488476 ] ] }, "properties": { "class": "street", "len": 2567.1023567117613, "name": "Filbert St", "name_de": "Filbert St", "name_en": "Filbert St", "name_es": "Filbert St", "name_fr": "Filbert St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42368519306183, 37.79667839862234 ], [ -122.42525160312653, 37.79648340839478 ], [ -122.42690920829773, 37.796275700847126 ], [ -122.42853999137878, 37.79606375376797 ], [ -122.43018686771393, 37.79585604504044 ], [ -122.43182301521301, 37.79564409675727 ], [ -122.43344843387605, 37.79544486481667 ], [ -122.43511140346527, 37.79522867635841 ], [ -122.43675827980043, 37.795016726275364 ], [ -122.43713378906251, 37.79497009717551 ] ] }, "properties": { "class": "street", "len": 2582.8728328729226, "name": "Vallejo St", "name_de": "Vallejo St", "name_en": "Vallejo St", "name_es": "Vallejo St", "name_fr": "Vallejo St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42406070232391, 37.79854349653181 ], [ -122.42419481277466, 37.79852654130836 ], [ -122.4256271123886, 37.798344272410596 ], [ -122.42727935314177, 37.79813657009509 ], [ -122.42891550064085, 37.79792886719558 ], [ -122.43056237697601, 37.797716924859415 ], [ -122.43144214153288, 37.79760671460429 ], [ -122.43220388889311, 37.79750922078 ], [ -122.43384540081023, 37.797301516116576 ], [ -122.43548691272734, 37.79709381086918 ] ] }, "properties": { "class": "street", "len": 1288.9843538469645, "name": "Union St", "name_de": "Union St", "name_en": "Union St", "name_es": "Union St", "name_fr": "Union St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42517650127411, 37.80413850771679 ], [ -122.42547690868378, 37.80410459983463 ], [ -122.42676973342896, 37.80394353718175 ], [ -122.4284166097641, 37.80374008911817 ], [ -122.43006348609924, 37.803532401975176 ] ] }, "properties": { "class": "main", "len": 550.5640298929623, "name": "Bay St", "name_de": "Bay St", "name_en": "Bay St", "name_es": "Bay St", "name_fr": "Bay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42443084716797, 37.80041278604948 ], [ -122.4245595932007, 37.800395831255116 ], [ -122.4259275197983, 37.800222044388356 ], [ -122.42600262165071, 37.80020932826012 ], [ -122.4261260032654, 37.80019661212968 ], [ -122.42649614810945, 37.80014998629934 ], [ -122.42685556411743, 37.80010336043956 ], [ -122.42757976055145, 37.80001010863167 ], [ -122.4276602268219, 37.80000163118878 ], [ -122.4277675151825, 37.79998467630002 ], [ -122.42929100990295, 37.79978969479964 ] ] }, "properties": { "class": "street", "len": 548.3303036596409, "name": "Greenwich St", "name_de": "Greenwich St", "name_en": "Greenwich St", "name_es": "Greenwich St", "name_fr": "Greenwich St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42330431938171, 37.794809014604034 ], [ -122.42486000061037, 37.7946097804114 ], [ -122.42652833461763, 37.79440206759597 ], [ -122.42815911769867, 37.79419011514147 ], [ -122.42980599403383, 37.79397816207892 ], [ -122.43145287036897, 37.793770447487695 ], [ -122.43308365345003, 37.79355849322122 ] ] }, "properties": { "class": "street", "len": 1103.3859462619025, "name": "Pacific Ave", "name_de": "Pacific Ave", "name_en": "Pacific Ave", "name_es": "Pacific Ave", "name_fr": "Pacific Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42480635643005, 37.802269312488406 ], [ -122.4249565601349, 37.802252358120164 ], [ -122.42637813091278, 37.80207009841604 ], [ -122.42802500724794, 37.801862406576994 ], [ -122.42967188358308, 37.801654714153955 ], [ -122.43131339550018, 37.801447021146885 ], [ -122.43186056613922, 37.80137496425289 ], [ -122.4327403306961, 37.80126475945547 ], [ -122.43295490741728, 37.80123508890502 ], [ -122.43321776390076, 37.801205418342605 ], [ -122.43346452713011, 37.80117150911384 ], [ -122.43378102779388, 37.80113336121289 ], [ -122.43408679962158, 37.80109521329224 ], [ -122.43437647819519, 37.80105706535187 ], [ -122.43460178375244, 37.80102739471796 ], [ -122.4362701177597, 37.80081546127204 ], [ -122.43688702583313, 37.80073916508263 ], [ -122.4371337890625, 37.80070525563983 ] ] }, "properties": { "class": "street", "len": 2222.354808553998, "name": "Chestnut St", "name_de": "Chestnut St", "name_en": "Chestnut St", "name_es": "Chestnut St", "name_fr": "Chestnut St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43129193782806, 37.785372354258485 ], [ -122.43146896362305, 37.786330488846325 ] ] }, "properties": { "class": "main", "len": 136.47160876874025, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43117392063141, 37.78474065696133 ], [ -122.4311900138855, 37.784829688450905 ], [ -122.43129193782806, 37.785372354258485 ] ] }, "properties": { "class": "main", "len": 89.68332842594724, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43086814880371, 37.80343067744717 ], [ -122.43168354034424, 37.80327809039246 ] ] }, "properties": { "class": "main", "len": 93.86547235192626, "name": "Bay St", "name_de": "Bay St", "name_en": "Bay St", "name_es": "Bay St", "name_fr": "Bay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4090027809143, 37.79109130082786 ], [ -122.4090188741684, 37.79109130082786 ], [ -122.41062819957732, 37.79088357812059 ], [ -122.41099834442137, 37.79083694641218 ], [ -122.41226971149443, 37.790675854829374 ], [ -122.41391122341155, 37.79045965241627 ], [ -122.41470515727995, 37.79036638843492 ], [ -122.4155741930008, 37.79025616721429 ], [ -122.41596579551695, 37.790205295826226 ], [ -122.41720497608183, 37.79004844215926 ], [ -122.41751074790955, 37.79000604921915 ], [ -122.41841733455658, 37.78988734885741 ], [ -122.41884648799896, 37.78983223791036 ], [ -122.4204933643341, 37.789620272346355 ], [ -122.42206513881683, 37.789421024161776 ], [ -122.4222207069397, 37.78940406684465 ], [ -122.42378175258636, 37.78920481807708 ], [ -122.42542326450348, 37.78899709006654 ], [ -122.4270647764206, 37.788789361472034 ], [ -122.42871701717375, 37.7885773929165 ], [ -122.43035852909087, 37.78836966314217 ], [ -122.43200004100798, 37.788161932783865 ], [ -122.43282079696654, 37.78805594768223 ], [ -122.4336415529251, 37.78794996242857 ], [ -122.43528842926024, 37.78774223089048 ], [ -122.43692994117733, 37.787534498768416 ], [ -122.43713378906246, 37.78750906214192 ] ] }, "properties": { "class": "main", "len": 4240.973449295866, "name": "Pine St", "name_de": "Pine St", "name_en": "Pine St", "name_es": "Pine St", "name_fr": "Pine St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4327939748764, 37.78374434488178 ], [ -122.43289053440094, 37.78419798651539 ], [ -122.432901263237, 37.78426582053903 ] ] }, "properties": { "class": "street", "len": 803.2252406201831, "name": "Fillmore St", "name_de": "Fillmore St", "name_en": "Fillmore St", "name_es": "Fillmore St", "name_fr": "Fillmore St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43472516536713, 37.7849483969368 ], [ -122.43390440940857, 37.78505014691581 ], [ -122.43307828903198, 37.785151896754726 ], [ -122.43143677711487, 37.78535539601231 ], [ -122.43129193782806, 37.785372354258485 ] ] }, "properties": { "class": "street", "len": 387.43784348452124, "name": "Post St", "name_de": "Post St", "name_en": "Post St", "name_es": "Post St", "name_fr": "Post St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41192638874054, 37.797271843974116 ], [ -122.41191565990448, 37.7972167385351 ], [ -122.41190493106842, 37.79716163305497 ], [ -122.41187274456024, 37.79700055526198 ], [ -122.41173326969147, 37.79629689552161 ] ] }, "properties": { "class": "street", "len": 139.4149594024999, "name": "Mason St", "name_de": "Mason St", "name_en": "Mason St", "name_es": "Mason St", "name_fr": "Mason St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41173326969147, 37.79629689552161 ], [ -122.41163671016693, 37.79583908920013 ], [ -122.41155624389648, 37.79541519192846 ], [ -122.41147577762605, 37.7950633553458 ], [ -122.41136848926544, 37.79454195588281 ], [ -122.41136848926544, 37.79452923877677 ] ] }, "properties": { "class": "street", "len": 252.16487531315929, "name": "Mason St", "name_de": "Mason St", "name_en": "Mason St", "name_es": "Mason St", "name_fr": "Mason St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42929100990295, 37.7997896947997 ], [ -122.42945194244386, 37.80056114033423 ], [ -122.42946803569794, 37.800637436707525 ] ] }, "properties": { "class": "street", "len": 121.07622765164624, "name": "Octavia St", "name_de": "Octavia St", "name_en": "Octavia St", "name_es": "Octavia St", "name_fr": "Octavia St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42872774600983, 37.79699207747368 ], [ -122.42891550064087, 37.79792886719558 ], [ -122.42910325527191, 37.7988571674635 ], [ -122.42917835712433, 37.79923441857653 ], [ -122.42929100990295, 37.79978969479967 ] ] }, "properties": { "class": "street", "len": 399.03191064487265, "name": "Octavia St", "name_de": "Octavia St", "name_en": "Octavia St", "name_es": "Octavia St", "name_fr": "Octavia St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41336941719055, 37.796084948503236 ], [ -122.41346061229706, 37.79652579761845 ], [ -122.41355180740355, 37.79694121072341 ], [ -122.41355180740355, 37.797034466405485 ], [ -122.41356253623961, 37.797131960856326 ], [ -122.41366982460022, 37.79767029746383 ], [ -122.41371273994446, 37.797844090334074 ], [ -122.41373419761658, 37.797950061395746 ], [ -122.41375029087065, 37.798030599300965 ], [ -122.41390585899352, 37.79887836139735 ], [ -122.41392731666564, 37.798958898290465 ], [ -122.4140292406082, 37.79937005895526 ], [ -122.41412580013274, 37.79983208212613 ], [ -122.41422235965729, 37.80030257981648 ], [ -122.41430282592772, 37.800756119798216 ], [ -122.41439938545227, 37.80122661160268 ], [ -122.4144959449768, 37.801692861785654 ], [ -122.41468906402588, 37.80261687617921 ], [ -122.41484463214873, 37.80337981513064 ], [ -122.41488218307494, 37.80354511753136 ] ] }, "properties": { "class": "street", "len": 1064.328164583362, "name": "Taylor St", "name_de": "Taylor St", "name_en": "Taylor St", "name_es": "Taylor St", "name_fr": "Taylor St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42774069309235, 37.78374434488178 ], [ -122.42778360843658, 37.783926649798154 ], [ -122.42782652378084, 37.78418102799973 ], [ -122.42797136306763, 37.7848848031288 ] ] }, "properties": { "class": "street", "len": 802.3070257550971, "name": "Laguna St", "name_de": "Laguna St", "name_en": "Laguna St", "name_es": "Laguna St", "name_fr": "Laguna St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42365837097168, 37.80528712802926 ], [ -122.42384612560272, 37.80621957418566 ] ] }, "properties": { "class": "street", "len": 133.4269466789773, "name": "Polk St", "name_de": "Polk St", "name_en": "Polk St", "name_es": "Polk St", "name_fr": "Polk St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.431640625, 37.78629657278981 ], [ -122.43143677711487, 37.78535539601231 ], [ -122.43131875991821, 37.784723698570225 ] ] }, "properties": { "class": "main", "len": 224.9170140610984, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43146896362305, 37.786330488846325 ], [ -122.43159770965576, 37.78688586205755 ], [ -122.43171036243439, 37.78716566682716 ], [ -122.43181228637695, 37.78723349812689 ] ] }, "properties": { "class": "main", "len": 135.65564961645413, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40908324718475, 37.7957246371765 ], [ -122.40926027297974, 37.79660633707646 ] ] }, "properties": { "class": "service", "len": 125.64812812003456, "name": "Trenton St", "name_de": "Trenton St", "name_en": "Trenton St", "name_es": "Trenton St", "name_fr": "Trenton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42398023605347, 37.79016290297611 ], [ -122.4225264787674, 37.790315517122764 ], [ -122.42240846157074, 37.790328234954075 ] ] }, "properties": { "class": "street", "len": 175.97746423811265, "name": "California St", "name_de": "California St", "name_en": "California St", "name_es": "California St", "name_fr": "California St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42037534713745, 37.80571520704471 ], [ -122.42028415203094, 37.80523626699121 ], [ -122.42019295692444, 37.80478699296722 ] ] }, "properties": { "class": "street", "len": 132.96272992699332, "name": "Hyde St", "name_de": "Hyde St", "name_en": "Hyde St", "name_es": "Hyde St", "name_fr": "Hyde St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40426063537598, 37.784490520297716 ], [ -122.40418016910553, 37.78452443718309 ] ] }, "properties": { "class": "main", "len": 353.3863057752421, "name": "Mission St", "name_de": "Mission St", "name_en": "Mission St", "name_es": "Mission St", "name_fr": "Mission St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.784596510512785 ], [ -122.40426063537598, 37.784490520297716 ] ] }, "properties": { "class": "main", "len": 351.5767408950287, "name": "Mission St", "name_de": "Mission St", "name_en": "Mission St", "name_es": "Mission St", "name_fr": "Mission St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.789789844846204 ], [ -122.40421235561371, 37.789785605538455 ], [ -122.40459322929382, 37.78973897313711 ], [ -122.40540862083435, 37.7896245116636 ] ] }, "properties": { "class": "street", "len": 548.6476634002003, "name": "Sutter St", "name_de": "Sutter St", "name_en": "Sutter St", "name_es": "Sutter St", "name_fr": "Sutter St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.78787789236924 ], [ -122.40504920482635, 37.78776766743669 ], [ -122.40659952163696, 37.78757689312644 ], [ -122.40706622600555, 37.787521780456224 ], [ -122.40720570087433, 37.787500583264446 ], [ -122.40733444690706, 37.78748786494643 ], [ -122.40749537944795, 37.78746666774491 ], [ -122.40765094757081, 37.78744547053731 ], [ -122.40779042243959, 37.78742851276686 ], [ -122.408219575882, 37.78737763943212 ], [ -122.40823566913606, 37.78737339998598 ] ] }, "properties": { "class": "street", "len": 591.436299421901, "name": "Geary St", "name_de": "Geary St", "name_en": "Geary St", "name_es": "Geary St", "name_fr": "Geary St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40998446941376, 37.79419435419653 ], [ -122.40990400314332, 37.793808599191095 ] ] }, "properties": { "class": "path", "len": 55.41610235241239, "name": "Codman Pl", "name_de": "Codman Pl", "name_en": "Codman Pl", "name_es": "Codman Pl", "name_fr": "Codman Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40872383117676, 37.79395696673922 ], [ -122.40854680538177, 37.79307099610066 ] ] }, "properties": { "class": "service", "len": 126.6093938059111, "name": "Joice St", "name_de": "Joice St", "name_en": "Joice St", "name_es": "Joice St", "name_fr": "Joice St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40823566913605, 37.78737339998601 ], [ -122.40832149982454, 37.78783125876399 ], [ -122.40840196609497, 37.78821280557867 ], [ -122.40841805934906, 37.7882933540988 ], [ -122.40861654281616, 37.78923025411991 ], [ -122.40874528884888, 37.78985767373719 ], [ -122.40880966186525, 37.790175620833686 ], [ -122.40894377231598, 37.79081998941997 ], [ -122.4090027809143, 37.79109130082783 ] ] }, "properties": { "class": "street", "len": 530.5865911314289, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40823566913605, 37.78737339998601 ], [ -122.40826785564423, 37.78736916053963 ], [ -122.40988790988922, 37.78714870899249 ], [ -122.41151869297028, 37.78694097520201 ], [ -122.41235017776489, 37.78684770677962 ], [ -122.41316020488739, 37.78674595927549 ], [ -122.41480708122253, 37.78652126637423 ], [ -122.41645395755768, 37.78631353082002 ], [ -122.41809010505676, 37.78610155516279 ] ] }, "properties": { "class": "street", "len": 1111.452530339568, "name": "Geary St", "name_de": "Geary St", "name_en": "Geary St", "name_es": "Geary St", "name_fr": "Geary St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40862727165222, 37.79763214775467 ], [ -122.40905106067657, 37.79757704258442 ], [ -122.40972697734833, 37.79749226531914 ], [ -122.41025805473328, 37.79741596569723 ] ] }, "properties": { "class": "main", "len": 184.35408965341415, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40663707256317, 37.79787800109037 ], [ -122.40698039531708, 37.79811537594843 ], [ -122.40707695484161, 37.79813233126623 ] ] }, "properties": { "class": "main", "len": 61.65918459179387, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40673899650574, 37.797865284558576 ], [ -122.40630984306335, 37.79756856486228 ], [ -122.40618646144867, 37.79751769850893 ] ] }, "properties": { "class": "main", "len": 78.84169638759144, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40701258182526, 37.797831373796456 ], [ -122.4077957868576, 37.797733880268694 ], [ -122.40862727165222, 37.79763214775467 ] ] }, "properties": { "class": "main", "len": 181.67981259184776, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40644931793213, 37.79888260018339 ], [ -122.40639567375183, 37.79859012337622 ] ] }, "properties": { "class": "service", "len": 41.50369742562071, "name": "Romolo Pl", "name_de": "Romolo Pl", "name_en": "Romolo Pl", "name_es": "Romolo Pl", "name_fr": "Romolo Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4054890871048, 37.798017882795456 ], [ -122.40626156330109, 37.79792886719558 ], [ -122.40663707256317, 37.79787800109037 ] ] }, "properties": { "class": "main", "len": 129.15903882642104, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40596115589142, 37.80662645609157 ], [ -122.40605771541595, 37.806588311008134 ], [ -122.40607917308807, 37.80657983432025 ], [ -122.40609526634216, 37.80657983432025 ], [ -122.40715742111206, 37.80643573047732 ], [ -122.40861117839813, 37.80624076600694 ], [ -122.4095070362091, 37.80613480683977 ], [ -122.41032779216766, 37.80603308589625 ], [ -122.41195321083069, 37.805821166813914 ], [ -122.41360545158385, 37.80561772392273 ], [ -122.41476953029631, 37.805473618202406 ], [ -122.41524159908295, 37.80541851888209 ], [ -122.41688847541809, 37.80521507488168 ] ] }, "properties": { "class": "main", "len": 1233.29485361915, "name": "Bay St", "name_de": "Bay St", "name_en": "Bay St", "name_es": "Bay St", "name_fr": "Bay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40622937679291, 37.78571575790625 ], [ -122.40779042243958, 37.78550802008779 ], [ -122.40785479545593, 37.78549954098075 ], [ -122.40787088871002, 37.78549954098075 ], [ -122.4078869819641, 37.78549530142688 ], [ -122.4079245328903, 37.785491061872726 ], [ -122.40794599056242, 37.78548682231837 ], [ -122.4086809158325, 37.785393552060754 ] ] }, "properties": { "class": "street", "len": 276.3423383783363, "name": "Ellis St", "name_de": "Ellis St", "name_en": "Ellis St", "name_es": "Ellis St", "name_fr": "Ellis St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40594506263733, 37.792460560388086 ], [ -122.40612208843231, 37.79337621206568 ], [ -122.40621328353882, 37.793834033649084 ], [ -122.4062991142273, 37.79426641809515 ], [ -122.4064975976944, 37.79515661339839 ], [ -122.40665316581726, 37.79602984217886 ], [ -122.40683019161224, 37.79691153843622 ], [ -122.40694820880891, 37.79748378758728 ], [ -122.40701258182527, 37.797831373796456 ] ] }, "properties": { "class": "street", "len": 765.8157967799175, "name": "Grant Ave", "name_de": "Grant Ave", "name_en": "Grant Ave", "name_es": "Grant Ave", "name_fr": "Grant Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40594506263733, 37.792460560388086 ], [ -122.40671753883363, 37.79236305977244 ], [ -122.40753829479218, 37.792261319862405 ], [ -122.40809619426727, 37.79219349317789 ], [ -122.40836441516876, 37.79215957981227 ], [ -122.40883111953735, 37.79210023138499 ], [ -122.40919053554533, 37.79205360044444 ] ] }, "properties": { "class": "street", "len": 365.9903944746072, "name": "California St", "name_de": "California St", "name_en": "California St", "name_es": "California St", "name_fr": "California St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4108213186264, 37.791837402062676 ], [ -122.41110563278198, 37.791799249341395 ], [ -122.41171717643738, 37.79172294383976 ], [ -122.41206049919128, 37.79168479105935 ], [ -122.41245210170746, 37.79163815985659 ] ] }, "properties": { "class": "street", "len": 183.65375715351743, "name": "California St", "name_de": "California St", "name_en": "California St", "name_es": "California St", "name_fr": "California St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40479707717896, 37.79445293609456 ], [ -122.40488290786743, 37.794859882822436 ], [ -122.40497410297394, 37.79532617319241 ], [ -122.40515112876892, 37.79622059466506 ], [ -122.40529596805573, 37.79690306063769 ] ] }, "properties": { "class": "main", "len": 349.58069308376486, "name": "Kearny St", "name_de": "Kearny St", "name_en": "Kearny St", "name_es": "Kearny St", "name_fr": "Kearny St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41136848926544, 37.79452923877677 ], [ -122.41128802299501, 37.79453771684771 ], [ -122.41124510765076, 37.79454619491767 ], [ -122.4111968278885, 37.7945589120208 ], [ -122.4111592769623, 37.79456315105469 ], [ -122.4105477333069, 37.79464369265235 ], [ -122.41008639335634, 37.794707278062184 ], [ -122.4098986387253, 37.7947284731866 ], [ -122.4097377061844, 37.79474966830498 ] ] }, "properties": { "class": "street", "len": 184.2016929531114, "name": "Washington St", "name_de": "Washington St", "name_en": "Washington St", "name_es": "Washington St", "name_fr": "Washington St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40973770618439, 37.79474966830498 ], [ -122.40988254547119, 37.79551268851633 ], [ -122.40990400314331, 37.795618662922415 ] ] }, "properties": { "class": "street", "len": 123.9916499108682, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40954458713531, 37.79385522902405 ], [ -122.40973770618439, 37.79474966830498 ] ] }, "properties": { "class": "street", "len": 128.04957243233278, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40954458713531, 37.79385522902405 ], [ -122.4095231294632, 37.79385522902405 ], [ -122.40919589996338, 37.79389761975574 ], [ -122.40872383117674, 37.793956966739245 ], [ -122.40789771080016, 37.794062943376915 ], [ -122.40752220153807, 37.79410957304935 ], [ -122.40730762481688, 37.79413924646194 ], [ -122.4068248271942, 37.79419859325133 ], [ -122.4062991142273, 37.79426641809515 ], [ -122.40566611289978, 37.794346960016284 ], [ -122.40479707717894, 37.79445293609456 ] ] }, "properties": { "class": "street", "len": 534.9310728894536, "name": "Clay St", "name_de": "Clay St", "name_en": "Clay St", "name_es": "Clay St", "name_fr": "Clay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40816593170166, 37.80344339302085 ], [ -122.4082624912262, 37.80392234470129 ], [ -122.40834832191467, 37.804367385514226 ], [ -122.40842878818512, 37.804837854314705 ], [ -122.40853607654572, 37.80529136644753 ] ] }, "properties": { "class": "street", "len": 263.9852347691697, "name": "Grant Ave", "name_de": "Grant Ave", "name_en": "Grant Ave", "name_es": "Grant Ave", "name_fr": "Grant Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40816593170166, 37.80344339302085 ], [ -122.40976452827452, 37.803239943579534 ] ] }, "properties": { "class": "street", "len": 180.34540997713472, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4130368232727, 37.80282880445625 ], [ -122.41294026374817, 37.802332891334544 ], [ -122.41290807723998, 37.802184540608394 ] ] }, "properties": { "class": "street", "len": 91.80682766410945, "name": "Mason St", "name_de": "Mason St", "name_en": "Mason St", "name_es": "Mason St", "name_fr": "Mason St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40529596805573, 37.79690306063769 ], [ -122.40553736686707, 37.79707261642332 ], [ -122.40618646144867, 37.79751769850896 ] ] }, "properties": { "class": "main", "len": 131.24793561602883, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41532742977142, 37.80016694115013 ], [ -122.41478562355042, 37.80023052180601 ] ] }, "properties": { "class": "path", "len": 60.584705165535524, "name": "Redfield Alley", "name_de": "Redfield Alley", "name_en": "Redfield Alley", "name_es": "Redfield Alley", "name_fr": "Redfield Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41245210170746, 37.79163815985659 ], [ -122.41410970687866, 37.791421960259214 ], [ -122.41576731204987, 37.791209999255514 ] ] }, "properties": { "class": "street", "len": 373.990849845489, "name": "California St", "name_de": "California St", "name_en": "California St", "name_es": "California St", "name_fr": "California St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40919053554535, 37.79205360044444 ], [ -122.40936219692232, 37.79296077891455 ], [ -122.40954458713531, 37.79385522902405 ] ] }, "properties": { "class": "street", "len": 256.5839136317273, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4090027809143, 37.79109130082786 ], [ -122.40919053554535, 37.79205360044444 ] ] }, "properties": { "class": "street", "len": 137.04016126681051, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40919053554535, 37.79205360044444 ], [ -122.4108213186264, 37.791837402062676 ] ] }, "properties": { "class": "street", "len": 183.83939784404808, "name": "California St", "name_de": "California St", "name_en": "California St", "name_es": "California St", "name_fr": "California St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40426063537598, 37.784490520297716 ], [ -122.40487217903136, 37.78400296335056 ] ] }, "properties": { "class": "main", "len": 97.00967013617185, "name": "Mission St", "name_de": "Mission St", "name_en": "Mission St", "name_es": "Mission St", "name_fr": "Mission St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40659952163696, 37.78757689312644 ], [ -122.40641176700592, 37.78663997214301 ], [ -122.40625083446503, 37.785821746364185 ], [ -122.40622937679291, 37.78571575790625 ] ] }, "properties": { "class": "street_limited", "len": 265.42301278417017, "name": "Stockton St", "name_de": "Stockton St", "name_en": "Stockton St", "name_es": "Stockton St", "name_fr": "Stockton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40661025047302, 37.78852228099244 ], [ -122.40626692771912, 37.78856467478382 ] ] }, "properties": { "class": "street", "len": 38.5378528189579, "name": "Post St", "name_de": "Post St", "name_en": "Post St", "name_es": "Post St", "name_fr": "Post St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40598261356354, 37.788598589799406 ], [ -122.40565001964569, 37.788640983547005 ] ] }, "properties": { "class": "street", "len": 37.498653310353, "name": "Post St", "name_de": "Post St", "name_en": "Post St", "name_es": "Post St", "name_fr": "Post St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40626692771912, 37.78856467478382 ], [ -122.40598261356354, 37.788598589799406 ] ] }, "properties": { "class": "street", "len": 32.31026152792775, "name": "Post St", "name_de": "Post St", "name_en": "Post St", "name_es": "Post St", "name_fr": "Post St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40565001964569, 37.788640983547005 ], [ -122.40522623062134, 37.78869609538249 ] ] }, "properties": { "class": "street", "len": 47.92525221645662, "name": "Post St", "name_de": "Post St", "name_en": "Post St", "name_es": "Post St", "name_fr": "Post St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41234481334686, 37.807698748708574 ], [ -122.41397559642792, 37.807491072698134 ] ] }, "properties": { "class": "street", "len": 183.75914698432766, "name": "Beach St", "name_de": "Beach St", "name_en": "Beach St", "name_es": "Beach St", "name_fr": "Beach St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41214632987976, 37.80675784456153 ], [ -122.41234481334686, 37.807698748708574 ] ] }, "properties": { "class": "street", "len": 134.73853531996173, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42112100124359, 37.78476609454075 ], [ -122.4195545911789, 37.78496535527636 ], [ -122.41790235042572, 37.78517733419256 ], [ -122.41626620292664, 37.785385072940564 ], [ -122.4159175157547, 37.78542746853168 ], [ -122.41567611694335, 37.78545714543098 ], [ -122.41502702236174, 37.7855419365062 ], [ -122.41461932659148, 37.785592811104635 ], [ -122.4129831790924, 37.78580054868474 ], [ -122.41215169429778, 37.785910776551354 ], [ -122.41133630275725, 37.78601252520537 ], [ -122.409850358963, 37.78620330355411 ], [ -122.4097055196762, 37.78622026160572 ], [ -122.40933537483214, 37.78626689622757 ], [ -122.40895450115204, 37.78631353082002 ], [ -122.40807473659515, 37.78642799742214 ], [ -122.40805327892303, 37.7864322369225 ], [ -122.40802645683289, 37.7864322369225 ], [ -122.40641176700592, 37.78663997214301 ], [ -122.40536570549011, 37.78677139616462 ], [ -122.40485608577728, 37.78683922782627 ] ] }, "properties": { "class": "street", "len": 1833.5782452067062, "name": "O'Farrell St", "name_de": "O'Farrell St", "name_en": "O'Farrell St", "name_es": "O'Farrell St", "name_fr": "O'Farrell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.80106554267365 ], [ -122.40444302558899, 37.80103163338067 ] ] }, "properties": { "class": "street", "len": 58.18082588018759, "name": "Union St", "name_de": "Union St", "name_en": "Union St", "name_es": "Union St", "name_fr": "Union St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40670680999756, 37.804159700135244 ], [ -122.40676581859587, 37.8044394394888 ] ] }, "properties": { "class": "street", "len": 40.44708765741083, "name": "Kearny St", "name_de": "Kearny St", "name_en": "Kearny St", "name_es": "Kearny St", "name_fr": "Kearny St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41145431995392, 37.80112064524151 ], [ -122.41095542907715, 37.80077731318719 ] ] }, "properties": { "class": "main", "len": 73.95789342580765, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41095542907715, 37.80077731318719 ], [ -122.4102795124054, 37.800311057224846 ], [ -122.40913689136505, 37.799518415334305 ], [ -122.40908324718475, 37.79948874408232 ], [ -122.4089652299881, 37.79947178907586 ] ] }, "properties": { "class": "main", "len": 289.87044238473743, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41145431995392, 37.80112064524151 ], [ -122.41232335567474, 37.801010440064665 ], [ -122.41266131401063, 37.80098076941203 ], [ -122.41267740726471, 37.80098076941203 ], [ -122.41269886493683, 37.80098076941203 ], [ -122.41430282592773, 37.800756119798216 ], [ -122.41487681865692, 37.80067982354754 ], [ -122.41596579551697, 37.80053994688325 ], [ -122.41667926311493, 37.80044669562654 ], [ -122.41749465465546, 37.80034496684863 ], [ -122.41762340068817, 37.80032801203869 ] ] }, "properties": { "class": "street", "len": 696.0457391702105, "name": "Filbert St", "name_de": "Filbert St", "name_en": "Filbert St", "name_es": "Filbert St", "name_fr": "Filbert St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41102516651154, 37.80117574776828 ], [ -122.41130948066713, 37.801141838525915 ], [ -122.41145431995393, 37.80112064524151 ] ] }, "properties": { "class": "street", "len": 48.65819507844989, "name": "Filbert St", "name_de": "Filbert St", "name_en": "Filbert St", "name_es": "Filbert St", "name_fr": "Filbert St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40976452827454, 37.803239943579534 ], [ -122.41034924983978, 37.80316364989455 ], [ -122.41138994693756, 37.80303649357777 ], [ -122.41231262683868, 37.8029220527055 ], [ -122.4130368232727, 37.80282880445625 ] ] }, "properties": { "class": "street", "len": 368.9346596825863, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40919053554535, 37.80044669562654 ], [ -122.40920662879944, 37.80052299211805 ], [ -122.4092710018158, 37.80083665464399 ], [ -122.40934610366821, 37.80118422507645 ], [ -122.40938365459442, 37.801379202895646 ], [ -122.4094694852829, 37.80184969073116 ], [ -122.4095767736435, 37.802303221213165 ], [ -122.40976452827454, 37.803239943579534 ] ] }, "properties": { "class": "street", "len": 398.8186351854098, "name": "Stockton St", "name_de": "Stockton St", "name_en": "Stockton St", "name_es": "Stockton St", "name_fr": "Stockton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40919053554535, 37.80044669562654 ], [ -122.40964114665985, 37.8003915925559 ], [ -122.40986108779909, 37.80036192165466 ], [ -122.41015613079072, 37.80032377333558 ] ] }, "properties": { "class": "street", "len": 108.83598004008599, "name": "Union St", "name_de": "Union St", "name_en": "Union St", "name_es": "Union St", "name_fr": "Union St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41015613079071, 37.800323773335606 ], [ -122.41038680076599, 37.80048484388214 ], [ -122.41077303886414, 37.800756119798216 ], [ -122.41096079349518, 37.800883280040885 ] ] }, "properties": { "class": "main", "len": 119.07619620906235, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41096079349518, 37.800883280040885 ], [ -122.41130948066713, 37.801141838525915 ], [ -122.41149723529817, 37.80124780485665 ], [ -122.41243600845338, 37.80190055410142 ], [ -122.41266667842866, 37.80205738260592 ], [ -122.41290807724, 37.80218454060837 ] ] }, "properties": { "class": "main", "len": 284.5610334771084, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40444302558899, 37.80103163338067 ], [ -122.40525841712952, 37.80093414407668 ], [ -122.4059182405472, 37.80085360933718 ], [ -122.40602552890779, 37.80083665464399 ], [ -122.4063688516617, 37.800794267894 ], [ -122.40642786026002, 37.80079002921765 ], [ -122.40681409835817, 37.80073916508263 ], [ -122.40704476833345, 37.80071373300199 ], [ -122.40760266780855, 37.800641675392626 ], [ -122.4079191684723, 37.800603527218016 ], [ -122.40801036357881, 37.800590811155416 ], [ -122.40837514400484, 37.80054842426436 ], [ -122.40885257720949, 37.80048908257599 ], [ -122.40919053554536, 37.80044669562654 ] ] }, "properties": { "class": "street", "len": 534.9702814167264, "name": "Union St", "name_de": "Union St", "name_en": "Union St", "name_es": "Union St", "name_fr": "Union St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41015613079071, 37.800323773335606 ], [ -122.4102795124054, 37.800311057224846 ], [ -122.41084277629852, 37.800251715345794 ] ] }, "properties": { "class": "street", "len": 76.63591281024814, "name": "Union St", "name_de": "Union St", "name_en": "Union St", "name_es": "Union St", "name_fr": "Union St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4371337890625, 37.806461160587695 ], [ -122.4367743730545, 37.80650354408551 ], [ -122.43663489818573, 37.8065162591301 ], [ -122.4365222454071, 37.80652473582528 ], [ -122.43640422821045, 37.80652473582528 ], [ -122.43629693984984, 37.80651202078214 ], [ -122.43617892265318, 37.80648235233963 ], [ -122.43608236312865, 37.80644844553362 ] ] }, "properties": { "class": "main", "len": 1295.5299825214686, "name": "Marina Blvd", "name_de": "Marina Blvd", "name_en": "Marina Blvd", "name_es": "Marina Blvd", "name_fr": "Marina Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43680119514465, 37.80276522603697 ], [ -122.43694603443146, 37.80283728157465 ], [ -122.4371337890625, 37.80293900691998 ] ] }, "properties": { "class": "street", "len": 84.14239889006456, "name": "Cervantes Blvd", "name_de": "Cervantes Blvd", "name_en": "Cervantes Blvd", "name_es": "Cervantes Blvd", "name_fr": "Cervantes Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43657052516937, 37.794062943376915 ], [ -122.4371337890625, 37.79399087927983 ] ] }, "properties": { "class": "street", "len": 1112.992845561897, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43548691272736, 37.79709381086916 ], [ -122.43529915809631, 37.79616124949991 ], [ -122.43511140346527, 37.79522867635839 ], [ -122.4349182844162, 37.794274896196235 ] ] }, "properties": { "class": "street", "len": 401.7067503415705, "name": "Fillmore St", "name_de": "Fillmore St", "name_en": "Fillmore St", "name_es": "Fillmore St", "name_fr": "Fillmore St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43663489818573, 37.80269317042898 ], [ -122.43680655956268, 37.80361717230817 ], [ -122.4369728565216, 37.80436314704291 ], [ -122.43701577186584, 37.804553878009884 ], [ -122.43713378906251, 37.805143021663845 ] ] }, "properties": { "class": "street", "len": 514.0161271942299, "name": "Fillmore St", "name_de": "Fillmore St", "name_en": "Fillmore St", "name_es": "Fillmore St", "name_fr": "Fillmore St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4371337890625, 37.7968606716305 ], [ -122.43694603443146, 37.79594930209237 ], [ -122.43675827980042, 37.795016726275364 ], [ -122.43657052516937, 37.794062943376915 ] ] }, "properties": { "class": "street", "len": 402.15113100734203, "name": "Steiner St", "name_de": "Steiner St", "name_en": "Steiner St", "name_es": "Steiner St", "name_fr": "Steiner St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43548691272736, 37.79709381086916 ], [ -122.4371337890625, 37.79688186613715 ] ] }, "properties": { "class": "street", "len": 185.81727852882707, "name": "Union St", "name_de": "Union St", "name_en": "Union St", "name_es": "Union St", "name_fr": "Union St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42009103298187, 37.795987452670616 ], [ -122.4197906255722, 37.79603408112835 ], [ -122.41968333721161, 37.79604679797535 ], [ -122.4194473028183, 37.796084948503236 ], [ -122.41934537887575, 37.796097665341506 ], [ -122.41930246353151, 37.796097665341506 ], [ -122.41927027702332, 37.79609342639566 ], [ -122.4192649126053, 37.796072231662805 ] ] }, "properties": { "class": "path", "len": 95.58863909056261, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42471516132355, 37.78541898941539 ], [ -122.42468297481537, 37.785279083856395 ], [ -122.4244898557663, 37.78434637336127 ], [ -122.42436647415161, 37.78374434488178 ] ] }, "properties": { "class": "main", "len": 1784.246105662871, "name": "Gough St", "name_de": "Gough St", "name_en": "Gough St", "name_es": "Gough St", "name_fr": "Gough St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42484390735626, 37.803218750897145 ], [ -122.42502093315125, 37.804159700135244 ] ] }, "properties": { "class": "main", "len": 134.30652850837689, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42502093315125, 37.804159700135244 ], [ -122.42520332336426, 37.805096398955996 ] ] }, "properties": { "class": "main", "len": 133.38853698890858, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42480635643005, 37.802269312488406 ], [ -122.42479026317598, 37.802197256396575 ], [ -122.42463469505311, 37.80142158930995 ], [ -122.42461860179903, 37.80134529374666 ] ] }, "properties": { "class": "main", "len": 132.06325543942452, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4249941110611, 37.8031975582087 ], [ -122.42482781410217, 37.80237103861598 ], [ -122.42480635643005, 37.802269312488406 ] ] }, "properties": { "class": "main", "len": 132.1428868028356, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42348670959473, 37.7957246371765 ], [ -122.42505848407745, 37.79552964443152 ], [ -122.42671072483061, 37.79532193420228 ] ] }, "properties": { "class": "street", "len": 363.4559428062918, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42012321949005, 37.79614429372968 ], [ -122.42099225521089, 37.79608070955667 ], [ -122.42163598537446, 37.79600016952563 ], [ -122.42177009582521, 37.79594506313799 ] ] }, "properties": { "class": "main", "len": 186.73849480145344, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42010712623596, 37.79606375376797 ], [ -122.41949558258057, 37.79613157689948 ] ] }, "properties": { "class": "main", "len": 68.68043826231172, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42517650127411, 37.80413850771679 ], [ -122.4249941110611, 37.8031975582087 ] ] }, "properties": { "class": "main", "len": 134.3164163464744, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42183983325958, 37.78755145651453 ], [ -122.42341697216034, 37.787356442199 ], [ -122.4250477552414, 37.78713175115391 ] ] }, "properties": { "class": "street", "len": 361.9390152582063, "name": "Sutter St", "name_de": "Sutter St", "name_en": "Sutter St", "name_es": "Sutter St", "name_fr": "Sutter St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42242455482483, 37.790396063350826 ], [ -122.42254257202148, 37.79037910625748 ], [ -122.42398023605347, 37.79016290297611 ] ] }, "properties": { "class": "street", "len": 175.89302792667098, "name": "California St", "name_de": "California St", "name_en": "California St", "name_es": "California St", "name_fr": "California St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41963505744934, 37.80199804212988 ], [ -122.41961896419525, 37.80192598577343 ], [ -122.41945266723633, 37.80114607718208 ], [ -122.41944193840027, 37.80109521329224 ], [ -122.41943657398224, 37.80106978133419 ], [ -122.41931855678558, 37.80045517301839 ], [ -122.41925418376923, 37.80012455401583 ], [ -122.41913080215454, 37.79951417658475 ], [ -122.41912543773653, 37.79948874408232 ], [ -122.4190664291382, 37.79919626967515 ], [ -122.41900742053987, 37.798916510462924 ], [ -122.41897523403169, 37.79874272011575 ], [ -122.41893768310548, 37.79856892935968 ], [ -122.41887867450718, 37.79826373484735 ], [ -122.41869091987614, 37.797339665996475 ], [ -122.4185031652451, 37.79643254129425 ], [ -122.41849780082707, 37.796398629874425 ] ] }, "properties": { "class": "street", "len": 798.6670949796834, "name": "Hyde St", "name_de": "Hyde St", "name_en": "Hyde St", "name_es": "Hyde St", "name_fr": "Hyde St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42347061634064, 37.804358908571395 ], [ -122.42365837097168, 37.80528712802926 ] ] }, "properties": { "class": "street", "len": 132.99522284668095, "name": "Polk St", "name_de": "Polk St", "name_en": "Polk St", "name_es": "Polk St", "name_fr": "Polk St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41949558258057, 37.79613157689948 ], [ -122.41784870624542, 37.796335045920344 ] ] }, "properties": { "class": "main", "len": 185.68311177870564, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41722643375397, 37.805172690644405 ], [ -122.41855680942535, 37.80500739188654 ] ] }, "properties": { "class": "main", "len": 149.5837056633596, "name": "Bay St", "name_de": "Bay St", "name_en": "Bay St", "name_es": "Bay St", "name_fr": "Bay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41951704025269, 37.796212116787245 ], [ -122.42012321949005, 37.79614429372968 ] ] }, "properties": { "class": "main", "len": 68.21345615050646, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41850316524506, 37.79643254129425 ], [ -122.41861045360565, 37.79641982451364 ], [ -122.41999447345734, 37.79623755041776 ], [ -122.42006957530975, 37.796241789355314 ], [ -122.42013931274414, 37.79625450616659 ] ] }, "properties": { "class": "street", "len": 184.32818978811707, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42013931274414, 37.79625450616659 ], [ -122.42031633853912, 37.797110766421454 ], [ -122.42050409317017, 37.79804755463823 ], [ -122.42063820362091, 37.798696093367674 ], [ -122.42069721221924, 37.79898433097531 ], [ -122.42088496685028, 37.79991261797943 ], [ -122.42107272148132, 37.800832415970085 ], [ -122.42109417915344, 37.800938382744725 ], [ -122.4212658405304, 37.80178187284963 ], [ -122.42145359516144, 37.80271436326215 ] ] }, "properties": { "class": "street", "len": 922.2551334323109, "name": "Larkin St", "name_de": "Larkin St", "name_en": "Larkin St", "name_es": "Larkin St", "name_fr": "Larkin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41685092449188, 37.804977722839574 ], [ -122.41688847541809, 37.80521507488168 ] ] }, "properties": { "class": "street", "len": 33.292385014751915, "name": "Jones St", "name_de": "Jones St", "name_en": "Jones St", "name_es": "Jones St", "name_fr": "Jones St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42019295692444, 37.80478699296722 ], [ -122.42008566856384, 37.804235992791284 ], [ -122.42001593112946, 37.80388843671987 ], [ -122.4198228120804, 37.8029220527055 ], [ -122.41964578628541, 37.8020743370189 ], [ -122.41963505744936, 37.80199804212988 ] ] }, "properties": { "class": "street", "len": 398.17634129276195, "name": "Hyde St", "name_de": "Hyde St", "name_en": "Hyde St", "name_es": "Hyde St", "name_fr": "Hyde St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42243528366089, 37.80354087901289 ], [ -122.42224752902985, 37.80362141082225 ], [ -122.42178618907927, 37.803672272972435 ], [ -122.42174327373503, 37.803684988504514 ], [ -122.4217003583908, 37.80371041956209 ] ] }, "properties": { "class": "street", "len": 86.57526000566389, "name": "Francisco St", "name_de": "Francisco St", "name_en": "Francisco St", "name_es": "Francisco St", "name_fr": "Francisco St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41855680942535, 37.80500739188654 ], [ -122.4187445640564, 37.80592288804934 ], [ -122.41883039474487, 37.80627043454651 ], [ -122.41890549659729, 37.80686380283475 ], [ -122.4190878868103, 37.807800467357744 ], [ -122.41921126842499, 37.80838534687133 ] ] }, "properties": { "class": "street", "len": 482.4912253180585, "name": "Leavenworth St", "name_de": "Leavenworth St", "name_en": "Leavenworth St", "name_es": "Leavenworth St", "name_fr": "Leavenworth St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42174863815308, 37.80423175431249 ], [ -122.42181837558745, 37.80456659339016 ] ] }, "properties": { "class": "street", "len": 48.16414641630078, "name": "Larkin St", "name_de": "Larkin St", "name_en": "Larkin St", "name_es": "Larkin St", "name_fr": "Larkin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41809010505676, 37.78610155516276 ], [ -122.41974234580994, 37.78589381842874 ], [ -122.4213033914566, 37.785694560196426 ] ] }, "properties": { "class": "street", "len": 362.02801077693545, "name": "Geary St", "name_de": "Geary St", "name_en": "Geary St", "name_es": "Geary St", "name_fr": "Geary St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4205631017685, 37.80665188613628 ], [ -122.42103517055511, 37.80659254935171 ], [ -122.42168962955475, 37.80650354408551 ], [ -122.42219924926758, 37.80643573047732 ], [ -122.42244601249695, 37.80640606200415 ], [ -122.42328822612762, 37.80629162635318 ], [ -122.42384612560271, 37.80621957418566 ] ] }, "properties": { "class": "street", "len": 370.54383566678337, "name": "Beach St", "name_de": "Beach St", "name_en": "Beach St", "name_es": "Beach St", "name_fr": "Beach St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42384612560272, 37.80621957418566 ], [ -122.42399632930757, 37.806202620724285 ], [ -122.42511749267578, 37.80605427777103 ] ] }, "properties": { "class": "street", "len": 143.20004374578073, "name": "Beach St", "name_de": "Beach St", "name_en": "Beach St", "name_es": "Beach St", "name_fr": "Beach St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41416871547699, 37.80841925278804 ], [ -122.4158102273941, 37.808215817054325 ], [ -122.41745710372925, 37.80800814249806 ] ] }, "properties": { "class": "street", "len": 370.5655929110899, "name": "Jefferson St", "name_de": "Jefferson St", "name_en": "Jefferson St", "name_es": "Jefferson St", "name_fr": "Jefferson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4130368232727, 37.80282880445625 ], [ -122.41362690925598, 37.8027567489103 ], [ -122.41365909576416, 37.80275251034657 ], [ -122.41372346878052, 37.8027440332184 ], [ -122.41378784179688, 37.80272707895914 ], [ -122.41387367248535, 37.80270588612963 ], [ -122.41457104682922, 37.80262111475069 ], [ -122.41468906402588, 37.80261687617921 ], [ -122.41481781005861, 37.80260839903546 ], [ -122.41623938083649, 37.802430378792366 ], [ -122.41634130477905, 37.80240494729402 ], [ -122.41645395755768, 37.80238375437207 ], [ -122.4178808927536, 37.80220573358751 ], [ -122.4179881811142, 37.80220997218259 ] ] }, "properties": { "class": "street", "len": 558.8266262085464, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41397559642792, 37.807491072698134 ], [ -122.41378784179688, 37.80655440425077 ] ] }, "properties": { "class": "street", "len": 134.02815525115065, "name": "Mason St", "name_de": "Mason St", "name_en": "Mason St", "name_es": "Mason St", "name_fr": "Mason St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41378784179688, 37.80655440425077 ], [ -122.41360545158386, 37.80561772392276 ], [ -122.41351962089539, 37.80515573694268 ], [ -122.41343379020691, 37.80468527016725 ], [ -122.41337478160858, 37.80440977021365 ], [ -122.41322457790375, 37.80376128165094 ], [ -122.4130368232727, 37.80282880445625 ] ] }, "properties": { "class": "street", "len": 531.7786686068795, "name": "Mason St", "name_de": "Mason St", "name_en": "Mason St", "name_es": "Mason St", "name_fr": "Mason St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41576731204987, 37.791209999255514 ], [ -122.4161159992218, 37.79116336775309 ], [ -122.41643249988557, 37.79112097545263 ], [ -122.4171942472458, 37.79102771230599 ], [ -122.41741418838502, 37.79099803764374 ], [ -122.41763412952425, 37.79097260220947 ], [ -122.41907179355623, 37.790798793174275 ], [ -122.42069184780122, 37.79057835185864 ] ] }, "properties": { "class": "street", "len": 555.1665282786608, "name": "California St", "name_de": "California St", "name_en": "California St", "name_es": "California St", "name_fr": "California St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42243528366089, 37.80354087901289 ], [ -122.4232828617096, 37.803426438922145 ] ] }, "properties": { "class": "street", "len": 95.40662712866893, "name": "Francisco St", "name_de": "Francisco St", "name_en": "Francisco St", "name_es": "Francisco St", "name_fr": "Francisco St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42145359516144, 37.802714363262176 ], [ -122.42152333259583, 37.802803373095095 ], [ -122.42160379886627, 37.80321451235996 ] ] }, "properties": { "class": "street", "len": 72.9994683493678, "name": "Larkin St", "name_de": "Larkin St", "name_en": "Larkin St", "name_es": "Larkin St", "name_fr": "Larkin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42145359516144, 37.802714363262176 ], [ -122.42143750190736, 37.80282032733683 ], [ -122.42152333259584, 37.803295044525235 ], [ -122.42157161235811, 37.80340100776679 ], [ -122.42161452770235, 37.80349001677221 ], [ -122.42177009582521, 37.80354511753136 ], [ -122.42183446884157, 37.80354935604959 ] ] }, "properties": { "class": "street", "len": 137.79170216752743, "name": "Larkin St", "name_de": "Larkin St", "name_en": "Larkin St", "name_es": "Larkin St", "name_fr": "Larkin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41845488548279, 37.80405373798221 ], [ -122.41842806339265, 37.804019830061115 ], [ -122.41840660572053, 37.8039732066442 ], [ -122.41829931735992, 37.80347306268421 ], [ -122.41821885108948, 37.8033586224884 ] ] }, "properties": { "class": "street", "len": 102.36354696374765, "name": "Leavenworth St", "name_de": "Leavenworth St", "name_en": "Leavenworth St", "name_es": "Leavenworth St", "name_fr": "Leavenworth St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42170035839081, 37.80371041956209 ], [ -122.42168426513672, 37.80375280463857 ], [ -122.4216789007187, 37.80377823567278 ], [ -122.42168426513672, 37.803871482723345 ], [ -122.42168426513672, 37.8038969137167 ], [ -122.4216789007187, 37.8039350601903 ], [ -122.42167353630067, 37.80396472965615 ], [ -122.42166280746461, 37.80399016061739 ], [ -122.42164671421055, 37.8040155915699 ], [ -122.42162525653843, 37.804036784023616 ] ] }, "properties": { "class": "street", "len": 47.97486496082605, "name": "Larkin St", "name_de": "Larkin St", "name_en": "Larkin St", "name_es": "Larkin St", "name_fr": "Larkin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41773068904877, 37.799874469428296 ], [ -122.41826176643372, 37.799781217331464 ], [ -122.41855680942535, 37.799743068712466 ] ] }, "properties": { "class": "path", "len": 93.91102111592187, "name": "Havens St", "name_de": "Havens St", "name_en": "Havens St", "name_es": "Havens St", "name_fr": "Havens St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42268204689026, 37.78374434488178 ], [ -122.42274641990662, 37.78408775609415 ], [ -122.42283761501312, 37.78454139561992 ], [ -122.42293417453766, 37.7850162302717 ], [ -122.42302536964417, 37.785474103653826 ], [ -122.42321848869324, 37.78640256041474 ], [ -122.42329895496368, 37.78680107252427 ], [ -122.42330968379974, 37.786868904158695 ], [ -122.42341697216034, 37.787356442199 ], [ -122.42350280284882, 37.787805822239655 ], [ -122.42359399795532, 37.78828063591726 ], [ -122.42369055747986, 37.78874696780958 ], [ -122.42378175258636, 37.78920481807711 ], [ -122.42398023605347, 37.790162902976135 ], [ -122.42415189743042, 37.79109130082786 ], [ -122.42433965206148, 37.79197305602324 ], [ -122.42451667785646, 37.79285056156404 ], [ -122.42468833923341, 37.79372805668306 ], [ -122.42486000061037, 37.79460978041143 ], [ -122.42505848407747, 37.79552964443154 ], [ -122.42524087429048, 37.79642406344079 ], [ -122.42525160312654, 37.7964834083948 ], [ -122.42543935775758, 37.79741172682706 ], [ -122.42562711238863, 37.798344272410624 ], [ -122.42579877376558, 37.79920050844297 ], [ -122.42581486701967, 37.799276806221684 ], [ -122.42583096027376, 37.799348865162536 ], [ -122.42599189281465, 37.80015422501243 ], [ -122.42600262165071, 37.80020932826014 ], [ -122.42602407932283, 37.80029834111194 ], [ -122.4261099100113, 37.80074340376193 ], [ -122.42618501186375, 37.801052826690636 ] ] }, "properties": { "class": "main", "len": 3418.3581059088283, "name": "Franklin St", "name_de": "Franklin St", "name_en": "Franklin St", "name_es": "Franklin St", "name_fr": "Franklin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4108749628067, 37.78374434488178 ], [ -122.41095542907715, 37.784151350588004 ], [ -122.41114318370819, 37.785075584388686 ], [ -122.41133630275725, 37.78601252520537 ], [ -122.41151869297026, 37.78694097520201 ], [ -122.41157233715056, 37.78722077976292 ], [ -122.41164207458495, 37.78756841425678 ], [ -122.41170108318327, 37.787873652951795 ], [ -122.41176009178157, 37.78815345398132 ], [ -122.4118191003799, 37.78848412655941 ], [ -122.41188883781429, 37.78881055829413 ], [ -122.41207659244533, 37.78974321244753 ], [ -122.41215705871578, 37.79012474939018 ], [ -122.4122697114944, 37.79067585482935 ] ] }, "properties": { "class": "main", "len": 1220.1934447537033, "name": "Taylor St", "name_de": "Taylor St", "name_en": "Taylor St", "name_es": "Taylor St", "name_fr": "Taylor St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41741418838501, 37.79099803764377 ], [ -122.41720497608185, 37.79004844215926 ], [ -122.4170172214508, 37.789111552511955 ], [ -122.41682946681976, 37.788178890386014 ], [ -122.4167650938034, 37.78786941353413 ], [ -122.41664171218872, 37.787250455942115 ], [ -122.41645395755768, 37.78631353082002 ], [ -122.41633594036102, 37.78573271606973 ], [ -122.41626620292664, 37.785385072940564 ], [ -122.41607308387756, 37.784452363783075 ], [ -122.41593360900879, 37.78374434488178 ] ] }, "properties": { "class": "street", "len": 1758.1372162447021, "name": "Hyde St", "name_de": "Hyde St", "name_en": "Hyde St", "name_es": "Hyde St", "name_fr": "Hyde St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43491291999817, 37.785876860302224 ], [ -122.43655443191528, 37.78566912293662 ], [ -122.4371337890625, 37.78559705065291 ] ] }, "properties": { "class": "street", "len": 1275.7791452826677, "name": "Sutter St", "name_de": "Sutter St", "name_en": "Sutter St", "name_es": "Sutter St", "name_fr": "Sutter St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43491291999817, 37.785876860302224 ], [ -122.43472516536713, 37.7849483969368 ] ] }, "properties": { "class": "street", "len": 132.62396201277474, "name": "Steiner St", "name_de": "Steiner St", "name_en": "Steiner St", "name_es": "Steiner St", "name_fr": "Steiner St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43472516536713, 37.7849483969368 ], [ -122.43460178375244, 37.78430397714999 ] ] }, "properties": { "class": "street", "len": 92.04912275497647, "name": "Steiner St", "name_de": "Steiner St", "name_en": "Steiner St", "name_es": "Steiner St", "name_fr": "Steiner St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41391122341156, 37.79045965241627 ], [ -122.41374492645264, 37.789548203916084 ], [ -122.41355180740356, 37.78860282917525 ], [ -122.41341233253479, 37.78794572301528 ], [ -122.41335868835449, 37.787665921199185 ], [ -122.41329967975616, 37.787386118323695 ], [ -122.41322994232178, 37.787055440832255 ], [ -122.41316020488739, 37.786745959275464 ], [ -122.41298317909241, 37.78580054868476 ], [ -122.41288661956787, 37.78536811469731 ], [ -122.41287589073181, 37.785329958635764 ], [ -122.4127846956253, 37.784867844770744 ], [ -122.41259694099426, 37.78393936872902 ], [ -122.41255939006807, 37.78374434488178 ] ] }, "properties": { "class": "main", "len": 1360.046048576959, "name": "Jones St", "name_de": "Jones St", "name_en": "Jones St", "name_es": "Jones St", "name_fr": "Jones St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41761267185211, 37.78374434488178 ], [ -122.41762340068817, 37.78377826210958 ], [ -122.41770923137666, 37.784236143161344 ], [ -122.41781115531921, 37.78471097977434 ], [ -122.41790235042572, 37.78517733419256 ], [ -122.41799890995026, 37.785643685668035 ], [ -122.41809010505676, 37.78610155516276 ] ] }, "properties": { "class": "street", "len": 799.7411212773527, "name": "Larkin St", "name_de": "Larkin St", "name_en": "Larkin St", "name_es": "Larkin St", "name_fr": "Larkin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42542326450348, 37.78899709006654 ], [ -122.42533206939697, 37.78853923851192 ], [ -122.42524087429047, 37.78807290530868 ], [ -122.42514431476593, 37.787598090296335 ], [ -122.4250477552414, 37.78713175115391 ], [ -122.42486000061035, 37.786199064040595 ], [ -122.42471516132355, 37.78541898941539 ] ] }, "properties": { "class": "main", "len": 509.91428016842895, "name": "Gough St", "name_de": "Gough St", "name_en": "Gough St", "name_es": "Gough St", "name_fr": "Gough St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42561638355255, 37.7899551776589 ], [ -122.4254232645035, 37.78899709006654 ] ] }, "properties": { "class": "street", "len": 136.51211008514636, "name": "Gough St", "name_de": "Gough St", "name_en": "Gough St", "name_es": "Gough St", "name_fr": "Gough St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40868091583252, 37.785393552060754 ], [ -122.40951776504518, 37.78528332342268 ], [ -122.4111431837082, 37.785075584388686 ], [ -122.41189956665039, 37.784982313612026 ], [ -122.41221606731416, 37.78493991776557 ], [ -122.4127846956253, 37.784867844770744 ], [ -122.41443157196046, 37.78466010456887 ], [ -122.4147802591324, 37.78461346893308 ], [ -122.41607308387758, 37.784452363783075 ], [ -122.41770923137666, 37.784236143161344 ], [ -122.4193668365479, 37.78403264082188 ], [ -122.42093324661259, 37.78383337757154 ], [ -122.4210780858994, 37.78381641897224 ], [ -122.4216735363007, 37.78374434488178 ] ] }, "properties": { "class": "street", "len": 1760.9672786629048, "name": "Ellis St", "name_de": "Ellis St", "name_en": "Ellis St", "name_es": "Ellis St", "name_fr": "Ellis St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40668535232544, 37.78803475064363 ], [ -122.40513503551483, 37.788242481359454 ] ] }, "properties": { "class": "street", "len": 174.9995191421173, "name": "Maiden Ln", "name_de": "Maiden Ln", "name_en": "Maiden Ln", "name_es": "Maiden Ln", "name_fr": "Maiden Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40677118301392, 37.78850108408765 ], [ -122.40668535232544, 37.78803475064363 ], [ -122.40659952163695, 37.78757689312644 ] ] }, "properties": { "class": "street", "len": 131.5248338994387, "name": "Stockton St", "name_de": "Stockton St", "name_en": "Stockton St", "name_es": "Stockton St", "name_fr": "Stockton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40540862083435, 37.7896245116636 ], [ -122.40699112415314, 37.78942950281888 ] ] }, "properties": { "class": "street", "len": 178.11152966634953, "name": "Sutter St", "name_de": "Sutter St", "name_en": "Sutter St", "name_es": "Sutter St", "name_fr": "Sutter St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40699112415314, 37.78942950281888 ], [ -122.40775287151337, 37.78933623753729 ], [ -122.40860044956207, 37.78923025411991 ], [ -122.40861654281616, 37.78923025411991 ], [ -122.40863800048828, 37.78922601478005 ], [ -122.41025805473328, 37.78901828682906 ], [ -122.41097152233122, 37.78892502102849 ], [ -122.41188883781433, 37.78881055829413 ], [ -122.41355180740355, 37.78860282917527 ], [ -122.41518795490263, 37.78839086008467 ], [ -122.41682946681975, 37.788178890386014 ], [ -122.41788625717162, 37.78804322945981 ], [ -122.41846561431883, 37.78796692007937 ], [ -122.42011785507198, 37.787759188588936 ], [ -122.4216896295547, 37.787572653691754 ] ] }, "properties": { "class": "street", "len": 1657.262395234056, "name": "Sutter St", "name_de": "Sutter St", "name_en": "Sutter St", "name_es": "Sutter St", "name_fr": "Sutter St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40540862083435, 37.7896245116636 ], [ -122.40551054477692, 37.790112031523854 ], [ -122.40558028221129, 37.79046813095418 ], [ -122.40557491779327, 37.790565634070354 ] ] }, "properties": { "class": "street", "len": 134.6524870185753, "name": "Grant Ave", "name_de": "Grant Ave", "name_en": "Grant Ave", "name_es": "Grant Ave", "name_fr": "Grant Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40699112415314, 37.78942950281888 ], [ -122.40688383579254, 37.78897589329795 ], [ -122.40677118301392, 37.78850108408762 ] ] }, "properties": { "class": "street", "len": 133.25002412547389, "name": "Stockton St", "name_de": "Stockton St", "name_en": "Stockton St", "name_es": "Stockton St", "name_fr": "Stockton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42069184780121, 37.79057835185864 ], [ -122.42080450057983, 37.79061226595001 ], [ -122.42216169834137, 37.79043845606721 ], [ -122.42225289344788, 37.79042573825485 ] ] }, "properties": { "class": "street", "len": 177.0796643801487, "name": "California St", "name_de": "California St", "name_en": "California St", "name_es": "California St", "name_fr": "California St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42486000061035, 37.786199064040595 ], [ -122.42380321025848, 37.786330488846325 ], [ -122.42356181144714, 37.786360165383016 ], [ -122.42321848869324, 37.78640256041474 ], [ -122.42189884185791, 37.78657214029849 ], [ -122.42165744304657, 37.78660605622855 ] ] }, "properties": { "class": "street", "len": 361.0679615924578, "name": "Post St", "name_de": "Post St", "name_en": "Post St", "name_es": "Post St", "name_fr": "Post St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43219316005707, 37.78911579185835 ], [ -122.432000041008, 37.788161932783865 ] ] }, "properties": { "class": "street", "len": 136.3813608966564, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41413116455078, 37.78374434488178 ], [ -122.41329967975616, 37.78385033616694 ], [ -122.41259694099426, 37.78393936872902 ], [ -122.41095542907716, 37.784151350588004 ], [ -122.40933537483217, 37.7843590922199 ], [ -122.40871310234071, 37.78443964494047 ], [ -122.40870237350465, 37.78443964494047 ], [ -122.40853607654573, 37.78446508262344 ] ] }, "properties": { "class": "street", "len": 1015.5915745777658, "name": "Eddy St", "name_de": "Eddy St", "name_en": "Eddy St", "name_es": "Eddy St", "name_fr": "Eddy St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40868091583252, 37.785393552060754 ], [ -122.40869700908661, 37.78548258276376 ], [ -122.40872919559479, 37.7855461760574 ], [ -122.40883111953735, 37.78580478822113 ], [ -122.40884721279143, 37.785851423105164 ], [ -122.40895450115204, 37.78631353082002 ] ] }, "properties": { "class": "street", "len": 133.50390021775553, "name": "Cyril Magnin St", "name_de": "Cyril Magnin St", "name_en": "Cyril Magnin St", "name_es": "Cyril Magnin St", "name_fr": "Cyril Magnin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40853607654572, 37.78446508262347 ], [ -122.40854680538177, 37.78453291640197 ], [ -122.40868091583252, 37.785393552060754 ] ] }, "properties": { "class": "street", "len": 131.98575823906768, "name": "Cyril Magnin St", "name_de": "Cyril Magnin St", "name_en": "Cyril Magnin St", "name_es": "Cyril Magnin St", "name_fr": "Cyril Magnin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40487217903137, 37.78400296335056 ], [ -122.40541934967041, 37.78443964494047 ] ] }, "properties": { "class": "service", "len": 86.69911245112657, "name": "Jessie E", "name_de": "Jessie E", "name_en": "Jessie E", "name_es": "Jessie E", "name_fr": "Jessie E", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42369055747986, 37.78874696780958 ], [ -122.42533206939697, 37.78853923851192 ], [ -122.42696821689606, 37.788331508630314 ] ] }, "properties": { "class": "street", "len": 369.2941182169342, "name": "Austin St", "name_de": "Austin St", "name_en": "Austin St", "name_es": "Austin St", "name_fr": "Austin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40487217903137, 37.78400296335056 ], [ -122.40520477294922, 37.78374434488178 ] ] }, "properties": { "class": "main", "len": 183.31487943400796, "name": "Mission St", "name_de": "Mission St", "name_en": "Mission St", "name_es": "Mission St", "name_fr": "Mission St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40576267242432, 37.80676208289539 ], [ -122.4059933423996, 37.80685532617847 ], [ -122.40612745285034, 37.8069146627519 ], [ -122.40701258182526, 37.80734697063339 ], [ -122.40714132785797, 37.80740206851487 ], [ -122.4073076248169, 37.807457166355256 ] ] }, "properties": { "class": "main", "len": 198.17886927846018, "name": "The Embarcadero", "name_de": "The Embarcadero", "name_en": "The Embarcadero", "name_es": "The Embarcadero", "name_fr": "The Embarcadero", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41015613079071, 37.80838110863068 ], [ -122.41014003753662, 37.8084658733981 ], [ -122.41009712219238, 37.808698976006774 ], [ -122.40997910499573, 37.809279610214595 ] ] }, "properties": { "class": "path", "len": 127.82849278118682, "name": "Pier 39", "name_de": "Pier 39", "name_en": "Pier 39", "name_es": "Pier 39", "name_fr": "Pier 39", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41773068904877, 37.80797423639261 ], [ -122.41791844367981, 37.80895326892251 ], [ -122.41796135902405, 37.808987174578434 ], [ -122.41804718971252, 37.80902955662645 ], [ -122.41977453231812, 37.80907617685116 ] ] }, "properties": { "class": "service", "len": 349.813466182768, "name": "Jones Alley", "name_de": "Jones Alley", "name_en": "Jones Alley", "name_es": "Jones Alley", "name_fr": "Jones Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40853607654572, 37.80529136644753 ], [ -122.40860044956207, 37.80561348552322 ] ] }, "properties": { "class": "street", "len": 46.29339693794459, "name": "Grant Ave", "name_de": "Grant Ave", "name_en": "Grant Ave", "name_es": "Grant Ave", "name_fr": "Grant Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41722643375397, 37.805172690644405 ], [ -122.4183851480484, 37.805973748614505 ] ] }, "properties": { "class": "main", "len": 171.63314044822167, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41488218307495, 37.80354511753136 ], [ -122.41509675979614, 37.80374008911819 ], [ -122.41598725318907, 37.8043673855142 ], [ -122.41685092449187, 37.804977722839574 ], [ -122.41722643375395, 37.805172690644405 ] ] }, "properties": { "class": "main", "len": 348.67300964094204, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41722643375397, 37.805172690644405 ], [ -122.41683483123781, 37.804833615870386 ], [ -122.41614818573, 37.80434619315537 ], [ -122.41555809974672, 37.80395201417224 ], [ -122.41515040397645, 37.803668034461275 ], [ -122.41488218307497, 37.80354511753136 ] ] }, "properties": { "class": "main", "len": 348.88383735093436, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41102516651154, 37.80117574776828 ], [ -122.41120755672455, 37.802095530029646 ], [ -122.41138994693756, 37.80303649357777 ], [ -122.41148114204405, 37.80347306268421 ], [ -122.41158306598662, 37.80396472965615 ], [ -122.41177082061766, 37.80489719250909 ], [ -122.41186201572417, 37.80536341952066 ], [ -122.41195321083067, 37.805821166813914 ], [ -122.41214632987972, 37.80675784456153 ] ] }, "properties": { "class": "street", "len": 796.8073203842616, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40787625312805, 37.80537613476155 ], [ -122.40695893764496, 37.80549057183116 ] ] }, "properties": { "class": "street_limited", "len": 103.14921327965067, "name": "Francisco St", "name_de": "Francisco St", "name_en": "Francisco St", "name_es": "Francisco St", "name_fr": "Francisco St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40911543369293, 37.808135290254896 ], [ -122.4093246459961, 37.80816919628643 ], [ -122.41071939468384, 37.80832601147965 ], [ -122.41083204746246, 37.80833448796713 ], [ -122.41086423397064, 37.80833872621046 ], [ -122.41192102432251, 37.80849554104372 ] ] }, "properties": { "class": "street", "len": 316.6218167752498, "name": "The Embarcadero", "name_de": "The Embarcadero", "name_en": "The Embarcadero", "name_es": "The Embarcadero", "name_fr": "The Embarcadero", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40911543369293, 37.808135290254896 ], [ -122.40984499454498, 37.808050525108015 ], [ -122.4105316400528, 37.80793609200535 ], [ -122.41071403026581, 37.80790642413496 ], [ -122.41081595420836, 37.807893709329726 ], [ -122.41234481334685, 37.807698748708574 ] ] }, "properties": { "class": "street", "len": 364.7876259762513, "name": "Beach St", "name_de": "Beach St", "name_en": "Beach St", "name_es": "Beach St", "name_fr": "Beach St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40944802761078, 37.80471070088035 ], [ -122.40954458713531, 37.80517692906923 ] ] }, "properties": { "class": "service", "len": 66.49836163338345, "name": "Bellair Pl", "name_de": "Bellair Pl", "name_en": "Bellair Pl", "name_es": "Bellair Pl", "name_fr": "Bellair Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4262011051178, 37.80115455449363 ], [ -122.42621719837189, 37.80123932755579 ], [ -122.42637813091278, 37.80207009841604 ], [ -122.42656588554382, 37.80299834664004 ], [ -122.42676973342896, 37.80394353718175 ], [ -122.42682337760925, 37.80419784647312 ] ] }, "properties": { "class": "street", "len": 434.6988194050417, "name": "Franklin St", "name_de": "Franklin St", "name_en": "Franklin St", "name_es": "Franklin St", "name_fr": "Franklin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4053281545639, 37.79709804975758 ], [ -122.40541398525238, 37.797564326000824 ], [ -122.40548372268677, 37.79790343414736 ], [ -122.4054890871048, 37.798017882795456 ] ] }, "properties": { "class": "main", "len": 130.87633459140386, "name": "Kearny St", "name_de": "Kearny St", "name_en": "Kearny St", "name_es": "Kearny St", "name_fr": "Kearny St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41840660572052, 37.801196941036885 ], [ -122.418674826622, 37.80115879314906 ], [ -122.41908252239227, 37.80112064524151 ], [ -122.41931319236755, 37.80109097463317 ], [ -122.41943657398224, 37.801069781334164 ], [ -122.42036461830139, 37.80095109874748 ], [ -122.4204236268997, 37.80094262141255 ] ] }, "properties": { "class": "street", "len": 227.48918920409113, "name": "Greenwich St", "name_de": "Greenwich St", "name_en": "Greenwich St", "name_es": "Greenwich St", "name_fr": "Greenwich St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41780042648315, 37.801256282156544 ], [ -122.41832077503204, 37.80117998642249 ], [ -122.41840660572053, 37.801196941036885 ] ] }, "properties": { "class": "path", "len": 68.85852547182186, "name": "Greenwich St", "name_de": "Greenwich St", "name_en": "Greenwich St", "name_es": "Greenwich St", "name_fr": "Greenwich St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41468906402588, 37.799276806221656 ], [ -122.41402924060822, 37.79937005895526 ] ] }, "properties": { "class": "path", "len": 74.49901811416203, "name": "Macondray Ln", "name_de": "Macondray Ln", "name_en": "Macondray Ln", "name_es": "Macondray Ln", "name_fr": "Macondray Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41283297538757, 37.7980772264691 ], [ -122.41373419761658, 37.797950061395746 ] ] }, "properties": { "class": "path", "len": 101.97202165234128, "name": "Vallejo St", "name_de": "Vallejo St", "name_en": "Vallejo St", "name_es": "Vallejo St", "name_fr": "Vallejo St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41187274456024, 37.79700055526198 ], [ -122.41189420223236, 37.79699631636796 ], [ -122.41260766983032, 37.79691577733512 ] ] }, "properties": { "class": "street", "len": 82.79384328446568, "name": "Broadway", "name_de": "Broadway", "name_en": "Broadway", "name_es": "Broadway", "name_fr": "Broadway", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40990400314331, 37.795618662922415 ], [ -122.41001665592194, 37.795605946001736 ], [ -122.41003274917601, 37.795605946001736 ], [ -122.41108417510985, 37.79547029871132 ], [ -122.41155624389648, 37.79541519192846 ], [ -122.41189956665039, 37.79538128004165 ], [ -122.41234481334685, 37.79532193420228 ], [ -122.41318166255951, 37.795220198366735 ], [ -122.41402387619019, 37.795105745384284 ], [ -122.41483390331267, 37.79499129222454 ], [ -122.41647541522978, 37.79477934146046 ], [ -122.41695821285248, 37.79471999513755 ], [ -122.41753220558167, 37.79464369265235 ], [ -122.41796135902405, 37.79458858525292 ], [ -122.41812765598297, 37.794567390088325 ] ] }, "properties": { "class": "street", "len": 927.1182287578953, "name": "Jackson St", "name_de": "Jackson St", "name_en": "Jackson St", "name_es": "Jackson St", "name_fr": "Jackson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41290807723999, 37.802184540608394 ], [ -122.41288125514986, 37.80202347376832 ], [ -122.41285979747774, 37.801892076875475 ], [ -122.41275787353517, 37.80143006658992 ], [ -122.41267740726472, 37.80098076941203 ], [ -122.41254866123201, 37.80034072814651 ], [ -122.41248428821565, 37.80003977967424 ], [ -122.41243064403534, 37.799764262392124 ], [ -122.41241991519928, 37.79971763628886 ], [ -122.4122965335846, 37.79909453917511 ], [ -122.41210877895355, 37.79816624189021 ], [ -122.41192638874055, 37.797271843974116 ] ] }, "properties": { "class": "street", "len": 700.7930770082895, "name": "Mason St", "name_de": "Mason St", "name_en": "Mason St", "name_es": "Mason St", "name_fr": "Mason St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41290807723999, 37.802184540608394 ], [ -122.41372346878053, 37.8027440332184 ], [ -122.4146729707718, 37.80340100776679 ], [ -122.41488218307497, 37.80354511753136 ] ] }, "properties": { "class": "main", "len": 290.9426140073034, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41290807723999, 37.802184540608394 ], [ -122.41273105144501, 37.80200228073689 ], [ -122.41260766983032, 37.80192174716204 ], [ -122.41245746612549, 37.80182425903287 ], [ -122.41145431995392, 37.80112064524154 ] ] }, "properties": { "class": "main", "len": 221.17499376378402, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40618646144867, 37.79751769850893 ], [ -122.4062132835388, 37.79758128144514 ], [ -122.40663707256316, 37.79787800109037 ] ] }, "properties": { "class": "main", "len": 72.7339903601992, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40913689136505, 37.799518415334305 ], [ -122.40924954414368, 37.79950569908492 ], [ -122.41064965724944, 37.799314955081435 ], [ -122.41145968437193, 37.79920898597781 ], [ -122.41194248199463, 37.799141165671685 ], [ -122.4122804403305, 37.79909877794875 ], [ -122.4122965335846, 37.79909453917511 ], [ -122.41231799125671, 37.79909030040123 ], [ -122.41293489933014, 37.7990097636514 ], [ -122.41390585899353, 37.79887836139735 ] ] }, "properties": { "class": "street", "len": 538.6756063416154, "name": "Green St", "name_de": "Green St", "name_en": "Green St", "name_es": "Green St", "name_fr": "Green St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41096079349518, 37.800883280040885 ], [ -122.41098761558533, 37.801103690609615 ], [ -122.41102516651154, 37.80117574776828 ] ] }, "properties": { "class": "street", "len": 41.7763435467469, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41095542907715, 37.80077731318719 ], [ -122.41084277629852, 37.800251715345794 ] ] }, "properties": { "class": "street", "len": 74.71728715644412, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40990400314331, 37.795618662922415 ], [ -122.41000592708588, 37.79605527587214 ], [ -122.41009712219237, 37.79650036408717 ] ] }, "properties": { "class": "street", "len": 125.73983464232444, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41454422473907, 37.79877663045951 ], [ -122.41459250450133, 37.79881054078769 ], [ -122.41466760635375, 37.798840212312086 ], [ -122.41475343704224, 37.7988359735236 ], [ -122.41512894630432, 37.79879358562553 ], [ -122.41520941257477, 37.79877239166739 ], [ -122.41540253162383, 37.79872152614298 ] ] }, "properties": { "class": "street", "len": 100.51610952832038, "name": "Green St", "name_de": "Green St", "name_en": "Green St", "name_es": "Green St", "name_fr": "Green St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41784870624542, 37.796335045920344 ], [ -122.41178691387177, 37.797110766421454 ], [ -122.41127192974089, 37.7971785885917 ] ] }, "properties": { "class": "main", "len": 741.3485364408103, "name": "Robert C Levy Tunnel", "name_de": "Robert C Levy Tunnel", "name_en": "Robert C Levy Tunnel", "name_es": "Robert C Levy Tunnel", "name_fr": "Robert C Levy Tunnel", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41104662418365, 37.797314232745414 ], [ -122.41127729415895, 37.79735662149236 ], [ -122.41191029548645, 37.797271843974144 ], [ -122.41192638874054, 37.797271843974144 ] ] }, "properties": { "class": "street", "len": 100.0087746540741, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41926491260529, 37.796072231662805 ], [ -122.41918981075287, 37.796089187449574 ], [ -122.41915225982666, 37.796097665341506 ], [ -122.41856217384338, 37.79616972738355 ], [ -122.41854608058931, 37.79617396632503 ], [ -122.41847634315492, 37.79616972738355 ], [ -122.41844952106477, 37.79616972738355 ], [ -122.41833150386812, 37.79618244420722 ], [ -122.41751611232759, 37.796292656587205 ], [ -122.41717278957368, 37.79634352378406 ] ] }, "properties": { "class": "street", "len": 236.16779258848743, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41721034049988, 37.796559708979885 ], [ -122.41731226444244, 37.79656394789897 ], [ -122.41839587688446, 37.79644525807265 ], [ -122.41850316524506, 37.79643254129425 ] ] }, "properties": { "class": "street", "len": 145.44667681611674, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4217700958252, 37.795945063138014 ], [ -122.42162525653839, 37.79593234627349 ], [ -122.42098689079285, 37.79601288637848 ], [ -122.42021441459654, 37.79605951482018 ], [ -122.42010712623595, 37.79606375376797 ] ] }, "properties": { "class": "main", "len": 186.55657763368268, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41785407066345, 37.79641558558629 ], [ -122.41951704025269, 37.79621211678722 ] ] }, "properties": { "class": "main", "len": 186.91554081992845, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41846024990082, 37.79621635572625 ], [ -122.41844952106476, 37.79616972738355 ], [ -122.41835832595825, 37.79571192027404 ], [ -122.41831004619598, 37.79547877667427 ], [ -122.41821885108948, 37.795008248259386 ], [ -122.41812765598299, 37.794567390088325 ], [ -122.41793990135194, 37.79368566585404 ], [ -122.41777360439302, 37.7928124093659 ], [ -122.41774678230287, 37.79267251780427 ], [ -122.41768240928651, 37.792350342291314 ], [ -122.41760194301607, 37.79192642500235 ], [ -122.41741418838502, 37.79099803764374 ] ] }, "properties": { "class": "street", "len": 744.7061876106641, "name": "Hyde St", "name_de": "Hyde St", "name_en": "Hyde St", "name_es": "Hyde St", "name_fr": "Hyde St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42671072483063, 37.79532193420228 ], [ -122.42834150791168, 37.79512270139288 ], [ -122.42999374866486, 37.79489803396326 ], [ -122.43163526058197, 37.79468608293166 ], [ -122.4325257539749, 37.794571629121755 ], [ -122.43327677249907, 37.79448684840749 ] ] }, "properties": { "class": "street", "len": 740.9509396955775, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42580950260162, 37.79087933887559 ], [ -122.42561638355255, 37.7899551776589 ] ] }, "properties": { "class": "street", "len": 132.22028966811465, "name": "Gough St", "name_de": "Gough St", "name_en": "Gough St", "name_es": "Gough St", "name_fr": "Gough St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42872774600983, 37.79699207747368 ], [ -122.43037462234497, 37.79678437135622 ], [ -122.43119001388551, 37.7966826375346 ], [ -122.43201076984406, 37.79657666465477 ], [ -122.43364691734315, 37.796373196299385 ], [ -122.43529915809631, 37.79616124949991 ], [ -122.43694603443147, 37.79594930209237 ], [ -122.43713378906251, 37.79592810731817 ] ] }, "properties": { "class": "street", "len": 2029.4165943164103, "name": "Green St", "name_de": "Green St", "name_en": "Green St", "name_es": "Green St", "name_fr": "Green St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42158770561218, 37.795029443297494 ], [ -122.4217700958252, 37.795945063138014 ] ] }, "properties": { "class": "street", "len": 130.95045780775922, "name": "Polk St", "name_de": "Polk St", "name_en": "Polk St", "name_es": "Polk St", "name_fr": "Polk St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4217700958252, 37.795945063138014 ], [ -122.42332577705383, 37.79574159304304 ] ] }, "properties": { "class": "main", "len": 175.60124145509974, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43327677249908, 37.79448684840749 ], [ -122.4349182844162, 37.794274896196235 ] ] }, "properties": { "class": "street", "len": 184.88645731898455, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43327677249908, 37.79448684840749 ], [ -122.43308365345003, 37.7935584932212 ] ] }, "properties": { "class": "street", "len": 132.2383310540627, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.79542790888202 ], [ -122.40497410297394, 37.79532617319241 ], [ -122.40566611289978, 37.79524563233876 ], [ -122.4058485031128, 37.79522867635839 ], [ -122.40606844425201, 37.79520324238054 ], [ -122.4064975976944, 37.79515661339839 ], [ -122.40701794624329, 37.795088789371825 ], [ -122.40729153156282, 37.79505911634061 ], [ -122.407506108284, 37.795033682304364 ], [ -122.40755438804626, 37.79502520429035 ], [ -122.40808546543121, 37.79496585816495 ], [ -122.40861654281616, 37.79490227297768 ], [ -122.40893304347992, 37.79486412183905 ], [ -122.40919053554535, 37.79482597068072 ], [ -122.40960359573364, 37.79477510243896 ], [ -122.40963041782379, 37.79476662439526 ], [ -122.40973770618439, 37.79474966830496 ] ] }, "properties": { "class": "street", "len": 723.0398905235759, "name": "Washington St", "name_de": "Washington St", "name_en": "Washington St", "name_es": "Washington St", "name_fr": "Washington St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42598116397858, 37.791761096600425 ], [ -122.42433965206148, 37.79197305602319 ], [ -122.42278397083282, 37.792168058155134 ] ] }, "properties": { "class": "street", "len": 360.4966687505905, "name": "Clay St", "name_de": "Clay St", "name_en": "Clay St", "name_es": "Clay St", "name_fr": "Clay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41410970687866, 37.791421960259214 ], [ -122.4140989780426, 37.79141348183073 ], [ -122.41406679153442, 37.79131597983338 ], [ -122.41392195224762, 37.79057835185864 ], [ -122.41391122341156, 37.79045965241627 ] ] }, "properties": { "class": "street", "len": 137.86885931793245, "name": "Jones St", "name_de": "Jones St", "name_en": "Jones St", "name_es": "Jones St", "name_fr": "Jones St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41245210170746, 37.79163815985659 ], [ -122.41245746612547, 37.79165511666101 ], [ -122.4124789237976, 37.79174413982033 ], [ -122.41255939006804, 37.79211718808339 ], [ -122.41265058517455, 37.79254110427786 ], [ -122.41274178028105, 37.79299469191242 ], [ -122.41283297538753, 37.79343555946803 ], [ -122.41300463676451, 37.79433000382966 ], [ -122.4131816625595, 37.79519900338339 ], [ -122.4131816625595, 37.795220198366735 ], [ -122.41336941719054, 37.796084948503236 ] ] }, "properties": { "class": "street", "len": 635.1639726150889, "name": "Taylor St", "name_de": "Taylor St", "name_en": "Taylor St", "name_es": "Taylor St", "name_fr": "Taylor St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41907179355621, 37.7907987931743 ], [ -122.41923272609712, 37.791701747853054 ], [ -122.41932392120363, 37.792185014837926 ], [ -122.41942584514618, 37.79259621320449 ], [ -122.41952240467073, 37.79312186551574 ], [ -122.4195921421051, 37.7934779504405 ], [ -122.41976916790009, 37.79435967715371 ], [ -122.41994082927705, 37.795241393344035 ], [ -122.42009103298189, 37.795987452670616 ], [ -122.42010712623598, 37.79606375376797 ] ] }, "properties": { "class": "street", "len": 750.435322670991, "name": "Larkin St", "name_de": "Larkin St", "name_en": "Larkin St", "name_es": "Larkin St", "name_fr": "Larkin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41226971149445, 37.790675854829374 ], [ -122.41226971149445, 37.790781836173345 ], [ -122.41241991519928, 37.791549136569564 ], [ -122.41244673728943, 37.79162544225071 ], [ -122.41245210170746, 37.79163815985659 ] ] }, "properties": { "class": "street", "len": 137.141967022337, "name": "Taylor St", "name_de": "Taylor St", "name_en": "Taylor St", "name_es": "Taylor St", "name_fr": "Taylor St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42278397083282, 37.792168058155134 ], [ -122.42262303829193, 37.792185014837955 ], [ -122.42106199264526, 37.792396973044646 ], [ -122.41942584514618, 37.79259621320451 ], [ -122.41860508918762, 37.79269371351246 ], [ -122.417773604393, 37.7928124093659 ], [ -122.41644322872162, 37.792973496290564 ], [ -122.4161159992218, 37.79301588752816 ], [ -122.41553127765654, 37.79309219169453 ], [ -122.41526305675507, 37.793126104632066 ], [ -122.41505920886993, 37.79315153932501 ], [ -122.41447448730469, 37.7932236042408 ], [ -122.41283297538757, 37.793435559468 ], [ -122.41211950778961, 37.79352881957535 ], [ -122.41151869297029, 37.79360512321199 ], [ -122.41118609905244, 37.79364751408718 ], [ -122.4106013774872, 37.79371957851917 ], [ -122.41036534309389, 37.7937492520884 ], [ -122.4099361896515, 37.793804360113896 ], [ -122.40990400314332, 37.793808599191095 ], [ -122.40957140922548, 37.793850989949526 ], [ -122.40954458713533, 37.793855229024025 ] ] }, "properties": { "class": "street", "len": 1493.1866562952232, "name": "Clay St", "name_de": "Clay St", "name_en": "Clay St", "name_es": "Clay St", "name_fr": "Clay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43377029895782, 37.79076063991673 ], [ -122.43360936641692, 37.789895827461 ] ] }, "properties": { "class": "path", "len": 123.28674908495023, "name": "Goldberg Alley", "name_de": "Goldberg Alley", "name_en": "Goldberg Alley", "name_es": "Goldberg Alley", "name_fr": "Goldberg Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40712523460388, 37.79038334553119 ], [ -122.40716278553008, 37.790446934607566 ], [ -122.40721642971039, 37.7907012903658 ], [ -122.4073451757431, 37.79130750139274 ], [ -122.40753829479218, 37.792261319862405 ], [ -122.40761339664459, 37.79263860465855 ] ] }, "properties": { "class": "street", "len": 322.60534856994127, "name": "Stockton St", "name_de": "Stockton St", "name_en": "Stockton St", "name_es": "Stockton St", "name_fr": "Stockton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40714132785797, 37.79028584217449 ], [ -122.40763485431673, 37.79274034404906 ] ] }, "properties": { "class": "street", "len": 350.11729263257007, "name": "Stockton Tunnel", "name_de": "Stockton Tunnel", "name_en": "Stockton Tunnel", "name_es": "Stockton Tunnel", "name_fr": "Stockton Tunnel", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40763485431671, 37.79274034404906 ], [ -122.40764558315277, 37.79279545282709 ], [ -122.40771532058716, 37.7931769740092 ], [ -122.40789771080016, 37.794062943376915 ], [ -122.4080854654312, 37.79496585816495 ], [ -122.40825712680817, 37.795826372317386 ], [ -122.40843415260315, 37.79670807100316 ], [ -122.40856289863586, 37.79733118824711 ], [ -122.40862727165222, 37.79763214775467 ] ] }, "properties": { "class": "street", "len": 697.6155503425852, "name": "Stockton St", "name_de": "Stockton St", "name_en": "Stockton St", "name_es": "Stockton St", "name_fr": "Stockton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40557491779327, 37.790565634070354 ], [ -122.40560173988342, 37.790730965147205 ], [ -122.40574657917021, 37.791498266071706 ], [ -122.40580022335052, 37.791778053376625 ], [ -122.40594506263731, 37.792460560388086 ] ] }, "properties": { "class": "street", "len": 269.89783685489533, "name": "Grant Ave", "name_de": "Grant Ave", "name_en": "Grant Ave", "name_es": "Grant Ave", "name_fr": "Grant Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4108213186264, 37.791837402062676 ], [ -122.4110037088394, 37.792765778874795 ] ] }, "properties": { "class": "street", "len": 132.29588240030955, "name": "Mason St", "name_de": "Mason St", "name_en": "Mason St", "name_es": "Mason St", "name_fr": "Mason St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41100370883942, 37.792765778874795 ], [ -122.41108953952791, 37.7931769740092 ], [ -122.41113245487215, 37.79338469026892 ], [ -122.41118609905244, 37.79364751408718 ], [ -122.41127192974092, 37.794062943376915 ], [ -122.41136848926546, 37.79452923877677 ] ] }, "properties": { "class": "street", "len": 251.76727793372726, "name": "Mason St", "name_de": "Mason St", "name_en": "Mason St", "name_es": "Mason St", "name_fr": "Mason St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41793990135193, 37.79368566585406 ], [ -122.41629302501678, 37.793893380683656 ], [ -122.41567611694335, 37.79397392301147 ], [ -122.41522014141083, 37.79402903086939 ], [ -122.41465687751769, 37.7941053339894 ], [ -122.41300463676453, 37.79433000382966 ], [ -122.41184592247008, 37.794465653213706 ], [ -122.41136848926544, 37.79452923877677 ] ] }, "properties": { "class": "street", "len": 741.188908049292, "name": "Washington St", "name_de": "Washington St", "name_en": "Washington St", "name_es": "Washington St", "name_fr": "Washington St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4349182844162, 37.794274896196235 ], [ -122.43657052516937, 37.794062943376915 ] ] }, "properties": { "class": "street", "len": 186.65911094787393, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43156552314758, 37.79104466925053 ], [ -122.4325579404831, 37.790921731314675 ] ] }, "properties": { "class": "street", "len": 112.80448084965425, "name": "Clay St", "name_de": "Clay St", "name_en": "Clay St", "name_es": "Clay St", "name_fr": "Clay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41576731204987, 37.791209999255514 ], [ -122.41578876972198, 37.79131597983335 ], [ -122.41583168506622, 37.791544897362755 ], [ -122.41589605808258, 37.79187555476423 ], [ -122.41594970226288, 37.79212990560461 ], [ -122.4161159992218, 37.79301588752816 ], [ -122.41629302501678, 37.793893380683656 ], [ -122.4164754152298, 37.79477934146046 ], [ -122.41666316986084, 37.795678008523424 ], [ -122.41671681404114, 37.7959238683626 ], [ -122.41674900054932, 37.79611886006703 ], [ -122.41685092449188, 37.796602098159795 ], [ -122.41694211959839, 37.79707261642332 ], [ -122.41703867912292, 37.79755160941504 ], [ -122.41722106933594, 37.79847991442385 ], [ -122.41731226444244, 37.79894618194477 ], [ -122.41739273071288, 37.799319193842436 ], [ -122.4173980951309, 37.7994082077669 ], [ -122.41753220558165, 37.79990837925248 ], [ -122.41762340068816, 37.80032801203869 ], [ -122.41773068904875, 37.80084089331766 ], [ -122.41780042648314, 37.801256282156544 ], [ -122.41780579090114, 37.8012859526985 ], [ -122.41789162158962, 37.801718293529156 ], [ -122.41797745227812, 37.80213791603292 ], [ -122.41798818111418, 37.80220997218259 ], [ -122.41799890995024, 37.80227778967103 ], [ -122.41817593574523, 37.80312974156482 ], [ -122.41821885108946, 37.8033586224884 ], [ -122.41821885108946, 37.80349001677221 ], [ -122.41833150386809, 37.804087645887726 ], [ -122.41839051246639, 37.80421480039474 ], [ -122.41855680942531, 37.80500739188654 ] ] }, "properties": { "class": "street", "len": 1969.0376020959868, "name": "Leavenworth St", "name_de": "Leavenworth St", "name_en": "Leavenworth St", "name_es": "Leavenworth St", "name_fr": "Leavenworth St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40560173988342, 37.79868761577395 ], [ -122.40553200244905, 37.79836546649156 ], [ -122.40548372268678, 37.79811537594843 ], [ -122.4054890871048, 37.798017882795456 ] ] }, "properties": { "class": "street", "len": 95.56138201633803, "name": "Kearny St", "name_de": "Kearny St", "name_en": "Kearny St", "name_es": "Kearny St", "name_fr": "Kearny St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41025805473328, 37.79741596569721 ], [ -122.41039216518402, 37.797445637781784 ], [ -122.41104662418365, 37.797314232745414 ] ] }, "properties": { "class": "main", "len": 90.55466342846469, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43168354034424, 37.80327809039246 ], [ -122.43188202381134, 37.80324842065075 ], [ -122.43333578109741, 37.80306616340459 ], [ -122.43497729301453, 37.80285423580862 ], [ -122.43600726127625, 37.80272284039373 ], [ -122.43647933006287, 37.80267197758973 ], [ -122.43663489818573, 37.80269317042898 ], [ -122.43680119514465, 37.80276522603697 ] ] }, "properties": { "class": "street", "len": 579.2060033285372, "name": "Bay St", "name_de": "Bay St", "name_en": "Bay St", "name_es": "Bay St", "name_fr": "Bay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43150115013123, 37.802379515786946 ], [ -122.43168354034422, 37.80327809039246 ] ] }, "properties": { "class": "street", "len": 128.34968056037326, "name": "Laguna St", "name_de": "Laguna St", "name_en": "Laguna St", "name_es": "Laguna St", "name_fr": "Laguna St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42985963821411, 37.80258296759844 ], [ -122.43150115013123, 37.802379515786946 ] ] }, "properties": { "class": "street", "len": 185.20992306068527, "name": "Francisco St", "name_de": "Francisco St", "name_en": "Francisco St", "name_es": "Francisco St", "name_fr": "Francisco St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42985963821411, 37.80258296759844 ], [ -122.43006348609924, 37.803532401975204 ] ] }, "properties": { "class": "street", "len": 135.2257283210577, "name": "Octavia St", "name_de": "Octavia St", "name_en": "Octavia St", "name_es": "Octavia St", "name_fr": "Octavia St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42215096950531, 37.797831373796456 ], [ -122.42372810840607, 37.797636386612204 ] ] }, "properties": { "class": "street", "len": 177.4162678560832, "name": "Green St", "name_de": "Green St", "name_en": "Green St", "name_es": "Green St", "name_fr": "Green St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42929100990295, 37.7997896947997 ], [ -122.4309378862381, 37.799581996548405 ], [ -122.43250429630281, 37.799382775228004 ], [ -122.43257939815523, 37.79937429771311 ], [ -122.43269741535188, 37.79935734268033 ], [ -122.43422091007237, 37.79916235952403 ], [ -122.43586242198946, 37.7989546595088 ], [ -122.43713378906251, 37.79879358562553 ] ] }, "properties": { "class": "street", "len": 2014.6636423760767, "name": "Greenwich St", "name_de": "Greenwich St", "name_en": "Greenwich St", "name_es": "Greenwich St", "name_fr": "Greenwich St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4217700958252, 37.795945063138014 ], [ -122.42196321487425, 37.79690306063769 ], [ -122.4220597743988, 37.797373576984334 ], [ -122.4221509695053, 37.797831373796456 ], [ -122.42232799530028, 37.798696093367674 ], [ -122.42233872413634, 37.79877239166739 ] ] }, "properties": { "class": "street", "len": 403.1965680885383, "name": "Polk St", "name_de": "Polk St", "name_en": "Polk St", "name_es": "Polk St", "name_fr": "Polk St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42233872413635, 37.79877239166739 ], [ -122.42235481739044, 37.79884445110031 ], [ -122.4224728345871, 37.79941244652253 ], [ -122.4225103855133, 37.79962014525055 ], [ -122.4225264787674, 37.79970068133491 ], [ -122.42254793643951, 37.79978969479964 ], [ -122.42270350456238, 37.800556901644505 ], [ -122.42271423339844, 37.80062895933659 ], [ -122.42273032665251, 37.80070949432101 ], [ -122.42288589477538, 37.801480930249134 ], [ -122.42290198802947, 37.801548748406965 ] ] }, "properties": { "class": "street", "len": 396.1482066469359, "name": "Polk St", "name_de": "Polk St", "name_en": "Polk St", "name_es": "Polk St", "name_fr": "Polk St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42290198802948, 37.80154874840699 ], [ -122.42291808128357, 37.801633521016726 ], [ -122.42307901382446, 37.80241342446109 ], [ -122.42309510707855, 37.802489718921066 ], [ -122.42311120033264, 37.802587206171864 ], [ -122.4232828617096, 37.803426438922145 ], [ -122.42347061634064, 37.804358908571395 ] ] }, "properties": { "class": "street", "len": 400.45783312781555, "name": "Polk St", "name_de": "Polk St", "name_en": "Polk St", "name_es": "Polk St", "name_fr": "Polk St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40565538406372, 37.79898433097531 ], [ -122.40644931793213, 37.79888260018339 ], [ -122.40685164928436, 37.7988317347349 ], [ -122.4071305990219, 37.79878934683441 ], [ -122.4072217941284, 37.79877239166739 ] ] }, "properties": { "class": "street", "len": 177.11230961239798, "name": "Vallejo St", "name_de": "Vallejo St", "name_en": "Vallejo St", "name_es": "Vallejo St", "name_fr": "Vallejo St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40722179412842, 37.79877239166739 ], [ -122.40788161754608, 37.79868761577395 ], [ -122.40796744823457, 37.79867913817926 ], [ -122.40881502628328, 37.79857316816348 ], [ -122.40965723991395, 37.79847143680532 ], [ -122.4098986387253, 37.79844176513279 ], [ -122.41045653820039, 37.79837394412226 ], [ -122.41176009178163, 37.79820863014827 ], [ -122.41208195686342, 37.79817048071708 ], [ -122.41210877895355, 37.79816624189018 ], [ -122.4121356010437, 37.79816200306305 ], [ -122.41283297538757, 37.7980772264691 ] ] }, "properties": { "class": "street", "len": 632.0985495709137, "name": "Vallejo St", "name_de": "Vallejo St", "name_en": "Vallejo St", "name_es": "Vallejo St", "name_fr": "Vallejo St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4062991142273, 37.801786111469056 ], [ -122.40625083446504, 37.80177339561006 ], [ -122.40621864795686, 37.80174796388552 ], [ -122.40619182586671, 37.80169710041017 ], [ -122.40603625774385, 37.800938382744725 ], [ -122.40602552890779, 37.80083665464399 ], [ -122.40584850311281, 37.79991261797943 ], [ -122.40580022335054, 37.799721875026755 ], [ -122.40565538406373, 37.79898433097531 ] ] }, "properties": { "class": "street", "len": 405.5124883164733, "name": "Kearny St", "name_de": "Kearny St", "name_en": "Kearny St", "name_es": "Kearny St", "name_fr": "Kearny St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40721642971039, 37.79822982426816 ], [ -122.40715742111206, 37.798310361868346 ], [ -122.407146692276, 37.79835275004371 ], [ -122.40716814994812, 37.79849263084982 ], [ -122.40722179412842, 37.79877239166739 ], [ -122.40741491317749, 37.7996922038565 ], [ -122.40760266780853, 37.8006416753926 ], [ -122.40766167640685, 37.800938382744725 ], [ -122.40774750709534, 37.801387680180454 ], [ -122.40779042243958, 37.80159537335438 ], [ -122.40792453289032, 37.802218449372056 ], [ -122.40797281265257, 37.8025066732348 ], [ -122.40804255008696, 37.80287119003867 ], [ -122.40809082984923, 37.8031000717635 ], [ -122.40816593170165, 37.80344339302085 ] ] }, "properties": { "class": "street", "len": 745.1912087283594, "name": "Grant Ave", "name_de": "Grant Ave", "name_en": "Grant Ave", "name_es": "Grant Ave", "name_fr": "Grant Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40448594093323, 37.80123085025396 ], [ -122.40444302558899, 37.80131562322855 ], [ -122.40448594093323, 37.80152755523935 ], [ -122.40456104278564, 37.80192598577343 ], [ -122.4045717716217, 37.801989564915125 ], [ -122.40470051765443, 37.80255329757749 ], [ -122.40476489067079, 37.802714363262176 ], [ -122.40481853485109, 37.802773703162714 ] ] }, "properties": { "class": "street", "len": 223.33525500181005, "name": "Montgomery St", "name_de": "Montgomery St", "name_en": "Montgomery St", "name_es": "Montgomery St", "name_fr": "Montgomery St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40481853485107, 37.802773703162714 ], [ -122.4048238992691, 37.802710124696006 ], [ -122.40468978881836, 37.802036189584236 ], [ -122.40467369556427, 37.80196413326501 ], [ -122.4045878648758, 37.80152755523935 ], [ -122.40456104278564, 37.801374964252865 ], [ -122.40453422069551, 37.8012859526985 ], [ -122.40448594093324, 37.80123085025394 ] ] }, "properties": { "class": "street", "len": 221.87358067348777, "name": "Montgomery St", "name_de": "Montgomery St", "name_en": "Montgomery St", "name_es": "Montgomery St", "name_fr": "Montgomery St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4045878648758, 37.80152755523935 ], [ -122.40507066249847, 37.801455498423906 ] ] }, "properties": { "class": "street", "len": 54.66121476955421, "name": "Alta St", "name_de": "Alta St", "name_en": "Alta St", "name_es": "Alta St", "name_fr": "Alta St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40434110164642, 37.80046788910432 ], [ -122.40435719490051, 37.800578095090685 ], [ -122.40444302558899, 37.80103163338067 ], [ -122.40448594093323, 37.80123085025396 ] ] }, "properties": { "class": "street", "len": 108.62619166079068, "name": "Montgomery St", "name_de": "Montgomery St", "name_en": "Montgomery St", "name_es": "Montgomery St", "name_fr": "Montgomery St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40691602230072, 37.80264230760455 ], [ -122.40699112415314, 37.80263383046373 ], [ -122.40743637084961, 37.80257872902474 ], [ -122.40797281265257, 37.8025066732348 ], [ -122.40828931331635, 37.80246852602342 ], [ -122.40872383117674, 37.80241342446109 ], [ -122.40957677364348, 37.80230322121314 ], [ -122.4106067419052, 37.802171824817975 ], [ -122.41120755672453, 37.802095530029646 ], [ -122.41160452365874, 37.80204466679365 ], [ -122.41209268569945, 37.80198108769938 ], [ -122.41238236427306, 37.801947178826744 ], [ -122.41243600845335, 37.80190055410142 ] ] }, "properties": { "class": "street", "len": 625.6124878438, "name": "Greenwich St", "name_de": "Greenwich St", "name_en": "Greenwich St", "name_es": "Greenwich St", "name_fr": "Greenwich St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40862727165222, 37.79763214775467 ], [ -122.40881502628326, 37.79857316816348 ], [ -122.4089115858078, 37.79904791264911 ], [ -122.40897059440613, 37.79932343260318 ] ] }, "properties": { "class": "street", "len": 241.32735316025975, "name": "Stockton St", "name_de": "Stockton St", "name_en": "Stockton St", "name_es": "Stockton St", "name_fr": "Stockton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4168348312378, 37.804833615870386 ], [ -122.41672754287718, 37.80429533146929 ], [ -122.41663098335265, 37.80382062071034 ], [ -122.41653442382811, 37.80334166837023 ], [ -122.41634130477904, 37.80240494729402 ], [ -122.41615891456604, 37.80148940752228 ], [ -122.41605699062347, 37.801010440064665 ], [ -122.41596579551697, 37.80053994688323 ], [ -122.41594970226288, 37.80046365040925 ], [ -122.41577804088593, 37.79962014525055 ], [ -122.41568148136139, 37.79914540444263 ], [ -122.415611743927, 37.79879782441643 ], [ -122.41559028625488, 37.798696093367674 ], [ -122.41556882858276, 37.798598600981116 ], [ -122.41546154022217, 37.79806450997163 ], [ -122.41539716720581, 37.79775931337528 ], [ -122.41533815860748, 37.79746259325332 ], [ -122.41530060768127, 37.79728879948555 ], [ -122.41520404815674, 37.796805565884746 ], [ -122.4151074886322, 37.796326568055655 ], [ -122.4150162935257, 37.79588995670929 ], [ -122.41483390331268, 37.79499129222454 ], [ -122.4146568775177, 37.7941053339894 ], [ -122.4144744873047, 37.79322360424077 ], [ -122.41438865661621, 37.792786974556215 ], [ -122.41429746150972, 37.79233762480803 ], [ -122.4141150712967, 37.791438917113226 ], [ -122.4141097068787, 37.791421960259214 ] ] }, "properties": { "class": "street", "len": 1913.6777925493618, "name": "Jones St", "name_de": "Jones St", "name_en": "Jones St", "name_es": "Jones St", "name_fr": "Jones St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42107272148132, 37.800832415970085 ], [ -122.42262303829193, 37.800637436707525 ], [ -122.42271423339844, 37.80062895933659 ], [ -122.42283225059509, 37.80061200459185 ], [ -122.42289662361145, 37.800603527218016 ], [ -122.42416799068451, 37.80044245693025 ], [ -122.42428600788116, 37.800429740839945 ] ] }, "properties": { "class": "street", "len": 362.03014130639843, "name": "Greenwich St", "name_de": "Greenwich St", "name_en": "Greenwich St", "name_es": "Greenwich St", "name_fr": "Greenwich St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41859436035156, 37.80020932826012 ], [ -122.41925418376923, 37.80012455401583 ], [ -122.41935610771179, 37.800111837870794 ], [ -122.42058455944061, 37.79995076651085 ], [ -122.42080986499786, 37.79992109543255 ], [ -122.42088496685028, 37.79991261797943 ], [ -122.42243528366089, 37.79971339755073 ], [ -122.4225264787674, 37.79970068133491 ], [ -122.42265522480011, 37.7996837263771 ], [ -122.42400169372559, 37.79950993783495 ], [ -122.42409288883209, 37.79949722158409 ] ] }, "properties": { "class": "street", "len": 620.2909232707532, "name": "Filbert St", "name_de": "Filbert St", "name_en": "Filbert St", "name_es": "Filbert St", "name_fr": "Filbert St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41859436035156, 37.80020932826012 ], [ -122.41762340068816, 37.80032801203869 ] ] }, "properties": { "class": "street", "len": 109.42872063447884, "name": "Filbert St", "name_de": "Filbert St", "name_en": "Filbert St", "name_es": "Filbert St", "name_fr": "Filbert St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40676581859589, 37.8044394394888 ], [ -122.40753293037415, 37.804469108752045 ], [ -122.40834832191467, 37.8043673855142 ], [ -122.40935146808626, 37.80424446974821 ], [ -122.40995228290558, 37.804176654065614 ], [ -122.41158306598663, 37.80396472965615 ], [ -122.41285443305969, 37.803807905201644 ], [ -122.41322457790375, 37.80376128165094 ], [ -122.41371810436249, 37.803697704034384 ], [ -122.41472661495209, 37.803566310120054 ], [ -122.4148017168045, 37.80355359456757 ], [ -122.41488218307495, 37.80354511753136 ], [ -122.41506457328796, 37.80352392493655 ], [ -122.41641104221344, 37.80336286101732 ], [ -122.41653442382812, 37.80334166837023 ], [ -122.41663634777069, 37.80332047571705 ], [ -122.41817593574524, 37.803129741564796 ], [ -122.41907715797423, 37.80301530083702 ], [ -122.41982281208037, 37.8029220527055 ], [ -122.42145359516142, 37.80271436326215 ], [ -122.42180764675139, 37.8026635004523 ] ] }, "properties": { "class": "street", "len": 1694.9214307785533, "name": "Chestnut St", "name_de": "Chestnut St", "name_en": "Chestnut St", "name_es": "Chestnut St", "name_fr": "Chestnut St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41285979747772, 37.801892076875475 ], [ -122.41288661956786, 37.801887838262154 ], [ -122.41368055343628, 37.801790350088226 ], [ -122.4144959449768, 37.801692861785654 ], [ -122.41495192050934, 37.80163775964465 ], [ -122.41615891456604, 37.80148940752228 ], [ -122.41780579090118, 37.8012859526985 ] ] }, "properties": { "class": "street", "len": 557.112868666435, "name": "Greenwich St", "name_de": "Greenwich St", "name_en": "Greenwich St", "name_es": "Greenwich St", "name_fr": "Greenwich St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40707695484161, 37.79813233126623 ], [ -122.40721642971039, 37.79822982426816 ], [ -122.40788161754608, 37.79868761577395 ], [ -122.4089652299881, 37.79947178907586 ] ] }, "properties": { "class": "main", "len": 282.30186678989685, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40913152694702, 37.79962438399404 ], [ -122.40907251834871, 37.799687965116924 ], [ -122.40906178951265, 37.799738829975816 ], [ -122.40905642509462, 37.79976850112732 ], [ -122.40911006927492, 37.8000143473528 ], [ -122.40919053554536, 37.80044669562654 ] ] }, "properties": { "class": "street", "len": 119.16979192136742, "name": "Stockton St", "name_de": "Stockton St", "name_en": "Stockton St", "name_es": "Stockton St", "name_fr": "Stockton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4089652299881, 37.79947178907586 ], [ -122.40902423858641, 37.799548086574354 ], [ -122.40913152694702, 37.79962438399404 ], [ -122.41015613079071, 37.80032377333558 ] ] }, "properties": { "class": "main", "len": 179.78758443124872, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40707695484161, 37.79813233126623 ], [ -122.40704476833344, 37.79807298763686 ], [ -122.40673899650574, 37.797865284558576 ] ] }, "properties": { "class": "main", "len": 54.17443315216535, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41517186164856, 37.793770447487695 ], [ -122.41522014141083, 37.79402903086939 ] ] }, "properties": { "class": "path", "len": 36.925126946110616, "name": "Priest St", "name_de": "Priest St", "name_en": "Priest St", "name_es": "Priest St", "name_fr": "Priest St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41562247276306, 37.79369414402182 ], [ -122.41567611694336, 37.79397392301147 ] ] }, "properties": { "class": "street", "len": 39.886972809965414, "name": "Reed St", "name_de": "Reed St", "name_en": "Reed St", "name_es": "Reed St", "name_fr": "Reed St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4073076248169, 37.807457166355256 ], [ -122.4076133966446, 37.80756312362505 ], [ -122.40894377231598, 37.80810138420781 ], [ -122.40898668766023, 37.80810986072104 ], [ -122.40911543369295, 37.808135290254896 ] ] }, "properties": { "class": "street", "len": 223.42726427046517, "name": "The Embarcadero", "name_de": "The Embarcadero", "name_en": "The Embarcadero", "name_es": "The Embarcadero", "name_fr": "The Embarcadero", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41657197475433, 37.809160940820696 ], [ -122.41658806800842, 37.80924146650164 ], [ -122.41661489009857, 37.80932623028144 ], [ -122.41665780544281, 37.809398279417756 ], [ -122.41671681404112, 37.809461852126724 ], [ -122.41720497608183, 37.80977971485056 ] ] }, "properties": { "class": "street", "len": 393.80887031184614, "name": "Pier 45", "name_de": "Pier 45", "name_en": "Pier 45", "name_es": "Pier 45", "name_fr": "Pier 45", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41192102432251, 37.80849554104372 ], [ -122.41240918636322, 37.80856335276034 ], [ -122.41250574588777, 37.80857606745026 ] ] }, "properties": { "class": "street", "len": 65.5771641539864, "name": "The Embarcadero", "name_de": "The Embarcadero", "name_en": "The Embarcadero", "name_es": "The Embarcadero", "name_fr": "The Embarcadero", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41250574588776, 37.80857606745026 ], [ -122.41261839866638, 37.80858878213802 ], [ -122.41265058517456, 37.80859302036677 ], [ -122.41287052631378, 37.80858030567975 ], [ -122.41416871547699, 37.80841925278804 ] ] }, "properties": { "class": "street", "len": 187.38311561829235, "name": "Jefferson St", "name_de": "Jefferson St", "name_en": "Jefferson St", "name_es": "Jefferson St", "name_fr": "Jefferson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41745710372925, 37.80800814249806 ], [ -122.41773068904878, 37.80797423639261 ], [ -122.41908788681032, 37.807800467357744 ], [ -122.41992473602296, 37.807698748708574 ], [ -122.42040216922761, 37.807639412765205 ], [ -122.42075085639958, 37.8075970299193 ] ] }, "properties": { "class": "street", "len": 371.2315392261579, "name": "Jefferson St", "name_de": "Jefferson St", "name_en": "Jefferson St", "name_es": "Jefferson St", "name_fr": "Jefferson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4369728565216, 37.80436314704291 ], [ -122.43712842464447, 37.804341954682855 ], [ -122.4371337890625, 37.804341954682855 ] ] }, "properties": { "class": "street", "len": 555.7103815711608, "name": "Beach St", "name_de": "Beach St", "name_en": "Beach St", "name_es": "Beach St", "name_fr": "Beach St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43173718452454, 37.80362564933614 ], [ -122.4317479133606, 37.80354935604959 ], [ -122.4317479133606, 37.80347306268421 ], [ -122.43173718452454, 37.80339676924006 ], [ -122.43171572685242, 37.803337429840084 ], [ -122.43168354034424, 37.80327809039246 ] ] }, "properties": { "class": "main", "len": 50.68690143418162, "name": "Laguna St", "name_de": "Laguna St", "name_en": "Laguna St", "name_es": "Laguna St", "name_fr": "Laguna St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42520332336426, 37.805096398955996 ], [ -122.42535889148712, 37.805872027449155 ], [ -122.42541253566742, 37.8059483183363 ], [ -122.42546081542967, 37.80618142889205 ], [ -122.42549300193787, 37.806261957822144 ], [ -122.42565929889678, 37.80650354408548 ] ] }, "properties": { "class": "street", "len": 207.25363820920808, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42536962032318, 37.805075206806336 ], [ -122.42517650127411, 37.80413850771679 ] ] }, "properties": { "class": "main", "len": 133.38997900877993, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42075085639954, 37.8075970299193 ], [ -122.42185056209564, 37.80746140464897 ] ] }, "properties": { "class": "street", "len": 123.7840139102762, "name": "Jefferson St", "name_de": "Jefferson St", "name_en": "Jefferson St", "name_es": "Jefferson St", "name_fr": "Jefferson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4205631017685, 37.80665188613628 ], [ -122.42037534713745, 37.80571520704471 ] ] }, "properties": { "class": "street", "len": 133.4972108322927, "name": "Hyde St", "name_de": "Hyde St", "name_en": "Hyde St", "name_es": "Hyde St", "name_fr": "Hyde St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4232828617096, 37.803426438922145 ], [ -122.42484390735626, 37.803218750897145 ] ] }, "properties": { "class": "street", "len": 176.17523804499018, "name": "Francisco St", "name_de": "Francisco St", "name_en": "Francisco St", "name_es": "Francisco St", "name_fr": "Francisco St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43006348609924, 37.803532401975204 ], [ -122.43086814880373, 37.80343067744717 ] ] }, "properties": { "class": "main", "len": 90.86705563669574, "name": "Bay St", "name_de": "Bay St", "name_en": "Bay St", "name_es": "Bay St", "name_fr": "Bay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4183851480484, 37.805973748614505 ], [ -122.41883039474486, 37.80627043454651 ], [ -122.41957068443298, 37.80677903622835 ] ] }, "properties": { "class": "street", "len": 174.1893737884846, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40595579147339, 37.8046640778996 ], [ -122.40517795085908, 37.80476580072879 ] ] }, "properties": { "class": "street", "len": 87.94345569749994, "name": "Chestnut St", "name_de": "Chestnut St", "name_en": "Chestnut St", "name_es": "Chestnut St", "name_fr": "Chestnut St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4172693490982, 37.807071480609274 ], [ -122.41890549659729, 37.80686380283475 ], [ -122.41957068443298, 37.80677903622835 ], [ -122.41972625255585, 37.80675784456153 ], [ -122.42056310176851, 37.80665188613628 ] ] }, "properties": { "class": "street", "len": 371.2924861507288, "name": "Beach St", "name_de": "Beach St", "name_en": "Beach St", "name_es": "Beach St", "name_fr": "Beach St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4172693490982, 37.807071480609274 ], [ -122.41708159446716, 37.806139045209385 ], [ -122.4168884754181, 37.80521507488171 ] ] }, "properties": { "class": "street", "len": 265.79375441053367, "name": "Jones St", "name_de": "Jones St", "name_en": "Jones St", "name_es": "Jones St", "name_fr": "Jones St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41234481334686, 37.807698748708574 ], [ -122.41248965263367, 37.80850401751168 ], [ -122.41250574588776, 37.80857606745026 ] ] }, "properties": { "class": "street", "len": 124.96779065929178, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41397559642792, 37.807491072698134 ], [ -122.41561710834503, 37.80728339610364 ] ] }, "properties": { "class": "street", "len": 184.88805910606186, "name": "Beach St", "name_de": "Beach St", "name_en": "Beach St", "name_es": "Beach St", "name_fr": "Beach St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41561710834503, 37.80728339610364 ], [ -122.41726934909819, 37.807071480609274 ] ] }, "properties": { "class": "street", "len": 186.76535251337125, "name": "Beach St", "name_de": "Beach St", "name_en": "Beach St", "name_es": "Beach St", "name_fr": "Beach St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41561710834503, 37.80728339610364 ], [ -122.41543471813202, 37.80634248666441 ] ] }, "properties": { "class": "street", "len": 134.18097965055713, "name": "Taylor St", "name_de": "Taylor St", "name_en": "Taylor St", "name_es": "Taylor St", "name_fr": "Taylor St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41543471813202, 37.80634248666441 ], [ -122.41524159908295, 37.80541851888209 ] ] }, "properties": { "class": "street", "len": 132.18093357235747, "name": "Taylor St", "name_de": "Taylor St", "name_en": "Taylor St", "name_es": "Taylor St", "name_fr": "Taylor St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43173718452454, 37.80362564933614 ], [ -122.43186593055727, 37.80424446974821 ], [ -122.43190348148346, 37.80441824715063 ], [ -122.43199467658997, 37.804871761860184 ], [ -122.43203222751617, 37.805075206806336 ] ] }, "properties": { "class": "main", "len": 206.72394509717472, "name": "Laguna St", "name_de": "Laguna St", "name_en": "Laguna St", "name_es": "Laguna St", "name_fr": "Laguna St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43086814880371, 37.80343067744717 ], [ -122.4314957857132, 37.80338405365836 ], [ -122.4315494298935, 37.80338829218583 ], [ -122.43159770965576, 37.803405246293295 ], [ -122.43163526058197, 37.80343067744717 ], [ -122.4316620826721, 37.803464585638764 ], [ -122.43173718452452, 37.80362564933614 ] ] }, "properties": { "class": "main", "len": 118.00890140069362, "name": "Laguna St", "name_de": "Laguna St", "name_en": "Laguna St", "name_es": "Laguna St", "name_fr": "Laguna St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42682337760925, 37.80419784647312 ], [ -122.42679655551912, 37.80427837756615 ], [ -122.42679655551912, 37.804337716210114 ], [ -122.42680191993713, 37.80440129327573 ], [ -122.42685556411743, 37.80462593180253 ], [ -122.42691993713379, 37.80482937742587 ], [ -122.42704331874847, 37.80521931330409 ], [ -122.42712914943696, 37.80543123411352 ] ] }, "properties": { "class": "street", "len": 178.68748063928695, "name": "Franklin St", "name_de": "Franklin St", "name_en": "Franklin St", "name_es": "Franklin St", "name_fr": "Franklin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42712914943695, 37.80543123411352 ], [ -122.42715060710907, 37.805321035368515 ], [ -122.42715597152709, 37.80521931330409 ], [ -122.42702186107634, 37.8048081851996 ], [ -122.42696821689604, 37.80460050106022 ], [ -122.42691993713379, 37.80438433939691 ], [ -122.42689311504364, 37.80432500079042 ], [ -122.42685556411743, 37.80426990061314 ], [ -122.42682337760925, 37.80419784647312 ] ] }, "properties": { "class": "street", "len": 178.99029926575605, "name": "Franklin St", "name_de": "Franklin St", "name_en": "Franklin St", "name_es": "Franklin St", "name_fr": "Franklin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40750074386597, 37.802888144264855 ], [ -122.40752220153809, 37.80291781415126 ], [ -122.40761339664459, 37.803324714248184 ] ] }, "properties": { "class": "service", "len": 63.46973529960526, "name": "Child St", "name_de": "Child St", "name_en": "Child St", "name_es": "Child St", "name_fr": "Child St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42112100124359, 37.80888545756394 ], [ -122.42157161235811, 37.809275372025255 ], [ -122.42210805416107, 37.80967799892781 ], [ -122.42224752902986, 37.80977971485056 ] ] }, "properties": { "class": "path", "len": 267.96803623205005, "name": "Hyde St Pier", "name_de": "Hyde St Pier", "name_en": "Hyde St Pier", "name_es": "Hyde St Pier", "name_fr": "Hyde St Pier", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42022514343262, 37.80192174716204 ], [ -122.42062211036682, 37.80187512242067 ] ] }, "properties": { "class": "street", "len": 44.81482455598683, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42062211036682, 37.80187512242067 ], [ -122.42114245891571, 37.80179882732586 ], [ -122.4212658405304, 37.80178187284963 ], [ -122.42198467254639, 37.80168014591061 ], [ -122.42212414741518, 37.801658952780684 ], [ -122.42280542850496, 37.80156570293673 ], [ -122.4229019880295, 37.80154874840699 ], [ -122.42300927639012, 37.80153603250714 ], [ -122.4243557453156, 37.80134529374666 ], [ -122.42446303367619, 37.80132833916636 ] ] }, "properties": { "class": "street", "len": 434.416197668898, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42347061634064, 37.804358908571395 ], [ -122.42502093315125, 37.804159700135244 ] ] }, "properties": { "class": "main", "len": 175.06532952143382, "name": "Bay St", "name_de": "Bay St", "name_en": "Bay St", "name_es": "Bay St", "name_fr": "Bay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41855680942535, 37.80500739188654 ], [ -122.42019295692444, 37.80478699296722 ] ] }, "properties": { "class": "main", "len": 184.97531186607654, "name": "Bay St", "name_de": "Bay St", "name_en": "Bay St", "name_es": "Bay St", "name_fr": "Bay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42019295692444, 37.80478699296722 ], [ -122.42174863815309, 37.80457507030913 ], [ -122.42181837558746, 37.80456659339016 ] ] }, "properties": { "class": "main", "len": 183.3526995127709, "name": "Bay St", "name_de": "Bay St", "name_en": "Bay St", "name_es": "Bay St", "name_fr": "Bay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42181837558746, 37.80456659339016 ], [ -122.42253720760345, 37.804473347217254 ], [ -122.42347061634064, 37.804358908571395 ] ] }, "properties": { "class": "main", "len": 186.21917777270622, "name": "Bay St", "name_de": "Bay St", "name_en": "Bay St", "name_es": "Bay St", "name_fr": "Bay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42181837558746, 37.80456659339016 ], [ -122.42201149463654, 37.80549481023774 ], [ -122.42219924926758, 37.80643573047732 ] ] }, "properties": { "class": "street", "len": 267.4986530187627, "name": "Larkin St", "name_de": "Larkin St", "name_en": "Larkin St", "name_es": "Larkin St", "name_fr": "Larkin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4309754371643, 37.78374434488178 ], [ -122.43107736110687, 37.78427429978763 ], [ -122.43110418319702, 37.78443540532579 ] ] }, "properties": { "class": "main", "len": 1133.1148622789483, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43131875991821, 37.784723698570225 ], [ -122.43130266666412, 37.784634666952996 ], [ -122.43127584457399, 37.784511718352896 ], [ -122.43125438690187, 37.78440996763259 ], [ -122.43118464946748, 37.78406655791737 ], [ -122.4311149120331, 37.78374434488178 ] ] }, "properties": { "class": "main", "len": 1172.3244467932636, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42778360843658, 37.783926649798154 ], [ -122.4288994073868, 37.783812179321814 ], [ -122.42915689945221, 37.78377402245696 ], [ -122.42946267127992, 37.78374434488178 ] ] }, "properties": { "class": "service", "len": 277.4019821826499, "name": "Galilee Ln", "name_de": "Galilee Ln", "name_en": "Galilee Ln", "name_es": "Galilee Ln", "name_fr": "Galilee Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42915689945221, 37.78377402245696 ], [ -122.4291515350342, 37.78374434488178 ] ] }, "properties": { "class": "path", "len": 95.32624059779303, "name": "Inca Ln", "name_de": "Inca Ln", "name_en": "Inca Ln", "name_es": "Inca Ln", "name_fr": "Inca Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41084277629852, 37.800251715345794 ], [ -122.41166353225708, 37.80014574758602 ], [ -122.41246819496155, 37.80004401839364 ], [ -122.41248428821564, 37.80003977967424 ], [ -122.41251647472382, 37.800035540954596 ], [ -122.41412580013274, 37.79983208212613 ], [ -122.41522550582884, 37.799687965116924 ], [ -122.41577804088591, 37.79962014525055 ], [ -122.41649150848387, 37.79952689283269 ], [ -122.4173980951309, 37.7994082077669 ], [ -122.41822957992552, 37.79930223879704 ], [ -122.41905033588408, 37.79919626967515 ], [ -122.41906642913814, 37.79919626967515 ], [ -122.41908252239223, 37.79919203090711 ], [ -122.4200856685638, 37.799064867752875 ], [ -122.42034852504726, 37.799030957541454 ], [ -122.42069721221922, 37.79898433097531 ], [ -122.42226898670195, 37.798780869251374 ], [ -122.42233872413634, 37.79877239166739 ] ] }, "properties": { "class": "street", "len": 1297.141812299604, "name": "Union St", "name_de": "Union St", "name_en": "Union St", "name_es": "Union St", "name_fr": "Union St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41540253162384, 37.798721526143 ], [ -122.41559028625488, 37.798696093367674 ], [ -122.41722106933594, 37.79847991442385 ], [ -122.41783261299133, 37.79839937700852 ], [ -122.41887867450714, 37.79826373484738 ], [ -122.41963505744934, 37.79816200306305 ], [ -122.41989254951476, 37.79812809243717 ], [ -122.42039144039153, 37.79806450997163 ], [ -122.42050409317015, 37.79804755463823 ], [ -122.4221509695053, 37.797831373796456 ] ] }, "properties": { "class": "street", "len": 761.5010491610682, "name": "Green St", "name_de": "Green St", "name_en": "Green St", "name_es": "Green St", "name_fr": "Green St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40566611289978, 37.80268469329402 ], [ -122.40558028221129, 37.80273555608927 ], [ -122.40553200244904, 37.802773703162714 ], [ -122.40548372268677, 37.8028923828208 ], [ -122.40545153617859, 37.80290509848712 ], [ -122.4053281545639, 37.8028076116559 ], [ -122.40504920482635, 37.80286695148153 ], [ -122.40502774715424, 37.80282880445625 ], [ -122.40485608577728, 37.802858474366495 ] ] }, "properties": { "class": "path", "len": 118.02240623006357, "name": "Greenwich St Stairs", "name_de": "Greenwich St Stairs", "name_en": "Greenwich St Stairs", "name_es": "Greenwich St Stairs", "name_fr": "Greenwich St Stairs", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40467369556427, 37.80196413326501 ], [ -122.40508139133453, 37.80191326993851 ], [ -122.4052530527115, 37.8019175085504 ], [ -122.4053978919983, 37.80182849764988 ], [ -122.4054515361786, 37.80182849764988 ], [ -122.4054890871048, 37.80184121349936 ], [ -122.40562319755554, 37.80177763422998 ] ] }, "properties": { "class": "path", "len": 113.49958524683666, "name": "Flibert Steps", "name_de": "Flibert Steps", "name_en": "Flibert Steps", "name_es": "Flibert Steps", "name_fr": "Flibert Steps", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41963505744934, 37.80199804212988 ], [ -122.41953313350677, 37.8020107579502 ], [ -122.41951167583466, 37.80201499655647 ], [ -122.41947948932648, 37.802036189584236 ], [ -122.41942584514618, 37.80207857562153 ], [ -122.41940438747406, 37.802091291428006 ], [ -122.41938292980194, 37.80209553002967 ], [ -122.41935610771179, 37.80209553002967 ], [ -122.41933465003967, 37.802091291428006 ], [ -122.41931855678558, 37.8020743370189 ], [ -122.41926491260529, 37.80201499655647 ], [ -122.41923809051514, 37.80200228073689 ], [ -122.419211268425, 37.80199804212988 ], [ -122.41918444633485, 37.80200228073689 ], [ -122.4191576242447, 37.80201499655647 ], [ -122.41914153099064, 37.80203195097919 ], [ -122.41910934448246, 37.80210400723224 ], [ -122.41909325122838, 37.802125200234485 ], [ -122.41906642913824, 37.80213791603292 ], [ -122.41903424263005, 37.80214215463189 ], [ -122.41900742053991, 37.80213367743367 ], [ -122.4189859628678, 37.80211672303431 ], [ -122.41892695426947, 37.80206162120955 ], [ -122.41890549659735, 37.80204466679365 ], [ -122.4188786745072, 37.80204042818906 ], [ -122.41884648799902, 37.80204466679365 ], [ -122.4188250303269, 37.80205314400207 ], [ -122.41880893707284, 37.8020743370189 ], [ -122.41877675056463, 37.80214639323063 ], [ -122.41876065731057, 37.80216758622069 ], [ -122.41873919963845, 37.80217606341501 ], [ -122.41870701313027, 37.80218030201182 ], [ -122.41868019104012, 37.802171824817975 ], [ -122.418658733368, 37.802159109025396 ], [ -122.41859972476968, 37.80209976863108 ], [ -122.41857826709756, 37.80208705282608 ], [ -122.41855144500742, 37.80207857562153 ], [ -122.4185299873353, 37.80208281422394 ], [ -122.41850316524516, 37.802095530029646 ], [ -122.41848707199107, 37.80211672303431 ], [ -122.41845488548289, 37.80218877920469 ], [ -122.41843879222881, 37.802205733587485 ], [ -122.41841197013866, 37.802218449372056 ], [ -122.41838514804851, 37.80222268796642 ], [ -122.41835296154034, 37.802218449372056 ], [ -122.41833150386822, 37.802205733587485 ], [ -122.41827785968792, 37.80214639323063 ], [ -122.4182564020158, 37.80212943883419 ], [ -122.41823494434368, 37.80212096163453 ], [ -122.41820812225353, 37.80212096163453 ], [ -122.41818130016341, 37.80212943883419 ], [ -122.41816520690932, 37.80214639323063 ], [ -122.41813838481917, 37.80218030201182 ], [ -122.41812765598311, 37.802197256396575 ], [ -122.418106198311, 37.80220997218259 ], [ -122.41808474063888, 37.802214210777436 ], [ -122.41806328296676, 37.802214210777436 ], [ -122.41798818111434, 37.80220997218259 ] ] }, "properties": { "class": "street", "len": 251.13123264977568, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40450203418732, 37.8028923828208 ], [ -122.40418016910553, 37.80292629125948 ] ] }, "properties": { "class": "path", "len": 81.66581926308162, "name": "Greenwich St Stairs", "name_de": "Greenwich St Stairs", "name_en": "Greenwich St Stairs", "name_es": "Greenwich St Stairs", "name_fr": "Greenwich St Stairs", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42667317390442, 37.78692825678771 ], [ -122.42674827575684, 37.78730132936438 ], [ -122.42686629295349, 37.78786517411618 ], [ -122.42696821689606, 37.788331508630314 ], [ -122.4270647764206, 37.788789361472034 ], [ -122.4272632598877, 37.78974321244753 ], [ -122.42745101451874, 37.79066737631527 ] ] }, "properties": { "class": "street", "len": 534.227193931559, "name": "Octavia St", "name_de": "Octavia St", "name_en": "Octavia St", "name_es": "Octavia St", "name_fr": "Octavia St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41488218307495, 37.80354511753136 ], [ -122.41491973400116, 37.80370194254386 ], [ -122.4150162935257, 37.80420632343443 ], [ -122.41505920886993, 37.80441824715063 ], [ -122.415069937706, 37.80448182414693 ] ] }, "properties": { "class": "street", "len": 133.7369592645156, "name": "Taylor St", "name_de": "Taylor St", "name_en": "Taylor St", "name_es": "Taylor St", "name_fr": "Taylor St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42214560508728, 37.790362149160224 ], [ -122.42078840732574, 37.790531719957585 ], [ -122.4206918478012, 37.79057835185864 ] ] }, "properties": { "class": "street", "len": 166.21503958669592, "name": "California St", "name_de": "California St", "name_en": "California St", "name_es": "California St", "name_fr": "California St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40823566913605, 37.80531679695196 ], [ -122.4084609746933, 37.80528712802926 ], [ -122.40853607654572, 37.80529136644753 ], [ -122.40863800048828, 37.80529136644753 ], [ -122.40931928157806, 37.80520659803617 ], [ -122.40954458713531, 37.80517692906923 ], [ -122.41014003753662, 37.805104875814145 ], [ -122.4105155467987, 37.80505401465057 ], [ -122.41177082061768, 37.80489719250912 ], [ -122.41343379020691, 37.80468527016725 ], [ -122.41498410701752, 37.80449030107562 ], [ -122.41505920886993, 37.80448182414693 ], [ -122.415069937706, 37.80448182414693 ], [ -122.41509139537811, 37.80447758568221 ], [ -122.41516649723053, 37.804469108752045 ], [ -122.41598725318909, 37.8043673855142 ], [ -122.41614818573, 37.80434619315537 ], [ -122.4165987968445, 37.8043038084194 ], [ -122.41672754287721, 37.80429533146929 ], [ -122.41684556007387, 37.80428685451822 ], [ -122.41750538349156, 37.8042020849539 ], [ -122.41833150386815, 37.804087645887726 ] ] }, "properties": { "class": "street", "len": 1137.9072314716573, "name": "Francisco St", "name_de": "Francisco St", "name_en": "Francisco St", "name_es": "Francisco St", "name_fr": "Francisco St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4150002002716, 37.80457507030913 ], [ -122.41506457328796, 37.80485056964608 ], [ -122.41512894630434, 37.805248982254014 ] ] }, "properties": { "class": "street_limited", "len": 96.41339793780074, "name": "Taylor St", "name_de": "Taylor St", "name_en": "Taylor St", "name_es": "Taylor St", "name_fr": "Taylor St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40738272666931, 37.80734273233311 ], [ -122.40754902362823, 37.80734697063339 ], [ -122.4089115858078, 37.807168961812216 ], [ -122.41051018238068, 37.80696552263401 ], [ -122.41214632987976, 37.80675784456153 ], [ -122.41378784179688, 37.80655440425074 ], [ -122.4149090051651, 37.806410300358195 ], [ -122.415434718132, 37.806342486664384 ], [ -122.41708159446715, 37.80613904520936 ], [ -122.4183851480484, 37.80597374861448 ], [ -122.41874456405638, 37.80592288804931 ], [ -122.42037534713744, 37.805715207044685 ], [ -122.42201149463652, 37.80549481023774 ], [ -122.42365837097167, 37.80528712802926 ], [ -122.424259185791, 37.80521507488168 ], [ -122.424618601799, 37.80516845221932 ], [ -122.42520332336424, 37.805096398955996 ] ] }, "properties": { "class": "main", "len": 2009.4041363469214, "name": "N Pt St", "name_de": "N Pt St", "name_en": "N Pt St", "name_es": "N Pt St", "name_fr": "N Pt St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.80489719250912 ], [ -122.40476489067078, 37.804820900536086 ], [ -122.40517795085907, 37.80476580072879 ] ] }, "properties": { "class": "street", "len": 197.14333108653207, "name": "Chestnut St", "name_de": "Chestnut St", "name_en": "Chestnut St", "name_es": "Chestnut St", "name_fr": "Chestnut St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41688847541809, 37.80521507488171 ], [ -122.41722643375397, 37.805172690644405 ] ] }, "properties": { "class": "main", "len": 38.091271965153105, "name": "Bay St", "name_de": "Bay St", "name_en": "Bay St", "name_es": "Bay St", "name_fr": "Bay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.80204890539802 ], [ -122.40426063537598, 37.80204042818909 ], [ -122.4045717716217, 37.801989564915125 ] ] }, "properties": { "class": "path", "len": 153.5020236071965, "name": "Filbert Steps", "name_de": "Filbert Steps", "name_en": "Filbert Steps", "name_es": "Filbert Steps", "name_fr": "Filbert Steps", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40525305271149, 37.788878388084036 ], [ -122.40528523921967, 37.78901828682906 ], [ -122.40531206130981, 37.78916242465299 ], [ -122.405344247818, 37.789315040865986 ], [ -122.40540862083435, 37.7896245116636 ] ] }, "properties": { "class": "street", "len": 106.24563811613788, "name": "Grant Ave", "name_de": "Grant Ave", "name_en": "Grant Ave", "name_es": "Grant Ave", "name_fr": "Grant Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40485608577728, 37.78683922782627 ], [ -122.40497410297394, 37.787420033880174 ], [ -122.40504920482635, 37.78776766743669 ] ] }, "properties": { "class": "street", "len": 132.8615561455913, "name": "Grant Ave", "name_de": "Grant Ave", "name_en": "Grant Ave", "name_es": "Grant Ave", "name_fr": "Grant Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40504920482635, 37.78776766743669 ], [ -122.40513503551483, 37.788242481359454 ], [ -122.40522623062134, 37.78869609538249 ] ] }, "properties": { "class": "street", "len": 132.08571808793954, "name": "Grant Ave", "name_de": "Grant Ave", "name_en": "Grant Ave", "name_es": "Grant Ave", "name_fr": "Grant Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41192638874054, 37.797271843974116 ], [ -122.41195321083069, 37.79726760509566 ], [ -122.41301000118254, 37.79711500530889 ], [ -122.41346061229706, 37.797047183080274 ], [ -122.41355180740355, 37.797034466405464 ], [ -122.41366446018218, 37.79701751083568 ], [ -122.4144798517227, 37.79690306063769 ] ] }, "properties": { "class": "street", "len": 288.5829992169997, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41453886032104, 37.796890343938095 ], [ -122.41463005542755, 37.796877627236306 ], [ -122.41520404815674, 37.796805565884775 ], [ -122.41685092449188, 37.796602098159795 ], [ -122.41721034049988, 37.796559708979885 ] ] }, "properties": { "class": "street", "len": 301.33845822277254, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41533815860748, 37.79746259325332 ], [ -122.41526305675507, 37.79749650418472 ], [ -122.415252327919, 37.79752617623693 ], [ -122.4152898788452, 37.79770420829989 ], [ -122.41528451442719, 37.7977381191204 ], [ -122.4152684211731, 37.79778474647316 ], [ -122.41530060768127, 37.79781865725668 ], [ -122.4153220653534, 37.79785680686953 ], [ -122.41535425186157, 37.798013643959806 ], [ -122.41537570953369, 37.79804331580431 ], [ -122.41546154022218, 37.79806450997163 ] ] }, "properties": { "class": "street", "len": 100.08111124573138, "name": "Jones St", "name_de": "Jones St", "name_en": "Jones St", "name_es": "Jones St", "name_fr": "Jones St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4089115858078, 37.807168961812216 ], [ -122.40908861160278, 37.80800814249806 ], [ -122.40911543369293, 37.808135290254896 ] ] }, "properties": { "class": "street", "len": 138.3658536819864, "name": "Grant Ave", "name_de": "Grant Ave", "name_en": "Grant Ave", "name_es": "Grant Ave", "name_fr": "Grant Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40976452827454, 37.803239943579534 ], [ -122.40985572338104, 37.80371041956209 ], [ -122.40995228290558, 37.804176654065614 ], [ -122.41004884243013, 37.80463864717042 ], [ -122.41014003753662, 37.805104875814145 ], [ -122.41027414798737, 37.80575759097065 ], [ -122.41032779216766, 37.80603308589625 ], [ -122.41051018238068, 37.80696552263401 ], [ -122.41068184375763, 37.80782589699816 ], [ -122.41071403026581, 37.80790642413496 ] ] }, "properties": { "class": "street", "len": 666.4099969114848, "name": "Stockton St", "name_de": "Stockton St", "name_en": "Stockton St", "name_es": "Stockton St", "name_fr": "Stockton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43139922618866, 37.784494759909215 ], [ -122.43127584457397, 37.784511718352896 ], [ -122.43112564086914, 37.78453291640197 ], [ -122.43025124073029, 37.78461346893308 ], [ -122.43005812168121, 37.784630427349505 ], [ -122.42980599403381, 37.78465586496683 ], [ -122.4296450614929, 37.78467282337351 ], [ -122.42900133132935, 37.78475337575214 ], [ -122.42874383926392, 37.784787292516874 ], [ -122.42797136306763, 37.7848848031288 ] ] }, "properties": { "class": "main", "len": 385.5448650964588, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43541181087494, 37.783930889442026 ], [ -122.43455350399017, 37.78408775609415 ] ] }, "properties": { "class": "main", "len": 98.14221619599421, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4371337890625, 37.80434619315537 ], [ -122.43712842464447, 37.804341954682855 ], [ -122.43697822093964, 37.80359174121851 ], [ -122.43680119514465, 37.80276522603697 ], [ -122.4364686012268, 37.801048588029104 ], [ -122.4363774061203, 37.80089599605311 ], [ -122.4362701177597, 37.80081546127204 ] ] }, "properties": { "class": "street", "len": 785.0619269658225, "name": "Fillmore St", "name_de": "Fillmore St", "name_en": "Fillmore St", "name_es": "Fillmore St", "name_fr": "Fillmore St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4354600906372, 37.78410047499729 ], [ -122.4371337890625, 37.78388849299241 ] ] }, "properties": { "class": "main", "len": 272.08101361789215, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43019223213196, 37.78476609454075 ], [ -122.4305248260498, 37.784787292516874 ], [ -122.43117392063141, 37.78474065696133 ] ] }, "properties": { "class": "street", "len": 109.66823627003009, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43181228637695, 37.78723349812689 ], [ -122.43182301521301, 37.7871275116937 ], [ -122.43164062500001, 37.78629657278981 ] ] }, "properties": { "class": "main", "len": 133.6726327077986, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4362701177597, 37.80081546127204 ], [ -122.43622183799744, 37.800722210363176 ], [ -122.43607699871063, 37.79997196013091 ], [ -122.43606090545656, 37.79989566307024 ] ] }, "properties": { "class": "street", "len": 132.03542316140036, "name": "Fillmore St", "name_de": "Fillmore St", "name_en": "Fillmore St", "name_es": "Fillmore St", "name_fr": "Fillmore St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4325579404831, 37.790921731314675 ], [ -122.43308365345001, 37.79085390340043 ], [ -122.43377029895782, 37.79076063991673 ], [ -122.43419945240021, 37.790714008130706 ], [ -122.43584632873535, 37.79050204509613 ], [ -122.4371337890625, 37.790340952783204 ] ] }, "properties": { "class": "street", "len": 2761.88945843328, "name": "Clay St", "name_de": "Clay St", "name_en": "Clay St", "name_es": "Clay St", "name_fr": "Clay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4325579404831, 37.790921731314675 ], [ -122.43238091468811, 37.79004420286635 ], [ -122.43219316005707, 37.78911579185835 ] ] }, "properties": { "class": "street", "len": 257.4858164562641, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43308365345001, 37.7935584932212 ], [ -122.43473052978516, 37.79335077745011 ], [ -122.4363774061203, 37.79313882197963 ], [ -122.4371337890625, 37.79304132225904 ] ] }, "properties": { "class": "street", "len": 1834.1338993408526, "name": "Pacific Ave", "name_de": "Pacific Ave", "name_en": "Pacific Ave", "name_es": "Pacific Ave", "name_fr": "Pacific Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42959678173065, 37.80682141954372 ], [ -122.42955923080444, 37.8069146627519 ], [ -122.42952167987823, 37.806990952561925 ], [ -122.42943584918976, 37.80715200856877 ], [ -122.42933392524719, 37.80728339610364 ], [ -122.42923736572266, 37.807389353622796 ], [ -122.42910861968994, 37.807491072698134 ], [ -122.42843270301819, 37.808003904235726 ], [ -122.42837369441986, 37.80804204858794 ], [ -122.42830395698547, 37.80807595466228 ], [ -122.4282342195511, 37.80809714595084 ], [ -122.42815375328065, 37.80810986072104 ], [ -122.42806792259218, 37.80810986072104 ], [ -122.42734909057619, 37.808067478145155 ], [ -122.427134513855, 37.808050525108015 ], [ -122.4270272254944, 37.80804628684809 ], [ -122.42691993713379, 37.808050525108015 ], [ -122.4268126487732, 37.80806323988622 ], [ -122.42660880088808, 37.8081140989773 ] ] }, "properties": { "class": "service", "len": 422.9586987212778, "name": "McDowell Rd SW", "name_de": "McDowell Rd SW", "name_en": "McDowell Rd SW", "name_es": "McDowell Rd SW", "name_fr": "McDowell Rd SW", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41963505744934, 37.80199804212988 ], [ -122.41971552371977, 37.80198532630738 ], [ -122.4202251434326, 37.80192174716204 ] ] }, "properties": { "class": "street", "len": 66.71509629283327, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41993010044098, 37.78683074887198 ], [ -122.42002129554749, 37.78728013210937 ], [ -122.42011785507202, 37.787759188588936 ], [ -122.42021441459656, 37.788225523771885 ], [ -122.4203109741211, 37.78870033475276 ], [ -122.4204021692276, 37.78916666399651 ], [ -122.4204933643341, 37.789620272346355 ], [ -122.42069184780121, 37.79057835185864 ] ] }, "properties": { "class": "street", "len": 534.7932167900761, "name": "Polk St", "name_de": "Polk St", "name_en": "Polk St", "name_es": "Polk St", "name_fr": "Polk St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4065887928009, 37.80364684190173 ], [ -122.40765631198883, 37.80350697085634 ], [ -122.40782260894775, 37.80348577825057 ], [ -122.40816593170166, 37.80344339302085 ] ] }, "properties": { "class": "street", "len": 177.51311341677967, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4065887928009, 37.80364684190173 ], [ -122.40665853023529, 37.80393929868616 ], [ -122.40667998790741, 37.80404102251361 ] ] }, "properties": { "class": "street", "len": 55.86123294875488, "name": "Kearny St", "name_de": "Kearny St", "name_en": "Kearny St", "name_es": "Kearny St", "name_fr": "Kearny St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40499019622803, 37.8038333362169 ], [ -122.40517795085907, 37.80476580072879 ], [ -122.40524232387543, 37.805100637385195 ], [ -122.40534961223602, 37.80561772392276 ], [ -122.40537643432617, 37.80567282309445 ] ] }, "properties": { "class": "street", "len": 263.17872333876244, "name": "Montgomery St", "name_de": "Montgomery St", "name_en": "Montgomery St", "name_es": "Montgomery St", "name_fr": "Montgomery St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4063903093338, 37.804553878009884 ], [ -122.40667462348938, 37.804515731855865 ], [ -122.40671753883363, 37.8044945395396 ], [ -122.40676581859589, 37.8044394394888 ] ] }, "properties": { "class": "service", "len": 47.0867564088635, "name": "Chestnut St", "name_de": "Chestnut St", "name_en": "Chestnut St", "name_es": "Chestnut St", "name_fr": "Chestnut St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42565929889679, 37.80650354408551 ], [ -122.42561638355255, 37.80624924273377 ], [ -122.42554664611816, 37.80593136481263 ], [ -122.4255681037903, 37.80583388197601 ], [ -122.42547154426575, 37.80537613476155 ], [ -122.42541253566743, 37.80515573694268 ], [ -122.42536962032318, 37.805075206806336 ] ] }, "properties": { "class": "street", "len": 205.50846326299737, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40468442440033, 37.79911149426818 ], [ -122.40463614463808, 37.79915812075405 ], [ -122.40459859371187, 37.79917083706328 ], [ -122.40457177162172, 37.79917507583252 ], [ -122.40450203418733, 37.79914540444266 ], [ -122.40442693233491, 37.79917083706328 ], [ -122.40423381328587, 37.79910301672214 ], [ -122.40418016910557, 37.799124210585425 ] ] }, "properties": { "class": "path", "len": 79.03789381238825, "name": "Vallejo St Stairway", "name_de": "Vallejo St Stairway", "name_en": "Vallejo St Stairway", "name_es": "Vallejo St Stairway", "name_fr": "Vallejo St Stairway", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41173326969147, 37.79629689552161 ], [ -122.41176009178162, 37.79628841765255 ], [ -122.41254329681396, 37.79619516102869 ], [ -122.41281688213348, 37.79616124949991 ], [ -122.41336941719057, 37.796084948503236 ], [ -122.41424381732942, 37.79597897476603 ], [ -122.41501629352571, 37.79588995670932 ], [ -122.41666316986085, 37.79567800852345 ], [ -122.41700112819673, 37.79563561881331 ], [ -122.418310046196, 37.79547877667427 ], [ -122.4191200733185, 37.795360085104505 ], [ -122.4198228120804, 37.79527106630204 ], [ -122.41994082927705, 37.79524139334406 ], [ -122.4215877056122, 37.795029443297494 ] ] }, "properties": { "class": "street", "len": 1111.4952360344857, "name": "Pacific Ave", "name_de": "Pacific Ave", "name_en": "Pacific Ave", "name_es": "Pacific Ave", "name_fr": "Pacific Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41173326969147, 37.79629689552161 ], [ -122.41171717643739, 37.79629689552161 ], [ -122.4109071493149, 37.79639862987445 ], [ -122.41052627563478, 37.79644949699833 ], [ -122.4100971221924, 37.79650036408717 ] ] }, "properties": { "class": "street", "len": 184.5252029702847, "name": "Pacific Ave", "name_de": "Pacific Ave", "name_en": "Pacific Ave", "name_es": "Pacific Ave", "name_fr": "Pacific Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41009712219238, 37.79650036408717 ], [ -122.41016685962677, 37.79692001623378 ], [ -122.41022050380707, 37.79721249965347 ], [ -122.41025805473328, 37.79741596569723 ] ] }, "properties": { "class": "street", "len": 130.10096884827317, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41025805473328, 37.79741596569721 ], [ -122.41045653820038, 37.79837394412226 ], [ -122.41064965724944, 37.799314955081435 ], [ -122.41084277629851, 37.800251715345794 ] ] }, "properties": { "class": "street", "len": 405.18576569782863, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40787088871002, 37.78549954098075 ], [ -122.40805327892303, 37.7864322369225 ], [ -122.40823566913605, 37.78737339998601 ] ] }, "properties": { "class": "street", "len": 267.55082448304705, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42283761501312, 37.78454139561992 ], [ -122.42126047611238, 37.78474913615547 ], [ -122.42112100124359, 37.78476609454075 ] ] }, "properties": { "class": "main", "len": 194.0819786769891, "name": "O'Farrell St", "name_de": "O'Farrell St", "name_en": "O'Farrell St", "name_es": "O'Farrell St", "name_fr": "O'Farrell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42289662361145, 37.800603527218016 ], [ -122.42327749729156, 37.800955337414564 ], [ -122.42340624332428, 37.801023156054995 ] ] }, "properties": { "class": "street", "len": 82.49214824736018, "name": "Grenard Ter", "name_de": "Grenard Ter", "name_en": "Grenard Ter", "name_es": "Grenard Ter", "name_fr": "Grenard Ter", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42149651050568, 37.78663149316584 ], [ -122.41993010044098, 37.78683074887198 ], [ -122.41827249526978, 37.787042722437654 ], [ -122.41699039936066, 37.78720382194092 ], [ -122.4166417121887, 37.787250455942115 ], [ -122.41500020027159, 37.78745818886262 ], [ -122.41335868835449, 37.787665921199185 ], [ -122.41272568702698, 37.787746470315426 ], [ -122.41254329681396, 37.78776766743669 ], [ -122.4123340845108, 37.78779310397418 ], [ -122.41170108318329, 37.787873652951795 ], [ -122.41007566452026, 37.78808138412046 ], [ -122.40844488143921, 37.78828911470517 ], [ -122.40841805934907, 37.78829335409877 ], [ -122.40839660167696, 37.78829335409877 ], [ -122.4083322286606, 37.78830183288525 ], [ -122.40776360034944, 37.78837390253111 ], [ -122.40770459175111, 37.78838238130836 ], [ -122.40752220153813, 37.78840781763425 ], [ -122.40743100643162, 37.788416296407604 ], [ -122.40677118301393, 37.78850108408762 ] ] }, "properties": { "class": "street", "len": 1659.7996155951957, "name": "Post St", "name_de": "Post St", "name_en": "Post St", "name_es": "Post St", "name_fr": "Post St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41809010505676, 37.78610155516276 ], [ -122.41818130016327, 37.78656790080614 ], [ -122.41827249526978, 37.787042722437654 ], [ -122.41836905479431, 37.787487864946456 ], [ -122.41846561431885, 37.78796692007934 ], [ -122.41856217384338, 37.78843325395144 ], [ -122.41865873336793, 37.78891230295566 ], [ -122.41875529289247, 37.78937863086172 ], [ -122.41884648799898, 37.78983223791039 ], [ -122.4190664291382, 37.79078183617337 ], [ -122.41907179355621, 37.7907987931743 ] ] }, "properties": { "class": "street", "len": 670.4535563453252, "name": "Larkin St", "name_de": "Larkin St", "name_en": "Larkin St", "name_es": "Larkin St", "name_fr": "Larkin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40580022335052, 37.791778053376625 ], [ -122.40634739398956, 37.79171022624846 ] ] }, "properties": { "class": "street", "len": 61.44369210900245, "name": "Vinton Ct", "name_de": "Vinton Ct", "name_en": "Vinton Ct", "name_es": "Vinton Ct", "name_fr": "Vinton Ct", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41789162158966, 37.801718293529156 ], [ -122.4185299873352, 37.801633521016726 ] ] }, "properties": { "class": "street", "len": 72.06703823484058, "name": "Lurmont Ter", "name_de": "Lurmont Ter", "name_en": "Lurmont Ter", "name_es": "Lurmont Ter", "name_fr": "Lurmont Ter", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42246747016907, 37.80409612286167 ], [ -122.42253720760345, 37.804473347217254 ] ] }, "properties": { "class": "street_limited", "len": 53.971308117745814, "name": "N View Ct", "name_de": "N View Ct", "name_en": "N View Ct", "name_es": "N View Ct", "name_fr": "N View Ct", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42002665996552, 37.79877239166739 ], [ -122.42063820362091, 37.798696093367674 ] ] }, "properties": { "class": "street", "len": 69.02487957363917, "name": "Rockland St", "name_de": "Rockland St", "name_en": "Rockland St", "name_es": "Rockland St", "name_fr": "Rockland St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40671753883362, 37.79236305977244 ], [ -122.40681946277617, 37.79284208329947 ] ] }, "properties": { "class": "street", "len": 68.70235221567258, "name": "Sabin Pl", "name_de": "Sabin Pl", "name_en": "Sabin Pl", "name_es": "Sabin Pl", "name_fr": "Sabin Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41568148136139, 37.79914540444266 ], [ -122.41468906402588, 37.799276806221656 ] ] }, "properties": { "class": "street", "len": 111.81284586290512, "name": "Macondray Ln", "name_de": "Macondray Ln", "name_en": "Macondray Ln", "name_es": "Macondray Ln", "name_fr": "Macondray Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41337478160858, 37.80440977021365 ], [ -122.4150002002716, 37.80420632343443 ], [ -122.4150162935257, 37.80420632343443 ] ] }, "properties": { "class": "service", "len": 185.1203877367229, "name": "Water St", "name_de": "Water St", "name_en": "Water St", "name_es": "Water St", "name_fr": "Water St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43333578109741, 37.80306616340459 ], [ -122.43352890014648, 37.804032545533346 ], [ -122.43356645107268, 37.8042105619147 ], [ -122.43365764617919, 37.8046640778996 ], [ -122.43371129035948, 37.804922623149274 ], [ -122.43373811244963, 37.804986199711365 ], [ -122.43378639221187, 37.80504129935424 ] ] }, "properties": { "class": "street", "len": 284.20874152874563, "name": "Buchanan St", "name_de": "Buchanan St", "name_en": "Buchanan St", "name_es": "Buchanan St", "name_fr": "Buchanan St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40809082984924, 37.803100071763524 ], [ -122.40889012813567, 37.80298986954011 ] ] }, "properties": { "class": "service", "len": 90.41847709297545, "name": "Edgardo Pl", "name_de": "Edgardo Pl", "name_en": "Edgardo Pl", "name_es": "Edgardo Pl", "name_fr": "Edgardo Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43208587169647, 37.805185405918145 ], [ -122.4321448802948, 37.80520235961308 ], [ -122.43220925331116, 37.80520235961308 ], [ -122.43273496627806, 37.80513878323706 ], [ -122.43359863758086, 37.805028584055684 ], [ -122.43369519710541, 37.805028584055684 ], [ -122.4337863922119, 37.80504129935424 ], [ -122.43387222290039, 37.805075206806336 ], [ -122.43394732475281, 37.805113352671334 ], [ -122.43549764156342, 37.80609666150237 ], [ -122.43593215942381, 37.8063721551631 ], [ -122.4360018968582, 37.806410300358195 ], [ -122.43608236312865, 37.80644844553362 ] ] }, "properties": { "class": "main", "len": 515.8117501844065, "name": "Marina Blvd", "name_de": "Marina Blvd", "name_en": "Marina Blvd", "name_es": "Marina Blvd", "name_fr": "Marina Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4082088470459, 37.80207009841604 ], [ -122.40823030471802, 37.80218030201182 ], [ -122.40828931331635, 37.80246852602342 ] ] }, "properties": { "class": "service", "len": 56.65936077227183, "name": "Kramer Pl", "name_de": "Kramer Pl", "name_en": "Kramer Pl", "name_es": "Kramer Pl", "name_fr": "Kramer Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4160248041153, 37.790692811854626 ], [ -122.4161159992218, 37.79115065006551 ], [ -122.4161159992218, 37.79116336775309 ] ] }, "properties": { "class": "street", "len": 66.88687589334053, "name": "Helen Pl", "name_de": "Helen Pl", "name_en": "Helen Pl", "name_es": "Helen Pl", "name_fr": "Helen Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.79268947437134 ], [ -122.40444302558899, 37.79265556123338 ], [ -122.40566074848175, 37.79249871276787 ], [ -122.40594506263733, 37.792460560388086 ] ] }, "properties": { "class": "street", "len": 1081.7516735653962, "name": "California St", "name_de": "California St", "name_en": "California St", "name_es": "California St", "name_fr": "California St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41417407989502, 37.795618662922415 ], [ -122.4142438173294, 37.79597897476603 ] ] }, "properties": { "class": "path", "len": 51.62398376794005, "name": "Phoenix Ter", "name_de": "Phoenix Ter", "name_en": "Phoenix Ter", "name_es": "Phoenix Ter", "name_fr": "Phoenix Ter", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41897523403168, 37.79874272011575 ], [ -122.41998910903932, 37.798598600981116 ] ] }, "properties": { "class": "street", "len": 114.79721686527758, "name": "Russell St", "name_de": "Russell St", "name_en": "Russell St", "name_es": "Russell St", "name_fr": "Russell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43378639221191, 37.80504129935424 ], [ -122.43386149406433, 37.80499467658216 ], [ -122.43393659591676, 37.80496076909309 ], [ -122.43402242660524, 37.804931100027375 ], [ -122.43536353111269, 37.80476156228035 ], [ -122.43701577186584, 37.804553878009884 ], [ -122.43713378906251, 37.80453268570453 ] ] }, "properties": { "class": "street", "len": 385.39758175987913, "name": "Beach St", "name_de": "Beach St", "name_en": "Beach St", "name_es": "Beach St", "name_fr": "Beach St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41100907325745, 37.795093028375305 ], [ -122.41108417510986, 37.79547029871132 ] ] }, "properties": { "class": "street", "len": 53.50308869518279, "name": "Doric Alley", "name_de": "Doric Alley", "name_en": "Doric Alley", "name_es": "Doric Alley", "name_fr": "Doric Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40743637084961, 37.80257872902474 ], [ -122.40750074386597, 37.802888144264855 ] ] }, "properties": { "class": "street", "len": 44.440342033854215, "name": "Child St", "name_de": "Child St", "name_en": "Child St", "name_es": "Child St", "name_fr": "Child St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41387367248535, 37.80270588612963 ], [ -122.41368055343628, 37.801790350088226 ] ] }, "properties": { "class": "street", "len": 130.50833613184966, "name": "Jansen St", "name_de": "Jansen St", "name_en": "Jansen St", "name_es": "Jansen St", "name_fr": "Jansen St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42828786373138, 37.80700790584237 ], [ -122.42810010910034, 37.80644844553362 ], [ -122.42806792259216, 37.8063891085856 ], [ -122.42777824401855, 37.80601613239205 ], [ -122.42770850658417, 37.805910172902585 ], [ -122.42761194705963, 37.80579149809386 ], [ -122.42755830287933, 37.80573639901071 ], [ -122.427499294281, 37.805689776677475 ], [ -122.42723643779755, 37.80551600226697 ], [ -122.42712914943695, 37.80543123411352 ], [ -122.42689311504364, 37.80544818775199 ], [ -122.42672145366669, 37.80546937979462 ], [ -122.42648541927338, 37.80551176386163 ], [ -122.42632985115051, 37.80552871748163 ], [ -122.42621183395386, 37.80551600226699 ], [ -122.42610991001129, 37.80546514138659 ], [ -122.42592215538025, 37.80530408170084 ], [ -122.42583632469176, 37.80520235961308 ], [ -122.42576122283934, 37.805087922096874 ], [ -122.42569684982298, 37.80493957690451 ], [ -122.42565393447875, 37.80481242364534 ], [ -122.4255734682083, 37.80453268570453 ], [ -122.42573976516722, 37.804312285368546 ], [ -122.42616355419158, 37.80425294670417 ], [ -122.42657661437987, 37.80421480039474 ], [ -122.42666244506835, 37.80435043162762 ], [ -122.4268341064453, 37.80506672994478 ], [ -122.42680728435516, 37.805164213794036 ] ] }, "properties": { "class": "street", "len": 797.129180519644, "name": "Pope Rd", "name_de": "Pope Rd", "name_en": "Pope Rd", "name_es": "Pope Rd", "name_fr": "Pope Rd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41502702236176, 37.791799249341395 ], [ -122.41505920886993, 37.79193914255643 ], [ -122.41511821746826, 37.792235884863004 ], [ -122.41512358188628, 37.79229523318131 ], [ -122.41521477699278, 37.79274458318729 ] ] }, "properties": { "class": "street", "len": 134.59077525889847, "name": "Leroy Pl", "name_de": "Leroy Pl", "name_en": "Leroy Pl", "name_es": "Leroy Pl", "name_fr": "Leroy Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40468442440033, 37.79911149426818 ], [ -122.40565538406372, 37.79898433097531 ] ] }, "properties": { "class": "street", "len": 109.59860218135036, "name": "Vallejo St", "name_de": "Vallejo St", "name_en": "Vallejo St", "name_es": "Vallejo St", "name_fr": "Vallejo St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41441011428833, 37.79789071761994 ], [ -122.41482853889465, 37.797831373796456 ], [ -122.41508603096008, 37.79780170186684 ], [ -122.41526842117308, 37.797784746473134 ] ] }, "properties": { "class": "street", "len": 96.93284389228506, "name": "Vallejo St", "name_de": "Vallejo St", "name_en": "Vallejo St", "name_es": "Vallejo St", "name_fr": "Vallejo St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40541398525238, 37.79962862273726 ], [ -122.40547835826874, 37.79996348268362 ] ] }, "properties": { "class": "path", "len": 48.002705132066666, "name": "Reno Pl", "name_de": "Reno Pl", "name_en": "Reno Pl", "name_es": "Reno Pl", "name_fr": "Reno Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43122220039368, 37.80098500807743 ], [ -122.43286371231079, 37.80077307450988 ], [ -122.43451058864594, 37.80056114033426 ] ] }, "properties": { "class": "street", "len": 371.7554022852868, "name": "Magnolia St", "name_de": "Magnolia St", "name_en": "Magnolia St", "name_es": "Magnolia St", "name_fr": "Magnolia St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41185665130615, 37.799806649733185 ], [ -122.41239309310913, 37.799721875026755 ], [ -122.41241991519928, 37.79971763628886 ] ] }, "properties": { "class": "service", "len": 64.17554773211342, "name": "Winter Pl", "name_de": "Winter Pl", "name_en": "Winter Pl", "name_es": "Winter Pl", "name_fr": "Winter Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40636885166168, 37.800794267894 ], [ -122.4065512418747, 37.80175220250688 ] ] }, "properties": { "class": "service", "len": 136.59835467473067, "name": "Genoa Pl", "name_de": "Genoa Pl", "name_en": "Genoa Pl", "name_es": "Genoa Pl", "name_fr": "Genoa Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41989254951477, 37.79812809243717 ], [ -122.41998910903932, 37.798598600981116 ], [ -122.42002665996552, 37.79877239166739 ], [ -122.42008566856384, 37.799064867752875 ], [ -122.42014467716217, 37.79935310392155 ] ] }, "properties": { "class": "street", "len": 174.46837028767197, "name": "Eastman Pl", "name_de": "Eastman Pl", "name_en": "Eastman Pl", "name_es": "Eastman Pl", "name_fr": "Eastman Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42183446884155, 37.80354935604959 ], [ -122.42193102836609, 37.803557833085314 ], [ -122.42217242717743, 37.80355359456757 ], [ -122.4224352836609, 37.80354087901289 ] ] }, "properties": { "class": "street", "len": 67.40971332002576, "name": "Francisco St", "name_de": "Francisco St", "name_en": "Francisco St", "name_es": "Francisco St", "name_fr": "Francisco St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42001593112946, 37.80388843671987 ], [ -122.41856217384338, 37.80407916891281 ], [ -122.41849780082703, 37.8040706919369 ], [ -122.41845488548279, 37.80405373798221 ] ] }, "properties": { "class": "street", "len": 176.51621827234703, "name": "Francisco St", "name_de": "Francisco St", "name_en": "Francisco St", "name_es": "Francisco St", "name_fr": "Francisco St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40691065788269, 37.80296867678598 ], [ -122.40750074386597, 37.802888144264855 ] ] }, "properties": { "class": "service", "len": 66.72982616574079, "name": "Telegraph Pl", "name_de": "Telegraph Pl", "name_en": "Telegraph Pl", "name_es": "Telegraph Pl", "name_fr": "Telegraph Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41010785102844, 37.801862406576994 ], [ -122.41053700447083, 37.80181578179817 ], [ -122.41060674190521, 37.802171824817975 ] ] }, "properties": { "class": "service", "len": 99.27942201758228, "name": "Brant Alley", "name_de": "Brant Alley", "name_en": "Brant Alley", "name_es": "Brant Alley", "name_fr": "Brant Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40426063537598, 37.80204042818909 ], [ -122.40430355072021, 37.80228626685273 ], [ -122.40440011024475, 37.80265926188326 ] ] }, "properties": { "class": "path", "len": 88.4763645184286, "name": "Darrell Pl", "name_de": "Darrell Pl", "name_en": "Darrell Pl", "name_es": "Darrell Pl", "name_fr": "Darrell Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41000592708588, 37.79605527587214 ], [ -122.41162061691284, 37.79583908920016 ], [ -122.41163671016692, 37.79583908920016 ] ] }, "properties": { "class": "street", "len": 184.2639063803854, "name": "John St", "name_de": "John St", "name_en": "John St", "name_es": "John St", "name_fr": "John St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40630984306335, 37.79756856486228 ], [ -122.40694820880891, 37.79748378758728 ] ] }, "properties": { "class": "street_limited", "len": 72.03799344842889, "name": "Jack Kerouac Alley", "name_de": "Jack Kerouac Alley", "name_en": "Jack Kerouac Alley", "name_es": "Jack Kerouac Alley", "name_fr": "Jack Kerouac Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41903424263, 37.80279489597278 ], [ -122.41892158985138, 37.802269312488406 ], [ -122.41892158985138, 37.802239642341455 ], [ -122.41892695426941, 37.802214210777436 ], [ -122.41894841194153, 37.80218877920469 ], [ -122.41896986961365, 37.802171824817975 ], [ -122.41899669170378, 37.802159109025396 ], [ -122.41900205612181, 37.80214639323063 ], [ -122.41900742053984, 37.80213367743367 ] ] }, "properties": { "class": "street", "len": 97.88653388819017, "name": "Montclair Ter", "name_de": "Montclair Ter", "name_en": "Montclair Ter", "name_es": "Montclair Ter", "name_fr": "Montclair Ter", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41190493106842, 37.79263436551425 ], [ -122.41181910037994, 37.792210449854856 ], [ -122.41171717643738, 37.79172294383976 ] ] }, "properties": { "class": "street", "len": 130.07598720782354, "name": "Cushman St", "name_de": "Cushman St", "name_en": "Cushman St", "name_es": "Cushman St", "name_fr": "Cushman St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40644931793213, 37.79888260018339 ], [ -122.40654587745667, 37.79932767136367 ] ] }, "properties": { "class": "service", "len": 63.568313647284086, "name": "Pollard Pl", "name_de": "Pollard Pl", "name_en": "Pollard Pl", "name_es": "Pollard Pl", "name_fr": "Pollard Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40459859371185, 37.79766181975238 ], [ -122.40469515323639, 37.79811537594843 ] ] }, "properties": { "class": "service", "len": 65.06627390580476, "name": "Rowland St", "name_de": "Rowland St", "name_en": "Rowland St", "name_es": "Rowland St", "name_fr": "Rowland St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41530060768127, 37.79728879948555 ], [ -122.41689383983612, 37.79708957198048 ], [ -122.41694211959839, 37.79707261642332 ] ] }, "properties": { "class": "street", "len": 185.5156224954559, "name": "Glover St", "name_de": "Glover St", "name_en": "Glover St", "name_es": "Glover St", "name_fr": "Glover St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41183519363403, 37.79505911634061 ], [ -122.41189956665039, 37.795381280041674 ] ] }, "properties": { "class": "service", "len": 45.97486487176649, "name": "Marcy Pl", "name_de": "Marcy Pl", "name_en": "Marcy Pl", "name_es": "Marcy Pl", "name_fr": "Marcy Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.79605103692387 ], [ -122.40435719490051, 37.79602984217886 ], [ -122.4045878648758, 37.79600016952563 ] ] }, "properties": { "class": "street", "len": 57.186299473279746, "name": "Gibb St", "name_de": "Gibb St", "name_en": "Gibb St", "name_es": "Gibb St", "name_fr": "Gibb St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40965723991394, 37.79847143680532 ], [ -122.40974843502045, 37.798937704379746 ] ] }, "properties": { "class": "service", "len": 66.39165308980479, "name": "Emery Ln", "name_de": "Emery Ln", "name_en": "Emery Ln", "name_es": "Emery Ln", "name_fr": "Emery Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41000592708588, 37.794313047639136 ], [ -122.41008639335631, 37.794707278062184 ] ] }, "properties": { "class": "street", "len": 55.974480792999394, "name": "Codman Pl", "name_de": "Codman Pl", "name_en": "Codman Pl", "name_es": "Codman Pl", "name_fr": "Codman Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4080640077591, 37.791205760029214 ], [ -122.40796744823456, 37.790730965147205 ], [ -122.40787088871002, 37.79029432073233 ] ] }, "properties": { "class": "street", "len": 130.6125469251196, "name": "Dashiell Hammett St", "name_de": "Dashiell Hammett St", "name_en": "Dashiell Hammett St", "name_es": "Dashiell Hammett St", "name_fr": "Dashiell Hammett St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42676973342896, 37.7996922038565 ], [ -122.42685556411743, 37.80010336043956 ] ] }, "properties": { "class": "street", "len": 58.524717001247815, "name": "Imperial Ave", "name_de": "Imperial Ave", "name_en": "Imperial Ave", "name_es": "Imperial Ave", "name_fr": "Imperial Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4203485250473, 37.799030957541454 ], [ -122.42044508457184, 37.79950569908492 ] ] }, "properties": { "class": "street", "len": 67.78662109921467, "name": "Moore Pl", "name_de": "Moore Pl", "name_en": "Moore Pl", "name_es": "Moore Pl", "name_fr": "Moore Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4155580997467, 37.80395201417224 ], [ -122.41566002368927, 37.803913867707394 ], [ -122.41600334644318, 37.80387148272332 ], [ -122.41630375385284, 37.8038630057236 ] ] }, "properties": { "class": "service", "len": 85.27210630659062, "name": "Houston St", "name_de": "Houston St", "name_en": "Houston St", "name_es": "Houston St", "name_fr": "Houston St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40755438804626, 37.79502520429035 ], [ -122.40764021873474, 37.79558899010402 ] ] }, "properties": { "class": "path", "len": 79.80171739993848, "name": "Old Chinatown Ln", "name_de": "Old Chinatown Ln", "name_en": "Old Chinatown Ln", "name_es": "Old Chinatown Ln", "name_fr": "Old Chinatown Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40869700908661, 37.79540247497274 ], [ -122.408766746521, 37.79576278787075 ] ] }, "properties": { "class": "service", "len": 51.374156927156754, "name": "James Pl", "name_de": "James Pl", "name_en": "James Pl", "name_es": "James Pl", "name_fr": "James Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41783261299133, 37.79839937700852 ], [ -122.41792917251588, 37.79886564503779 ] ] }, "properties": { "class": "path", "len": 66.21619514976571, "name": "Hamlin St", "name_de": "Hamlin St", "name_en": "Hamlin St", "name_es": "Hamlin St", "name_fr": "Hamlin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4220597743988, 37.797373576984334 ], [ -122.42317020893096, 37.79724217181975 ] ] }, "properties": { "class": "street", "len": 124.81293402591506, "name": "Bonita St", "name_de": "Bonita St", "name_en": "Bonita St", "name_es": "Bonita St", "name_fr": "Bonita St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41510212421417, 37.79343132036943 ], [ -122.41517186164856, 37.793770447487695 ] ] }, "properties": { "class": "path", "len": 48.397787139902604, "name": "Priest St", "name_de": "Priest St", "name_en": "Priest St", "name_es": "Priest St", "name_fr": "Priest St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41234481334686, 37.79532193420228 ], [ -122.41251647472383, 37.796152771615276 ], [ -122.41254329681396, 37.79619516102869 ] ] }, "properties": { "class": "service", "len": 125.00729047926681, "name": "Auburn St", "name_de": "Auburn St", "name_en": "Auburn St", "name_es": "Auburn St", "name_fr": "Auburn St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41054773330688, 37.79464369265235 ], [ -122.41046726703644, 37.79427065714581 ], [ -122.4103707075119, 37.793808599191095 ], [ -122.41036534309387, 37.7937492520884 ], [ -122.4102795124054, 37.79330838640464 ] ] }, "properties": { "class": "service", "len": 190.7065453498937, "name": "Wetmore St", "name_de": "Wetmore St", "name_en": "Wetmore St", "name_es": "Wetmore St", "name_fr": "Wetmore St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4171245098114, 37.79609342639566 ], [ -122.41717278957367, 37.79634352378406 ] ] }, "properties": { "class": "street", "len": 35.51528403336682, "name": "Cyrus Pl", "name_de": "Cyrus Pl", "name_en": "Cyrus Pl", "name_es": "Cyrus Pl", "name_fr": "Cyrus Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40577340126038, 37.79568224749312 ], [ -122.40586459636688, 37.79613157689948 ] ] }, "properties": { "class": "street", "len": 63.71686511470373, "name": "Cooper Alley", "name_de": "Cooper Alley", "name_en": "Cooper Alley", "name_es": "Cooper Alley", "name_fr": "Cooper Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42229580879211, 37.80259144474508 ], [ -122.4224352836609, 37.80257449045081 ], [ -122.42300927639009, 37.80250243465672 ], [ -122.42309510707857, 37.802489718921066 ], [ -122.42319703102113, 37.80247700318321 ], [ -122.42455422878267, 37.802303221213165 ], [ -122.42467224597932, 37.8022905054432 ] ] }, "properties": { "class": "street", "len": 267.7905322185892, "name": "Chestnut St", "name_de": "Chestnut St", "name_en": "Chestnut St", "name_es": "Chestnut St", "name_fr": "Chestnut St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.801574180200134 ], [ -122.40448594093323, 37.80152755523935 ] ] }, "properties": { "class": "street", "len": 115.31027630198597, "name": "Alta St", "name_de": "Alta St", "name_en": "Alta St", "name_es": "Alta St", "name_fr": "Alta St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40770995616913, 37.799649816449765 ], [ -122.40791916847229, 37.800603527218016 ] ] }, "properties": { "class": "service", "len": 136.54025963021408, "name": "Bannam Pl", "name_de": "Bannam Pl", "name_en": "Bannam Pl", "name_es": "Bannam Pl", "name_fr": "Bannam Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42712914943695, 37.80543123411352 ], [ -122.4273008108139, 37.805935603193895 ], [ -122.4275529384613, 37.80671122287313 ], [ -122.42753148078918, 37.80676208289539 ], [ -122.42752075195312, 37.80681718121327 ], [ -122.42752075195312, 37.80687227949006 ], [ -122.42753684520721, 37.80692737772573 ], [ -122.4275690317154, 37.80697823759909 ], [ -122.42760121822357, 37.80701214416185 ], [ -122.42765486240387, 37.8070333357557 ], [ -122.42770850658417, 37.807071480609274 ], [ -122.42774605751038, 37.80711386375682 ] ] }, "properties": { "class": "street", "len": 253.93221485712456, "name": "Funston Rd", "name_de": "Funston Rd", "name_en": "Funston Rd", "name_es": "Funston Rd", "name_fr": "Funston Rd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4072915315628, 37.79505911634061 ], [ -122.407329082489, 37.79537280206753 ], [ -122.40744173526762, 37.79593234627349 ] ] }, "properties": { "class": "service", "len": 124.00488861903506, "name": "Ross Alley", "name_de": "Ross Alley", "name_en": "Ross Alley", "name_es": "Ross Alley", "name_fr": "Ross Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42770850658417, 37.805910172902585 ], [ -122.4278211593628, 37.80581692842606 ], [ -122.4279123544693, 37.80577878292446 ], [ -122.42864191532135, 37.80565163111018 ] ] }, "properties": { "class": "street", "len": 113.16274315251536, "name": "Schofield Rd", "name_de": "Schofield Rd", "name_en": "Schofield Rd", "name_es": "Schofield Rd", "name_fr": "Schofield Rd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41902351379395, 37.79490227297768 ], [ -122.41912007331848, 37.795360085104505 ] ] }, "properties": { "class": "street", "len": 65.80607038887653, "name": "McCormick St", "name_de": "McCormick St", "name_en": "McCormick St", "name_es": "McCormick St", "name_fr": "McCormick St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40883111953735, 37.79210023138502 ], [ -122.40892231464386, 37.792562300023754 ] ] }, "properties": { "class": "service", "len": 66.23542405709249, "name": "Miles Ct", "name_de": "Miles Ct", "name_en": "Miles Ct", "name_es": "Miles Ct", "name_fr": "Miles Ct", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41649150848389, 37.79952689283269 ], [ -122.41658806800842, 37.79999739246696 ] ] }, "properties": { "class": "street", "len": 67.1215762632869, "name": "Black Pl", "name_de": "Black Pl", "name_en": "Black Pl", "name_es": "Black Pl", "name_fr": "Black Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41243064403534, 37.799764262392124 ], [ -122.41245210170746, 37.79976002365667 ], [ -122.41256475448608, 37.79976002365667 ], [ -122.41301000118256, 37.7996922038565 ] ] }, "properties": { "class": "path", "len": 65.80191823104533, "name": "Webb Pl", "name_de": "Webb Pl", "name_en": "Webb Pl", "name_es": "Webb Pl", "name_fr": "Webb Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43248283863068, 37.798908032894516 ], [ -122.43412971496582, 37.798696093367674 ], [ -122.43577122688293, 37.79848839204139 ], [ -122.4371337890625, 37.79831460068698 ] ] }, "properties": { "class": "street", "len": 556.1986596304383, "name": "Pixley St", "name_de": "Pixley St", "name_en": "Pixley St", "name_es": "Pixley St", "name_fr": "Pixley St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42028415203094, 37.80523626699121 ], [ -122.42078304290771, 37.805172690644405 ] ] }, "properties": { "class": "street", "len": 56.334731738702594, "name": "Bergen Pl", "name_de": "Bergen Pl", "name_en": "Bergen Pl", "name_es": "Bergen Pl", "name_fr": "Bergen Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41833686828613, 37.798640988991096 ], [ -122.41893768310547, 37.79856892935968 ] ] }, "properties": { "class": "street", "len": 67.95594160899057, "name": "Delgado Pl", "name_de": "Delgado Pl", "name_en": "Delgado Pl", "name_es": "Delgado Pl", "name_fr": "Delgado Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.412548661232, 37.80034072814651 ], [ -122.41257011890411, 37.800336489444156 ], [ -122.41312265396118, 37.800251715345794 ] ] }, "properties": { "class": "street", "len": 65.0941469152847, "name": "Kent St", "name_de": "Kent St", "name_en": "Kent St", "name_es": "Kent St", "name_fr": "Kent St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4058324098587, 37.8027440332184 ], [ -122.40584313869476, 37.802777941725196 ], [ -122.40585923194884, 37.80282032733683 ], [ -122.40588605403899, 37.80286695148153 ], [ -122.40591287612914, 37.80290509848712 ], [ -122.40593969821926, 37.8029262912595 ], [ -122.40596115589138, 37.80293476836673 ], [ -122.40599870681758, 37.802939006920006 ], [ -122.40603625774379, 37.80293052981323 ], [ -122.40606307983393, 37.802917814151286 ], [ -122.40607917308802, 37.80290085993192 ], [ -122.4060952663421, 37.802871190038694 ], [ -122.4060952663421, 37.80284999725051 ], [ -122.40608990192408, 37.802816088776765 ], [ -122.40606307983393, 37.802790657411244 ], [ -122.40602016448969, 37.80276946459998 ], [ -122.40597724914545, 37.8027567489103 ], [ -122.40593969821924, 37.80275251034657 ], [ -122.40590751171106, 37.80274827178258 ], [ -122.40586996078487, 37.80274827178258 ] ] }, "properties": { "class": "street", "len": 86.23294703460996, "name": "Telegraph Hill Blvd", "name_de": "Telegraph Hill Blvd", "name_en": "Telegraph Hill Blvd", "name_es": "Telegraph Hill Blvd", "name_fr": "Telegraph Hill Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4062991142273, 37.801786111469056 ], [ -122.40655124187471, 37.80175220250688 ], [ -122.40700185298921, 37.80169710041017 ], [ -122.40748465061189, 37.801633521016726 ], [ -122.40779042243959, 37.80159537335438 ], [ -122.40815520286561, 37.801548748406965 ], [ -122.40857362747197, 37.80149364615848 ], [ -122.40894913673405, 37.801447021146856 ], [ -122.40938365459444, 37.80137920289562 ], [ -122.41014003753664, 37.80128171405037 ], [ -122.4105477333069, 37.80123085025394 ], [ -122.41102516651155, 37.801175747768255 ] ] }, "properties": { "class": "street", "len": 533.1610983328536, "name": "Filbert St", "name_de": "Filbert St", "name_en": "Filbert St", "name_es": "Filbert St", "name_fr": "Filbert St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41275787353516, 37.80143006658992 ], [ -122.41279006004333, 37.80143006658992 ], [ -122.41439938545227, 37.80122661160265 ] ] }, "properties": { "class": "street", "len": 185.27470093271157, "name": "Valparaiso St", "name_de": "Valparaiso St", "name_en": "Valparaiso St", "name_es": "Valparaiso St", "name_fr": "Valparaiso St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4148553609848, 37.80116727045915 ], [ -122.41605699062349, 37.801010440064665 ] ] }, "properties": { "class": "street", "len": 135.58526800389436, "name": "Valparaiso St", "name_de": "Valparaiso St", "name_en": "Valparaiso St", "name_es": "Valparaiso St", "name_fr": "Valparaiso St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40968406200409, 37.796983599684395 ], [ -122.41016685962677, 37.79692001623378 ] ] }, "properties": { "class": "service", "len": 53.878341660583025, "name": "Fisher Alley", "name_de": "Fisher Alley", "name_en": "Fisher Alley", "name_es": "Fisher Alley", "name_fr": "Fisher Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4089115858078, 37.79904791264911 ], [ -122.40974843502046, 37.79893770437972 ] ] }, "properties": { "class": "service", "len": 94.45877936906446, "name": "Card Alley", "name_de": "Card Alley", "name_en": "Card Alley", "name_es": "Card Alley", "name_fr": "Card Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4297684431076, 37.799149643213354 ], [ -122.43082523345947, 37.7990140024299 ] ] }, "properties": { "class": "street", "len": 119.18739866285387, "name": "Harris Pl", "name_de": "Harris Pl", "name_en": "Harris Pl", "name_es": "Harris Pl", "name_fr": "Harris Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40533351898193, 37.791070104659966 ], [ -122.40541398525237, 37.79146435238699 ], [ -122.40544617176056, 37.7915364189484 ], [ -122.4054729938507, 37.7916084854395 ], [ -122.40566074848174, 37.792498712767845 ] ] }, "properties": { "class": "street", "len": 204.3901159191687, "name": "Quincy St", "name_de": "Quincy St", "name_en": "Quincy St", "name_es": "Quincy St", "name_fr": "Quincy St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.79578822165596 ], [ -122.40464687347412, 37.795737354076756 ] ] }, "properties": { "class": "street", "len": 99.14472497850826, "name": "Ils Ln", "name_de": "Ils Ln", "name_en": "Ils Ln", "name_es": "Ils Ln", "name_fr": "Ils Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41416871547699, 37.80841925278804 ], [ -122.41397559642793, 37.807491072698134 ] ] }, "properties": { "class": "street", "len": 132.50103169390346, "name": "Mason St", "name_de": "Mason St", "name_en": "Mason St", "name_es": "Mason St", "name_fr": "Mason St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40893304347992, 37.79486412183907 ], [ -122.40900814533235, 37.79527954428784 ] ] }, "properties": { "class": "service", "len": 59.40607544642352, "name": "Trenton St", "name_de": "Trenton St", "name_en": "Trenton St", "name_es": "Trenton St", "name_fr": "Trenton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43497729301453, 37.80285423580862 ], [ -122.43517041206358, 37.803824859212796 ], [ -122.43536353111266, 37.804761562280376 ], [ -122.43555665016173, 37.805689776677475 ], [ -122.43559956550597, 37.80591441128507 ], [ -122.43556737899779, 37.806024609144636 ], [ -122.4354976415634, 37.80609666150237 ] ] }, "properties": { "class": "street", "len": 465.9465632152965, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43460178375244, 37.80102739471796 ], [ -122.43451058864595, 37.80056114033423 ], [ -122.43444085121156, 37.80018389599704 ], [ -122.4344301223755, 37.80010336043956 ] ] }, "properties": { "class": "street", "len": 131.42676270340561, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4284166097641, 37.80374008911817 ], [ -122.42821276187898, 37.80279489597278 ], [ -122.42802500724794, 37.801862406576994 ], [ -122.42785871028902, 37.801014678728365 ], [ -122.42784261703493, 37.800942621412574 ] ] }, "properties": { "class": "street", "len": 399.27046569905065, "name": "Gough St", "name_de": "Gough St", "name_en": "Gough St", "name_es": "Gough St", "name_fr": "Gough St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40871846675873, 37.79577126580011 ], [ -122.40879893302917, 37.79618244420722 ] ] }, "properties": { "class": "path", "len": 58.5516882757108, "name": "Bedford Pl", "name_de": "Bedford Pl", "name_en": "Bedford Pl", "name_es": "Bedford Pl", "name_fr": "Bedford Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43134021759033, 37.79710652753374 ], [ -122.4314421415329, 37.797606714604264 ] ] }, "properties": { "class": "street", "len": 71.23167834536395, "name": "Charlton Ct", "name_de": "Charlton Ct", "name_en": "Charlton Ct", "name_es": "Charlton Ct", "name_fr": "Charlton Ct", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41912543773651, 37.79948874408232 ], [ -122.42014467716217, 37.79935310392155 ] ] }, "properties": { "class": "street", "len": 115.28500032497456, "name": "Allen St", "name_de": "Allen St", "name_en": "Allen St", "name_es": "Allen St", "name_fr": "Allen St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41422235965729, 37.80030257981648 ], [ -122.41433501243591, 37.800289863702076 ], [ -122.41478562355042, 37.80023052180601 ] ] }, "properties": { "class": "street", "len": 63.63787942642608, "name": "Redfield Alley", "name_de": "Redfield Alley", "name_en": "Redfield Alley", "name_es": "Redfield Alley", "name_fr": "Redfield Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41522550582886, 37.799687965116924 ], [ -122.41532742977142, 37.80016694115013 ] ] }, "properties": { "class": "path", "len": 67.97571625166456, "name": "Marion Pl", "name_de": "Marion Pl", "name_en": "Marion Pl", "name_es": "Marion Pl", "name_fr": "Marion Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40715205669403, 37.80100196273655 ], [ -122.40766167640686, 37.800938382744725 ] ] }, "properties": { "class": "service", "len": 57.776885517755545, "name": "Nobles Alley", "name_de": "Nobles Alley", "name_en": "Nobles Alley", "name_es": "Nobles Alley", "name_fr": "Nobles Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41583168506622, 37.791544897362755 ], [ -122.41630375385284, 37.791489787651976 ] ] }, "properties": { "class": "street", "len": 53.43485753631922, "name": "Acorn Alley", "name_de": "Acorn Alley", "name_en": "Acorn Alley", "name_es": "Acorn Alley", "name_fr": "Acorn Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40836977958679, 37.790892056609856 ], [ -122.40892231464386, 37.79081998941997 ], [ -122.40894377231598, 37.79081998941997 ] ] }, "properties": { "class": "service", "len": 64.51350943910694, "name": "Fella Pl", "name_de": "Fella Pl", "name_en": "Fella Pl", "name_es": "Fella Pl", "name_fr": "Fella Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43186593055725, 37.80424446974821 ], [ -122.43352890014648, 37.804032545533346 ], [ -122.43517041206358, 37.803824859212796 ], [ -122.43680655956267, 37.80361717230819 ], [ -122.43697822093964, 37.80359174121851 ] ] }, "properties": { "class": "street", "len": 576.3959557001698, "name": "N Pt St", "name_de": "N Pt St", "name_en": "N Pt St", "name_es": "N Pt St", "name_fr": "N Pt St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41470515727997, 37.79036638843492 ], [ -122.41464614868164, 37.79003572427978 ] ] }, "properties": { "class": "street_limited", "len": 46.989364753467534, "name": "Touchard St", "name_de": "Touchard St", "name_en": "Touchard St", "name_es": "Touchard St", "name_fr": "Touchard St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40972697734833, 37.79749226531914 ], [ -122.40989863872528, 37.79844176513279 ] ] }, "properties": { "class": "service", "len": 135.41378659574053, "name": "Turk Murphy Ln", "name_de": "Turk Murphy Ln", "name_en": "Turk Murphy Ln", "name_es": "Turk Murphy Ln", "name_fr": "Turk Murphy Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41187274456024, 37.79700055526198 ], [ -122.41185665130615, 37.79700055526198 ], [ -122.41121828556061, 37.79709381086916 ], [ -122.41106808185577, 37.797140438628595 ], [ -122.41048336029051, 37.79726336621694 ], [ -122.41038680076598, 37.797271843974116 ], [ -122.41034924983978, 37.797271843974116 ], [ -122.41030097007751, 37.797259127338 ], [ -122.41022050380707, 37.79721249965347 ] ] }, "properties": { "class": "street", "len": 191.26148044141763, "name": "Broadway", "name_de": "Broadway", "name_en": "Broadway", "name_es": "Broadway", "name_fr": "Broadway", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40747928619385, 37.802269312488406 ], [ -122.40792453289032, 37.802218449372056 ] ] }, "properties": { "class": "service", "len": 49.94173004607788, "name": "Gerke Alley", "name_de": "Gerke Alley", "name_en": "Gerke Alley", "name_es": "Gerke Alley", "name_fr": "Gerke Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40560173988342, 37.79868761577395 ], [ -122.40566074848175, 37.79868337697672 ], [ -122.40639567375183, 37.79859012337622 ], [ -122.40716814994812, 37.79849263084982 ] ] }, "properties": { "class": "service", "len": 176.83964091802235, "name": "Fresno St", "name_de": "Fresno St", "name_en": "Fresno St", "name_es": "Fresno St", "name_fr": "Fresno St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41190493106842, 37.79263436551425 ], [ -122.41211950778961, 37.79352881957535 ] ] }, "properties": { "class": "street", "len": 127.98478815879075, "name": "Sproule Ln", "name_de": "Sproule Ln", "name_en": "Sproule Ln", "name_es": "Sproule Ln", "name_fr": "Sproule Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40919589996338, 37.79389761975574 ], [ -122.40928173065186, 37.79433848192347 ] ] }, "properties": { "class": "street", "len": 62.784717886173986, "name": "Parkhurst Alley", "name_de": "Parkhurst Alley", "name_en": "Parkhurst Alley", "name_es": "Parkhurst Alley", "name_fr": "Parkhurst Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4105155467987, 37.80505401465057 ], [ -122.41059601306915, 37.80546090297828 ] ] }, "properties": { "class": "service", "len": 58.573718508969975, "name": "Worden St", "name_de": "Worden St", "name_en": "Worden St", "name_es": "Worden St", "name_fr": "Worden St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41583168506622, 37.80908889145281 ], [ -122.41591215133667, 37.80912279704645 ], [ -122.41600334644318, 37.80913974983744 ], [ -122.41657197475432, 37.809160940820696 ], [ -122.4173605442047, 37.80919060818706 ] ] }, "properties": { "class": "street", "len": 171.84078522081418, "name": "Fishermans Wharf", "name_de": "Fishermans Wharf", "name_en": "Fishermans Wharf", "name_es": "Fishermans Wharf", "name_fr": "Fishermans Wharf", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40622937679291, 37.796084948503236 ], [ -122.406068444252, 37.79520324238054 ] ] }, "properties": { "class": "street", "len": 125.21460378065915, "name": "Wentworth Pl", "name_de": "Wentworth Pl", "name_en": "Wentworth Pl", "name_es": "Wentworth Pl", "name_fr": "Wentworth Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40757048130035, 37.79591539045074 ], [ -122.40765631198883, 37.796347762715534 ] ] }, "properties": { "class": "path", "len": 61.46761423790475, "name": "Duncombe Alley", "name_de": "Duncombe Alley", "name_en": "Duncombe Alley", "name_es": "Duncombe Alley", "name_fr": "Duncombe Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42927491664886, 37.79134141514943 ], [ -122.43091642856598, 37.79113369314532 ] ] }, "properties": { "class": "street", "len": 185.36281638960787, "name": "Clay St", "name_de": "Clay St", "name_en": "Clay St", "name_es": "Clay St", "name_fr": "Clay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4073076248169, 37.79413924646194 ], [ -122.40736126899719, 37.79442750184963 ], [ -122.40739345550537, 37.79449108744552 ], [ -122.407506108284, 37.79503368230439 ] ] }, "properties": { "class": "service", "len": 127.89649212945443, "name": "Spofford St", "name_de": "Spofford St", "name_en": "Spofford St", "name_es": "Spofford St", "name_fr": "Spofford St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40990400314331, 37.795618662922415 ], [ -122.40956604480742, 37.79566105264231 ], [ -122.40936756134032, 37.795686486462564 ], [ -122.40908324718474, 37.7957246371765 ], [ -122.40876674652098, 37.79576278787075 ], [ -122.40871846675871, 37.795771265800134 ], [ -122.40825712680815, 37.795826372317386 ], [ -122.40780651569365, 37.79588571775155 ], [ -122.40757048130034, 37.79591539045074 ], [ -122.4074417352676, 37.79593234627351 ], [ -122.407329082489, 37.79594506313804 ], [ -122.40709304809569, 37.79597473581341 ], [ -122.40665316581725, 37.79602984217888 ], [ -122.40635275840758, 37.79606799271553 ], [ -122.4062293767929, 37.796084948503264 ], [ -122.40586459636687, 37.79613157689948 ], [ -122.4051511287689, 37.79622059466508 ], [ -122.4044269323349, 37.796313851256826 ], [ -122.40418016910553, 37.79634352378408 ] ] }, "properties": { "class": "street", "len": 1171.500377114965, "name": "Jackson St", "name_de": "Jackson St", "name_en": "Jackson St", "name_es": "Jackson St", "name_fr": "Jackson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4058485031128, 37.79522867635839 ], [ -122.40566611289978, 37.794346960016284 ] ] }, "properties": { "class": "street", "len": 126.09736079766184, "name": "Walter U Lum Pl", "name_de": "Walter U Lum Pl", "name_en": "Walter U Lum Pl", "name_es": "Walter U Lum Pl", "name_fr": "Walter U Lum Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4063366651535, 37.79048084875924 ], [ -122.40642786026001, 37.79093444904167 ] ] }, "properties": { "class": "service", "len": 64.35427103232769, "name": "Chatham Pl", "name_de": "Chatham Pl", "name_en": "Chatham Pl", "name_es": "Chatham Pl", "name_fr": "Chatham Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4110895395279, 37.7931769740092 ], [ -122.4116849899292, 37.793100669930396 ] ] }, "properties": { "class": "service", "len": 67.0897317041935, "name": "Ewer Pl", "name_de": "Ewer Pl", "name_en": "Ewer Pl", "name_es": "Ewer Pl", "name_fr": "Ewer Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41544544696808, 37.79176533579482 ], [ -122.41552591323853, 37.7921807756676 ] ] }, "properties": { "class": "path", "len": 59.174028931375034, "name": "Golden Ct", "name_de": "Golden Ct", "name_en": "Golden Ct", "name_es": "Golden Ct", "name_fr": "Golden Ct", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4080103635788, 37.800590811155416 ], [ -122.40811228752136, 37.80102739471796 ] ] }, "properties": { "class": "service", "len": 62.390207565970236, "name": "Cadell Pl", "name_de": "Cadell Pl", "name_en": "Cadell Pl", "name_es": "Cadell Pl", "name_fr": "Cadell Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43269205093384, 37.799836320857466 ], [ -122.43432819843292, 37.79963286148024 ], [ -122.43595898151398, 37.79942092403308 ], [ -122.43712306022644, 37.799272567458246 ], [ -122.4371337890625, 37.799272567458246 ] ] }, "properties": { "class": "street", "len": 554.2827921622029, "name": "Moulton St", "name_de": "Moulton St", "name_en": "Moulton St", "name_es": "Moulton St", "name_fr": "Moulton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41555273532867, 37.79338469026892 ], [ -122.41562247276306, 37.79369414402182 ] ] }, "properties": { "class": "path", "len": 43.92977350286755, "name": "Reed St", "name_de": "Reed St", "name_en": "Reed St", "name_es": "Reed St", "name_fr": "Reed St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40743637084961, 37.789891588159335 ], [ -122.40752756595612, 37.79033671350708 ] ] }, "properties": { "class": "service", "len": 63.34362872380736, "name": "Burritt St", "name_de": "Burritt St", "name_en": "Burritt St", "name_es": "Burritt St", "name_fr": "Burritt St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42660880088806, 37.8081140989773 ], [ -122.42651760578156, 37.807698748708574 ], [ -122.42646932601929, 37.807541932183284 ], [ -122.42640495300293, 37.807397830217774 ], [ -122.42632448673248, 37.807262204581576 ], [ -122.426238656044, 37.8071435319456 ], [ -122.42612600326538, 37.80701638248111 ], [ -122.4259489774704, 37.806851087850006 ], [ -122.42587387561798, 37.80678751289335 ], [ -122.4257344007492, 37.806617979408074 ], [ -122.42565929889678, 37.80650354408551 ] ] }, "properties": { "class": "street", "len": 255.3557123662623, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42446303367615, 37.80132833916636 ], [ -122.4244898557663, 37.80144278250799 ], [ -122.42465615272522, 37.80220997218259 ], [ -122.42467224597931, 37.802290505443175 ], [ -122.42468833923338, 37.802379515786924 ], [ -122.42484390735625, 37.803218750897145 ] ] }, "properties": { "class": "main", "len": 269.51529451836717, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4112719297409, 37.794062943376915 ], [ -122.41135239601135, 37.794058704314324 ], [ -122.41186201572418, 37.79399087927983 ] ] }, "properties": { "class": "street", "len": 66.67698532956014, "name": "Truett St", "name_de": "Truett St", "name_en": "Truett St", "name_es": "Truett St", "name_fr": "Truett St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40842878818512, 37.80483785431468 ], [ -122.40944802761078, 37.80471070088035 ], [ -122.41004884243011, 37.80463864717042 ] ] }, "properties": { "class": "service", "len": 182.20355575256644, "name": "Pfeiffer St", "name_de": "Pfeiffer St", "name_en": "Pfeiffer St", "name_es": "Pfeiffer St", "name_fr": "Pfeiffer St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41583168506622, 37.80908889145281 ], [ -122.41586923599243, 37.808783740409325 ], [ -122.41587460041045, 37.808652355543906 ], [ -122.41586923599243, 37.80854639983701 ], [ -122.4158102273941, 37.808215817054354 ], [ -122.41561710834505, 37.80728339610364 ] ] }, "properties": { "class": "street", "len": 256.763574292215, "name": "Taylor St", "name_de": "Taylor St", "name_en": "Taylor St", "name_es": "Taylor St", "name_fr": "Taylor St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4081552028656, 37.80154874840699 ], [ -122.40825176239014, 37.80198532630738 ] ] }, "properties": { "class": "service", "len": 62.563965666960364, "name": "Medau Pl", "name_de": "Medau Pl", "name_en": "Medau Pl", "name_es": "Medau Pl", "name_fr": "Medau Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4070018529892, 37.80169710041017 ], [ -122.40696430206299, 37.80149788479444 ], [ -122.40681409835815, 37.80073916508263 ], [ -122.40662634372711, 37.79980241100018 ] ] }, "properties": { "class": "service", "len": 270.15151694698125, "name": "Varennes St", "name_de": "Varennes St", "name_en": "Varennes St", "name_es": "Varennes St", "name_fr": "Varennes St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41160452365875, 37.80204466679365 ], [ -122.41145968437195, 37.801336816456995 ], [ -122.41146504878998, 37.801294429994016 ], [ -122.41149723529816, 37.80124780485665 ] ] }, "properties": { "class": "service", "len": 114.32624227346044, "name": "Via Buffano", "name_de": "Via Buffano", "name_en": "Via Buffano", "name_es": "Via Buffano", "name_fr": "Via Buffano", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40497410297394, 37.798437526321464 ], [ -122.40547835826874, 37.79836970530704 ], [ -122.40553200244905, 37.79836546649156 ] ] }, "properties": { "class": "service", "len": 62.619009463483394, "name": "Dunnes Alley", "name_de": "Dunnes Alley", "name_en": "Dunnes Alley", "name_es": "Dunnes Alley", "name_fr": "Dunnes Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41254329681396, 37.79619516102869 ], [ -122.41257011890411, 37.796233311479945 ], [ -122.41269886493683, 37.79691577733512 ] ] }, "properties": { "class": "service", "len": 103.2925731314861, "name": "Salmon St", "name_de": "Salmon St", "name_en": "Salmon St", "name_es": "Salmon St", "name_fr": "Salmon St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.80014574758602 ], [ -122.404265999794, 37.80013727015868 ], [ -122.4044805765152, 37.80010336043956 ], [ -122.40500092506409, 37.800031302234714 ], [ -122.40506529808044, 37.80002282479424 ], [ -122.40520477294922, 37.80000163118878 ], [ -122.4053817987442, 37.7999761988542 ], [ -122.40547835826874, 37.799963482683594 ], [ -122.4057787656784, 37.79992109543255 ], [ -122.4058485031128, 37.79991261797941 ], [ -122.40591287612915, 37.79990414052532 ], [ -122.40623474121094, 37.79985751451035 ], [ -122.40662634372711, 37.79980241100015 ], [ -122.407329082489, 37.79970068133491 ], [ -122.40741491317749, 37.79969220385647 ], [ -122.4074739217758, 37.7996837263771 ], [ -122.40770995616911, 37.79964981644974 ], [ -122.40791380405425, 37.79962014525055 ], [ -122.40818738937377, 37.799581996548376 ], [ -122.40882039070128, 37.79949298283332 ], [ -122.40886867046355, 37.799484505331066 ], [ -122.40896522998808, 37.79947178907583 ] ] }, "properties": { "class": "street", "len": 586.1387798872114, "name": "Green St", "name_de": "Green St", "name_en": "Green St", "name_es": "Green St", "name_fr": "Green St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41900742053986, 37.798916510462924 ], [ -122.4188894033432, 37.798929226813755 ], [ -122.41848707199097, 37.798963137071866 ] ] }, "properties": { "class": "street", "len": 58.34103522688975, "name": "Warner Pl", "name_de": "Warner Pl", "name_en": "Warner Pl", "name_es": "Warner Pl", "name_fr": "Warner Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40685164928436, 37.7988317347349 ], [ -122.40693747997285, 37.799276806221656 ], [ -122.40697503089905, 37.79947178907586 ] ] }, "properties": { "class": "service", "len": 91.2595127301476, "name": "Margrave Pl", "name_de": "Margrave Pl", "name_en": "Margrave Pl", "name_es": "Margrave Pl", "name_fr": "Margrave Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40818738937378, 37.799581996548405 ], [ -122.40837514400482, 37.80054842426436 ], [ -122.40840196609497, 37.800641675392626 ], [ -122.40857362747192, 37.801493646158505 ] ] }, "properties": { "class": "service", "len": 272.7948162895242, "name": "Jasper Pl", "name_de": "Jasper Pl", "name_en": "Jasper Pl", "name_es": "Jasper Pl", "name_fr": "Jasper Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42682337760925, 37.80419784647312 ], [ -122.4269038438797, 37.80426990061314 ], [ -122.42696821689606, 37.804341954682855 ], [ -122.4272632598877, 37.804876000302286 ], [ -122.42730617523195, 37.804952292218374 ], [ -122.4273544549942, 37.80500739188654 ], [ -122.42741882801056, 37.80505401465057 ], [ -122.427499294281, 37.805096398955996 ], [ -122.42759048938751, 37.805134544810045 ], [ -122.42767095565796, 37.80515149851663 ], [ -122.42778897285461, 37.80515573694268 ], [ -122.42791771888733, 37.80513878323706 ], [ -122.42803037166595, 37.805104875814145 ], [ -122.42821276187897, 37.804998915017194 ], [ -122.42823421955109, 37.80515573694268 ], [ -122.42825031280516, 37.805244743833335 ] ] }, "properties": { "class": "street", "len": 271.8842422810107, "name": "Macarthur Ave", "name_de": "Macarthur Ave", "name_en": "Macarthur Ave", "name_es": "Macarthur Ave", "name_fr": "Macarthur Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42825031280518, 37.805244743833335 ], [ -122.4272632598877, 37.80537189634818 ], [ -122.42719352245332, 37.805388850000256 ], [ -122.42712914943696, 37.80543123411352 ] ] }, "properties": { "class": "street", "len": 128.79204821896596, "name": "Macarthur Ave", "name_de": "Macarthur Ave", "name_en": "Macarthur Ave", "name_es": "Macarthur Ave", "name_fr": "Macarthur Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40894913673401, 37.801447021146885 ], [ -122.40904033184052, 37.801892076875475 ] ] }, "properties": { "class": "service", "len": 63.908950859835066, "name": "Krausgrill Pl", "name_de": "Krausgrill Pl", "name_en": "Krausgrill Pl", "name_es": "Krausgrill Pl", "name_fr": "Krausgrill Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40935146808624, 37.80424446974821 ], [ -122.40944802761078, 37.80471070088038 ] ] }, "properties": { "class": "path", "len": 66.69583495236432, "name": "Bellair Pl", "name_de": "Bellair Pl", "name_en": "Bellair Pl", "name_es": "Bellair Pl", "name_fr": "Bellair Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41357862949371, 37.80038735385647 ], [ -122.41422235965729, 37.80030257981648 ] ] }, "properties": { "class": "street", "len": 72.47540410352268, "name": "Aladdin Ter", "name_de": "Aladdin Ter", "name_en": "Aladdin Ter", "name_es": "Aladdin Ter", "name_fr": "Aladdin Ter", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40665853023529, 37.80393929868616 ], [ -122.40717887878418, 37.80386724422359 ] ] }, "properties": { "class": "service", "len": 58.93459425506088, "name": "La Ferrera Ter", "name_de": "La Ferrera Ter", "name_en": "La Ferrera Ter", "name_es": "La Ferrera Ter", "name_fr": "La Ferrera Ter", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41346061229706, 37.79652579761845 ], [ -122.41510748863222, 37.796326568055655 ], [ -122.41674900054932, 37.79611886006703 ] ] }, "properties": { "class": "street", "len": 369.994656668576, "name": "Bernard St", "name_de": "Bernard St", "name_en": "Bernard St", "name_es": "Bernard St", "name_fr": "Bernard St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4282556772232, 37.803918106204456 ], [ -122.42833077907562, 37.8038969137167 ], [ -122.42840588092804, 37.803884198221105 ], [ -122.42882966995239, 37.80388843671987 ], [ -122.42887258529663, 37.80390115221473 ], [ -122.42889940738678, 37.803930821694195 ], [ -122.42893695831297, 37.804049499492926 ], [ -122.42893159389496, 37.804087645887726 ], [ -122.42891013622284, 37.80412155377767 ], [ -122.42888331413269, 37.80414274620098 ], [ -122.42884576320648, 37.80415546165205 ], [ -122.42865800857544, 37.80418936951085 ], [ -122.42853999137878, 37.80422327735411 ], [ -122.42843806743622, 37.80427837756618 ], [ -122.42835760116579, 37.804358908571395 ], [ -122.42833614349365, 37.804439439488824 ], [ -122.42829859256746, 37.80481242364534 ], [ -122.42827177047731, 37.80489295406824 ], [ -122.42823958396913, 37.80496076909309 ], [ -122.42821276187898, 37.804998915017194 ] ] }, "properties": { "class": "street", "len": 267.7599159825363, "name": "Fort Mason 10", "name_de": "Fort Mason 10", "name_en": "Fort Mason 10", "name_es": "Fort Mason 10", "name_fr": "Fort Mason 10", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4272632598877, 37.804045261003395 ], [ -122.42763876914978, 37.80474460848425 ], [ -122.42768704891205, 37.80479546986092 ], [ -122.4277514219284, 37.8048081851996 ], [ -122.42781579494476, 37.80479970830737 ], [ -122.42786943912508, 37.80476580072879 ], [ -122.42789626121521, 37.80470646242878 ], [ -122.42794990539551, 37.804235992791284 ], [ -122.4279659986496, 37.80415546165205 ], [ -122.4280035495758, 37.804083407400384 ], [ -122.42806792259216, 37.80401559156988 ], [ -122.42814302444458, 37.80396472965615 ], [ -122.4282556772232, 37.803918106204456 ] ] }, "properties": { "class": "street", "len": 273.1256858061551, "name": "Fort Mason 11", "name_de": "Fort Mason 11", "name_en": "Fort Mason 11", "name_es": "Fort Mason 11", "name_fr": "Fort Mason 11", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40804255008698, 37.802871190038694 ], [ -122.40892767906189, 37.80276098747375 ] ] }, "properties": { "class": "service", "len": 99.28843084653585, "name": "Edith St", "name_de": "Edith St", "name_en": "Edith St", "name_es": "Edith St", "name_fr": "Edith St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4282556772232, 37.803918106204456 ], [ -122.42797672748566, 37.80397744513788 ], [ -122.4277514219284, 37.8040155915699 ], [ -122.42751002311707, 37.80404102251361 ], [ -122.4272632598877, 37.804045261003395 ] ] }, "properties": { "class": "street", "len": 112.73141446670768, "name": "Fort Mason 12", "name_de": "Fort Mason 12", "name_en": "Fort Mason 12", "name_es": "Fort Mason 12", "name_fr": "Fort Mason 12", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4048775434494, 37.80051027604161 ], [ -122.40435719490051, 37.800578095090685 ] ] }, "properties": { "class": "service", "len": 58.71020694937184, "name": "Montague Pl", "name_de": "Montague Pl", "name_en": "Montague Pl", "name_es": "Montague Pl", "name_fr": "Montague Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4272632598877, 37.804045261003395 ], [ -122.42712378501892, 37.80405797647123 ], [ -122.42707014083862, 37.80406645344859 ], [ -122.42702186107635, 37.804087645887726 ], [ -122.42698431015016, 37.80411307680662 ], [ -122.42695212364197, 37.80415546165205 ], [ -122.42693066596985, 37.80420632343443 ], [ -122.42690384387971, 37.80426990061314 ] ] }, "properties": { "class": "street", "len": 57.225867374503736, "name": "Fort Mason 13", "name_de": "Fort Mason 13", "name_en": "Fort Mason 13", "name_es": "Fort Mason 13", "name_fr": "Fort Mason 13", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40902423858643, 37.79300317015945 ], [ -122.40911543369293, 37.79345251585992 ] ] }, "properties": { "class": "service", "len": 63.94319744855801, "name": "Miller Pl", "name_de": "Miller Pl", "name_en": "Miller Pl", "name_es": "Miller Pl", "name_fr": "Miller Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41281688213348, 37.79616124949991 ], [ -122.41297245025635, 37.79691577733512 ], [ -122.41301000118254, 37.79711500530891 ] ] }, "properties": { "class": "service", "len": 136.1630268523898, "name": "Himmelmann Pl", "name_de": "Himmelmann Pl", "name_en": "Himmelmann Pl", "name_es": "Himmelmann Pl", "name_fr": "Himmelmann Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41671681404114, 37.7959238683626 ], [ -122.41722106933595, 37.79586028399988 ], [ -122.41834223270416, 37.79571192027404 ], [ -122.41835832595825, 37.79571192027404 ] ] }, "properties": { "class": "service", "len": 185.2098426925577, "name": "Lynch St", "name_de": "Lynch St", "name_en": "Lynch St", "name_es": "Lynch St", "name_fr": "Lynch St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40773141384125, 37.80399439911008 ], [ -122.40793526172638, 37.80396472965615 ], [ -122.4082624912262, 37.80392234470129 ] ] }, "properties": { "class": "service", "len": 59.7132859074724, "name": "Whiting St", "name_de": "Whiting St", "name_en": "Whiting St", "name_es": "Whiting St", "name_fr": "Whiting St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.418133020401, 37.798840212312086 ], [ -122.41822957992555, 37.79930223879704 ] ] }, "properties": { "class": "street", "len": 65.98989165025142, "name": "Sharp Pl", "name_de": "Sharp Pl", "name_en": "Sharp Pl", "name_es": "Sharp Pl", "name_fr": "Sharp Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40956604480743, 37.79566105264231 ], [ -122.40965187549591, 37.796089187449574 ] ] }, "properties": { "class": "service", "len": 61.076484836602674, "name": "Adele Ct", "name_de": "Adele Ct", "name_en": "Adele Ct", "name_es": "Adele Ct", "name_fr": "Adele Ct", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41245746612549, 37.80182425903287 ], [ -122.41245746612549, 37.80170133903446 ], [ -122.41232335567474, 37.801010440064665 ] ] }, "properties": { "class": "service", "len": 115.60519316779043, "name": "Scotland St", "name_de": "Scotland St", "name_en": "Scotland St", "name_es": "Scotland St", "name_fr": "Scotland St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40635275840759, 37.7960679927155 ], [ -122.40652978420258, 37.79694968851756 ] ] }, "properties": { "class": "street", "len": 125.40847180388414, "name": "Beckett St", "name_de": "Beckett St", "name_en": "Beckett St", "name_es": "Beckett St", "name_fr": "Beckett St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4148553609848, 37.80116727045915 ], [ -122.41495192050935, 37.80163775964465 ] ] }, "properties": { "class": "street", "len": 66.9410016357164, "name": "Roach St", "name_de": "Roach St", "name_en": "Roach St", "name_es": "Roach St", "name_fr": "Roach St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4053817987442, 37.7999761988542 ], [ -122.40544617176056, 37.80032801203869 ] ] }, "properties": { "class": "street", "len": 49.61592990094674, "name": "Windsor Pl", "name_de": "Windsor Pl", "name_en": "Windsor Pl", "name_es": "Windsor Pl", "name_fr": "Windsor Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40701794624329, 37.795088789371825 ], [ -122.40682482719423, 37.79419859325133 ], [ -122.40664243698122, 37.79331262551028 ] ] }, "properties": { "class": "street", "len": 254.02764917872267, "name": "Waverly Pl", "name_de": "Waverly Pl", "name_en": "Waverly Pl", "name_es": "Waverly Pl", "name_fr": "Waverly Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4107837677002, 37.794122290227605 ], [ -122.4112719297409, 37.794062943376915 ] ] }, "properties": { "class": "street", "len": 55.13593564924396, "name": "Shephard Pl", "name_de": "Shephard Pl", "name_en": "Shephard Pl", "name_es": "Shephard Pl", "name_fr": "Shephard Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41750538349152, 37.8042020849539 ], [ -122.41760730743408, 37.80476580072879 ], [ -122.41787552833557, 37.80473189313464 ] ] }, "properties": { "class": "street", "len": 110.53686677023703, "name": "Bret Harte Ter", "name_de": "Bret Harte Ter", "name_en": "Bret Harte Ter", "name_es": "Bret Harte Ter", "name_fr": "Bret Harte Ter", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41694211959839, 37.79707261642332 ], [ -122.41699039936066, 37.797051421971396 ], [ -122.41747856140137, 37.79699207747368 ] ] }, "properties": { "class": "service", "len": 60.969960555721045, "name": "Waldo Alley", "name_de": "Waldo Alley", "name_en": "Waldo Alley", "name_es": "Waldo Alley", "name_fr": "Waldo Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41908252239227, 37.80112064524151 ], [ -122.41913616657257, 37.80140887338821 ], [ -122.4191629886627, 37.80154027114065 ] ] }, "properties": { "class": "street", "len": 59.873315952500604, "name": "Southard Pl", "name_de": "Southard Pl", "name_en": "Southard Pl", "name_es": "Southard Pl", "name_fr": "Southard Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40729689598083, 37.79277001801159 ], [ -122.40738809108734, 37.79321936513004 ] ] }, "properties": { "class": "service", "len": 64.1050590824393, "name": "Brooklyn Pl", "name_de": "Brooklyn Pl", "name_en": "Brooklyn Pl", "name_es": "Brooklyn Pl", "name_fr": "Brooklyn Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40623474121094, 37.79985751451035 ], [ -122.40642786026001, 37.80079002921765 ] ] }, "properties": { "class": "service", "len": 132.946347824966, "name": "Sonoma St", "name_de": "Sonoma St", "name_en": "Sonoma St", "name_es": "Sonoma St", "name_fr": "Sonoma St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4320912361145, 37.7932278433513 ], [ -122.43299782276154, 37.79312186551574 ] ] }, "properties": { "class": "street", "len": 102.28569059297114, "name": "Bromley Pl", "name_de": "Bromley Pl", "name_en": "Bromley Pl", "name_es": "Bromley Pl", "name_fr": "Bromley Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41912007331848, 37.795360085104505 ], [ -122.41926491260529, 37.796072231662805 ] ] }, "properties": { "class": "street", "len": 101.54381320398669, "name": "Morrell St", "name_de": "Morrell St", "name_en": "Morrell St", "name_es": "Morrell St", "name_fr": "Morrell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41090714931488, 37.79639862987445 ], [ -122.4110358953476, 37.79703870529732 ] ] }, "properties": { "class": "service", "len": 91.17872833027445, "name": "Wayne Pl", "name_de": "Wayne Pl", "name_en": "Wayne Pl", "name_es": "Wayne Pl", "name_fr": "Wayne Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41070866584778, 37.79344403766446 ], [ -122.41113245487213, 37.79338469026892 ] ] }, "properties": { "class": "service", "len": 47.86974932083227, "name": "Dawson Pl", "name_de": "Dawson Pl", "name_en": "Dawson Pl", "name_es": "Dawson Pl", "name_fr": "Dawson Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41467833518982, 37.79712348308311 ], [ -122.41482853889467, 37.797831373796456 ] ] }, "properties": { "class": "street", "len": 101.16138838568223, "name": "Florence St", "name_de": "Florence St", "name_en": "Florence St", "name_es": "Florence St", "name_fr": "Florence St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40797817707062, 37.7974032490859 ], [ -122.40856289863586, 37.79733118824711 ] ] }, "properties": { "class": "street", "len": 65.92641958955925, "name": "Stark St", "name_de": "Stark St", "name_en": "Stark St", "name_es": "Stark St", "name_fr": "Stark St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41052627563477, 37.79644949699833 ], [ -122.41059064865114, 37.79676317682161 ] ] }, "properties": { "class": "service", "len": 45.04043183644682, "name": "Keyes Alley", "name_de": "Keyes Alley", "name_en": "Keyes Alley", "name_es": "Keyes Alley", "name_fr": "Keyes Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40887403488159, 37.79665296514357 ], [ -122.40905106067657, 37.79757704258442 ] ] }, "properties": { "class": "service", "len": 131.67094478213505, "name": "Cordelia St", "name_de": "Cordelia St", "name_en": "Cordelia St", "name_es": "Cordelia St", "name_fr": "Cordelia St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41250574588776, 37.80857606745026 ], [ -122.41253256797789, 37.80869049956117 ], [ -122.41253793239592, 37.8087074524514 ], [ -122.41256475448607, 37.80877526397345 ], [ -122.41258621215819, 37.808809169711125 ], [ -122.41262912750243, 37.808830360789244 ], [ -122.41270959377287, 37.80884307543321 ], [ -122.4131280183792, 37.808855790074986 ], [ -122.41430282592772, 37.80888969577567 ], [ -122.41446375846861, 37.80889393398715 ], [ -122.41495192050932, 37.80891088683068 ], [ -122.41509675979613, 37.80892360146078 ], [ -122.41523087024687, 37.80895326892251 ], [ -122.41541326045986, 37.808999889195384 ], [ -122.4157458543777, 37.80904650943884 ], [ -122.41583168506621, 37.80908889145283 ] ] }, "properties": { "class": "street", "len": 400.6582806689901, "name": "Embarcadero North St", "name_de": "Embarcadero North St", "name_en": "Embarcadero North St", "name_es": "Embarcadero North St", "name_fr": "Embarcadero North St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41274178028107, 37.79299469191242 ], [ -122.41438865661621, 37.792786974556215 ] ] }, "properties": { "class": "street", "len": 185.48519644484398, "name": "Pleasant St", "name_de": "Pleasant St", "name_en": "Pleasant St", "name_es": "Pleasant St", "name_fr": "Pleasant St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41860508918762, 37.79269371351246 ], [ -122.41868555545807, 37.79304980050072 ] ] }, "properties": { "class": "service", "len": 50.80455294522635, "name": "Torrens Ct", "name_de": "Torrens Ct", "name_en": "Torrens Ct", "name_es": "Torrens Ct", "name_fr": "Torrens Ct", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4046790599823, 37.79021377439333 ], [ -122.40490436553955, 37.7901883386891 ], [ -122.40541934967041, 37.790120510101644 ], [ -122.40551054477692, 37.790112031523826 ], [ -122.40604698657988, 37.79004420286635 ] ] }, "properties": { "class": "service", "len": 154.3215726572478, "name": "Harlan Pl", "name_de": "Harlan Pl", "name_en": "Harlan Pl", "name_es": "Harlan Pl", "name_fr": "Harlan Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42229580879211, 37.80259144474508 ], [ -122.42238700389862, 37.803053447766 ] ] }, "properties": { "class": "street", "len": 65.90774309573109, "name": "Culebra Ter", "name_de": "Culebra Ter", "name_en": "Culebra Ter", "name_es": "Culebra Ter", "name_fr": "Culebra Ter", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42216169834137, 37.80196413326501 ], [ -122.42223143577576, 37.802387992956945 ], [ -122.42239773273468, 37.80248124176272 ], [ -122.42243528366089, 37.80257449045078 ] ] }, "properties": { "class": "street_limited", "len": 95.9749654139774, "name": "Culebra Ter", "name_de": "Culebra Ter", "name_en": "Culebra Ter", "name_es": "Culebra Ter", "name_fr": "Culebra Ter", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41362690925598, 37.80275674891027 ], [ -122.41371810436249, 37.80322298943413 ] ] }, "properties": { "class": "street", "len": 66.45369214742057, "name": "Newell St", "name_de": "Newell St", "name_en": "Newell St", "name_es": "Newell St", "name_fr": "Newell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40499019622803, 37.8038333362169 ], [ -122.40418016910553, 37.8039350601903 ] ] }, "properties": { "class": "street", "len": 308.5263858310345, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4112719297409, 37.7971785885917 ], [ -122.41111636161804, 37.7972040218895 ], [ -122.41084277629852, 37.79726336621694 ], [ -122.41038680076599, 37.79736086036572 ], [ -122.41025805473328, 37.79741596569723 ] ] }, "properties": { "class": "main", "len": 118.01690960727322, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.411288022995, 37.797254888458816 ], [ -122.41180300712585, 37.797187066358596 ], [ -122.41785407066345, 37.79641558558629 ] ] }, "properties": { "class": "main", "len": 740.5066576059138, "name": "Robert C Levy Tunnel", "name_de": "Robert C Levy Tunnel", "name_en": "Robert C Levy Tunnel", "name_es": "Robert C Levy Tunnel", "name_fr": "Robert C Levy Tunnel", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41187274456024, 37.798780869251374 ], [ -122.41194248199463, 37.799141165671685 ] ] }, "properties": { "class": "street", "len": 51.4579022108144, "name": "Eaton Pl", "name_de": "Eaton Pl", "name_en": "Eaton Pl", "name_es": "Eaton Pl", "name_fr": "Eaton Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4362701177597, 37.80081546127204 ], [ -122.43625402450562, 37.800942621412574 ], [ -122.43663489818573, 37.80269317042898 ] ] }, "properties": { "class": "street", "len": 268.32391325299756, "name": "Fillmore St", "name_de": "Fillmore St", "name_en": "Fillmore St", "name_es": "Fillmore St", "name_fr": "Fillmore St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43555665016174, 37.805689776677475 ], [ -122.4371337890625, 37.80549057183116 ] ] }, "properties": { "class": "street", "len": 202.57158379076972, "name": "Jefferson St", "name_de": "Jefferson St", "name_en": "Jefferson St", "name_es": "Jefferson St", "name_fr": "Jefferson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40782260894775, 37.80348577825057 ], [ -122.40792989730835, 37.803918106204456 ] ] }, "properties": { "class": "service", "len": 62.152613781697326, "name": "Julius St", "name_de": "Julius St", "name_en": "Julius St", "name_es": "Julius St", "name_fr": "Julius St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40486145019531, 37.79763214775467 ], [ -122.40541398525238, 37.797564326000824 ] ] }, "properties": { "class": "service", "len": 62.35144906106222, "name": "Nottingham Pl", "name_de": "Nottingham Pl", "name_en": "Nottingham Pl", "name_es": "Nottingham Pl", "name_fr": "Nottingham Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41745710372925, 37.80800814249806 ], [ -122.4172693490982, 37.807071480609274 ] ] }, "properties": { "class": "street", "len": 133.60301269040772, "name": "Jones St", "name_de": "Jones St", "name_en": "Jones St", "name_es": "Jones St", "name_fr": "Jones St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40821957588196, 37.79141348183073 ], [ -122.40836441516876, 37.79215110146844 ], [ -122.40836441516876, 37.79215957981227 ], [ -122.40836441516876, 37.79217229732622 ], [ -122.40837514400482, 37.792235884863004 ], [ -122.40854680538177, 37.79307099610069 ] ] }, "properties": { "class": "service", "len": 236.40843532348785, "name": "Joice St", "name_de": "Joice St", "name_en": "Joice St", "name_es": "Joice St", "name_fr": "Joice St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40639567375183, 37.79859012337622 ], [ -122.40626156330109, 37.79792886719558 ] ] }, "properties": { "class": "service", "len": 94.8030025896439, "name": "Romolo Pl", "name_de": "Romolo Pl", "name_en": "Romolo Pl", "name_es": "Romolo Pl", "name_fr": "Romolo Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41318702697754, 37.797742357971856 ], [ -122.41366982460022, 37.79767029746383 ] ] }, "properties": { "class": "path", "len": 55.02610289681695, "name": "Fallon Pl", "name_de": "Fallon Pl", "name_en": "Fallon Pl", "name_es": "Fallon Pl", "name_fr": "Fallon Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40675508975983, 37.79076063991673 ], [ -122.40721642971039, 37.790701290365774 ] ] }, "properties": { "class": "service", "len": 51.8639393036333, "name": "Emma St", "name_de": "Emma St", "name_en": "Emma St", "name_es": "Emma St", "name_fr": "Emma St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40525841712952, 37.80093414407668 ], [ -122.4051457643509, 37.800459411713945 ], [ -122.40512967109682, 37.800374637756676 ], [ -122.40506529808046, 37.80002282479424 ] ] }, "properties": { "class": "service", "len": 130.09973736841954, "name": "Castle St", "name_de": "Castle St", "name_en": "Castle St", "name_es": "Castle St", "name_fr": "Castle St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41076231002808, 37.79153217974085 ], [ -122.41120755672455, 37.791477070020576 ] ] }, "properties": { "class": "service", "len": 50.44993756253119, "name": "Nob Hill Pl", "name_de": "Nob Hill Pl", "name_en": "Nob Hill Pl", "name_es": "Nob Hill Pl", "name_fr": "Nob Hill Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4070018529892, 37.79554660034284 ], [ -122.4070930480957, 37.79597473581339 ] ] }, "properties": { "class": "path", "len": 61.51835254609074, "name": "St Louis Alley", "name_de": "St Louis Alley", "name_en": "St Louis Alley", "name_es": "St Louis Alley", "name_fr": "St Louis Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41620719432831, 37.79165935586148 ], [ -122.41629302501678, 37.79208327468276 ], [ -122.41629302501678, 37.79214262312365 ], [ -122.41637349128723, 37.79252838682742 ] ] }, "properties": { "class": "street", "len": 123.97794369943081, "name": "Kimball Pl", "name_de": "Kimball Pl", "name_en": "Kimball Pl", "name_es": "Kimball Pl", "name_fr": "Kimball Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42610991001129, 37.8007434037619 ], [ -122.42656588554382, 37.80055266295457 ] ] }, "properties": { "class": "street", "len": 57.22394079431952, "name": "Blackstone Ct", "name_de": "Blackstone Ct", "name_en": "Blackstone Ct", "name_es": "Blackstone Ct", "name_fr": "Blackstone Ct", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41099834442139, 37.79083694641218 ], [ -122.41109490394592, 37.79129902295112 ] ] }, "properties": { "class": "service", "len": 66.3126873229572, "name": "Vine Ter", "name_de": "Vine Ter", "name_en": "Vine Ter", "name_es": "Vine Ter", "name_fr": "Vine Ter", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41113245487213, 37.79338469026892 ], [ -122.41172790527344, 37.79331262551028 ] ] }, "properties": { "class": "service", "len": 67.01716944092804, "name": "Malvina Pl", "name_de": "Malvina Pl", "name_en": "Malvina Pl", "name_es": "Malvina Pl", "name_fr": "Malvina Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41276323795319, 37.80334166837025 ], [ -122.41285443305969, 37.803807905201644 ] ] }, "properties": { "class": "street", "len": 66.59202354593167, "name": "Venard Alley", "name_de": "Venard Alley", "name_en": "Venard Alley", "name_es": "Venard Alley", "name_fr": "Venard Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40818202495575, 37.792608930643276 ], [ -122.40809619426727, 37.792210449854856 ], [ -122.40809619426727, 37.79219349317789 ] ] }, "properties": { "class": "service", "len": 59.24181348930285, "name": "Pratt Pl", "name_de": "Pratt Pl", "name_en": "Pratt Pl", "name_es": "Pratt Pl", "name_fr": "Pratt Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40714132785797, 37.79028584217449 ], [ -122.40714132785797, 37.79027736361563 ], [ -122.4070394039154, 37.78970081933231 ], [ -122.40699112415315, 37.78942950281888 ] ] }, "properties": { "class": "street", "len": 121.52660704761954, "name": "Stockton St", "name_de": "Stockton St", "name_en": "Stockton St", "name_es": "Stockton St", "name_fr": "Stockton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4176824092865, 37.79235034229134 ], [ -122.41856753826141, 37.79224012403017 ] ] }, "properties": { "class": "service", "len": 99.50439688777577, "name": "Troy Alley", "name_de": "Troy Alley", "name_en": "Troy Alley", "name_es": "Troy Alley", "name_fr": "Troy Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41667926311493, 37.80044669562654 ], [ -122.41675436496735, 37.80085784800986 ] ] }, "properties": { "class": "street_limited", "len": 58.39296190498385, "name": "Attridge Alley", "name_de": "Attridge Alley", "name_en": "Attridge Alley", "name_es": "Attridge Alley", "name_fr": "Attridge Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41753220558167, 37.79464369265235 ], [ -122.41761803627014, 37.795093028375305 ] ] }, "properties": { "class": "service", "len": 64.06486478531147, "name": "Wall Pl", "name_de": "Wall Pl", "name_en": "Wall Pl", "name_es": "Wall Pl", "name_fr": "Wall Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.79494890212038 ], [ -122.40488290786742, 37.794859882822436 ] ] }, "properties": { "class": "street", "len": 186.69397124710753, "name": "Merchant St", "name_de": "Merchant St", "name_en": "Merchant St", "name_es": "Merchant St", "name_fr": "Merchant St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.805850835522065 ], [ -122.40454494953156, 37.8061136149881 ], [ -122.40576267242432, 37.80676208289539 ] ] }, "properties": { "class": "main", "len": 529.7255041394043, "name": "The Embarcadero", "name_de": "The Embarcadero", "name_en": "The Embarcadero", "name_es": "The Embarcadero", "name_fr": "The Embarcadero", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4195009469986, 37.79722945517852 ], [ -122.41962432861328, 37.79786104571417 ] ] }, "properties": { "class": "street", "len": 89.86199697281107, "name": "White St", "name_de": "White St", "name_en": "White St", "name_es": "White St", "name_fr": "White St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42494583129883, 37.801209656995105 ], [ -122.42472052574158, 37.801218134299376 ], [ -122.42464542388916, 37.801196941036885 ], [ -122.42459177970886, 37.801141838525915 ] ] }, "properties": { "class": "street", "len": 43.47530177388478, "name": "US 101", "name_de": "US 101", "name_en": "US 101", "name_es": "US 101", "name_fr": "US 101", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40595579147339, 37.8046640778996 ], [ -122.4062615633011, 37.8046979855249 ], [ -122.40639030933382, 37.8047191777828 ], [ -122.40649759769441, 37.804748846933656 ], [ -122.40653514862062, 37.80475732383171 ], [ -122.40666389465333, 37.8048039467536 ], [ -122.4067658185959, 37.80485904653247 ], [ -122.40680873394014, 37.804905669390145 ], [ -122.4068570137024, 37.80497348440335 ], [ -122.40695893764497, 37.80549057183118 ], [ -122.40715742111207, 37.80643573047735 ], [ -122.40730226039888, 37.80721982151919 ], [ -122.40738272666931, 37.80734273233311 ] ] }, "properties": { "class": "street", "len": 454.891979511398, "name": "Kearny St", "name_de": "Kearny St", "name_en": "Kearny St", "name_es": "Kearny St", "name_fr": "Kearny St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41692066192627, 37.795220198366735 ], [ -122.41700112819672, 37.79563561881328 ] ] }, "properties": { "class": "service", "len": 59.0410069355471, "name": "Burgoyne St", "name_de": "Burgoyne St", "name_en": "Burgoyne St", "name_es": "Burgoyne St", "name_fr": "Burgoyne St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.79613157689948 ], [ -122.4044269323349, 37.796313851256826 ], [ -122.40450739860533, 37.796373196299385 ], [ -122.40529596805571, 37.79690306063769 ] ] }, "properties": { "class": "main", "len": 293.0610772737953, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41145968437195, 37.79920898597781 ], [ -122.41166353225708, 37.80014574758602 ] ] }, "properties": { "class": "service", "len": 134.41269954879778, "name": "August Alley", "name_de": "August Alley", "name_en": "August Alley", "name_es": "August Alley", "name_fr": "August Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40732908248901, 37.795945063138014 ], [ -122.40742027759552, 37.796377435229154 ] ] }, "properties": { "class": "path", "len": 61.86181455485705, "name": "Jason Ct", "name_de": "Jason Ct", "name_en": "Jason Ct", "name_es": "Jason Ct", "name_fr": "Jason Ct", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40985572338104, 37.80371041956209 ], [ -122.41029024124146, 37.80365955743819 ] ] }, "properties": { "class": "service", "len": 48.38889128704392, "name": "Fielding St", "name_de": "Fielding St", "name_en": "Fielding St", "name_es": "Fielding St", "name_fr": "Fielding St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40762412548065, 37.79680980478974 ], [ -122.40768849849701, 37.79713619974259 ] ] }, "properties": { "class": "street", "len": 46.16832788890606, "name": "Pelton Pl", "name_de": "Pelton Pl", "name_en": "Pelton Pl", "name_es": "Pelton Pl", "name_fr": "Pelton Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4299830198288, 37.78650430839168 ], [ -122.43017077445984, 37.78744123109506 ], [ -122.43035852909088, 37.78836966314214 ], [ -122.43055164813995, 37.78932775886948 ], [ -122.430739402771, 37.79025616721429 ], [ -122.43091642856598, 37.79113369314532 ], [ -122.43109345436096, 37.79201120865472 ], [ -122.43126511573792, 37.79289295287215 ], [ -122.43138313293457, 37.79344827676231 ], [ -122.43145287036896, 37.793770447487695 ], [ -122.43163526058197, 37.79468608293166 ], [ -122.43182301521301, 37.79564409675727 ], [ -122.43201076984406, 37.79657666465477 ], [ -122.43220388889311, 37.79750922077997 ], [ -122.43239164352416, 37.798441765132765 ], [ -122.43248283863066, 37.798908032894516 ], [ -122.43255794048308, 37.79928528374775 ], [ -122.4325793981552, 37.79937429771308 ], [ -122.43260085582732, 37.79946331157114 ], [ -122.43269205093382, 37.79983632085744 ], [ -122.43275105953215, 37.80014150887248 ], [ -122.43276715278624, 37.800213566969795 ] ] }, "properties": { "class": "street", "len": 1956.0814192906666, "name": "Buchanan St", "name_de": "Buchanan St", "name_en": "Buchanan St", "name_es": "Buchanan St", "name_fr": "Buchanan St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42468297481537, 37.785279083856395 ], [ -122.42453277111052, 37.78527484428987 ], [ -122.42444157600401, 37.785266365156076 ], [ -122.42435038089752, 37.78524940688557 ], [ -122.42424845695496, 37.78521972990284 ], [ -122.42417871952057, 37.78518157376468 ], [ -122.42401242256165, 37.78508830312183 ], [ -122.42386221885681, 37.78497807402849 ], [ -122.42356717586516, 37.78474065696133 ], [ -122.42343306541443, 37.784647385762014 ], [ -122.423357963562, 37.78461346893308 ], [ -122.42327213287352, 37.78457955208857 ], [ -122.42315411567687, 37.78454563522852 ], [ -122.42304146289824, 37.78452867679263 ], [ -122.42293953895567, 37.78453291640197 ], [ -122.42283761501311, 37.78454139561992 ] ] }, "properties": { "class": "main", "len": 240.6820203376815, "name": "Starr King Way", "name_de": "Starr King Way", "name_en": "Starr King Way", "name_es": "Starr King Way", "name_fr": "Starr King Way", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40979135036469, 37.78667388804195 ], [ -122.40943729877472, 37.78671628289371 ], [ -122.40933537483215, 37.78626689622757 ] ] }, "properties": { "class": "service", "len": 104.69671450344367, "name": "Elwood St", "name_de": "Elwood St", "name_en": "Elwood St", "name_es": "Elwood St", "name_fr": "Elwood St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40793526172638, 37.789870391647334 ], [ -122.4080103635788, 37.79027736361563 ] ] }, "properties": { "class": "street", "len": 58.154449528707914, "name": "Chelsea Pl", "name_de": "Chelsea Pl", "name_en": "Chelsea Pl", "name_es": "Chelsea Pl", "name_fr": "Chelsea Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41567611694336, 37.78545714543098 ], [ -122.41574048995972, 37.785787830074185 ], [ -122.4157726764679, 37.78592349514079 ] ] }, "properties": { "class": "street", "len": 66.28318559099694, "name": "Ada Ct", "name_de": "Ada Ct", "name_en": "Ada Ct", "name_es": "Ada Ct", "name_fr": "Ada Ct", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43379175662994, 37.78441844686463 ], [ -122.43390440940857, 37.78505014691581 ] ] }, "properties": { "class": "street", "len": 89.89039214564565, "name": "Avery St", "name_de": "Avery St", "name_en": "Avery St", "name_es": "Avery St", "name_fr": "Avery St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40541934967041, 37.78443964494047 ], [ -122.4047863483429, 37.78493567817956 ] ] }, "properties": { "class": "street", "len": 99.67455843892422, "name": "Jessie St", "name_de": "Jessie St", "name_en": "Jessie St", "name_es": "Jessie St", "name_fr": "Jessie St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40434646606445, 37.78881055829413 ], [ -122.40444302558899, 37.78927688684228 ] ] }, "properties": { "class": "street", "len": 66.6413595301592, "name": "Robert Kirk Ln", "name_de": "Robert Kirk Ln", "name_en": "Robert Kirk Ln", "name_es": "Robert Kirk Ln", "name_fr": "Robert Kirk Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40994155406952, 37.78742851276689 ], [ -122.41003811359407, 37.78741579443648 ], [ -122.4105155467987, 37.787356442199 ] ] }, "properties": { "class": "street", "len": 64.64616384897994, "name": "Derby St", "name_de": "Derby St", "name_en": "Derby St", "name_es": "Derby St", "name_fr": "Derby St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41157233715057, 37.78722077976294 ], [ -122.41098761558533, 37.787297089913864 ] ] }, "properties": { "class": "street", "len": 66.30789168628041, "name": "Derby St", "name_de": "Derby St", "name_en": "Derby St", "name_es": "Derby St", "name_fr": "Derby St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40531206130981, 37.78916242465299 ], [ -122.40688383579254, 37.78897589329795 ] ] }, "properties": { "class": "service", "len": 176.7976000965923, "name": "Campton Pl", "name_de": "Campton Pl", "name_en": "Campton Pl", "name_es": "Campton Pl", "name_fr": "Campton Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4371337890625, 37.78464314615926 ], [ -122.43636667728424, 37.78473641736392 ], [ -122.43472516536713, 37.7849483969368 ] ] }, "properties": { "class": "street", "len": 1272.9898772454203, "name": "Post St", "name_de": "Post St", "name_en": "Post St", "name_es": "Post St", "name_fr": "Post St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40440011024475, 37.790714008130706 ], [ -122.40421235561371, 37.789785605538455 ] ] }, "properties": { "class": "street", "len": 132.73159721801204, "name": "Claude Ln", "name_de": "Claude Ln", "name_en": "Claude Ln", "name_es": "Claude Ln", "name_fr": "Claude Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42782652378082, 37.78418102799973 ], [ -122.42857754230499, 37.78409199572878 ], [ -122.42884039878845, 37.784062318281286 ], [ -122.42954313755035, 37.78399024443063 ], [ -122.43060529232025, 37.78386729475848 ] ] }, "properties": { "class": "street_limited", "len": 311.94538997496045, "name": "Western Shore Ln", "name_de": "Western Shore Ln", "name_en": "Western Shore Ln", "name_es": "Western Shore Ln", "name_fr": "Western Shore Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40474343299866, 37.78568608111079 ], [ -122.4052369594574, 37.7853002816854 ] ] }, "properties": { "class": "street", "len": 77.62201814019302, "name": "Stevenson St", "name_de": "Stevenson St", "name_en": "Stevenson St", "name_es": "Stevenson St", "name_fr": "Stevenson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4128919839859, 37.78744123109508 ], [ -122.41329967975616, 37.787386118323695 ] ] }, "properties": { "class": "service", "len": 46.04519193203097, "name": "Colin Pl", "name_de": "Colin Pl", "name_en": "Colin Pl", "name_es": "Colin Pl", "name_fr": "Colin Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42117464542389, 37.78428701865866 ], [ -122.42274641990662, 37.78408775609415 ] ] }, "properties": { "class": "service", "len": 177.44782134531096, "name": "Olive St", "name_de": "Olive St", "name_en": "Olive St", "name_es": "Olive St", "name_fr": "Olive St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42101907730103, 37.78430397714999 ], [ -122.41946339607237, 37.78450323913154 ], [ -122.4178111553192, 37.78471097977434 ] ] }, "properties": { "class": "service", "len": 362.12530462541554, "name": "Olive St", "name_de": "Olive St", "name_en": "Olive St", "name_es": "Olive St", "name_fr": "Olive St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41287589073181, 37.785329958635764 ], [ -122.41299390792847, 37.7853172399442 ], [ -122.41393804550171, 37.78519853205076 ] ] }, "properties": { "class": "service", "len": 119.63500167919395, "name": "Antonio St", "name_de": "Antonio St", "name_en": "Antonio St", "name_es": "Antonio St", "name_fr": "Antonio St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.405344247818, 37.789315040865986 ], [ -122.40573048591614, 37.78926840816768 ], [ -122.40571439266205, 37.78920481807708 ] ] }, "properties": { "class": "street_limited", "len": 52.307382220634594, "name": "Tillman Pl", "name_de": "Tillman Pl", "name_en": "Tillman Pl", "name_es": "Tillman Pl", "name_fr": "Tillman Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4082088470459, 37.78992550256591 ], [ -122.40874528884888, 37.78985767373719 ] ] }, "properties": { "class": "service", "len": 60.89923809061345, "name": "Anson Pl", "name_de": "Anson Pl", "name_en": "Anson Pl", "name_es": "Anson Pl", "name_fr": "Anson Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41230189800262, 37.785440187204266 ], [ -122.41277396678925, 37.785380833380124 ], [ -122.41288661956787, 37.78536811469731 ] ] }, "properties": { "class": "service", "len": 65.40454476316583, "name": "Steveloe Pl", "name_de": "Steveloe Pl", "name_en": "Steveloe Pl", "name_es": "Steveloe Pl", "name_fr": "Steveloe Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42193639278412, 37.788000835369274 ], [ -122.42350280284882, 37.787805822239655 ], [ -122.42514431476593, 37.78759809029636 ] ] }, "properties": { "class": "service", "len": 361.6678602508423, "name": "Fern St", "name_de": "Fern St", "name_en": "Fern St", "name_es": "Fern St", "name_fr": "Fern St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42177546024323, 37.7880177930084 ], [ -122.42021441459656, 37.788225523771885 ], [ -122.41856217384338, 37.78843325395139 ] ] }, "properties": { "class": "service", "len": 362.80110273447985, "name": "Fern St", "name_de": "Fern St", "name_en": "Fern St", "name_es": "Fern St", "name_fr": "Fern St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42874383926392, 37.784787292516874 ], [ -122.42857754230499, 37.78409199572878 ] ] }, "properties": { "class": "street_limited", "len": 99.77217096920332, "name": "Lottie Bennett Ln", "name_de": "Lottie Bennett Ln", "name_en": "Lottie Bennett Ln", "name_es": "Lottie Bennett Ln", "name_fr": "Lottie Bennett Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4213033914566, 37.785694560196426 ], [ -122.4214643239975, 37.78567760202419 ], [ -122.42171108722687, 37.78564792521341 ], [ -122.42302536964417, 37.785474103653804 ], [ -122.42356717586517, 37.785393552060754 ], [ -122.4238407611847, 37.78536811469731 ], [ -122.4240928888321, 37.785372354258485 ], [ -122.42433428764345, 37.785397791620454 ], [ -122.42452204227449, 37.785406270739166 ], [ -122.42471516132356, 37.78541898941539 ] ] }, "properties": { "class": "main", "len": 384.3998551210367, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43541181087494, 37.783930889442026 ], [ -122.4347198009491, 37.78399448407086 ], [ -122.43453741073608, 37.78401144262929 ] ] }, "properties": { "class": "street", "len": 97.80844382981046, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4314421415329, 37.78461770853756 ], [ -122.43446230888367, 37.784231903535 ] ] }, "properties": { "class": "main", "len": 341.1990518745154, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43190884590149, 37.787699836627255 ], [ -122.4335503578186, 37.787487864946456 ], [ -122.43519723415375, 37.78727589265764 ] ] }, "properties": { "class": "street", "len": 370.9240586785205, "name": "Wilmot St", "name_de": "Wilmot St", "name_en": "Wilmot St", "name_es": "Wilmot St", "name_fr": "Wilmot St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41762340068817, 37.78377826210958 ], [ -122.41791844367982, 37.78374434488178 ] ] }, "properties": { "class": "service", "len": 186.21791320864656, "name": "Willow St", "name_de": "Willow St", "name_en": "Willow St", "name_es": "Willow St", "name_fr": "Willow St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42884039878845, 37.784062318281286 ], [ -122.42900133132935, 37.78475337575214 ] ] }, "properties": { "class": "street_limited", "len": 99.27741183229244, "name": "Bertie Minor Ln", "name_de": "Bertie Minor Ln", "name_en": "Bertie Minor Ln", "name_es": "Bertie Minor Ln", "name_fr": "Bertie Minor Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4046790599823, 37.79021377439333 ], [ -122.4047702550888, 37.79066737631527 ] ] }, "properties": { "class": "service", "len": 64.68496115748317, "name": "Mark Ln", "name_de": "Mark Ln", "name_en": "Mark Ln", "name_es": "Mark Ln", "name_fr": "Mark Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4043357372284, 37.79072248663947 ], [ -122.40452885627745, 37.79165511666101 ] ] }, "properties": { "class": "street", "len": 132.7430770321996, "name": "St George Alley", "name_de": "St George Alley", "name_en": "St George Alley", "name_es": "St George Alley", "name_fr": "St George Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.788361184363445 ], [ -122.40513503551483, 37.788242481359454 ] ] }, "properties": { "class": "street", "len": 174.3184663189849, "name": "Maiden Ln", "name_de": "Maiden Ln", "name_en": "Maiden Ln", "name_es": "Maiden Ln", "name_fr": "Maiden Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42174863815308, 37.787080877614905 ], [ -122.42330968379974, 37.786868904158666 ] ] }, "properties": { "class": "service", "len": 176.37711019437333, "name": "Daniel Burnham Ct", "name_de": "Daniel Burnham Ct", "name_en": "Daniel Burnham Ct", "name_es": "Daniel Burnham Ct", "name_fr": "Daniel Burnham Ct", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43282079696655, 37.7880559476822 ], [ -122.43301391601562, 37.78901404747704 ] ] }, "properties": { "class": "street", "len": 136.36240684315945, "name": "Orben Pl", "name_de": "Orben Pl", "name_en": "Orben Pl", "name_es": "Orben Pl", "name_fr": "Orben Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42471516132355, 37.78541898941539 ], [ -122.42454886436462, 37.785520738746506 ], [ -122.42439866065978, 37.785554655159096 ], [ -122.42424309253691, 37.78562248793755 ], [ -122.4241143465042, 37.78571575790625 ], [ -122.42371737957, 37.78614395034285 ], [ -122.42360472679137, 37.78625841720761 ], [ -122.42356181144713, 37.78636016538299 ] ] }, "properties": { "class": "street", "len": 190.34403875146563, "name": "Peter Yorke Way", "name_de": "Peter Yorke Way", "name_en": "Peter Yorke Way", "name_es": "Peter Yorke Way", "name_fr": "Peter Yorke Way", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41176009178162, 37.78815345398132 ], [ -122.41239309310913, 37.78807290530868 ], [ -122.4127846956253, 37.78802627182651 ], [ -122.41341233253479, 37.78794572301525 ] ] }, "properties": { "class": "service", "len": 186.62898058156162, "name": "Cosmo Pl", "name_de": "Cosmo Pl", "name_en": "Cosmo Pl", "name_es": "Cosmo Pl", "name_fr": "Cosmo Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41215169429779, 37.785910776551354 ], [ -122.41235017776489, 37.78684770677962 ], [ -122.41254329681395, 37.78776766743669 ] ] }, "properties": { "class": "service", "len": 265.24167747082606, "name": "Shannon St", "name_de": "Shannon St", "name_en": "Shannon St", "name_es": "Shannon St", "name_fr": "Shannon St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43636667728424, 37.78473641736392 ], [ -122.43655443191528, 37.785669122936596 ], [ -122.43674218654633, 37.786601816738134 ], [ -122.43692994117737, 37.78753449876839 ], [ -122.43712842464447, 37.78848836594184 ], [ -122.4371337890625, 37.78851380223124 ] ] }, "properties": { "class": "street", "len": 793.0822708243238, "name": "Pierce St", "name_de": "Pierce St", "name_en": "Pierce St", "name_es": "Pierce St", "name_fr": "Pierce St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41424918174744, 37.78374434488178 ], [ -122.41443157196045, 37.78466010456885 ], [ -122.41452276706696, 37.78510526142928 ], [ -122.41461932659149, 37.785592811104614 ], [ -122.41480708122253, 37.7865212663742 ], [ -122.41500020027159, 37.78745818886262 ], [ -122.41518795490263, 37.78839086008464 ], [ -122.4153810739517, 37.78934471620411 ], [ -122.41557419300078, 37.79025616721426 ], [ -122.4156868457794, 37.79081151092244 ], [ -122.41575121879576, 37.791116736221234 ], [ -122.41576731204982, 37.791209999255486 ] ] }, "properties": { "class": "street", "len": 1465.902447961873, "name": "Leavenworth St", "name_de": "Leavenworth St", "name_en": "Leavenworth St", "name_es": "Leavenworth St", "name_fr": "Leavenworth St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43557810783386, 37.78917514268277 ], [ -122.43713378906251, 37.78897589329795 ] ] }, "properties": { "class": "street", "len": 185.37523135522827, "name": "Perine Pl", "name_de": "Perine Pl", "name_en": "Perine Pl", "name_es": "Perine Pl", "name_fr": "Perine Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42369055747986, 37.78874696780958 ], [ -122.42212414741516, 37.78894197845551 ] ] }, "properties": { "class": "service", "len": 176.504996529051, "name": "Austin St", "name_de": "Austin St", "name_en": "Austin St", "name_es": "Austin St", "name_fr": "Austin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4219685792923, 37.78896741458879 ], [ -122.42040216922759, 37.78916666399649 ], [ -122.41875529289244, 37.7893786308617 ] ] }, "properties": { "class": "service", "len": 362.7780641879029, "name": "Austin St", "name_de": "Austin St", "name_en": "Austin St", "name_es": "Austin St", "name_fr": "Austin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43222534656525, 37.786224501118014 ], [ -122.43240773677826, 37.78714870899247 ] ] }, "properties": { "class": "path", "len": 131.81254720279276, "name": "Cottage Row", "name_de": "Cottage Row", "name_en": "Cottage Row", "name_es": "Cottage Row", "name_fr": "Cottage Row", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42159843444824, 37.787102074927084 ], [ -122.4200212955475, 37.78728013210937 ], [ -122.41836905479433, 37.787487864946456 ] ] }, "properties": { "class": "service", "len": 363.4626556619211, "name": "Hemlock St", "name_de": "Hemlock St", "name_en": "Hemlock St", "name_es": "Hemlock St", "name_fr": "Hemlock St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42778360843658, 37.783926649798154 ], [ -122.42633521556854, 37.78410895426485 ], [ -122.42627084255219, 37.784138631693594 ], [ -122.4262547492981, 37.784193746886835 ], [ -122.42643177509309, 37.785079823966655 ] ] }, "properties": { "class": "street", "len": 305.94004941331576, "name": "Cleary Ct", "name_de": "Cleary Ct", "name_en": "Cleary Ct", "name_es": "Cleary Ct", "name_fr": "Cleary Ct", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42136240005493, 37.78521549033291 ], [ -122.42293417453766, 37.7850162302717 ] ] }, "properties": { "class": "street", "len": 177.46998985809063, "name": "Myrtle St", "name_de": "Myrtle St", "name_en": "Myrtle St", "name_es": "Myrtle St", "name_fr": "Myrtle St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42121756076813, 37.78523668818016 ], [ -122.41965115070342, 37.78543594764699 ], [ -122.41799890995026, 37.785643685668035 ] ] }, "properties": { "class": "service", "len": 363.0500218133764, "name": "Myrtle St", "name_de": "Myrtle St", "name_en": "Myrtle St", "name_es": "Myrtle St", "name_fr": "Myrtle St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41689920425415, 37.78675867772114 ], [ -122.41697430610657, 37.787110553850255 ], [ -122.41699039936066, 37.78720382194092 ] ] }, "properties": { "class": "street_limited", "len": 63.67390853814074, "name": "Meacham Pl", "name_de": "Meacham Pl", "name_en": "Meacham Pl", "name_es": "Meacham Pl", "name_fr": "Meacham Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41468906402588, 37.78418102799973 ], [ -122.41478025913239, 37.78461346893308 ] ] }, "properties": { "class": "street", "len": 61.940650626457945, "name": "Cohen Pl", "name_de": "Cohen Pl", "name_en": "Cohen Pl", "name_es": "Cohen Pl", "name_fr": "Cohen Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42825031280518, 37.78626265671772 ], [ -122.42896914482117, 37.78618210598413 ] ] }, "properties": { "class": "street", "len": 80.42590689447029, "name": "Hemlock St", "name_de": "Hemlock St", "name_en": "Hemlock St", "name_es": "Hemlock St", "name_fr": "Hemlock St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41186201572418, 37.80536341952066 ], [ -122.41351962089539, 37.80515573694268 ] ] }, "properties": { "class": "street", "len": 186.9047548890102, "name": "Vandewater St", "name_de": "Vandewater St", "name_en": "Vandewater St", "name_es": "Vandewater St", "name_fr": "Vandewater St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40576267242432, 37.80676208289539 ], [ -122.40596115589142, 37.80662645609157 ] ] }, "properties": { "class": "main", "len": 29.420489458901464, "name": "Bay St", "name_de": "Bay St", "name_en": "Bay St", "name_es": "Bay St", "name_fr": "Bay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40537643432617, 37.80567282309445 ], [ -122.40544617176056, 37.805689776677475 ], [ -122.40610599517822, 37.80560077032319 ], [ -122.40695893764496, 37.80549057183116 ] ] }, "properties": { "class": "street", "len": 178.97101766940898, "name": "Francisco St", "name_de": "Francisco St", "name_en": "Francisco St", "name_es": "Francisco St", "name_fr": "Francisco St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4095070362091, 37.80613480683977 ], [ -122.40931928157806, 37.80520659803617 ] ] }, "properties": { "class": "street", "len": 133.10344435826693, "name": "Midway St", "name_de": "Midway St", "name_en": "Midway St", "name_es": "Midway St", "name_fr": "Midway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40911543369293, 37.808135290254896 ], [ -122.40899205207825, 37.80805476336766 ], [ -122.40886867046356, 37.808016619022 ], [ -122.40766167640686, 37.807495310989914 ], [ -122.40755438804626, 37.807444451472676 ], [ -122.40738272666931, 37.80734273233311 ] ] }, "properties": { "class": "street", "len": 223.6784018579254, "name": "The Embarcadero", "name_de": "The Embarcadero", "name_en": "The Embarcadero", "name_es": "The Embarcadero", "name_fr": "The Embarcadero", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40738272666931, 37.80734273233311 ], [ -122.40713059902191, 37.807202868287426 ], [ -122.40708231925966, 37.80717743843246 ], [ -122.40614891052248, 37.80671546120967 ], [ -122.40614354610445, 37.80671122287313 ], [ -122.40596115589146, 37.80662645609157 ] ] }, "properties": { "class": "main", "len": 187.63943289268616, "name": "The Embarcadero", "name_de": "The Embarcadero", "name_en": "The Embarcadero", "name_es": "The Embarcadero", "name_fr": "The Embarcadero", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43159770965576, 37.78688586205755 ], [ -122.431640625, 37.78717838520059 ], [ -122.43154406547546, 37.78726741375342 ] ] }, "properties": { "class": "main", "len": 57.58368741715442, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41539716720581, 37.7977593133753 ], [ -122.41703867912292, 37.79755160941504 ], [ -122.4186909198761, 37.797339665996496 ], [ -122.4195009469986, 37.79722945517852 ], [ -122.42031633853912, 37.797110766421454 ], [ -122.42196321487427, 37.79690306063772 ], [ -122.42352962493898, 37.79669959318127 ] ] }, "properties": { "class": "street", "len": 917.3084934182016, "name": "Vallejo St", "name_de": "Vallejo St", "name_en": "Vallejo St", "name_es": "Vallejo St", "name_fr": "Vallejo St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4264532327652, 37.78599980663131 ], [ -122.42649078369139, 37.786194824526845 ], [ -122.42651224136351, 37.78631353082002 ], [ -122.42646932601927, 37.78631777032694 ], [ -122.42657124996184, 37.78684346730307 ], [ -122.42665708065032, 37.78683498834927 ], [ -122.4266731739044, 37.78692825678771 ] ] }, "properties": { "class": "path", "len": 147.8650025763167, "name": "Octavia", "name_de": "Octavia", "name_en": "Octavia", "name_es": "Octavia", "name_fr": "Octavia", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.432000041008, 37.788161932783865 ], [ -122.43190884590149, 37.787699836627255 ], [ -122.43181228637695, 37.78723349812689 ] ] }, "properties": { "class": "main", "len": 132.42041674862776, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42233872413635, 37.79877239166739 ], [ -122.42244601249696, 37.79875967528956 ], [ -122.4237871170044, 37.79857740696702 ], [ -122.42390513420106, 37.79856469055563 ], [ -122.42406070232393, 37.79854349653181 ] ] }, "properties": { "class": "street", "len": 194.08371844381782, "name": "Union St", "name_de": "Union St", "name_en": "Union St", "name_es": "Union St", "name_fr": "Union St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41658806800842, 37.79902671876394 ], [ -122.41731226444244, 37.79894618194477 ] ] }, "properties": { "class": "street", "len": 81.71896352755662, "name": "Macondray Ln", "name_de": "Macondray Ln", "name_en": "Macondray Ln", "name_es": "Macondray Ln", "name_fr": "Macondray Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.793622079565 ], [ -122.40461468696594, 37.79356273231249 ], [ -122.40612208843231, 37.79337621206568 ], [ -122.40664243698119, 37.79331262551028 ], [ -122.407146692276, 37.79324903890016 ], [ -122.40727543830872, 37.79323208246155 ], [ -122.40738809108734, 37.79321936513004 ], [ -122.40771532058716, 37.79317697400918 ], [ -122.40854680538177, 37.79307099610066 ], [ -122.40902423858643, 37.79300317015943 ], [ -122.40934610366821, 37.79296077891453 ], [ -122.4093621969223, 37.79296077891453 ], [ -122.40937829017638, 37.792956539788705 ], [ -122.40971088409422, 37.792922626773326 ], [ -122.4110037088394, 37.792765778874795 ], [ -122.41112172603607, 37.79273610491057 ], [ -122.41190493106842, 37.792634365514225 ], [ -122.4122428894043, 37.79259197405773 ], [ -122.41265058517457, 37.79254110427786 ], [ -122.41429746150972, 37.79233762480803 ], [ -122.41511821746828, 37.79223588486298 ], [ -122.41552591323854, 37.79218077566758 ], [ -122.41594970226288, 37.79212990560456 ], [ -122.41629302501678, 37.79208327468274 ], [ -122.41760194301605, 37.79192642500233 ], [ -122.4192327260971, 37.791701747853054 ], [ -122.42088496685028, 37.79149402686194 ], [ -122.42244064807892, 37.79130750139271 ], [ -122.42259621620178, 37.79129054450852 ], [ -122.42415189743042, 37.79109130082781 ], [ -122.42580950260164, 37.790879338875534 ] ] }, "properties": { "class": "street", "len": 3287.365366319779, "name": "Sacramento St", "name_de": "Sacramento St", "name_en": "Sacramento St", "name_es": "Sacramento St", "name_fr": "Sacramento St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40522623062134, 37.78869609538249 ], [ -122.40434646606447, 37.78881055829413 ], [ -122.40418016910554, 37.78883175511017 ] ] }, "properties": { "class": "street", "len": 173.9752821090882, "name": "Post St", "name_de": "Post St", "name_en": "Post St", "name_es": "Post St", "name_fr": "Post St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.791362611239464 ], [ -122.40424454212189, 37.79168903025815 ], [ -122.40435183048248, 37.792218928191865 ], [ -122.40444302558899, 37.79265556123338 ], [ -122.40461468696594, 37.79356273231249 ], [ -122.40471124649049, 37.794024791804866 ], [ -122.40479707717897, 37.79445293609456 ] ] }, "properties": { "class": "main", "len": 527.1476029032497, "name": "Kearny St", "name_de": "Kearny St", "name_en": "Kearny St", "name_es": "Kearny St", "name_fr": "Kearny St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.79724641069967 ], [ -122.4041962623596, 37.79724217181975 ], [ -122.40477561950682, 37.79717011082383 ], [ -122.40532815456389, 37.79709804975758 ], [ -122.40553736686705, 37.79707261642332 ], [ -122.40652978420258, 37.79694968851756 ], [ -122.40683019161224, 37.79691153843622 ], [ -122.40762412548065, 37.79680980478974 ], [ -122.40843415260315, 37.79670807100316 ], [ -122.40874528884888, 37.796669920797065 ], [ -122.40887403488159, 37.79665296514357 ], [ -122.40926027297974, 37.79660633707646 ], [ -122.41009712219238, 37.79650036408717 ] ] }, "properties": { "class": "street", "len": 907.8464553349108, "name": "Pacific Ave", "name_de": "Pacific Ave", "name_en": "Pacific Ave", "name_es": "Pacific Ave", "name_fr": "Pacific Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.79408413868621 ], [ -122.40471124649048, 37.794024791804866 ], [ -122.40621328353882, 37.793834033649055 ] ] }, "properties": { "class": "service", "len": 541.7946597217881, "name": "Commercial St", "name_de": "Commercial St", "name_en": "Commercial St", "name_es": "Commercial St", "name_fr": "Commercial St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.78709359600294 ], [ -122.40460932254791, 37.78675019875761 ], [ -122.40508139133453, 37.786377123398616 ], [ -122.4059182405472, 37.78571575790625 ], [ -122.40736126899719, 37.78457955208857 ], [ -122.4079352617264, 37.78412591279702 ], [ -122.40809082984924, 37.78400296335056 ], [ -122.40840196609497, 37.78375706384402 ], [ -122.40842342376709, 37.78374434488178 ] ] }, "properties": { "class": "main", "len": 891.4288760387328, "name": "Market St", "name_de": "Market St", "name_en": "Market St", "name_es": "Market St", "name_fr": "Market St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40622937679291, 37.78571575790625 ], [ -122.40616500377655, 37.785703039281096 ], [ -122.40612208843231, 37.785698799738874 ], [ -122.40606307983398, 37.785698799738874 ], [ -122.40591824054718, 37.78571575790625 ], [ -122.40586996078491, 37.78571575790625 ], [ -122.40582704544067, 37.78571151836477 ], [ -122.40577340126038, 37.785703039281096 ], [ -122.40573585033417, 37.78568608111079 ], [ -122.40569293498993, 37.78566064384806 ], [ -122.4052369594574, 37.7853002816854 ], [ -122.4047863483429, 37.784935678179586 ], [ -122.40426063537598, 37.784490520297716 ], [ -122.40418016910554, 37.784426926095676 ] ] }, "properties": { "class": "main", "len": 1023.8620893001719, "name": "4th St", "name_de": "4th St", "name_en": "4th St", "name_es": "4th St", "name_fr": "4th St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40508139133453, 37.786377123398616 ], [ -122.40418016910554, 37.78565216475853 ] ] }, "properties": { "class": "street_limited", "len": 247.80509464777072, "name": "Yerba Buena Ln", "name_de": "Yerba Buena Ln", "name_en": "Yerba Buena Ln", "name_es": "Yerba Buena Ln", "name_fr": "Yerba Buena Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42580950260162, 37.79087933887559 ], [ -122.42745101451874, 37.79066737631527 ], [ -122.42754757404327, 37.790658897800206 ], [ -122.42909252643585, 37.79045965241627 ], [ -122.430739402771, 37.79025616721429 ], [ -122.43238091468811, 37.79004420286635 ], [ -122.43348062038422, 37.78991278466528 ], [ -122.43360936641693, 37.789895827461 ], [ -122.43402242660522, 37.78984071652026 ], [ -122.43566930294037, 37.78963299029734 ] ] }, "properties": { "class": "street", "len": 1112.6142921479545, "name": "Sacramento St", "name_de": "Sacramento St", "name_en": "Sacramento St", "name_es": "Sacramento St", "name_fr": "Sacramento St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42782652378082, 37.80084513199106 ], [ -122.42781043052673, 37.80076459715455 ], [ -122.42767095565796, 37.80006521198694 ], [ -122.4276602268219, 37.80000163118878 ], [ -122.42764413356781, 37.79992957288471 ], [ -122.42746710777283, 37.79906910652822 ], [ -122.42727935314178, 37.79813657009509 ], [ -122.42709159851074, 37.7972040218895 ], [ -122.42690920829773, 37.796275700847126 ], [ -122.42671072483063, 37.79532193420228 ], [ -122.42660343647003, 37.79479205852346 ], [ -122.42652833461761, 37.79440206759597 ], [ -122.42636740207672, 37.79362631865265 ], [ -122.42632985115051, 37.79351610229493 ], [ -122.42629766464233, 37.79343132036946 ], [ -122.42616355419159, 37.7927784962844 ], [ -122.42615282535553, 37.79263860465857 ], [ -122.42614209651947, 37.79250719107183 ], [ -122.42600798606873, 37.79188403313971 ], [ -122.42598116397858, 37.79176109660045 ] ] }, "properties": { "class": "street", "len": 1296.954226786087, "name": "Gough St", "name_de": "Gough St", "name_en": "Gough St", "name_es": "Gough St", "name_fr": "Gough St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42398023605347, 37.79016290297611 ], [ -122.42561638355255, 37.7899551776589 ], [ -122.4272632598877, 37.78974321244753 ], [ -122.42891013622285, 37.789535485950495 ], [ -122.43055164813995, 37.78932775886951 ], [ -122.43219316005707, 37.78911579185838 ], [ -122.43301391601562, 37.78901404747707 ], [ -122.43383467197418, 37.78890806359755 ], [ -122.43548154830933, 37.78870033475278 ] ] }, "properties": { "class": "street", "len": 1297.8672409845715, "name": "California St", "name_de": "California St", "name_en": "California St", "name_es": "California St", "name_fr": "California St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42598116397858, 37.791761096600425 ], [ -122.42580950260162, 37.79087933887556 ] ] }, "properties": { "class": "street", "len": 125.24834929052936, "name": "Gough St", "name_de": "Gough St", "name_en": "Gough St", "name_es": "Gough St", "name_fr": "Gough St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43566930294037, 37.78963299029734 ], [ -122.43557810783386, 37.78917514268277 ], [ -122.43548154830933, 37.78870033475276 ] ] }, "properties": { "class": "street", "len": 132.9305839748242, "name": "Steiner St", "name_de": "Steiner St", "name_en": "Steiner St", "name_es": "Steiner St", "name_fr": "Steiner St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43548154830933, 37.78870033475276 ], [ -122.43528842926025, 37.78774223089045 ], [ -122.43519723415376, 37.78727589265761 ], [ -122.43510067462921, 37.78681379096045 ], [ -122.43491291999817, 37.785876860302224 ] ] }, "properties": { "class": "street", "len": 402.3593321339213, "name": "Steiner St", "name_de": "Steiner St", "name_en": "Steiner St", "name_es": "Steiner St", "name_fr": "Steiner St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4250477552414, 37.78713175115391 ], [ -122.42667317390442, 37.78692825678771 ], [ -122.42673218250275, 37.78691977784362 ], [ -122.42786943912506, 37.78677563564531 ], [ -122.42833614349365, 37.78671628289368 ] ] }, "properties": { "class": "street", "len": 370.8120509786245, "name": "Sutter St", "name_de": "Sutter St", "name_en": "Sutter St", "name_es": "Sutter St", "name_fr": "Sutter St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42799818515778, 37.78504590733613 ], [ -122.42814838886261, 37.785787830074185 ] ] }, "properties": { "class": "street", "len": 105.35203082941551, "name": "Laguna St", "name_de": "Laguna St", "name_en": "Laguna St", "name_es": "Laguna St", "name_fr": "Laguna St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43129193782806, 37.785372354258485 ], [ -122.4297845363617, 37.7855673738098 ], [ -122.42902278900146, 37.78566912293662 ], [ -122.42887794971466, 37.78568608111079 ], [ -122.42814838886261, 37.785787830074185 ] ] }, "properties": { "class": "street", "len": 354.766990348488, "name": "Post St", "name_de": "Post St", "name_en": "Post St", "name_es": "Post St", "name_fr": "Post St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43548154830933, 37.78870033475276 ], [ -122.43712842464447, 37.78848836594184 ], [ -122.4371337890625, 37.78848836594184 ] ] }, "properties": { "class": "street", "len": 1274.824330638367, "name": "California St", "name_de": "California St", "name_en": "California St", "name_es": "California St", "name_fr": "California St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42833614349365, 37.78671628289371 ], [ -122.42852926254271, 37.78765320290964 ], [ -122.42871701717375, 37.78857739291647 ], [ -122.42891013622283, 37.789535485950495 ], [ -122.42909252643584, 37.79045965241627 ], [ -122.42927491664882, 37.79134141514943 ], [ -122.4294519424438, 37.792218928191865 ], [ -122.42962896823879, 37.793100669930396 ], [ -122.42980599403377, 37.79397816207892 ], [ -122.42999374866481, 37.79489803396326 ], [ -122.43018686771389, 37.79585604504041 ], [ -122.43037462234493, 37.79678437135622 ], [ -122.43056237697597, 37.797716924859415 ], [ -122.43075013160701, 37.79864946659016 ], [ -122.43082523345943, 37.7990140024299 ], [ -122.43093788623806, 37.799581996548376 ], [ -122.43110954761501, 37.800366160355566 ], [ -122.43112027645107, 37.80042974083997 ] ] }, "properties": { "class": "street", "len": 1956.5208624328263, "name": "Laguna St", "name_de": "Laguna St", "name_en": "Laguna St", "name_es": "Laguna St", "name_fr": "Laguna St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42814838886261, 37.785787830074185 ], [ -122.42825031280518, 37.78626265671772 ], [ -122.42833614349365, 37.78671628289371 ] ] }, "properties": { "class": "street", "len": 132.52717323649773, "name": "Laguna St", "name_de": "Laguna St", "name_en": "Laguna St", "name_es": "Laguna St", "name_fr": "Laguna St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42814838886261, 37.785787830074185 ], [ -122.42750465869905, 37.785868381237506 ], [ -122.42645323276521, 37.78599980663131 ], [ -122.42486000061037, 37.786199064040595 ] ] }, "properties": { "class": "street", "len": 370.8104371989897, "name": "Post St", "name_de": "Post St", "name_en": "Post St", "name_es": "Post St", "name_fr": "Post St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42833614349365, 37.78671628289371 ], [ -122.4299830198288, 37.78650430839168 ], [ -122.43146896362305, 37.786330488846325 ], [ -122.431640625, 37.78629657278981 ] ] }, "properties": { "class": "street", "len": 372.80325169938106, "name": "Sutter St", "name_de": "Sutter St", "name_en": "Sutter St", "name_es": "Sutter St", "name_fr": "Sutter St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4371337890625, 37.78655518232762 ], [ -122.43674218654633, 37.786601816738134 ], [ -122.43510067462921, 37.78681379096047 ], [ -122.43345916271211, 37.78702152510845 ], [ -122.43240773677827, 37.78714870899247 ], [ -122.43181228637695, 37.78723349812689 ], [ -122.43154406547548, 37.78726741375342 ], [ -122.43017077445985, 37.78744123109506 ], [ -122.42852926254274, 37.78765320290964 ], [ -122.4268662929535, 37.78786517411618 ], [ -122.42524087429048, 37.78807290530866 ], [ -122.42359399795534, 37.78828063591721 ], [ -122.42202758789062, 37.7884714084107 ], [ -122.42187738418579, 37.788492605324016 ], [ -122.4203109741211, 37.78870033475276 ], [ -122.41865873336792, 37.78891230295561 ], [ -122.41765022277832, 37.78903524423468 ], [ -122.4170172214508, 37.7891115525119 ], [ -122.41576731204987, 37.78929384418854 ], [ -122.41538107395172, 37.78934471620411 ], [ -122.41450130939484, 37.78945069945733 ], [ -122.41374492645265, 37.789548203916056 ], [ -122.41207659244537, 37.78974321244753 ], [ -122.41044580936433, 37.78995941695688 ], [ -122.40882575511934, 37.79017138154805 ], [ -122.40880966186525, 37.790175620833686 ], [ -122.40879356861119, 37.790175620833686 ], [ -122.40801036357884, 37.79027736361561 ], [ -122.40787088871004, 37.79029432073231 ], [ -122.40752756595613, 37.79033671350706 ], [ -122.40723252296449, 37.790370627709315 ], [ -122.4071252346039, 37.79038334553116 ], [ -122.40700185298921, 37.790396063350826 ], [ -122.40676045417787, 37.790429977525854 ], [ -122.40652441978456, 37.79045965241624 ], [ -122.40633666515352, 37.790480848759216 ], [ -122.40557491779329, 37.790565634070326 ], [ -122.40526914596558, 37.79060802668941 ], [ -122.4047702550888, 37.79066737631525 ], [ -122.40440011024477, 37.790714008130706 ], [ -122.40433573722841, 37.79072248663944 ], [ -122.40418016910554, 37.79074368290703 ] ] }, "properties": { "class": "main", "len": 4777.280544232611, "name": "Bush St", "name_de": "Bush St", "name_en": "Bush St", "name_es": "Bush St", "name_fr": "Bush St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.431640625, 37.78629657278981 ], [ -122.43222534656525, 37.786224501118014 ], [ -122.43327140808107, 37.78608883660399 ] ] }, "properties": { "class": "street", "len": 183.80983219213513, "name": "Sutter St", "name_de": "Sutter St", "name_en": "Sutter St", "name_es": "Sutter St", "name_fr": "Sutter St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4349182844162, 37.794274896196235 ], [ -122.43473052978516, 37.79335077745011 ], [ -122.43455350399017, 37.79247751700376 ] ] }, "properties": { "class": "street", "len": 256.79662568399306, "name": "Fillmore St", "name_de": "Fillmore St", "name_en": "Fillmore St", "name_es": "Fillmore St", "name_fr": "Fillmore St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43327140808105, 37.78608883660399 ], [ -122.43307828903198, 37.785151896754726 ], [ -122.4329549074173, 37.78452019757326 ], [ -122.43294417858124, 37.784473561849175 ] ] }, "properties": { "class": "street", "len": 229.87838887474672, "name": "Fillmore St", "name_de": "Fillmore St", "name_en": "Fillmore St", "name_es": "Fillmore St", "name_fr": "Fillmore St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43327140808105, 37.78608883660399 ], [ -122.43491291999817, 37.785876860302224 ] ] }, "properties": { "class": "street", "len": 185.58002721248843, "name": "Sutter St", "name_de": "Sutter St", "name_en": "Sutter St", "name_es": "Sutter St", "name_fr": "Sutter St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42158770561218, 37.795029443297494 ], [ -122.42314875125885, 37.79483020969929 ] ] }, "properties": { "class": "street", "len": 176.52994335243739, "name": "Pacific Ave", "name_de": "Pacific Ave", "name_en": "Pacific Ave", "name_es": "Pacific Ave", "name_fr": "Pacific Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42615282535553, 37.79263860465855 ], [ -122.42451667785645, 37.792850561564016 ], [ -122.42295563220978, 37.79304980050074 ], [ -122.42280006408691, 37.79306251786141 ] ] }, "properties": { "class": "street", "len": 377.93480740004276, "name": "Washington St", "name_de": "Washington St", "name_en": "Washington St", "name_es": "Washington St", "name_fr": "Washington St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43657052516937, 37.794062943376915 ], [ -122.4363774061203, 37.79313882197963 ], [ -122.43621110916138, 37.792265559028124 ] ] }, "properties": { "class": "street", "len": 256.40505882311743, "name": "Steiner St", "name_de": "Steiner St", "name_en": "Steiner St", "name_es": "Steiner St", "name_fr": "Steiner St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43455350399017, 37.79247751700376 ], [ -122.43621110916138, 37.792265559028124 ] ] }, "properties": { "class": "street", "len": 186.72620812329262, "name": "Jackson St", "name_de": "Jackson St", "name_en": "Jackson St", "name_es": "Jackson St", "name_fr": "Jackson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42314338684082, 37.79392729325345 ], [ -122.4246883392334, 37.79372805668306 ], [ -122.42632985115051, 37.79351610229493 ] ] }, "properties": { "class": "street", "len": 359.5469532934653, "name": "Jackson St", "name_de": "Jackson St", "name_en": "Jackson St", "name_es": "Jackson St", "name_fr": "Jackson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43621110916138, 37.792265559028124 ], [ -122.43602335453033, 37.79138380732341 ] ] }, "properties": { "class": "street", "len": 125.51699526332001, "name": "Steiner St", "name_de": "Steiner St", "name_en": "Steiner St", "name_es": "Steiner St", "name_fr": "Steiner St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42280006408691, 37.79306251786141 ], [ -122.42122828960419, 37.79327023444296 ], [ -122.4195921421051, 37.7934779504405 ], [ -122.41797208786011, 37.79368142676982 ], [ -122.41793990135193, 37.79368566585406 ] ] }, "properties": { "class": "street", "len": 548.5713946050722, "name": "Washington St", "name_de": "Washington St", "name_en": "Washington St", "name_es": "Washington St", "name_fr": "Washington St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42632985115051, 37.79351610229493 ], [ -122.42798745632172, 37.79330838640464 ] ] }, "properties": { "class": "street", "len": 186.64642964750635, "name": "Jackson St", "name_de": "Jackson St", "name_en": "Jackson St", "name_es": "Jackson St", "name_fr": "Jackson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42798745632172, 37.79330838640464 ], [ -122.42815911769867, 37.79419011514147 ], [ -122.42834150791168, 37.79512270139288 ], [ -122.42853999137878, 37.79606375376797 ], [ -122.42872774600983, 37.79699207747368 ] ] }, "properties": { "class": "street", "len": 525.6550689667262, "name": "Octavia St", "name_de": "Octavia St", "name_en": "Octavia St", "name_es": "Octavia St", "name_fr": "Octavia St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42798745632172, 37.79330838640464 ], [ -122.4280196428299, 37.79318121312238 ], [ -122.42793381214142, 37.79274034404906 ], [ -122.42788553237915, 37.7926725178043 ], [ -122.4279123544693, 37.792579256616065 ], [ -122.42789089679718, 37.79248175615706 ], [ -122.42783725261688, 37.792426647145035 ] ] }, "properties": { "class": "street", "len": 129.48535326004438, "name": "Octavia St", "name_de": "Octavia St", "name_en": "Octavia St", "name_es": "Octavia St", "name_fr": "Octavia St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42783725261688, 37.792426647145035 ], [ -122.42781043052673, 37.792490234462946 ], [ -122.42783188819885, 37.79261740893458 ], [ -122.42788553237915, 37.7926725178043 ], [ -122.42785334587097, 37.79274882232528 ], [ -122.42791771888733, 37.79318969134799 ], [ -122.42798745632172, 37.79330838640464 ] ] }, "properties": { "class": "street", "len": 129.13268389338356, "name": "Octavia St", "name_de": "Octavia St", "name_en": "Octavia St", "name_es": "Octavia St", "name_fr": "Octavia St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42140531539917, 37.78618634549861 ], [ -122.41983890533446, 37.78638560240497 ], [ -122.41818130016325, 37.78656790080614 ] ] }, "properties": { "class": "service", "len": 362.69087619878184, "name": "Cedar St", "name_de": "Cedar St", "name_en": "Cedar St", "name_es": "Cedar St", "name_fr": "Cedar St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41930782794952, 37.78374434488178 ], [ -122.41936683654785, 37.78403264082188 ], [ -122.41946339607239, 37.78450323913154 ], [ -122.4195545911789, 37.78496535527636 ], [ -122.41965115070343, 37.78543594764699 ], [ -122.41974234580994, 37.78589381842874 ], [ -122.41983890533447, 37.78638560240497 ], [ -122.41993010044098, 37.78683074887198 ] ] }, "properties": { "class": "street", "len": 935.2773512284809, "name": "Polk St", "name_de": "Polk St", "name_en": "Polk St", "name_es": "Polk St", "name_fr": "Polk St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40809082984924, 37.78400296335056 ], [ -122.4082088470459, 37.78409199572878 ], [ -122.40847706794739, 37.78431669601591 ], [ -122.4084985256195, 37.78433789412096 ], [ -122.40851998329163, 37.78438876954822 ], [ -122.4085360765457, 37.78446508262347 ] ] }, "properties": { "class": "street", "len": 83.84549664431606, "name": "Cyril Magnin St", "name_de": "Cyril Magnin St", "name_en": "Cyril Magnin St", "name_es": "Cyril Magnin St", "name_fr": "Cyril Magnin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40809082984924, 37.78400296335056 ], [ -122.40776896476746, 37.78374434488178 ] ] }, "properties": { "class": "street", "len": 252.0510642319494, "name": "5th St", "name_de": "5th St", "name_en": "5th St", "name_es": "5th St", "name_fr": "5th St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4108213186264, 37.791837402062676 ], [ -122.41076231002808, 37.79153217974085 ], [ -122.41062819957733, 37.79088357812059 ], [ -122.4105316400528, 37.79039182407786 ], [ -122.41044580936432, 37.78995941695693 ], [ -122.41025805473328, 37.78901828682906 ], [ -122.41016685962677, 37.78855195664898 ], [ -122.41007566452026, 37.78808138412048 ], [ -122.40994155406952, 37.78742851276689 ], [ -122.40988790988922, 37.78714870899249 ], [ -122.40979135036469, 37.78667388804195 ], [ -122.4097591638565, 37.78651278738342 ], [ -122.40970551967621, 37.78622026160572 ], [ -122.40951776504517, 37.78528332342268 ], [ -122.40933537483215, 37.7843590922199 ], [ -122.40921199321747, 37.78374434488178 ] ] }, "properties": { "class": "street", "len": 1231.0964508373736, "name": "Mason St", "name_de": "Mason St", "name_en": "Mason St", "name_es": "Mason St", "name_fr": "Mason St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43308365345001, 37.7935584932212 ], [ -122.43299782276154, 37.79312186551574 ], [ -122.43291735649109, 37.79268099608831 ] ] }, "properties": { "class": "street", "len": 125.12204412045358, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42615282535553, 37.79263860465855 ], [ -122.42783725261688, 37.79242664714506 ], [ -122.42808938026428, 37.792392733886466 ], [ -122.42945194244385, 37.792218928191865 ], [ -122.43109345436096, 37.79201120865472 ], [ -122.43273496627806, 37.791803488533624 ] ] }, "properties": { "class": "street", "len": 742.7365208672886, "name": "Washington St", "name_de": "Washington St", "name_en": "Washington St", "name_es": "Washington St", "name_fr": "Washington St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43455350399017, 37.79247751700376 ], [ -122.43437647819519, 37.79159576782853 ] ] }, "properties": { "class": "street", "len": 125.77653835198964, "name": "Fillmore St", "name_de": "Fillmore St", "name_en": "Fillmore St", "name_es": "Fillmore St", "name_fr": "Fillmore St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43621110916138, 37.792265559028124 ], [ -122.4371337890625, 37.79215110146844 ] ] }, "properties": { "class": "street", "len": 557.4031872764373, "name": "Jackson St", "name_de": "Jackson St", "name_en": "Jackson St", "name_es": "Jackson St", "name_fr": "Jackson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42798745632172, 37.79330838640464 ], [ -122.42962896823883, 37.793100669930396 ], [ -122.43126511573792, 37.79289295287215 ], [ -122.43291735649109, 37.79268099608831 ] ] }, "properties": { "class": "street", "len": 556.4159854018069, "name": "Jackson St", "name_de": "Jackson St", "name_en": "Jackson St", "name_es": "Jackson St", "name_fr": "Jackson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43437647819519, 37.79159576782853 ], [ -122.43419945240021, 37.790714008130706 ], [ -122.43402242660522, 37.78984071652026 ], [ -122.43383467197418, 37.78890806359753 ], [ -122.43364155292511, 37.78794996242854 ], [ -122.4335503578186, 37.78748786494643 ], [ -122.43345916271211, 37.78702152510845 ], [ -122.43327140808107, 37.78608883660396 ] ] }, "properties": { "class": "street", "len": 785.4742911044511, "name": "Fillmore St", "name_de": "Fillmore St", "name_en": "Fillmore St", "name_es": "Fillmore St", "name_fr": "Fillmore St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43291735649109, 37.79268099608831 ], [ -122.43455350399017, 37.79247751700376 ] ] }, "properties": { "class": "street", "len": 184.64474782644712, "name": "Jackson St", "name_de": "Jackson St", "name_en": "Jackson St", "name_es": "Jackson St", "name_fr": "Jackson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43437647819519, 37.79159576782853 ], [ -122.43602335453033, 37.79138380732341 ] ] }, "properties": { "class": "street", "len": 185.58002721248843, "name": "Washington St", "name_de": "Washington St", "name_en": "Washington St", "name_es": "Washington St", "name_fr": "Washington St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43273496627808, 37.791803488533624 ], [ -122.43437647819519, 37.79159576782853 ] ] }, "properties": { "class": "street", "len": 184.89630499331108, "name": "Washington St", "name_de": "Washington St", "name_en": "Washington St", "name_es": "Washington St", "name_fr": "Washington St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43291735649109, 37.79268099608831 ], [ -122.43273496627808, 37.791803488533624 ] ] }, "properties": { "class": "street", "len": 125.53293472237247, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43273496627808, 37.791803488533624 ], [ -122.4325579404831, 37.790921731314675 ] ] }, "properties": { "class": "street", "len": 125.54438776854212, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41812765598297, 37.794567390088325 ], [ -122.41814911365509, 37.79456315105469 ], [ -122.41892695426941, 37.79446141417424 ], [ -122.41976916790009, 37.79435967715371 ], [ -122.42140531539917, 37.794147724577606 ] ] }, "properties": { "class": "street", "len": 369.9980531145037, "name": "Jackson St", "name_de": "Jackson St", "name_en": "Jackson St", "name_es": "Jackson St", "name_fr": "Jackson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42069184780121, 37.79057835185864 ], [ -122.42088496685028, 37.79149402686194 ], [ -122.42106199264526, 37.792396973044646 ], [ -122.42122828960419, 37.79327023444296 ], [ -122.42140531539917, 37.794147724577606 ] ] }, "properties": { "class": "street", "len": 508.6550928972288, "name": "Polk St", "name_de": "Polk St", "name_en": "Polk St", "name_es": "Polk St", "name_fr": "Polk St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42140531539917, 37.794147724577606 ], [ -122.42296099662781, 37.79394848860165 ], [ -122.42314338684082, 37.79392729325345 ] ] }, "properties": { "class": "street", "len": 195.6111994448167, "name": "Jackson St", "name_de": "Jackson St", "name_en": "Jackson St", "name_es": "Jackson St", "name_fr": "Jackson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42140531539917, 37.794147724577606 ], [ -122.42158770561217, 37.795029443297494 ] ] }, "properties": { "class": "street", "len": 125.97491218458389, "name": "Polk St", "name_de": "Polk St", "name_en": "Polk St", "name_es": "Polk St", "name_fr": "Polk St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43566930294037, 37.78963299029734 ], [ -122.4371337890625, 37.789446460130144 ] ] }, "properties": { "class": "street", "len": 1274.3404609796792, "name": "Sacramento St", "name_de": "Sacramento St", "name_en": "Sacramento St", "name_es": "Sacramento St", "name_fr": "Sacramento St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43602335453033, 37.79138380732341 ], [ -122.43588924407959, 37.79070552962101 ], [ -122.43584632873535, 37.79050204509613 ], [ -122.43566930294037, 37.78963299029734 ] ] }, "properties": { "class": "street", "len": 250.18440290311415, "name": "Steiner St", "name_de": "Steiner St", "name_en": "Steiner St", "name_es": "Steiner St", "name_fr": "Steiner St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42075085639954, 37.8075970299193 ], [ -122.42069721221924, 37.80731306422433 ], [ -122.42064893245697, 37.807071480609274 ], [ -122.4205631017685, 37.80665188613628 ] ] }, "properties": { "class": "street", "len": 134.37310004686768, "name": "Hyde St", "name_de": "Hyde St", "name_en": "Hyde St", "name_es": "Hyde St", "name_fr": "Hyde St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4058324098587, 37.8027440332184 ], [ -122.40580022335052, 37.802714363262176 ], [ -122.40577340126038, 37.80268469329402 ], [ -122.4057412147522, 37.80265078474437 ], [ -122.40546762943268, 37.80227778967103 ], [ -122.40541934967041, 37.80219301780076 ], [ -122.40539252758026, 37.80212096163453 ], [ -122.40539252758026, 37.80205738260595 ], [ -122.40541398525238, 37.801989564915125 ], [ -122.40544080734253, 37.80194294021658 ], [ -122.40548372268677, 37.801892076875475 ], [ -122.4055427312851, 37.801858167961946 ], [ -122.40562319755554, 37.80182425903287 ], [ -122.4056339263916, 37.80182002041566 ], [ -122.40581095218658, 37.801794588707146 ], [ -122.405886054039, 37.80181578179817 ], [ -122.40591824054718, 37.80182849764986 ], [ -122.4060308933258, 37.801892076875475 ], [ -122.40612208843231, 37.80198108769938 ], [ -122.40620791912079, 37.80207857562153 ], [ -122.40632593631744, 37.802328652746496 ], [ -122.40643858909607, 37.80256601330221 ], [ -122.4064654111862, 37.802595683318025 ], [ -122.40652978420258, 37.80268469329399 ], [ -122.40668535232544, 37.80283728157465 ], [ -122.40672826766968, 37.80293052981321 ], [ -122.4067336320877, 37.80301106228812 ], [ -122.40672290325163, 37.80307887904102 ], [ -122.40670144557951, 37.803142457190276 ], [ -122.40665316581726, 37.80320179674688 ], [ -122.40657806396483, 37.803252659186015 ], [ -122.40639030933379, 37.80335438395923 ], [ -122.40632593631743, 37.80340948481954 ], [ -122.4062991142273, 37.80346034711567 ], [ -122.40628838539122, 37.803528163456 ], [ -122.40632593631743, 37.8035875027027 ], [ -122.4063742160797, 37.803629887849716 ], [ -122.40643858909606, 37.80365531892627 ], [ -122.4065190553665, 37.80365955743819 ], [ -122.40658879280089, 37.80364684190173 ] ] }, "properties": { "class": "street", "len": 518.0529223368776, "name": "Telegraph Hill Blvd", "name_de": "Telegraph Hill Blvd", "name_en": "Telegraph Hill Blvd", "name_es": "Telegraph Hill Blvd", "name_fr": "Telegraph Hill Blvd", "ref": "", "reflen": 0 } } ], "name": "road_label" }mapnik-vector-tile-0.3.2/examples/data/14_2620_6331-water.geojson0000644000175000017500000001315212174360626022163 0ustar devdev{ "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.80551176386163 ], [ -122.40958750247955, 37.80551176386163 ], [ -122.40958750247955, 37.80551176386163 ], [ -122.40958750247955, 37.80551176386163 ], [ -122.40958750247955, 37.78801355359897 ], [ -122.40958750247955, 37.80551176386163 ], [ -122.43172645568848, 37.80551176386163 ], [ -122.43172645568848, 37.80551176386163 ], [ -122.43172645568848, 37.80551176386163 ], [ -122.43172645568848, 37.80551176386163 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.80551176386163 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.80551176386163 ], [ -122.43172645568848, 37.78801355359897 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41073548793793, 37.800417024747446 ], [ -122.41071939468384, 37.80046365040925 ], [ -122.41066038608551, 37.80045093432258 ], [ -122.41063356399538, 37.800417024747446 ], [ -122.41068184375763, 37.800395831255116 ], [ -122.41073548793794, 37.800417024747446 ], [ -122.41073548793794, 37.800417024747446 ], [ -122.41073548793793, 37.800417024747446 ] ] ] }, "properties": {} } ], "name": "water" }mapnik-vector-tile-0.3.2/examples/data/14_2620_6331.geojson0000644000175000017500000527442412174360626021063 0ustar devdev{ "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4319839477539, 37.80571096865078 ], [ -122.42571830749512, 37.80571096865078 ], [ -122.42565393447876, 37.80551600226697 ], [ -122.42560029029846, 37.80535070427755 ], [ -122.42535352706909, 37.80424023126987 ], [ -122.4299830198288, 37.80362564933611 ], [ -122.43017077445984, 37.80360021824936 ], [ -122.43147432804108, 37.803417961871325 ], [ -122.43156015872955, 37.80343915449654 ], [ -122.43161916732788, 37.8035154478969 ], [ -122.4317479133606, 37.80416393861819 ], [ -122.43196249008179, 37.8051938827661 ], [ -122.4319839477539, 37.805282889610744 ], [ -122.4319839477539, 37.80571096865078 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4319839477539, 37.803095833219515 ], [ -122.43175864219666, 37.803121264479955 ], [ -122.4314421415329, 37.80152331660511 ], [ -122.4319839477539, 37.80145125978552 ], [ -122.4319839477539, 37.803095833219515 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42932319641113, 37.79213414477786 ], [ -122.42628157138824, 37.79252838682742 ], [ -122.42613136768341, 37.79187555476425 ], [ -122.42593824863434, 37.79100651611991 ], [ -122.42747783660889, 37.79081151092244 ], [ -122.4277514219284, 37.79077759692252 ], [ -122.42899596691132, 37.79059954816758 ], [ -122.42932319641113, 37.79213414477786 ], [ -122.42932319641113, 37.79213414477786 ], [ -122.42932319641113, 37.79213414477786 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4319839477539, 37.79090053509816 ], [ -122.43151724338531, 37.79095988448907 ], [ -122.43156015872955, 37.79118032466647 ], [ -122.4319839477539, 37.79112945391467 ], [ -122.4319839477539, 37.79146011317529 ], [ -122.4314421415329, 37.79152794053307 ], [ -122.43145823478699, 37.79161696384559 ], [ -122.43116855621338, 37.79165511666101 ], [ -122.4310827255249, 37.79122271693289 ], [ -122.43091106414794, 37.79033247423068 ], [ -122.43149042129515, 37.790260406495044 ], [ -122.43138849735259, 37.789734733826435 ], [ -122.43198394775389, 37.78966266550779 ], [ -122.4319839477539, 37.79090053509816 ] ] ] }, "properties": { "class": "hospital" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42114245891571, 37.801731009397635 ], [ -122.41970479488373, 37.80191326993853 ], [ -122.41954922676086, 37.80115455449363 ], [ -122.42052555084229, 37.80103163338067 ], [ -122.42050409317017, 37.80094686008017 ], [ -122.42064356803894, 37.800925666739815 ], [ -122.42063820362092, 37.80090871206316 ], [ -122.42096543312074, 37.80086632535451 ], [ -122.42114245891572, 37.801731009397635 ], [ -122.42114245891572, 37.801731009397635 ], [ -122.42114245891571, 37.801731009397635 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41164743900299, 37.804833615870386 ], [ -122.41093397140504, 37.804918384709836 ], [ -122.41104662418365, 37.80546514138657 ], [ -122.4107998609543, 37.80549481023774 ], [ -122.41079449653627, 37.80545666456976 ], [ -122.41031706333162, 37.80551600226697 ], [ -122.41027951240544, 37.805325273784796 ], [ -122.41057455539708, 37.8052913664475 ], [ -122.41051554679875, 37.80496924596682 ], [ -122.41024196147923, 37.80500315345199 ], [ -122.41019368171696, 37.804740370034615 ], [ -122.41017222404484, 37.80464288562588 ], [ -122.41052091121679, 37.80460050106019 ], [ -122.41076231002813, 37.804570831849745 ], [ -122.41068184375769, 37.804176654065614 ], [ -122.41150259971624, 37.804079168912786 ], [ -122.41164743900305, 37.804833615870386 ], [ -122.41164743900305, 37.804833615870386 ], [ -122.41164743900299, 37.804833615870386 ] ] ] }, "properties": { "class": "school" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41290807723999, 37.80272707895914 ], [ -122.41288125514986, 37.802773703162714 ], [ -122.41208195686342, 37.802871190038694 ], [ -122.41151332855226, 37.802939006920006 ], [ -122.4113577604294, 37.802197256396575 ], [ -122.41207122802736, 37.80211248443386 ], [ -122.4125111103058, 37.80204890539802 ], [ -122.41276860237123, 37.80222692656055 ], [ -122.41264522075654, 37.8022438809346 ], [ -122.4127095937729, 37.80253634327446 ], [ -122.4128705263138, 37.80251938896754 ], [ -122.41290807724, 37.80272707895914 ], [ -122.41290807724, 37.80272707895914 ], [ -122.41290807723999, 37.80272707895914 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41090714931488, 37.80109521329224 ], [ -122.4105316400528, 37.80113759986951 ], [ -122.4101185798645, 37.80119270238364 ], [ -122.4094694852829, 37.80126899810456 ], [ -122.40939438343048, 37.80082393862155 ], [ -122.40934610366821, 37.80052723080971 ], [ -122.40978598594666, 37.80047212779914 ], [ -122.41015613079071, 37.80042550214271 ], [ -122.41033852100372, 37.80055266295457 ], [ -122.41070866584776, 37.80081546127204 ], [ -122.41087496280669, 37.800929905408374 ], [ -122.41090714931487, 37.801095213292214 ], [ -122.41090714931487, 37.801095213292214 ], [ -122.41090714931488, 37.80109521329224 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41770923137665, 37.78950157136492 ], [ -122.41699039936066, 37.78959059711889 ], [ -122.41706550121307, 37.78995941695691 ], [ -122.41631984710693, 37.79005268145195 ], [ -122.41624474525452, 37.78968386207941 ], [ -122.41608917713165, 37.78970081933231 ], [ -122.41601943969727, 37.78934895553718 ], [ -122.41763412952423, 37.789149706621 ], [ -122.41770923137666, 37.78950157136492 ], [ -122.41770923137666, 37.78950157136492 ], [ -122.41770923137665, 37.78950157136492 ] ] ] }, "properties": { "class": "hospital" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42665708065033, 37.79811537594843 ], [ -122.42573440074922, 37.79823406309142 ], [ -122.42558419704437, 37.79749650418472 ], [ -122.4265068769455, 37.7973778158567 ], [ -122.42665708065033, 37.79811537594843 ], [ -122.42665708065033, 37.79811537594843 ], [ -122.42665708065033, 37.79811537594843 ] ] ] }, "properties": { "class": "school" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42506384849548, 37.805024345622336 ], [ -122.4237710237503, 37.805185405918145 ], [ -122.42366909980774, 37.8046810317142 ], [ -122.42496728897095, 37.804519970318424 ], [ -122.42506384849548, 37.805024345622336 ], [ -122.42506384849548, 37.805024345622336 ], [ -122.42506384849548, 37.805024345622336 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42171108722687, 37.804494539539625 ], [ -122.42030024528503, 37.80468950862004 ], [ -122.42020905017854, 37.80425718518177 ], [ -122.42161989212036, 37.80406645344859 ], [ -122.42171108722687, 37.804494539539625 ], [ -122.42171108722687, 37.804494539539625 ], [ -122.42171108722687, 37.804494539539625 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42536962032318, 37.80571096865078 ], [ -122.42524087429045, 37.80518116749381 ], [ -122.42541253566742, 37.80515573694268 ], [ -122.42548763751984, 37.80514726009035 ], [ -122.42561638355255, 37.80571096865078 ], [ -122.42536962032318, 37.80571096865078 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41251111030579, 37.79251143022342 ], [ -122.41223216056824, 37.79254110427786 ], [ -122.41194784641266, 37.792579256616065 ], [ -122.41187810897827, 37.79220621068598 ], [ -122.41180300712585, 37.79182892368188 ], [ -122.4120819568634, 37.79179501014891 ], [ -122.41236627101898, 37.791761096600425 ], [ -122.41243600845337, 37.79213414477786 ], [ -122.41251111030579, 37.79251143022342 ], [ -122.41251111030579, 37.79251143022342 ], [ -122.41251111030579, 37.79251143022342 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.43000447750092, 37.80411307680662 ], [ -122.42921054363251, 37.8042105619147 ], [ -122.42927491664886, 37.804541162627416 ], [ -122.42918372154236, 37.80454963954931 ], [ -122.42912471294403, 37.80422327735411 ], [ -122.42895841598511, 37.80423175431249 ], [ -122.42886185646057, 37.80418089254761 ], [ -122.42895305156708, 37.8041681771009 ], [ -122.42897987365723, 37.80411307680662 ], [ -122.42893159389496, 37.80387995972208 ], [ -122.4299293756485, 37.80375704314487 ], [ -122.42999911308287, 37.804087645887726 ], [ -122.4300044775009, 37.80411307680662 ], [ -122.4300044775009, 37.80411307680662 ], [ -122.43000447750092, 37.80411307680662 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42810547351837, 37.79762790889688 ], [ -122.42732763290407, 37.79772964141673 ], [ -122.42723643779756, 37.79729727723981 ], [ -122.42801427841188, 37.797191305241675 ], [ -122.42810547351837, 37.79762790889688 ], [ -122.42810547351837, 37.79762790889688 ], [ -122.42810547351837, 37.79762790889688 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41376101970673, 37.7984671979957 ], [ -122.4132889509201, 37.798530780114596 ], [ -122.41323530673981, 37.798280690131136 ], [ -122.41308510303496, 37.798297645411004 ], [ -122.41305291652678, 37.79814928658016 ], [ -122.41287052631378, 37.79817471954375 ], [ -122.4128383398056, 37.798030599300965 ], [ -122.4136483669281, 37.797924628354835 ], [ -122.41376101970671, 37.7984671979957 ], [ -122.41376101970671, 37.7984671979957 ], [ -122.41376101970673, 37.7984671979957 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42516577243805, 37.805621962322036 ], [ -122.4248331785202, 37.80566858469807 ], [ -122.42484390735626, 37.80571096865078 ], [ -122.42386221885681, 37.80571096865078 ], [ -122.42383003234863, 37.80553295588602 ], [ -122.42401778697968, 37.80557957831826 ], [ -122.42423236370085, 37.80560077032319 ], [ -122.4244576692581, 37.805609247123456 ], [ -122.42462933063507, 37.80558805512094 ], [ -122.42474734783173, 37.80554143269405 ], [ -122.42495656013489, 37.80546514138659 ], [ -122.42511749267578, 37.805359181106546 ], [ -122.42516577243805, 37.805621962322036 ], [ -122.42516577243805, 37.805621962322036 ], [ -122.42516577243805, 37.805621962322036 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42116391658783, 37.79590691253789 ], [ -122.42097079753877, 37.79593234627349 ], [ -122.42092788219453, 37.79594082418341 ], [ -122.42023050785066, 37.79598321371845 ], [ -122.42017149925233, 37.7956737695535 ], [ -122.42109417915346, 37.795550839320036 ], [ -122.42116391658783, 37.79590691253789 ], [ -122.42116391658783, 37.79590691253789 ], [ -122.42116391658783, 37.79590691253789 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41690456867218, 37.802248119527505 ], [ -122.4164217710495, 37.802303221213165 ], [ -122.4163144826889, 37.801743725263904 ], [ -122.41671681404112, 37.80169710041017 ], [ -122.41668462753294, 37.80151060070086 ], [ -122.41676509380339, 37.80149788479444 ], [ -122.41683483123778, 37.80187936103473 ], [ -122.41686701774596, 37.802036189584236 ], [ -122.41690456867217, 37.802248119527505 ], [ -122.41690456867217, 37.802248119527505 ], [ -122.41690456867218, 37.802248119527505 ] ] ] }, "properties": { "class": "school" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41542935371399, 37.801044349367366 ], [ -122.41481244564055, 37.80112488389887 ], [ -122.41481781005858, 37.801141838525915 ], [ -122.41451203823088, 37.80118422507645 ], [ -122.41447448730467, 37.80100196273655 ], [ -122.4146783351898, 37.80097653074639 ], [ -122.41464614868163, 37.80081122259691 ], [ -122.41535961627956, 37.800722210363176 ], [ -122.41539180278774, 37.800883280040885 ], [ -122.41542935371395, 37.801044349367366 ], [ -122.41542935371395, 37.801044349367366 ], [ -122.41542935371399, 37.801044349367366 ] ] ] }, "properties": { "class": "school" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41217851638794, 37.794355438108134 ], [ -122.41147041320801, 37.79444445801387 ], [ -122.41139531135559, 37.794071421501364 ], [ -122.41210341453552, 37.793982401146124 ], [ -122.41217851638794, 37.794355438108134 ], [ -122.41217851638794, 37.794355438108134 ], [ -122.41217851638794, 37.794355438108134 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41142749786377, 37.79774659682308 ], [ -122.41097688674927, 37.79780170186684 ], [ -122.41096079349518, 37.79772540256451 ], [ -122.41090178489686, 37.797733880268694 ], [ -122.41090714931488, 37.79774659682308 ], [ -122.4107301235199, 37.797767791075536 ], [ -122.4106764793396, 37.797488026453344 ], [ -122.41135776042938, 37.7974032490859 ], [ -122.41142749786377, 37.79774659682308 ], [ -122.41142749786377, 37.79774659682308 ], [ -122.41142749786377, 37.79774659682308 ] ] ] }, "properties": { "class": "school" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42046654224396, 37.80168014591058 ], [ -122.4198228120804, 37.80175644112801 ], [ -122.41976380348207, 37.801451259785495 ], [ -122.42040753364564, 37.801374964252865 ], [ -122.42046654224396, 37.80168014591058 ], [ -122.42046654224396, 37.80168014591058 ], [ -122.42046654224396, 37.80168014591058 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41716206073761, 37.80127747540201 ], [ -122.41673290729523, 37.801336816456995 ], [ -122.41665244102478, 37.800955337414585 ], [ -122.41708695888519, 37.80090023472337 ], [ -122.41716206073761, 37.80127747540201 ], [ -122.41716206073761, 37.80127747540201 ], [ -122.41716206073761, 37.80127747540201 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42874920368195, 37.79171446544581 ], [ -122.42868483066559, 37.79178653176325 ], [ -122.42857754230499, 37.79179501014891 ], [ -122.42848098278046, 37.791778053376625 ], [ -122.42838978767395, 37.79172294383974 ], [ -122.42833077907562, 37.79166783426175 ], [ -122.42823421955109, 37.79163815985659 ], [ -122.42821276187897, 37.791438917113226 ], [ -122.42865264415741, 37.791371089673774 ], [ -122.42874920368195, 37.79171446544578 ], [ -122.42874920368195, 37.79171446544578 ], [ -122.42874920368195, 37.79171446544581 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41181910037994, 37.79257077832038 ], [ -122.41115391254425, 37.79265132209003 ], [ -122.41112172603607, 37.79265556123335 ], [ -122.41106271743774, 37.792350342291314 ], [ -122.4112343788147, 37.79232914648466 ], [ -122.41125047206879, 37.792426647145035 ], [ -122.41133630275726, 37.792418168831844 ], [ -122.41134703159332, 37.792490234462925 ], [ -122.41151869297029, 37.79246903869637 ], [ -122.4115025997162, 37.792392733886466 ], [ -122.41177618503572, 37.79236305977241 ], [ -122.41181910037996, 37.79257077832038 ], [ -122.41181910037996, 37.79257077832038 ], [ -122.41181910037994, 37.79257077832038 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41066038608551, 37.795945063138014 ], [ -122.41011321544649, 37.79601712532894 ], [ -122.41006493568422, 37.79579246061932 ], [ -122.41035461425783, 37.79575430994039 ], [ -122.41032779216768, 37.7956483357289 ], [ -122.41043508052827, 37.79563561881328 ], [ -122.41046726703648, 37.7958009385453 ], [ -122.41062819957737, 37.79577974372853 ], [ -122.41066038608555, 37.795945063138014 ], [ -122.41066038608555, 37.795945063138014 ], [ -122.41066038608551, 37.795945063138014 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42185592651367, 37.7912863052869 ], [ -122.42152333259583, 37.79132869749249 ], [ -122.42145895957947, 37.79098108068856 ], [ -122.42178082466125, 37.79094716676645 ], [ -122.42185592651367, 37.7912863052869 ], [ -122.42185592651367, 37.7912863052869 ], [ -122.42185592651367, 37.7912863052869 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4319839477539, 37.80201499655647 ], [ -122.43191957473755, 37.80173948664206 ], [ -122.4319839477539, 37.801735248019966 ], [ -122.4319839477539, 37.80201499655647 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41780042648315, 37.790845424906784 ], [ -122.41750538349152, 37.79087933887559 ], [ -122.41743564605713, 37.79050628436279 ], [ -122.41772532463074, 37.79046813095418 ], [ -122.41780042648315, 37.790845424906784 ], [ -122.41780042648315, 37.790845424906784 ], [ -122.41780042648315, 37.790845424906784 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.43191957473755, 37.8019810876994 ], [ -122.43156552314758, 37.80202771237386 ], [ -122.43150651454926, 37.801735248019966 ], [ -122.43186056613922, 37.801688623160864 ], [ -122.43191957473755, 37.8019810876994 ], [ -122.43191957473755, 37.8019810876994 ], [ -122.43191957473755, 37.8019810876994 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41805255413055, 37.80307464049579 ], [ -122.41778433322906, 37.80310854885083 ], [ -122.41770923137665, 37.80273555608927 ], [ -122.41797745227812, 37.80270164756298 ], [ -122.41805255413055, 37.80307464049579 ], [ -122.41805255413055, 37.80307464049579 ], [ -122.41805255413055, 37.80307464049579 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41275250911713, 37.80222268796642 ], [ -122.41218388080598, 37.8022905054432 ], [ -122.41214096546175, 37.80210400723224 ], [ -122.41251111030579, 37.80205738260592 ], [ -122.41275250911713, 37.80222268796642 ], [ -122.41275250911713, 37.80222268796642 ], [ -122.41275250911713, 37.80222268796642 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40967869758606, 37.79264284380264 ], [ -122.40942656993866, 37.79267675694643 ], [ -122.40935683250427, 37.79232914648466 ], [ -122.40960896015167, 37.79229523318131 ], [ -122.40967869758606, 37.79264284380264 ], [ -122.40967869758606, 37.79264284380264 ], [ -122.40967869758606, 37.79264284380264 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41040825843811, 37.792562300023725 ], [ -122.41016149520874, 37.79259197405775 ], [ -122.41009175777437, 37.7922486023638 ], [ -122.41033852100372, 37.792218928191865 ], [ -122.41040825843811, 37.792562300023725 ], [ -122.41040825843811, 37.792562300023725 ], [ -122.41040825843811, 37.792562300023725 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4209600687027, 37.79590691253789 ], [ -122.42054164409637, 37.79595778000036 ], [ -122.42050409317017, 37.79576278787075 ], [ -122.42092251777649, 37.79571615924177 ], [ -122.4209600687027, 37.79590691253789 ], [ -122.4209600687027, 37.79590691253789 ], [ -122.4209600687027, 37.79590691253789 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42153406143188, 37.795313456221336 ], [ -122.4210673570633, 37.79537280206753 ], [ -122.4210298061371, 37.79520748137745 ], [ -122.42150187492372, 37.79514813539847 ], [ -122.4215340614319, 37.795313456221336 ], [ -122.4215340614319, 37.795313456221336 ], [ -122.42153406143188, 37.795313456221336 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42172718048096, 37.79624178935534 ], [ -122.42129802703856, 37.79629689552161 ], [ -122.42126584053038, 37.796135815843115 ], [ -122.42169499397278, 37.79608070955667 ], [ -122.42172718048096, 37.79624178935534 ], [ -122.42172718048096, 37.79624178935534 ], [ -122.42172718048096, 37.79624178935534 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42262303829193, 37.79298197454004 ], [ -122.42223680019379, 37.79302436577279 ], [ -122.42219924926758, 37.792846322431856 ], [ -122.42258548736572, 37.79279969196215 ], [ -122.42262303829193, 37.79298197454004 ], [ -122.42262303829193, 37.79298197454004 ], [ -122.42262303829193, 37.79298197454004 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41158306598663, 37.789298083524535 ], [ -122.41139531135559, 37.78931928020073 ], [ -122.4113255739212, 37.788954696523255 ], [ -122.41151332855225, 37.78892926038561 ], [ -122.41158306598663, 37.789298083524535 ], [ -122.41158306598663, 37.789298083524535 ], [ -122.41158306598663, 37.789298083524535 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41376101970673, 37.79134989358618 ], [ -122.41350889205933, 37.79138380732341 ], [ -122.41345524787903, 37.79112521468376 ], [ -122.41370737552643, 37.79109130082786 ], [ -122.41376101970673, 37.79134989358618 ], [ -122.41376101970673, 37.79134989358618 ], [ -122.41376101970673, 37.79134989358618 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41763949394226, 37.7965088419319 ], [ -122.41729080677032, 37.796551231141 ], [ -122.41728007793425, 37.79654699222118 ], [ -122.41726934909819, 37.79653851438082 ], [ -122.41723716259001, 37.79639015201707 ], [ -122.417414188385, 37.79636895736935 ], [ -122.4174517393112, 37.796377435229154 ], [ -122.41751074790953, 37.796373196299385 ], [ -122.41754293441771, 37.796373196299385 ], [ -122.41756439208983, 37.79636471843907 ], [ -122.4175590276718, 37.79635624057777 ], [ -122.41754829883574, 37.796347762715534 ], [ -122.41754829883574, 37.79633928485233 ], [ -122.41759657859801, 37.796335045920344 ], [ -122.41763949394225, 37.7965088419319 ], [ -122.41763949394225, 37.7965088419319 ], [ -122.41763949394226, 37.7965088419319 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41129338741302, 37.79200273029387 ], [ -122.41126656532289, 37.79200696947442 ], [ -122.41127729415895, 37.79206207879947 ], [ -122.41118609905244, 37.79207479633018 ], [ -122.41120219230652, 37.79215534064047 ], [ -122.41101980209352, 37.792176536497024 ], [ -122.41097688674928, 37.791943381740616 ], [ -122.41127729415895, 37.7919094682602 ], [ -122.41129338741302, 37.79200273029387 ], [ -122.41129338741302, 37.79200273029387 ], [ -122.41129338741302, 37.79200273029387 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4095606803894, 37.79934462640321 ], [ -122.40938901901244, 37.79937005895526 ], [ -122.40933001041412, 37.7990140024299 ], [ -122.40948557853699, 37.79899280853499 ], [ -122.4095606803894, 37.79934462640321 ], [ -122.4095606803894, 37.79934462640321 ], [ -122.4095606803894, 37.79934462640321 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4204021692276, 37.80135377103535 ], [ -122.42003202438356, 37.80139615746429 ], [ -122.41999983787538, 37.80124356620636 ], [ -122.42037534713747, 37.801196941036885 ], [ -122.4204021692276, 37.80135377103535 ], [ -122.4204021692276, 37.80135377103535 ], [ -122.4204021692276, 37.80135377103535 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41294026374817, 37.79792038951381 ], [ -122.41275787353517, 37.79794158371643 ], [ -122.41269886493684, 37.79762790889688 ], [ -122.41287589073183, 37.79760671460429 ], [ -122.41294026374818, 37.79792038951381 ], [ -122.41294026374818, 37.79792038951381 ], [ -122.41294026374817, 37.79792038951381 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41159915924072, 37.80099772407214 ], [ -122.41147577762604, 37.801010440064665 ], [ -122.41144895553589, 37.801010440064665 ], [ -122.41142749786377, 37.80099772407214 ], [ -122.41119146347046, 37.800828177295934 ], [ -122.41154551506042, 37.80078155186425 ], [ -122.41159915924074, 37.80099772407214 ], [ -122.41159915924074, 37.80099772407214 ], [ -122.41159915924072, 37.80099772407214 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42728471755981, 37.791472830809646 ], [ -122.42710769176483, 37.79150250528121 ], [ -122.42704331874846, 37.791235434608055 ], [ -122.42722570896147, 37.791209999255514 ], [ -122.4272847175598, 37.791472830809646 ], [ -122.4272847175598, 37.791472830809646 ], [ -122.42728471755981, 37.791472830809646 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4319839477539, 37.80223116515443 ], [ -122.43179082870483, 37.802256596712596 ], [ -122.43173718452454, 37.8020107579502 ], [ -122.43193030357361, 37.80198532630738 ], [ -122.4319839477539, 37.80222268796642 ], [ -122.4319839477539, 37.80223116515443 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41171717643738, 37.79201544783479 ], [ -122.41146504878998, 37.792045122088425 ], [ -122.41145431995392, 37.791985773569245 ], [ -122.41140067577362, 37.79199425193203 ], [ -122.4113792181015, 37.791896750701035 ], [ -122.4116849899292, 37.79186283719924 ], [ -122.41171717643738, 37.79201544783479 ], [ -122.41171717643738, 37.79201544783479 ], [ -122.41171717643738, 37.79201544783479 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41252183914185, 37.79150674449044 ], [ -122.41246283054352, 37.79151522290824 ], [ -122.41231799125673, 37.790769118420094 ], [ -122.41237163543703, 37.79076063991673 ], [ -122.41237699985504, 37.790769118420094 ], [ -122.41252183914185, 37.79150674449044 ], [ -122.41252183914185, 37.79150674449044 ], [ -122.41252183914185, 37.79150674449044 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4193400144577, 37.79765334203998 ], [ -122.41887867450714, 37.797708447153305 ], [ -122.41886794567108, 37.79764062546953 ], [ -122.41913080215454, 37.79761095346328 ], [ -122.41912543773653, 37.79756856486228 ], [ -122.41931855678558, 37.79754737055262 ], [ -122.4193400144577, 37.79765334203998 ], [ -122.4193400144577, 37.79765334203998 ], [ -122.4193400144577, 37.79765334203998 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41430819034576, 37.788954696523255 ], [ -122.41419553756714, 37.78896741458879 ], [ -122.41413116455078, 37.788619786676236 ], [ -122.41423845291138, 37.78860706855088 ], [ -122.41430819034576, 37.788954696523255 ], [ -122.41430819034576, 37.788954696523255 ], [ -122.41430819034576, 37.788954696523255 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42697358131409, 37.79151946211675 ], [ -122.42681801319122, 37.7915364189484 ], [ -122.42677509784698, 37.79130750139274 ], [ -122.42693603038788, 37.79129054450855 ], [ -122.42697358131409, 37.79151946211675 ], [ -122.42697358131409, 37.79151946211675 ], [ -122.42697358131409, 37.79151946211675 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41545081138611, 37.80435043162762 ], [ -122.41518259048462, 37.804380100926586 ], [ -122.41515576839447, 37.80424446974821 ], [ -122.41542935371399, 37.80421480039474 ], [ -122.41545081138612, 37.80435043162762 ], [ -122.41545081138612, 37.80435043162762 ], [ -122.41545081138611, 37.80435043162762 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42048799991608, 37.7959196294068 ], [ -122.42023587226866, 37.79594930209237 ], [ -122.42020905017853, 37.79580941647031 ], [ -122.42046117782593, 37.79577974372853 ], [ -122.42048799991608, 37.7959196294068 ], [ -122.42048799991608, 37.7959196294068 ], [ -122.42048799991608, 37.7959196294068 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41200685501099, 37.80282032733683 ], [ -122.41185665130614, 37.802837281574696 ], [ -122.41180837154388, 37.80260839903546 ], [ -122.41196393966675, 37.80258720617189 ], [ -122.41200685501099, 37.80282032733683 ], [ -122.41200685501099, 37.80282032733683 ], [ -122.41200685501099, 37.80282032733683 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42590069770813, 37.80571096865078 ], [ -122.42591142654419, 37.80569401507261 ], [ -122.4259865283966, 37.80571096865078 ], [ -122.42590069770813, 37.80571096865078 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41053700447083, 37.8046979855249 ], [ -122.41019368171692, 37.804740370034615 ], [ -122.4101722240448, 37.80464288562588 ], [ -122.41052091121674, 37.80460050106022 ], [ -122.41053700447083, 37.8046979855249 ], [ -122.41053700447083, 37.8046979855249 ], [ -122.41053700447083, 37.8046979855249 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41080522537231, 37.80058657246742 ], [ -122.41049945354462, 37.800374637756676 ], [ -122.41076231002808, 37.80034072814651 ], [ -122.41080522537231, 37.80058657246742 ], [ -122.41080522537231, 37.80058657246742 ], [ -122.41080522537231, 37.80058657246742 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40996837615967, 37.799874469428296 ], [ -122.40988254547119, 37.799887185614196 ], [ -122.4098128080368, 37.79951417658475 ], [ -122.40989863872528, 37.79950569908492 ], [ -122.40996837615967, 37.799874469428296 ], [ -122.40996837615967, 37.799874469428296 ], [ -122.40996837615967, 37.799874469428296 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4247795343399, 37.800222044388384 ], [ -122.42465615272522, 37.80023899922264 ], [ -122.42461323738098, 37.80002282479424 ], [ -122.4247419834137, 37.800010108631696 ], [ -122.4247795343399, 37.800222044388384 ], [ -122.4247795343399, 37.800222044388384 ], [ -122.4247795343399, 37.800222044388384 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41234481334686, 37.80255753615264 ], [ -122.41221606731415, 37.80257449045081 ], [ -122.41217851638794, 37.80236256144402 ], [ -122.41230189800262, 37.80234560709723 ], [ -122.41234481334686, 37.80255753615264 ], [ -122.41234481334686, 37.80255753615264 ], [ -122.41234481334686, 37.80255753615264 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42111027240753, 37.795843328160586 ], [ -122.42098689079285, 37.79585604504041 ], [ -122.42094397544861, 37.7956483357289 ], [ -122.4210673570633, 37.79563137984094 ], [ -122.42111027240753, 37.795843328160586 ], [ -122.42111027240753, 37.795843328160586 ], [ -122.42111027240753, 37.795843328160586 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41250574588776, 37.80253634327446 ], [ -122.41238772869109, 37.80255329757749 ], [ -122.41234481334685, 37.802341368509886 ], [ -122.41246819496153, 37.80232865274652 ], [ -122.41250574588774, 37.80253634327446 ], [ -122.41250574588774, 37.80253634327446 ], [ -122.41250574588776, 37.80253634327446 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41267204284668, 37.8025151503902 ], [ -122.412548661232, 37.80253210469809 ], [ -122.41251111030579, 37.802324414158235 ], [ -122.41262912750244, 37.80230745980266 ], [ -122.4126720428467, 37.8025151503902 ], [ -122.4126720428467, 37.8025151503902 ], [ -122.41267204284668, 37.8025151503902 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41079986095428, 37.80098500807743 ], [ -122.41079449653625, 37.801010440064665 ], [ -122.4107837677002, 37.80103163338067 ], [ -122.41076767444612, 37.801044349367366 ], [ -122.41074085235597, 37.80105706535187 ], [ -122.41070866584779, 37.801061304012876 ], [ -122.41067647933961, 37.80105706535187 ], [ -122.41064429283144, 37.801044349367366 ], [ -122.41062283515932, 37.801023156054995 ], [ -122.41061747074129, 37.80099772407214 ], [ -122.41061747074129, 37.80097229208053 ], [ -122.41062819957735, 37.80095957608142 ], [ -122.41064429283144, 37.800938382744725 ], [ -122.41068720817567, 37.80088751871187 ], [ -122.41076231002809, 37.80093414407668 ], [ -122.41078913211824, 37.80095957608142 ], [ -122.4107998609543, 37.80098500807743 ], [ -122.4107998609543, 37.80098500807743 ], [ -122.41079986095428, 37.80098500807743 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41297245025635, 37.797076855312966 ], [ -122.4128383398056, 37.79709381086916 ], [ -122.41280615329742, 37.796958166310716 ], [ -122.41294026374817, 37.79694121072341 ], [ -122.41297245025635, 37.797076855312966 ], [ -122.41297245025635, 37.797076855312966 ], [ -122.41297245025635, 37.797076855312966 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42043435573578, 37.79577126580011 ], [ -122.42023050785066, 37.795796699582425 ], [ -122.42021441459657, 37.79571615924177 ], [ -122.4204182624817, 37.79569072543175 ], [ -122.42043435573578, 37.79577126580011 ], [ -122.42043435573578, 37.79577126580011 ], [ -122.42043435573578, 37.79577126580011 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41240918636322, 37.792426647145035 ], [ -122.41225898265839, 37.79244360376852 ], [ -122.41224825382233, 37.792380016410455 ], [ -122.41239845752716, 37.79235882061229 ], [ -122.41240918636322, 37.792426647145035 ], [ -122.41240918636322, 37.792426647145035 ], [ -122.41240918636322, 37.792426647145035 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.412189245224, 37.79245208207878 ], [ -122.4120444059372, 37.7924732778502 ], [ -122.41202831268312, 37.79240969051768 ], [ -122.41217851638795, 37.792392733886466 ], [ -122.41218924522401, 37.79245208207878 ], [ -122.41218924522401, 37.79245208207878 ], [ -122.412189245224, 37.79245208207878 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41280615329742, 37.80271860182807 ], [ -122.41275787353516, 37.80272284039373 ], [ -122.41272568702698, 37.80254058185058 ], [ -122.41276860237122, 37.80253634327446 ], [ -122.41280615329742, 37.80271860182807 ], [ -122.41280615329742, 37.80271860182807 ], [ -122.41280615329742, 37.80271860182807 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41285979747772, 37.802710124696034 ], [ -122.41281151771545, 37.80271860182807 ], [ -122.41277933120728, 37.80253634327446 ], [ -122.41282224655151, 37.80253210469809 ], [ -122.41285979747772, 37.802710124696034 ], [ -122.41285979747772, 37.802710124696034 ], [ -122.41285979747772, 37.802710124696034 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41219460964203, 37.791985773569245 ], [ -122.41214632987976, 37.79199425193205 ], [ -122.41214096546175, 37.79197305602321 ], [ -122.412189245224, 37.79196881684073 ], [ -122.41219460964203, 37.791985773569245 ], [ -122.41219460964203, 37.791985773569245 ], [ -122.41219460964203, 37.791985773569245 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41209805011749, 37.79199849111309 ], [ -122.41204977035524, 37.79200273029387 ], [ -122.41204440593721, 37.791981534387475 ], [ -122.41209268569948, 37.79197729520547 ], [ -122.41209805011749, 37.79199849111309 ], [ -122.41209805011749, 37.79199849111309 ], [ -122.41209805011749, 37.79199849111309 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.80551176386163 ], [ -122.40958750247955, 37.80551176386163 ], [ -122.40958750247955, 37.80551176386163 ], [ -122.40958750247955, 37.80551176386163 ], [ -122.40958750247955, 37.78801355359897 ], [ -122.40958750247955, 37.80551176386163 ], [ -122.43172645568848, 37.80551176386163 ], [ -122.43172645568848, 37.80551176386163 ], [ -122.43172645568848, 37.80551176386163 ], [ -122.43172645568848, 37.80551176386163 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.80551176386163 ], [ -122.43172645568848, 37.78801355359897 ], [ -122.43172645568848, 37.80551176386163 ], [ -122.43172645568848, 37.78801355359897 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41073548793793, 37.800417024747446 ], [ -122.41071939468384, 37.80046365040925 ], [ -122.41066038608551, 37.80045093432258 ], [ -122.41063356399538, 37.800417024747446 ], [ -122.41068184375763, 37.800395831255116 ], [ -122.41073548793794, 37.800417024747446 ], [ -122.41073548793794, 37.800417024747446 ], [ -122.41073548793793, 37.800417024747446 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4106764793396, 37.797488026453316 ], [ -122.41059064865112, 37.797500743050065 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42149651050568, 37.80330352159015 ], [ -122.42159307003023, 37.80351120937674 ], [ -122.42170572280884, 37.80357478715385 ], [ -122.4218773841858, 37.80360445676443 ], [ -122.42223143577577, 37.8035875027027 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41996765136719, 37.79620363890844 ], [ -122.41783797740936, 37.79647493054711 ], [ -122.41766095161438, 37.79650036408717 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41993546485901, 37.79603408112835 ], [ -122.4178057909012, 37.79630113445578 ], [ -122.41762340068819, 37.796326568055655 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42317020893097, 37.7972040218895 ], [ -122.42319703102112, 37.797318471621196 ], [ -122.42319166660309, 37.797318471621196 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42300391197205, 37.797314232745414 ], [ -122.42307364940643, 37.79730575499309 ], [ -122.42307901382446, 37.79733118824711 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42313802242279, 37.79686491053231 ], [ -122.42310583591461, 37.79686914943388 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41827249526978, 37.80348153972869 ], [ -122.41839051246643, 37.80405373798221 ], [ -122.41847634315491, 37.80414274620096 ], [ -122.4185460805893, 37.80413426923238 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42148578166962, 37.8028923828208 ], [ -122.42155015468599, 37.80322722797084 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41452276706696, 37.796983599684395 ], [ -122.41449058055878, 37.796835238214484 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41538643836975, 37.798017882795456 ], [ -122.41534352302551, 37.79781441840957 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41532742977142, 37.79772540256451 ], [ -122.41528451442719, 37.79752617623693 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41532742977142, 37.79781865725665 ], [ -122.41531133651733, 37.79772964141673 ] ] }, "properties": { "class": "fence" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41495728492737, 37.80557533991654 ], [ -122.41495192050935, 37.80556262470994 ], [ -122.41506993770601, 37.805545671097704 ], [ -122.41507530212402, 37.80557533991654 ], [ -122.41495728492737, 37.80557533991654 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42595970630646, 37.80552871748163 ], [ -122.42588996887207, 37.80557533991654 ], [ -122.42585778236389, 37.80557533991654 ], [ -122.42580950260164, 37.805532955885994 ], [ -122.42578804492952, 37.80554990950113 ], [ -122.42575585842134, 37.80552447907698 ], [ -122.42585241794588, 37.80546090297828 ], [ -122.42587924003601, 37.805482095017254 ], [ -122.42590069770813, 37.8054693797946 ], [ -122.42595970630646, 37.80552871748163 ], [ -122.42595970630646, 37.80552871748163 ], [ -122.42595970630646, 37.80552871748163 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41540789604187, 37.80557533991654 ], [ -122.4153918027878, 37.805507525456015 ], [ -122.41583168506624, 37.80544818775196 ], [ -122.41583704948427, 37.80546514138657 ], [ -122.4158638715744, 37.80546090297828 ], [ -122.41589069366455, 37.80557533991654 ], [ -122.41540789604187, 37.80557533991654 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42577195167542, 37.805477856609954 ], [ -122.42573440074922, 37.80550328705019 ], [ -122.42569684982301, 37.80546937979462 ], [ -122.42573440074922, 37.80544394934274 ], [ -122.42577195167542, 37.805477856609954 ], [ -122.42577195167542, 37.805477856609954 ], [ -122.42577195167542, 37.805477856609954 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42244064807892, 37.80557533991654 ], [ -122.42244064807892, 37.80557533991654 ], [ -122.42359399795532, 37.80543971093325 ], [ -122.4236261844635, 37.80557533991654 ], [ -122.42244064807892, 37.80557533991654 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42045044898987, 37.80557533991654 ], [ -122.42041826248169, 37.80541851888209 ], [ -122.42073476314545, 37.80537613476155 ], [ -122.42077767848969, 37.80557533991654 ], [ -122.42045044898987, 37.80557533991654 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42442011833191, 37.805558386307254 ], [ -122.42426455020905, 37.80556686311238 ], [ -122.42410361766815, 37.805558386307254 ], [ -122.42394268512726, 37.80552447907698 ], [ -122.42381930351257, 37.80548633342432 ], [ -122.42388367652893, 37.80537613476155 ], [ -122.42399096488953, 37.80541004205992 ], [ -122.4241304397583, 37.805435472523484 ], [ -122.42426455020905, 37.80544394934274 ], [ -122.42440402507783, 37.805435472523484 ], [ -122.42442011833191, 37.805558386307254 ], [ -122.42442011833191, 37.805558386307254 ], [ -122.42442011833191, 37.805558386307254 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42793917655945, 37.80557533991654 ], [ -122.42793917655945, 37.80557533991654 ], [ -122.42793381214143, 37.80554990950113 ], [ -122.42819130420686, 37.805499048644066 ], [ -122.42815375328065, 37.805397326824874 ], [ -122.42837369441988, 37.805354942692176 ], [ -122.42838442325593, 37.80538461158759 ], [ -122.42850780487062, 37.80535918110652 ], [ -122.428577542305, 37.80557533991654 ], [ -122.42793917655945, 37.80557533991654 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41589069366455, 37.80557533991654 ], [ -122.4158638715744, 37.80546090297828 ], [ -122.4158638715744, 37.80544394934274 ], [ -122.41682410240173, 37.805325273784796 ], [ -122.41687774658205, 37.80557533991654 ], [ -122.41589069366455, 37.80557533991654 ], [ -122.41673827171326, 37.80557533991654 ], [ -122.41673290729524, 37.80554143269405 ], [ -122.41671144962312, 37.80554143269405 ], [ -122.41670608520509, 37.80549481023774 ], [ -122.41668462753297, 37.80549481023774 ], [ -122.41667926311494, 37.8054693797946 ], [ -122.41666853427888, 37.8054693797946 ], [ -122.41667926311494, 37.80553719429016 ], [ -122.41635739803316, 37.80557533991654 ], [ -122.41589069366455, 37.80557533991654 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41711378097534, 37.80557533991654 ], [ -122.41706550121309, 37.80532951220087 ], [ -122.41717278957368, 37.80531679695196 ], [ -122.41756439208986, 37.80557533991654 ], [ -122.41711378097534, 37.80557533991654 ], [ -122.417408823967, 37.80557533991654 ], [ -122.41734981536867, 37.80553719429016 ], [ -122.41732299327852, 37.80556262470994 ], [ -122.41732299327852, 37.80557533991654 ], [ -122.41711378097534, 37.80557533991654 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41147577762604, 37.80557533991654 ], [ -122.41142749786377, 37.805354942692176 ], [ -122.41174936294556, 37.80531255853515 ], [ -122.41180837154388, 37.80557533991654 ], [ -122.41147577762604, 37.80557533991654 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41512358188629, 37.80536341952066 ], [ -122.41372346878053, 37.80553295588602 ], [ -122.41370201110841, 37.80543971093325 ], [ -122.41510212421417, 37.80526593593434 ], [ -122.41512358188629, 37.80536341952066 ], [ -122.41512358188629, 37.80536341952066 ], [ -122.41512358188629, 37.80536341952066 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.43181228637695, 37.80532951220087 ], [ -122.43179082870483, 37.80533375061669 ], [ -122.43177473545076, 37.805278651192026 ], [ -122.43181228637695, 37.805274412773024 ], [ -122.43181228637695, 37.80532951220087 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42512285709381, 37.805325273784796 ], [ -122.42501556873322, 37.80541004205992 ], [ -122.42489218711853, 37.80546514138659 ], [ -122.4247634410858, 37.80551176386163 ], [ -122.42459177970885, 37.80554567109773 ], [ -122.42454886436461, 37.80541428047113 ], [ -122.42469906806944, 37.80537613476155 ], [ -122.42480635643005, 37.80533375061669 ], [ -122.42491900920866, 37.805278651192026 ], [ -122.42500483989716, 37.80522355172624 ], [ -122.42512285709381, 37.805325273784796 ], [ -122.42512285709381, 37.805325273784796 ], [ -122.42512285709381, 37.805325273784796 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42657124996185, 37.80528712802926 ], [ -122.42628693580627, 37.80528712802926 ], [ -122.42628693580627, 37.80521083645907 ], [ -122.42638885974884, 37.80521083645907 ], [ -122.42638885974884, 37.805248982254014 ], [ -122.42645859718321, 37.805248982254014 ], [ -122.42645859718321, 37.80521083645907 ], [ -122.42657124996184, 37.80521083645907 ], [ -122.42657124996184, 37.80528712802926 ], [ -122.42657124996184, 37.80528712802926 ], [ -122.42657124996185, 37.80528712802926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41802036762238, 37.80540156523678 ], [ -122.41782188415527, 37.805422757292796 ], [ -122.41773068904878, 37.80535918110652 ], [ -122.41772532463075, 37.80534222744762 ], [ -122.41781115531923, 37.80532951220087 ], [ -122.41781651973726, 37.80534222744762 ], [ -122.4178969860077, 37.80533375061669 ], [ -122.41786479949951, 37.8051938827661 ], [ -122.41797745227814, 37.80518116749381 ], [ -122.41802036762238, 37.80540156523678 ], [ -122.41802036762238, 37.80540156523678 ], [ -122.41802036762238, 37.80540156523678 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41101443767548, 37.80546514138659 ], [ -122.41084277629852, 37.805482095017275 ], [ -122.4108374118805, 37.80544818775199 ], [ -122.41063356399538, 37.80546937979462 ], [ -122.41057455539705, 37.805164213794036 ], [ -122.4109447002411, 37.80512182952755 ], [ -122.41101443767548, 37.80546514138659 ], [ -122.41101443767548, 37.80546514138659 ], [ -122.41101443767548, 37.80546514138659 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.416512966156, 37.80518116749381 ], [ -122.4153596162796, 37.80532951220087 ], [ -122.41533815860748, 37.805227790148145 ], [ -122.41649150848389, 37.805079445236736 ], [ -122.416512966156, 37.80518116749381 ], [ -122.416512966156, 37.80518116749381 ], [ -122.416512966156, 37.80518116749381 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41412580013275, 37.804935338466066 ], [ -122.41412043571474, 37.80495653065587 ], [ -122.41410434246065, 37.80495653065587 ], [ -122.41409897804262, 37.80506249151361 ], [ -122.4141150712967, 37.80506672994478 ], [ -122.4141150712967, 37.805092160526534 ], [ -122.41409361362459, 37.805092160526534 ], [ -122.41408824920656, 37.80520235961308 ], [ -122.41410434246065, 37.80520235961308 ], [ -122.41410434246065, 37.805261697514624 ], [ -122.41392731666566, 37.805253220674466 ], [ -122.41392731666566, 37.8051938827661 ], [ -122.41394877433778, 37.8051938827661 ], [ -122.41395413875581, 37.80508368366691 ], [ -122.41393804550172, 37.80508368366691 ], [ -122.41393804550172, 37.80505825308222 ], [ -122.41395413875581, 37.80505825308222 ], [ -122.41396486759187, 37.80494805378067 ], [ -122.41394877433778, 37.80494805378067 ], [ -122.41395413875581, 37.804931100027396 ], [ -122.41412580013277, 37.804935338466066 ], [ -122.41412580013277, 37.804935338466066 ], [ -122.41412580013275, 37.804935338466066 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42615282535553, 37.80513878323706 ], [ -122.42606163024902, 37.805164213794036 ], [ -122.42595970630646, 37.8049522922184 ], [ -122.42605090141296, 37.80492686158845 ], [ -122.42608845233917, 37.80500315345199 ], [ -122.42604553699493, 37.80501586875492 ], [ -122.42606699466705, 37.80506672994478 ], [ -122.42610991001129, 37.80505401465057 ], [ -122.42615282535553, 37.80513878323706 ], [ -122.42615282535553, 37.80513878323706 ], [ -122.42615282535553, 37.80513878323706 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41445302963257, 37.80515573694268 ], [ -122.4142813682556, 37.80518116749381 ], [ -122.4142813682556, 37.805164213794036 ], [ -122.41429746150969, 37.805164213794036 ], [ -122.41427600383757, 37.80505401465057 ], [ -122.41425991058348, 37.80505825308222 ], [ -122.41424918174742, 37.805028584055684 ], [ -122.41426527500151, 37.805028584055684 ], [ -122.41424381732939, 37.804918384709865 ], [ -122.4142277240753, 37.804922623149274 ], [ -122.4142277240753, 37.804905669390145 ], [ -122.41439402103423, 37.80488023874414 ], [ -122.41439938545226, 37.80489719250912 ], [ -122.41438329219817, 37.80490143094975 ], [ -122.41441011428832, 37.80500739188654 ], [ -122.41442620754238, 37.80500739188654 ], [ -122.4144315719604, 37.80503282248878 ], [ -122.41441011428829, 37.80503706092163 ], [ -122.41443693637844, 37.805143021663824 ], [ -122.4144476652145, 37.805143021663824 ], [ -122.41445302963251, 37.80515573694268 ], [ -122.41445302963251, 37.80515573694268 ], [ -122.41445302963257, 37.80515573694268 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42669999599457, 37.80506672994478 ], [ -122.42660880088808, 37.805079445236736 ], [ -122.42659270763399, 37.804998915017194 ], [ -122.42664098739625, 37.80499043814688 ], [ -122.4266302585602, 37.804935338466066 ], [ -122.42658197879793, 37.80494381534272 ], [ -122.42656588554384, 37.80485480808938 ], [ -122.42666244506837, 37.804846331202526 ], [ -122.42669999599458, 37.80506672994478 ], [ -122.42669999599458, 37.80506672994478 ], [ -122.42669999599457, 37.80506672994478 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41483390331268, 37.805134544810045 ], [ -122.41467297077179, 37.8051938827661 ], [ -122.41464078426361, 37.80513878323706 ], [ -122.41465687751769, 37.8051303063828 ], [ -122.41459786891937, 37.80503282248878 ], [ -122.41458177566528, 37.80503706092163 ], [ -122.41456568241121, 37.805011630320855 ], [ -122.41458177566528, 37.80500739188654 ], [ -122.41452276706696, 37.804905669390145 ], [ -122.4145120382309, 37.804909907830286 ], [ -122.41450130939484, 37.80489719250912 ], [ -122.41466224193574, 37.80483785431468 ], [ -122.41466760635376, 37.80485480808938 ], [ -122.41465151309968, 37.80485904653245 ], [ -122.414710521698, 37.80496076909309 ], [ -122.41472661495209, 37.80495653065585 ], [ -122.41474270820618, 37.804977722839574 ], [ -122.41472661495209, 37.804986199711365 ], [ -122.41478025913239, 37.80508368366691 ], [ -122.41479635238647, 37.805079445236736 ], [ -122.41483390331267, 37.805134544810045 ], [ -122.41483390331267, 37.805134544810045 ], [ -122.41483390331268, 37.805134544810045 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42763340473175, 37.80491414627021 ], [ -122.42753148078918, 37.804977722839574 ], [ -122.42744565010071, 37.80489295406824 ], [ -122.42747247219086, 37.804876000302286 ], [ -122.42745101451874, 37.80485480808938 ], [ -122.42749929428099, 37.804825138981116 ], [ -122.42752075195311, 37.804846331202526 ], [ -122.42754757404326, 37.804833615870386 ], [ -122.42763340473174, 37.80491414627021 ], [ -122.42763340473174, 37.80491414627021 ], [ -122.42763340473175, 37.80491414627021 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41603553295135, 37.80507096837568 ], [ -122.41586923599243, 37.805092160526534 ], [ -122.4158638715744, 37.805079445236736 ], [ -122.41587996482849, 37.805075206806336 ], [ -122.41585850715637, 37.80496924596682 ], [ -122.41584241390228, 37.80496924596682 ], [ -122.41583704948427, 37.80494381534272 ], [ -122.41585314273834, 37.80494381534272 ], [ -122.41582632064821, 37.804833615870386 ], [ -122.41581559181215, 37.804833615870386 ], [ -122.41581022739412, 37.80481666209083 ], [ -122.41598188877107, 37.80479546986092 ], [ -122.4159872531891, 37.80481242364534 ], [ -122.41597115993501, 37.80481666209083 ], [ -122.41599261760713, 37.804922623149274 ], [ -122.41600871086122, 37.804918384709865 ], [ -122.41601407527925, 37.80494805378067 ], [ -122.41599798202516, 37.80494805378067 ], [ -122.41601943969728, 37.80505825308222 ], [ -122.41603553295137, 37.80505401465057 ], [ -122.41603553295137, 37.80507096837568 ], [ -122.41603553295137, 37.80507096837568 ], [ -122.41603553295135, 37.80507096837568 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41382002830505, 37.80537189634818 ], [ -122.41369664669037, 37.80538461158762 ], [ -122.41357326507568, 37.80478699296722 ], [ -122.41370201110841, 37.80477003917697 ], [ -122.41382002830507, 37.80537189634818 ], [ -122.41382002830507, 37.80537189634818 ], [ -122.41382002830505, 37.80537189634818 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42814838886261, 37.80481666209083 ], [ -122.42808401584625, 37.80491414627021 ], [ -122.42797136306763, 37.804867523417855 ], [ -122.428035736084, 37.80477003917697 ], [ -122.42806255817413, 37.804782754520026 ], [ -122.42808401584625, 37.80475732383171 ], [ -122.42813766002655, 37.80477851607258 ], [ -122.42812156677248, 37.8048081851996 ], [ -122.42814838886261, 37.80481666209083 ], [ -122.42814838886261, 37.80481666209083 ], [ -122.42814838886261, 37.80481666209083 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41572976112366, 37.80472341623366 ], [ -122.41572976112366, 37.804740370034615 ], [ -122.41571366786958, 37.804740370034615 ], [ -122.41570830345155, 37.80485056964608 ], [ -122.41572439670564, 37.80485056964608 ], [ -122.41571903228761, 37.80488023874414 ], [ -122.41570293903355, 37.804876000302286 ], [ -122.41569757461552, 37.804986199711365 ], [ -122.41571366786961, 37.804986199711365 ], [ -122.41570830345158, 37.80504977621872 ], [ -122.4155312776566, 37.80504129935424 ], [ -122.41553664207463, 37.804981961275594 ], [ -122.41555273532869, 37.804981961275594 ], [ -122.41556346416475, 37.804871761860184 ], [ -122.41554737091069, 37.804871761860184 ], [ -122.41554737091069, 37.804846331202526 ], [ -122.41556346416475, 37.804846331202526 ], [ -122.41556882858278, 37.804736131584754 ], [ -122.41555809974672, 37.804736131584754 ], [ -122.41555809974672, 37.8047191777828 ], [ -122.41572976112367, 37.80472341623366 ], [ -122.41572976112367, 37.80472341623366 ], [ -122.41572976112366, 37.80472341623366 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4148178100586, 37.804748846933656 ], [ -122.41377711296082, 37.80488023874414 ], [ -122.4137556552887, 37.80476580072879 ], [ -122.41479635238647, 37.80463864717042 ], [ -122.4148178100586, 37.804748846933656 ], [ -122.4148178100586, 37.804748846933656 ], [ -122.4148178100586, 37.804748846933656 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42747247219086, 37.80474460848425 ], [ -122.42735445499419, 37.80477851607258 ], [ -122.42730617523193, 37.804676793260924 ], [ -122.42733836174011, 37.80466831635362 ], [ -122.42732226848602, 37.80463864717042 ], [ -122.42738127708435, 37.80462169334611 ], [ -122.42739737033843, 37.80465136253612 ], [ -122.42742419242857, 37.80464288562588 ], [ -122.42747247219084, 37.80474460848425 ], [ -122.42747247219084, 37.80474460848425 ], [ -122.42747247219086, 37.80474460848425 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41508066654205, 37.80521507488171 ], [ -122.41495728492737, 37.805227790148145 ], [ -122.41483390331268, 37.80462593180253 ], [ -122.41496264934541, 37.804613216432486 ], [ -122.41508066654207, 37.80521507488171 ], [ -122.41508066654207, 37.80521507488171 ], [ -122.41508066654205, 37.80521507488171 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42959678173065, 37.8046937470726 ], [ -122.42938220500946, 37.8047191777828 ], [ -122.42936074733734, 37.804613216432486 ], [ -122.42957532405853, 37.80458778568577 ], [ -122.42959678173065, 37.8046937470726 ], [ -122.42959678173065, 37.8046937470726 ], [ -122.42959678173065, 37.8046937470726 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41545617580414, 37.805164213794036 ], [ -122.41533279418945, 37.80518116749381 ], [ -122.4152147769928, 37.804579308768254 ], [ -122.41533815860748, 37.8045623549303 ], [ -122.41545617580414, 37.805164213794036 ], [ -122.41545617580414, 37.805164213794036 ], [ -122.41545617580414, 37.805164213794036 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42601335048676, 37.80477851607258 ], [ -122.42591679096222, 37.80479970830737 ], [ -122.42584705352783, 37.804579308768254 ], [ -122.42593824863434, 37.8045623549303 ], [ -122.42596507072449, 37.80464288562588 ], [ -122.42592215538025, 37.80465136253612 ], [ -122.42593824863432, 37.80470222397696 ], [ -122.42598652839659, 37.8046937470726 ], [ -122.42601335048674, 37.80477851607258 ], [ -122.42601335048674, 37.80477851607258 ], [ -122.42601335048676, 37.80477851607258 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41653442382812, 37.804909907830286 ], [ -122.4164754152298, 37.80491414627021 ], [ -122.41649150848389, 37.804998915017194 ], [ -122.41643249988556, 37.80500739188654 ], [ -122.41599261760712, 37.80470222397696 ], [ -122.41599261760712, 37.80465136253609 ], [ -122.41609454154968, 37.804545401088475 ], [ -122.41652905941008, 37.804846331202526 ], [ -122.41653442382811, 37.804909907830286 ], [ -122.41653442382811, 37.804909907830286 ], [ -122.41653442382812, 37.804909907830286 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42819130420685, 37.804558116470204 ], [ -122.42818593978882, 37.8046640778996 ], [ -122.42806255817413, 37.804659839445335 ], [ -122.42806792259216, 37.804553878009884 ], [ -122.42810010910034, 37.804553878009884 ], [ -122.42810010910034, 37.804524208780705 ], [ -122.4281644821167, 37.80452844724274 ], [ -122.42815911769867, 37.804558116470204 ], [ -122.42819130420686, 37.804558116470204 ], [ -122.42819130420686, 37.804558116470204 ], [ -122.42819130420685, 37.804558116470204 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42912471294403, 37.80474460848425 ], [ -122.4290120601654, 37.804753085382806 ], [ -122.42900669574739, 37.804736131584754 ], [ -122.42884039878847, 37.804753085382806 ], [ -122.42884039878847, 37.80477427762491 ], [ -122.42871165275575, 37.80478699296722 ], [ -122.42869019508362, 37.804659839445335 ], [ -122.42867410182954, 37.804659839445335 ], [ -122.42866337299348, 37.80458778568577 ], [ -122.42867946624756, 37.80458778568577 ], [ -122.42867410182954, 37.804553878009884 ], [ -122.42879748344423, 37.804541162627416 ], [ -122.42880821228029, 37.804634408714705 ], [ -122.42898523807527, 37.804617454889396 ], [ -122.42897450923921, 37.804519970318424 ], [ -122.42908716201784, 37.80450725493011 ], [ -122.42912471294403, 37.80474460848425 ], [ -122.42912471294403, 37.80474460848425 ], [ -122.42912471294403, 37.80474460848425 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4160248041153, 37.804583547227125 ], [ -122.4154132604599, 37.804659839445335 ], [ -122.41539180278778, 37.8045623549303 ], [ -122.41600334644318, 37.8044860626114 ], [ -122.4160248041153, 37.804583547227125 ], [ -122.4160248041153, 37.804583547227125 ], [ -122.4160248041153, 37.804583547227125 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42662489414215, 37.80470646242878 ], [ -122.42653369903564, 37.8047191777828 ], [ -122.42651760578157, 37.80463864717042 ], [ -122.42656588554382, 37.80463017025873 ], [ -122.42655515670776, 37.80457507030913 ], [ -122.42650687694551, 37.804583547227125 ], [ -122.42649078369142, 37.804494539539625 ], [ -122.42658734321596, 37.8044860626114 ], [ -122.42662489414217, 37.80470646242878 ], [ -122.42662489414217, 37.80470646242878 ], [ -122.42662489414215, 37.80470646242878 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42736518383026, 37.80453268570453 ], [ -122.4272471666336, 37.80456659339016 ], [ -122.42719888687134, 37.804469108752045 ], [ -122.42722570896149, 37.804460631820916 ], [ -122.42721498012543, 37.804430962554264 ], [ -122.42727398872375, 37.80441400868229 ], [ -122.42728471755981, 37.80444367795571 ], [ -122.427316904068, 37.80443520102166 ], [ -122.42736518383025, 37.80453268570453 ], [ -122.42736518383025, 37.80453268570453 ], [ -122.42736518383026, 37.80453268570453 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42609918117523, 37.804414008682265 ], [ -122.42599725723267, 37.80442672408664 ], [ -122.42599189281464, 37.80438857786698 ], [ -122.42592215538026, 37.80439705480637 ], [ -122.42592751979828, 37.804430962554264 ], [ -122.42581486701965, 37.80444367795571 ], [ -122.4258041381836, 37.8043673855142 ], [ -122.42608845233919, 37.804341954682855 ], [ -122.42609918117525, 37.804414008682265 ], [ -122.42609918117525, 37.804414008682265 ], [ -122.42609918117523, 37.804414008682265 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42822349071503, 37.804341954682855 ], [ -122.42820739746094, 37.80444791642237 ], [ -122.42808401584625, 37.80443520102166 ], [ -122.42809474468231, 37.8043292392639 ], [ -122.42812693119049, 37.804333477737124 ], [ -122.42813229560852, 37.8043038084194 ], [ -122.42819130420685, 37.8043080468941 ], [ -122.42819130420685, 37.804337716210114 ], [ -122.42822349071503, 37.804341954682855 ], [ -122.42822349071503, 37.804341954682855 ], [ -122.42822349071503, 37.804341954682855 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42655515670776, 37.804358908571395 ], [ -122.42644786834717, 37.8043673855142 ], [ -122.42644250392915, 37.804333477737124 ], [ -122.42637276649477, 37.804337716210114 ], [ -122.42637813091278, 37.80437586245604 ], [ -122.42627084255219, 37.80438433939691 ], [ -122.42626011371613, 37.804312285368546 ], [ -122.4265444278717, 37.80428261604232 ], [ -122.42655515670776, 37.804358908571395 ], [ -122.42655515670776, 37.804358908571395 ], [ -122.42655515670776, 37.804358908571395 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42496192455292, 37.80451149339313 ], [ -122.42472589015962, 37.804541162627416 ], [ -122.42472052574159, 37.804519970318424 ], [ -122.4245971441269, 37.80453268570453 ], [ -122.42460250854494, 37.804553878009884 ], [ -122.42366373538972, 37.8046725548074 ], [ -122.42362082004547, 37.804469108752045 ], [ -122.4246883392334, 37.804333477737124 ], [ -122.42468297481537, 37.804312285368546 ], [ -122.42491900920868, 37.80428261604232 ], [ -122.42496192455292, 37.8045114933931 ], [ -122.42496192455292, 37.8045114933931 ], [ -122.42496192455292, 37.80451149339313 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42991328239441, 37.8043038084194 ], [ -122.42983281612396, 37.804333477737124 ], [ -122.42980062961578, 37.80427837756615 ], [ -122.42988646030426, 37.80424870822632 ], [ -122.42991328239441, 37.8043038084194 ], [ -122.42991328239441, 37.8043038084194 ], [ -122.42991328239441, 37.8043038084194 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42721498012543, 37.80427413908977 ], [ -122.42713451385498, 37.8043504316276 ], [ -122.42702722549438, 37.80427837756615 ], [ -122.4270486831665, 37.80426142365914 ], [ -122.42702186107635, 37.80424023126987 ], [ -122.42705941200256, 37.80420208495388 ], [ -122.42709159851074, 37.80422327735408 ], [ -122.42711305618286, 37.8042063234344 ], [ -122.42721498012543, 37.80427413908977 ], [ -122.42721498012543, 37.80427413908977 ], [ -122.42721498012543, 37.80427413908977 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4137932062149, 37.80434619315537 ], [ -122.41347670555115, 37.80438857786698 ], [ -122.41344451904297, 37.80421903887453 ], [ -122.41376101970673, 37.804176654065614 ], [ -122.41377711296082, 37.804235992791284 ], [ -122.41372346878052, 37.80424446974821 ], [ -122.41373419761658, 37.80428685451822 ], [ -122.41378247737883, 37.80428261604232 ], [ -122.41379320621489, 37.80434619315537 ], [ -122.41379320621489, 37.80434619315537 ], [ -122.4137932062149, 37.80434619315537 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4112343788147, 37.80451149339313 ], [ -122.41116464138031, 37.804519970318424 ], [ -122.41116464138031, 37.80450301646686 ], [ -122.41090714931488, 37.80453268570453 ], [ -122.4108749628067, 37.80437162398523 ], [ -122.4107676744461, 37.80438433939691 ], [ -122.41074085235596, 37.80422327735411 ], [ -122.41095542907715, 37.80419784647312 ], [ -122.41095006465912, 37.804151223168596 ], [ -122.41105198860168, 37.80413850771679 ], [ -122.41105735301971, 37.80417241558338 ], [ -122.4110895395279, 37.8041681771009 ], [ -122.41109490394591, 37.80418089254761 ], [ -122.41113245487212, 37.804176654065614 ], [ -122.41114318370818, 37.80425294670417 ], [ -122.41118073463439, 37.80424870822632 ], [ -122.41123437881468, 37.8045114933931 ], [ -122.41123437881468, 37.8045114933931 ], [ -122.4112343788147, 37.80451149339313 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41164207458496, 37.80482937742587 ], [ -122.41132557392119, 37.804867523417855 ], [ -122.41129338741301, 37.80471070088035 ], [ -122.41135776042938, 37.80470222397696 ], [ -122.41126120090483, 37.80422751583339 ], [ -122.41124510765076, 37.80422751583339 ], [ -122.4112343788147, 37.80415546165205 ], [ -122.41129338741301, 37.80414698468492 ], [ -122.411288022995, 37.80412155377767 ], [ -122.41138994693756, 37.80410883832076 ], [ -122.41139531135558, 37.80413426923238 ], [ -122.4115079641342, 37.80412155377767 ], [ -122.41164207458495, 37.80482937742587 ], [ -122.41164207458495, 37.80482937742587 ], [ -122.41164207458496, 37.80482937742587 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42841124534607, 37.80413850771679 ], [ -122.42837905883789, 37.804159700135244 ], [ -122.42840051651001, 37.804176654065614 ], [ -122.42829322814941, 37.8042402312699 ], [ -122.42821812629698, 37.804159700135244 ], [ -122.42832541465759, 37.80409612286167 ], [ -122.42834687232971, 37.80411731529226 ], [ -122.42837905883789, 37.80410036134828 ], [ -122.42841124534607, 37.80413850771679 ], [ -122.42841124534607, 37.80413850771679 ], [ -122.42841124534607, 37.80413850771679 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4288672208786, 37.8040706919369 ], [ -122.42876529693604, 37.804087645887726 ], [ -122.42875456809998, 37.80405373798221 ], [ -122.42868483066559, 37.80406645344859 ], [ -122.42869555950165, 37.80410459983463 ], [ -122.42858827114105, 37.80412579226283 ], [ -122.42856681346893, 37.804049499492926 ], [ -122.42884576320648, 37.80399863760254 ], [ -122.4288672208786, 37.8040706919369 ], [ -122.4288672208786, 37.8040706919369 ], [ -122.4288672208786, 37.8040706919369 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41524696350098, 37.80394353718175 ], [ -122.41509139537811, 37.80396472965615 ], [ -122.41505920886993, 37.803824859212796 ], [ -122.41506457328796, 37.80382062071037 ], [ -122.41524696350096, 37.80394353718175 ], [ -122.41524696350096, 37.80394353718175 ], [ -122.41524696350098, 37.80394353718175 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42488145828247, 37.804087645887726 ], [ -122.42469370365143, 37.80410883832076 ], [ -122.4246883392334, 37.80407916891281 ], [ -122.42464005947113, 37.804087645887726 ], [ -122.42463469505311, 37.80405797647123 ], [ -122.42442011833192, 37.804087645887726 ], [ -122.42443084716798, 37.80411731529226 ], [ -122.4243611097336, 37.80412579226283 ], [ -122.42436647415163, 37.80416817710093 ], [ -122.42421627044679, 37.804185131029364 ], [ -122.42420554161073, 37.80412579226283 ], [ -122.42411971092224, 37.80413850771679 ], [ -122.42412507534027, 37.80416393861821 ], [ -122.42408215999603, 37.80416817710093 ], [ -122.42408752441405, 37.80419784647312 ], [ -122.42359936237335, 37.80426142365914 ], [ -122.4234491586685, 37.80351968641686 ], [ -122.42394268512726, 37.80345610859232 ], [ -122.42395877838133, 37.803532401975204 ], [ -122.42409288883208, 37.80351544789693 ], [ -122.42407679557799, 37.80344763154491 ], [ -122.42421627044678, 37.80343067744717 ], [ -122.42423236370085, 37.80350273233566 ], [ -122.42451667785645, 37.803464585638736 ], [ -122.42451131343842, 37.80343915449654 ], [ -122.42455422878265, 37.80343491597197 ], [ -122.4245434999466, 37.80338829218581 ], [ -122.42473125457764, 37.80336286101732 ], [ -122.42488145828248, 37.8040876458877 ], [ -122.42488145828248, 37.8040876458877 ], [ -122.42488145828247, 37.804087645887726 ], [ -122.42418944835663, 37.804049499492905 ], [ -122.42415189743042, 37.8038630057236 ], [ -122.42403924465181, 37.80387572122283 ], [ -122.42401242256166, 37.80375704314487 ], [ -122.42413043975831, 37.80374432762521 ], [ -122.4241089820862, 37.80362564933611 ], [ -122.42407143116002, 37.803629887849716 ], [ -122.42406606674199, 37.80358326418665 ], [ -122.42371737957005, 37.80362564933611 ], [ -122.42380857467653, 37.80409612286165 ], [ -122.42418944835664, 37.804049499492905 ], [ -122.42418944835664, 37.804049499492905 ], [ -122.42488145828247, 37.804087645887726 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41450667381287, 37.80306616340459 ], [ -122.41439938545227, 37.80307887904102 ], [ -122.41402924060822, 37.802824565896664 ], [ -122.41402924060822, 37.80279913453407 ], [ -122.41444766521454, 37.802752510346544 ], [ -122.41450667381287, 37.80306616340459 ], [ -122.41450667381287, 37.80306616340459 ], [ -122.41450667381287, 37.80306616340459 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4122428894043, 37.80284999725051 ], [ -122.41211414337158, 37.80286271292414 ], [ -122.41206049919128, 37.80259144474508 ], [ -122.412189245224, 37.80257449045081 ], [ -122.4122428894043, 37.80284999725051 ], [ -122.4122428894043, 37.80284999725051 ], [ -122.4122428894043, 37.80284999725051 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41266131401062, 37.80279913453407 ], [ -122.41226434707642, 37.80284999725051 ], [ -122.41221606731415, 37.80261687617921 ], [ -122.41261303424835, 37.80256601330221 ], [ -122.41266131401062, 37.80279913453407 ], [ -122.41266131401062, 37.80279913453407 ], [ -122.41266131401062, 37.80279913453407 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40950167179108, 37.80257872902474 ], [ -122.40950167179108, 37.80257872902474 ], [ -122.40950167179108, 37.80256601330221 ], [ -122.40950167179108, 37.80257872902474 ], [ -122.40950167179108, 37.80257872902474 ], [ -122.40950167179108, 37.80257872902474 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41288125514984, 37.802510911812625 ], [ -122.41270959377287, 37.80253210469809 ], [ -122.41265594959258, 37.802248119527505 ], [ -122.41276323795319, 37.80223540374806 ], [ -122.4127686023712, 37.802256596712596 ], [ -122.41282761096953, 37.802248119527505 ], [ -122.41288125514983, 37.802510911812625 ], [ -122.41288125514983, 37.802510911812625 ], [ -122.41288125514984, 37.802510911812625 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42451667785645, 37.802239642341455 ], [ -122.42414653301239, 37.802282028262006 ], [ -122.42409288883209, 37.80200651934365 ], [ -122.42445766925812, 37.80196413326501 ], [ -122.4244737625122, 37.80204466679365 ], [ -122.42420017719267, 37.80207857562153 ], [ -122.4242216348648, 37.80218454060837 ], [ -122.42450058460234, 37.802150631829136 ], [ -122.42451667785643, 37.802239642341426 ], [ -122.42451667785643, 37.802239642341426 ], [ -122.42451667785645, 37.802239642341455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41694748401642, 37.80202771237386 ], [ -122.41686701774599, 37.802036189584236 ], [ -122.41683483123781, 37.80187936103475 ], [ -122.41692066192628, 37.80187088380636 ], [ -122.41694748401642, 37.80202771237386 ], [ -122.41694748401642, 37.80202771237386 ], [ -122.41694748401642, 37.80202771237386 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4168348312378, 37.80200651934365 ], [ -122.4164056777954, 37.802053144002095 ], [ -122.41636276245116, 37.80180306594429 ], [ -122.41679191589355, 37.80175644112801 ], [ -122.4168348312378, 37.80200651934365 ], [ -122.4168348312378, 37.80200651934365 ], [ -122.4168348312378, 37.80200651934365 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40966260433197, 37.80162080513147 ], [ -122.40954995155334, 37.801633521016726 ], [ -122.40951240062714, 37.80143006658992 ], [ -122.40962505340576, 37.80141735066961 ], [ -122.40966260433197, 37.80162080513147 ], [ -122.40966260433197, 37.80162080513147 ], [ -122.40966260433197, 37.80162080513147 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41055309772491, 37.801786111469056 ], [ -122.41009712219238, 37.80183697488311 ], [ -122.4100112915039, 37.80140463474716 ], [ -122.41036534309387, 37.80135800967936 ], [ -122.41043508052826, 37.80170133903446 ], [ -122.4105316400528, 37.801688623160885 ], [ -122.41055309772491, 37.801786111469056 ], [ -122.41055309772491, 37.801786111469056 ], [ -122.41055309772491, 37.801786111469056 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42583096027374, 37.801603850614384 ], [ -122.4257504940033, 37.80161656650256 ], [ -122.42576122283936, 37.80168014591061 ], [ -122.42563247680664, 37.801692861785654 ], [ -122.42564857006072, 37.80179882732586 ], [ -122.42538571357726, 37.80182849764988 ], [ -122.42529988288878, 37.80140039610585 ], [ -122.42538571357726, 37.801391918822475 ], [ -122.42545545101164, 37.80173948664206 ], [ -122.42556810379027, 37.801726770775055 ], [ -122.42548763751982, 37.80131986187471 ], [ -122.42558956146239, 37.80130714593547 ], [ -122.42559492588039, 37.80134953239114 ], [ -122.4257773160934, 37.80132833916636 ], [ -122.4258309602737, 37.801603850614384 ], [ -122.4258309602737, 37.801603850614384 ], [ -122.42583096027374, 37.801603850614384 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41143822669983, 37.80144278250799 ], [ -122.41119682788849, 37.80147245297504 ], [ -122.41115391254425, 37.80123932755579 ], [ -122.41132020950317, 37.801218134299376 ], [ -122.41141140460968, 37.8012859526985 ], [ -122.41143822669981, 37.80144278250799 ], [ -122.41143822669981, 37.80144278250799 ], [ -122.41143822669983, 37.80144278250799 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41479098796844, 37.80110792926797 ], [ -122.41452276706696, 37.801141838525915 ], [ -122.41450130939484, 37.801035872043144 ], [ -122.41476953029633, 37.80100196273655 ], [ -122.41479098796844, 37.80110792926797 ], [ -122.41479098796844, 37.80110792926797 ], [ -122.41479098796844, 37.80110792926797 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42432355880737, 37.801294429994016 ], [ -122.424076795578, 37.80132833916636 ], [ -122.42400705814363, 37.80098076941203 ], [ -122.42425382137299, 37.80095109874748 ], [ -122.42432355880737, 37.801294429994016 ], [ -122.42432355880737, 37.801294429994016 ], [ -122.42432355880737, 37.801294429994016 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41539180278778, 37.80103163338067 ], [ -122.4149090051651, 37.80109521329224 ], [ -122.41486608982086, 37.800879041369654 ], [ -122.41534888744354, 37.80081546127204 ], [ -122.41539180278778, 37.80103163338067 ], [ -122.41539180278778, 37.80103163338067 ], [ -122.41539180278778, 37.80103163338067 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42514431476593, 37.80097653074639 ], [ -122.42471516132355, 37.80103163338067 ], [ -122.42467761039734, 37.80087056402646 ], [ -122.42510676383972, 37.80081122259691 ], [ -122.42514431476593, 37.80097653074639 ], [ -122.42514431476593, 37.80097653074639 ], [ -122.42514431476593, 37.80097653074639 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4251389503479, 37.80080698392156 ], [ -122.42467224597931, 37.800862086682315 ], [ -122.42465078830719, 37.8007434037619 ], [ -122.42511212825777, 37.8006883009126 ], [ -122.4251389503479, 37.80080698392156 ], [ -122.4251389503479, 37.80080698392156 ], [ -122.4251389503479, 37.80080698392156 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4114865064621, 37.80076459715455 ], [ -122.41117000579833, 37.80080274524595 ], [ -122.41105198860167, 37.8007434037619 ], [ -122.41102516651154, 37.80061200459185 ], [ -122.41144895553587, 37.80056114033423 ], [ -122.41148650646208, 37.80076459715455 ], [ -122.41148650646208, 37.80076459715455 ], [ -122.4114865064621, 37.80076459715455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41134703159332, 37.80056537902371 ], [ -122.41102516651154, 37.800603527218016 ], [ -122.41100907325746, 37.80051451473398 ], [ -122.41133093833925, 37.800476366493726 ], [ -122.41134703159332, 37.80056537902371 ], [ -122.41134703159332, 37.80056537902371 ], [ -122.41134703159332, 37.80056537902371 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42507457733154, 37.80067982354754 ], [ -122.42490291595459, 37.8007010169584 ], [ -122.4248868227005, 37.80061624327842 ], [ -122.42479026317596, 37.80062895933662 ], [ -122.42480635643005, 37.800717971682715 ], [ -122.42464542388915, 37.80073492640316 ], [ -122.42459714412688, 37.80048908257599 ], [ -122.42502629756927, 37.800433979536976 ], [ -122.42507457733153, 37.80067982354754 ], [ -122.42507457733153, 37.80067982354754 ], [ -122.42507457733154, 37.80067982354754 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41126120090485, 37.80048060518806 ], [ -122.41100907325745, 37.80051027604161 ], [ -122.41097152233124, 37.800319534632266 ], [ -122.41122901439667, 37.800289863702076 ], [ -122.41126120090485, 37.80048060518806 ], [ -122.41126120090485, 37.80048060518806 ], [ -122.41126120090485, 37.80048060518806 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40994691848755, 37.80026867017326 ], [ -122.40976452827454, 37.800289863702105 ], [ -122.4097377061844, 37.80014574758602 ], [ -122.40994691848756, 37.80026867017326 ], [ -122.40994691848756, 37.80026867017326 ], [ -122.40994691848755, 37.80026867017326 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40976452827454, 37.800289863702076 ], [ -122.40950167179108, 37.800323773335606 ], [ -122.40950167179108, 37.80013727015868 ], [ -122.40970015525818, 37.800111837870794 ], [ -122.40973770618439, 37.80014574758602 ], [ -122.40976452827452, 37.800289863702076 ], [ -122.40976452827452, 37.800289863702076 ], [ -122.40976452827454, 37.800289863702076 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41071403026581, 37.80017541857407 ], [ -122.41029024124146, 37.80023052180601 ], [ -122.41024196147919, 37.800192373419065 ], [ -122.41021513938905, 37.80006945070486 ], [ -122.41068184375763, 37.800010108631696 ], [ -122.41071403026581, 37.80017541857407 ], [ -122.41071403026581, 37.80017541857407 ], [ -122.41071403026581, 37.80017541857407 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40970015525818, 37.800111837870794 ], [ -122.40950167179108, 37.80013727015868 ], [ -122.40950167179108, 37.800010108631696 ], [ -122.40954458713531, 37.800005869910365 ], [ -122.40970015525818, 37.800111837870794 ], [ -122.40970015525818, 37.800111837870794 ], [ -122.40970015525818, 37.800111837870794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40954458713531, 37.800005869910365 ], [ -122.40950167179108, 37.800010108631696 ], [ -122.40950167179108, 37.79997196013091 ], [ -122.40954458713531, 37.800005869910365 ], [ -122.40954458713531, 37.800005869910365 ], [ -122.40954458713531, 37.800005869910365 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41009712219238, 37.80009064429088 ], [ -122.40989327430727, 37.79994652778611 ], [ -122.4098825454712, 37.799887185614196 ], [ -122.40995764732362, 37.799874469428296 ], [ -122.40996301174164, 37.79989566307024 ], [ -122.41005420684814, 37.79988294688579 ], [ -122.41009712219238, 37.800090644290854 ], [ -122.41009712219238, 37.800090644290854 ], [ -122.41009712219238, 37.80009064429088 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41024196147919, 37.800192373419065 ], [ -122.41009712219238, 37.80009064429088 ], [ -122.41005420684814, 37.79988294688579 ], [ -122.4101722240448, 37.7998659919698 ], [ -122.41021513938905, 37.80006945070486 ], [ -122.41024196147919, 37.800192373419065 ], [ -122.41024196147919, 37.800192373419065 ], [ -122.41024196147919, 37.800192373419065 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40989327430725, 37.79994652778611 ], [ -122.40950167179108, 37.799654055191525 ], [ -122.40950167179108, 37.79956080281643 ], [ -122.4098128080368, 37.79951417658475 ], [ -122.40989327430725, 37.79994652778611 ], [ -122.40989327430725, 37.79994652778611 ], [ -122.40989327430725, 37.79994652778611 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41004347801208, 37.79967101015616 ], [ -122.41003274917603, 37.7996837263771 ], [ -122.41003811359406, 37.79971763628886 ], [ -122.40995228290556, 37.79972611376437 ], [ -122.40994691848755, 37.7996922038565 ], [ -122.40993618965149, 37.7996922038565 ], [ -122.4099200963974, 37.79962014525055 ], [ -122.40993618965149, 37.79961590650686 ], [ -122.40993082523346, 37.79959471278463 ], [ -122.40991473197938, 37.79959471278463 ], [ -122.40990400314332, 37.79951417658475 ], [ -122.40991473197938, 37.79950569908492 ], [ -122.40999519824982, 37.79949722158412 ], [ -122.41000592708588, 37.79950146033463 ], [ -122.41004347801208, 37.79967101015618 ], [ -122.41004347801208, 37.79967101015618 ], [ -122.41004347801208, 37.79967101015616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41012394428253, 37.79967101015616 ], [ -122.41004347801208, 37.799679487637015 ], [ -122.4100112915039, 37.79950146033463 ], [ -122.41002202033997, 37.79949298283334 ], [ -122.41004347801208, 37.79948874408232 ], [ -122.41005420684814, 37.79949722158412 ], [ -122.41005957126617, 37.79948874408232 ], [ -122.4100810289383, 37.79948874408232 ], [ -122.41009175777435, 37.79949298283334 ], [ -122.41012394428253, 37.79967101015616 ], [ -122.41012394428253, 37.79967101015616 ], [ -122.41012394428253, 37.79967101015616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41038680076599, 37.79981512719847 ], [ -122.41024196147919, 37.799836320857466 ], [ -122.41016685962677, 37.799480266579586 ], [ -122.41032242774963, 37.79945907281843 ], [ -122.41038680076599, 37.79981512719847 ], [ -122.41038680076599, 37.79981512719847 ], [ -122.41038680076599, 37.79981512719847 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41057991981506, 37.79951417658475 ], [ -122.41034388542175, 37.799543847826506 ], [ -122.41032242774963, 37.79945907281843 ], [ -122.41056382656097, 37.79942940154263 ], [ -122.41057991981506, 37.79951417658475 ], [ -122.41057991981506, 37.79951417658475 ], [ -122.41057991981506, 37.79951417658475 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41052627563477, 37.79923865734216 ], [ -122.41033315658571, 37.799259851166546 ], [ -122.41032242774965, 37.79922170227827 ], [ -122.41052091121675, 37.799200508442944 ], [ -122.41052627563477, 37.79923865734216 ], [ -122.41052627563477, 37.79923865734216 ], [ -122.41052627563477, 37.79923865734216 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42392659187317, 37.79942940154263 ], [ -122.42335259914398, 37.79950569908492 ], [ -122.42327213287354, 37.79911997181326 ], [ -122.42385685443878, 37.799056390201464 ], [ -122.42392659187317, 37.79942940154263 ], [ -122.42392659187317, 37.79942940154263 ], [ -122.42392659187317, 37.79942940154263 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42119610309601, 37.79886564503779 ], [ -122.42080450057983, 37.798912271678844 ], [ -122.42078304290771, 37.798785108043006 ], [ -122.42117464542389, 37.7987384813217 ], [ -122.42119610309601, 37.79886564503779 ], [ -122.42119610309601, 37.79886564503779 ], [ -122.42119610309601, 37.79886564503779 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42172181606293, 37.7988020632071 ], [ -122.42163062095642, 37.79881054078769 ], [ -122.42159843444824, 37.798657944188264 ], [ -122.42168962955475, 37.79864522779074 ], [ -122.42172181606293, 37.7988020632071 ], [ -122.42172181606293, 37.7988020632071 ], [ -122.42172181606293, 37.7988020632071 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42197394371033, 37.79876815287502 ], [ -122.42188274860382, 37.798780869251374 ], [ -122.42185056209564, 37.798619794989136 ], [ -122.42194175720215, 37.79860707858504 ], [ -122.42197394371033, 37.79876815287502 ], [ -122.42197394371033, 37.79876815287502 ], [ -122.42197394371033, 37.79876815287502 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42117464542389, 37.7987384813217 ], [ -122.42078304290771, 37.798785108043006 ], [ -122.42075622081757, 37.79865370538933 ], [ -122.42114782333374, 37.79860707858507 ], [ -122.42117464542389, 37.7987384813217 ], [ -122.42117464542389, 37.7987384813217 ], [ -122.42117464542389, 37.7987384813217 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40952849388123, 37.79875967528956 ], [ -122.40950167179108, 37.798763914082414 ], [ -122.40950167179108, 37.79860283978321 ], [ -122.40950167179108, 37.79860283978321 ], [ -122.40952849388123, 37.79875967528956 ], [ -122.40952849388123, 37.79875967528956 ], [ -122.40952849388123, 37.79875967528956 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42188274860382, 37.798780869251374 ], [ -122.42180228233337, 37.79878934683441 ], [ -122.42176473140717, 37.79861131738665 ], [ -122.42185056209564, 37.798598600981116 ], [ -122.42188274860382, 37.798780869251374 ], [ -122.42188274860382, 37.798780869251374 ], [ -122.42188274860382, 37.798780869251374 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42180228233337, 37.79878934683441 ], [ -122.42172181606293, 37.7988020632071 ], [ -122.42168962955475, 37.79864522779074 ], [ -122.42167890071869, 37.798598600981116 ], [ -122.42176473140717, 37.79859012337622 ], [ -122.42180228233337, 37.79878934683441 ], [ -122.42180228233337, 37.79878934683441 ], [ -122.42180228233337, 37.79878934683441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40967869758606, 37.79877663045951 ], [ -122.40957140922546, 37.79878934683441 ], [ -122.40952849388123, 37.798763914082414 ], [ -122.40950167179108, 37.79860283978321 ], [ -122.40963578224182, 37.79858588457339 ], [ -122.40967869758606, 37.79877663045951 ], [ -122.40967869758606, 37.79877663045951 ], [ -122.40967869758606, 37.79877663045951 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42223143577576, 37.7987384813217 ], [ -122.42200076580048, 37.798763914082414 ], [ -122.4219685792923, 37.79861131738668 ], [ -122.4220222234726, 37.798602839783236 ], [ -122.42219924926758, 37.798581645770334 ], [ -122.42223143577576, 37.7987384813217 ], [ -122.42223143577576, 37.7987384813217 ], [ -122.42223143577576, 37.7987384813217 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42145895957947, 37.7988317347349 ], [ -122.4212872982025, 37.79885292867605 ], [ -122.4212336540222, 37.798598600981116 ], [ -122.42141067981719, 37.79857740696702 ], [ -122.42145895957945, 37.7988317347349 ], [ -122.42145895957945, 37.7988317347349 ], [ -122.42145895957947, 37.7988317347349 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42163062095642, 37.79881054078769 ], [ -122.42145895957947, 37.7988317347349 ], [ -122.4214106798172, 37.79857740696702 ], [ -122.42157697677612, 37.79855621294684 ], [ -122.42159843444824, 37.798657944188264 ], [ -122.42163062095642, 37.79881054078769 ], [ -122.42163062095642, 37.79881054078769 ], [ -122.42163062095642, 37.79881054078769 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41014540195465, 37.79892074924677 ], [ -122.40979135036469, 37.79896737585307 ], [ -122.40972697734833, 37.79864522779074 ], [ -122.40978062152863, 37.79863675019119 ], [ -122.40976452827454, 37.79857316816348 ], [ -122.4100649356842, 37.79853501892056 ], [ -122.41014540195465, 37.79892074924677 ], [ -122.41014540195465, 37.79892074924677 ], [ -122.41014540195465, 37.79892074924677 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42219924926758, 37.798581645770334 ], [ -122.4220222234726, 37.798602839783236 ], [ -122.4220061302185, 37.798522302501894 ], [ -122.42218315601349, 37.79850110846591 ], [ -122.42219924926758, 37.798581645770334 ], [ -122.42219924926758, 37.798581645770334 ], [ -122.42219924926758, 37.798581645770334 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41041362285614, 37.79868761577395 ], [ -122.41025805473328, 37.79870457096041 ], [ -122.41021513938904, 37.798513824888246 ], [ -122.41037607192993, 37.79849686965797 ], [ -122.41041362285614, 37.79868761577395 ], [ -122.41041362285614, 37.79868761577395 ], [ -122.41041362285614, 37.79868761577395 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42114782333374, 37.79860707858507 ], [ -122.42075622081757, 37.79865370538933 ], [ -122.42072939872743, 37.79853501892058 ], [ -122.42106735706331, 37.798496869657995 ], [ -122.4211210012436, 37.79848839204139 ], [ -122.42114782333375, 37.79860707858507 ], [ -122.42114782333375, 37.79860707858507 ], [ -122.42114782333374, 37.79860707858507 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42218315601349, 37.79850110846591 ], [ -122.4220061302185, 37.798522302501894 ], [ -122.42194175720215, 37.798530780114596 ], [ -122.42193102836609, 37.79847567561469 ], [ -122.42217242717743, 37.798446003943866 ], [ -122.42218315601349, 37.79850110846591 ], [ -122.42218315601349, 37.79850110846591 ], [ -122.42218315601349, 37.79850110846591 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42302536964417, 37.7985943621788 ], [ -122.42292881011963, 37.79860707858507 ], [ -122.42289662361145, 37.798437526321464 ], [ -122.42299318313599, 37.79842904869807 ], [ -122.42302536964417, 37.7985943621788 ], [ -122.42302536964417, 37.7985943621788 ], [ -122.42302536964417, 37.7985943621788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42292881011963, 37.79860707858507 ], [ -122.42278933525085, 37.79862403379003 ], [ -122.42275178432465, 37.798437526321464 ], [ -122.42289125919342, 37.798420571073684 ], [ -122.42289662361145, 37.798437526321464 ], [ -122.42292881011963, 37.79860707858507 ], [ -122.42292881011963, 37.79860707858507 ], [ -122.42292881011963, 37.79860707858507 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42278933525085, 37.798624033790006 ], [ -122.4224406480789, 37.79866642178537 ], [ -122.42240309715271, 37.798458720375685 ], [ -122.42274641990662, 37.798416332261134 ], [ -122.42275178432463, 37.798437526321464 ], [ -122.42278933525084, 37.79862403379003 ], [ -122.42278933525084, 37.79862403379003 ], [ -122.42278933525085, 37.798624033790006 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4210673570633, 37.79849686965797 ], [ -122.42072939872742, 37.79853501892058 ], [ -122.42071330547333, 37.798458720375685 ], [ -122.42105662822723, 37.798416332261134 ], [ -122.4210673570633, 37.79849686965797 ], [ -122.4210673570633, 37.79849686965797 ], [ -122.4210673570633, 37.79849686965797 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4231219291687, 37.798581645770334 ], [ -122.42302536964415, 37.7985943621788 ], [ -122.42299318313597, 37.79842904869807 ], [ -122.42308974266052, 37.798416332261134 ], [ -122.4231219291687, 37.798581645770334 ], [ -122.4231219291687, 37.798581645770334 ], [ -122.4231219291687, 37.798581645770334 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42376565933228, 37.798505347273604 ], [ -122.42350280284882, 37.79853501892058 ], [ -122.4234813451767, 37.798424809886 ], [ -122.42374420166016, 37.79839513819475 ], [ -122.42376565933228, 37.798505347273604 ], [ -122.42376565933228, 37.798505347273604 ], [ -122.42376565933228, 37.798505347273604 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42374420166016, 37.79839513819475 ], [ -122.4234813451767, 37.798424809886 ], [ -122.42346525192262, 37.79835275004371 ], [ -122.42372810840608, 37.79832307832353 ], [ -122.42374420166016, 37.79839513819475 ], [ -122.42374420166016, 37.79839513819475 ], [ -122.42374420166016, 37.79839513819475 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42274641990662, 37.798416332261134 ], [ -122.42240309715271, 37.798458720375685 ], [ -122.42238163948059, 37.79835275004371 ], [ -122.4227249622345, 37.798310361868346 ], [ -122.42274641990662, 37.798416332261134 ], [ -122.42274641990662, 37.798416332261134 ], [ -122.42274641990662, 37.798416332261134 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42333114147186, 37.79855621294684 ], [ -122.4231219291687, 37.798581645770334 ], [ -122.42308974266052, 37.798416332261134 ], [ -122.42307364940643, 37.79833155595906 ], [ -122.4232828617096, 37.798306123049485 ], [ -122.42333114147186, 37.79855621294684 ], [ -122.42333114147186, 37.79855621294684 ], [ -122.42333114147186, 37.79855621294684 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42372810840607, 37.79832307832353 ], [ -122.42346525192261, 37.79835275004371 ], [ -122.42334723472594, 37.79836970530704 ], [ -122.42333114147186, 37.79826797366868 ], [ -122.42370665073395, 37.79822134662093 ], [ -122.42372810840607, 37.79832307832353 ], [ -122.42372810840607, 37.79832307832353 ], [ -122.42372810840607, 37.79832307832353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42091715335846, 37.79843328750988 ], [ -122.42071330547333, 37.798458720375685 ], [ -122.42067039012909, 37.79823830191443 ], [ -122.42087423801422, 37.79821286897272 ], [ -122.42091715335846, 37.79843328750988 ], [ -122.42091715335846, 37.79843328750988 ], [ -122.42091715335846, 37.79843328750988 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42217242717743, 37.79844600394389 ], [ -122.42193102836609, 37.79847567561469 ], [ -122.42188274860382, 37.79847991442385 ], [ -122.4217540025711, 37.798437526321464 ], [ -122.42172718048097, 37.798310361868346 ], [ -122.42183446884157, 37.79825525720401 ], [ -122.42182910442354, 37.79821710779695 ], [ -122.42190420627595, 37.79820863014827 ], [ -122.42211878299715, 37.798178958370166 ], [ -122.42217242717744, 37.798446003943866 ], [ -122.42217242717744, 37.798446003943866 ], [ -122.42217242717743, 37.79844600394389 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4227249622345, 37.798310361868346 ], [ -122.42238163948059, 37.79835275004371 ], [ -122.42235481739046, 37.79821710779695 ], [ -122.42259085178375, 37.79818743602226 ], [ -122.42269814014436, 37.79817471954375 ], [ -122.4227249622345, 37.798310361868346 ], [ -122.4227249622345, 37.798310361868346 ], [ -122.4227249622345, 37.798310361868346 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4108213186264, 37.79824254073718 ], [ -122.4107301235199, 37.798251018382 ], [ -122.410569190979, 37.79827221248973 ], [ -122.41054773330688, 37.79817471954375 ], [ -122.41079986095428, 37.798145047752044 ], [ -122.4108213186264, 37.79824254073718 ], [ -122.4108213186264, 37.79824254073718 ], [ -122.4108213186264, 37.79824254073718 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42117464542389, 37.79833155595906 ], [ -122.42105662822722, 37.798344272410596 ], [ -122.42105662822722, 37.798344272410596 ], [ -122.42101907730103, 37.79814080892369 ], [ -122.42113709449768, 37.79812385360782 ], [ -122.42117464542389, 37.79833155595906 ], [ -122.42117464542389, 37.79833155595906 ], [ -122.42117464542389, 37.79833155595906 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42127656936646, 37.7983569888599 ], [ -122.42118537425995, 37.79836970530704 ], [ -122.4211370944977, 37.79812385360782 ], [ -122.4212282896042, 37.79811537594843 ], [ -122.42127656936646, 37.7983569888599 ], [ -122.42127656936646, 37.7983569888599 ], [ -122.42127656936646, 37.7983569888599 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42259085178375, 37.79818743602226 ], [ -122.42235481739044, 37.79821710779695 ], [ -122.42233872413635, 37.79814080892369 ], [ -122.42257475852966, 37.79811113711837 ], [ -122.42258012294769, 37.798145047752044 ], [ -122.42259085178375, 37.79818743602226 ], [ -122.42259085178375, 37.79818743602226 ], [ -122.42259085178375, 37.79818743602226 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42211878299713, 37.798178958370166 ], [ -122.42190420627595, 37.79820863014827 ], [ -122.42189884185792, 37.798170480717104 ], [ -122.42188811302186, 37.79813657009509 ], [ -122.42210805416109, 37.79811113711837 ], [ -122.42211878299715, 37.798178958370166 ], [ -122.42211878299715, 37.798178958370166 ], [ -122.42211878299713, 37.798178958370166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42089569568634, 37.79821286897272 ], [ -122.42087423801422, 37.79821286897272 ], [ -122.42067039012909, 37.79823830191443 ], [ -122.42064893245697, 37.79812809243717 ], [ -122.42087423801422, 37.7981026594575 ], [ -122.42089569568634, 37.79821286897272 ], [ -122.42089569568634, 37.79821286897272 ], [ -122.42089569568634, 37.79821286897272 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42138385772705, 37.798344272410596 ], [ -122.42129802703856, 37.79835275004371 ], [ -122.42124438285826, 37.79811113711837 ], [ -122.42133557796477, 37.7980984206267 ], [ -122.42138385772704, 37.798344272410596 ], [ -122.42138385772704, 37.798344272410596 ], [ -122.42138385772705, 37.798344272410596 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42370665073395, 37.79822134662093 ], [ -122.42333114147186, 37.79826797366868 ], [ -122.42328822612762, 37.79827221248973 ], [ -122.4232667684555, 37.798145047752044 ], [ -122.42336332798004, 37.79813233126623 ], [ -122.42368519306183, 37.79809418179568 ], [ -122.42370665073395, 37.79822134662093 ], [ -122.42370665073395, 37.79822134662093 ], [ -122.42370665073395, 37.79822134662093 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42146968841553, 37.79834003359367 ], [ -122.42138922214508, 37.79834851122727 ], [ -122.42133557796478, 37.79809842062673 ], [ -122.42142140865326, 37.7980899429644 ], [ -122.42145895957947, 37.79828916777156 ], [ -122.42146968841553, 37.79834003359367 ], [ -122.42146968841553, 37.79834003359367 ], [ -122.42146968841553, 37.79834003359367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42105662822723, 37.798344272410596 ], [ -122.42094397544861, 37.7983569888599 ], [ -122.42089569568635, 37.7980984206267 ], [ -122.42100834846497, 37.79808570413287 ], [ -122.42101907730103, 37.79814080892369 ], [ -122.42105662822723, 37.798344272410596 ], [ -122.42105662822723, 37.798344272410596 ], [ -122.42105662822723, 37.798344272410596 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42155015468597, 37.79827645131055 ], [ -122.42145895957947, 37.79828916777156 ], [ -122.42142140865326, 37.7980899429644 ], [ -122.42141604423524, 37.7980772264691 ], [ -122.42150723934174, 37.79806874880436 ], [ -122.42155015468599, 37.79827645131055 ], [ -122.42155015468599, 37.79827645131055 ], [ -122.42155015468597, 37.79827645131055 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41094470024109, 37.79822558544467 ], [ -122.4108374118805, 37.79823830191443 ], [ -122.4108052253723, 37.79806450997163 ], [ -122.41091251373291, 37.79805179347195 ], [ -122.41094470024109, 37.79822558544467 ], [ -122.41094470024109, 37.79822558544467 ], [ -122.41094470024109, 37.79822558544467 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42166817188263, 37.79831883950538 ], [ -122.42156088352203, 37.79833579477649 ], [ -122.42155015468597, 37.79827645131055 ], [ -122.42150723934174, 37.79806874880436 ], [ -122.42150723934174, 37.79805603230542 ], [ -122.42161452770233, 37.798043315804286 ], [ -122.42166817188263, 37.798310361868346 ], [ -122.42166817188263, 37.79831883950538 ], [ -122.42166817188263, 37.79831883950538 ], [ -122.42166817188263, 37.79831883950538 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41130411624908, 37.79818319719633 ], [ -122.41122364997864, 37.79819167484794 ], [ -122.4111968278885, 37.79805179347195 ], [ -122.41127192974092, 37.798039076970106 ], [ -122.4113041162491, 37.79818319719633 ], [ -122.4113041162491, 37.79818319719633 ], [ -122.41130411624908, 37.79818319719633 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41104125976562, 37.79821286897272 ], [ -122.41094470024109, 37.79822558544467 ], [ -122.41091251373291, 37.79805179347195 ], [ -122.4110037088394, 37.798039076970085 ], [ -122.41104125976561, 37.79821286897272 ], [ -122.41104125976561, 37.79821286897272 ], [ -122.41104125976562, 37.79821286897272 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42210805416107, 37.79811113711837 ], [ -122.42188811302185, 37.79813657009509 ], [ -122.42187738418579, 37.79806027113865 ], [ -122.42209196090698, 37.79803483813565 ], [ -122.42210805416106, 37.79811113711837 ], [ -122.42210805416106, 37.79811113711837 ], [ -122.42210805416107, 37.79811113711837 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41139531135559, 37.798170480717104 ], [ -122.41130411624908, 37.79818319719633 ], [ -122.4112719297409, 37.798043315804286 ], [ -122.41136848926544, 37.798030599300965 ], [ -122.41139531135559, 37.798170480717104 ], [ -122.41139531135559, 37.798170480717104 ], [ -122.41139531135559, 37.798170480717104 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4111270904541, 37.79820439132355 ], [ -122.41104125976562, 37.79821286897272 ], [ -122.41100370883942, 37.798039076970106 ], [ -122.41108953952791, 37.798030599300965 ], [ -122.4111270904541, 37.79820439132355 ], [ -122.4111270904541, 37.79820439132355 ], [ -122.4111270904541, 37.79820439132355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41079986095428, 37.798145047752044 ], [ -122.41054773330688, 37.79817471954375 ], [ -122.41052627563477, 37.79806027113865 ], [ -122.41077840328217, 37.798026360466025 ], [ -122.41079986095428, 37.798145047752044 ], [ -122.41079986095428, 37.798145047752044 ], [ -122.41079986095428, 37.798145047752044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42174863815308, 37.79830188423037 ], [ -122.42166817188263, 37.798310361868346 ], [ -122.42161452770233, 37.798043315804286 ], [ -122.4216091632843, 37.798039076970106 ], [ -122.42169499397278, 37.798026360466025 ], [ -122.42173790931703, 37.79825525720401 ], [ -122.42174863815309, 37.79830188423037 ], [ -122.42174863815309, 37.79830188423037 ], [ -122.42174863815308, 37.79830188423037 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42368519306183, 37.79809418179568 ], [ -122.42336332798004, 37.79813233126623 ], [ -122.42334723472595, 37.79806450997163 ], [ -122.42366909980774, 37.79802212163085 ], [ -122.42368519306183, 37.798094181795655 ], [ -122.42368519306183, 37.798094181795655 ], [ -122.42368519306183, 37.79809418179568 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41122364997864, 37.79819167484794 ], [ -122.4111270904541, 37.79820439132355 ], [ -122.41108953952791, 37.798030599300965 ], [ -122.41119146347046, 37.798017882795456 ], [ -122.41119682788849, 37.79805179347195 ], [ -122.41122364997864, 37.79819167484794 ], [ -122.41122364997864, 37.79819167484794 ], [ -122.41122364997864, 37.79819167484794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4218237400055, 37.79824254073718 ], [ -122.42173790931702, 37.79825525720401 ], [ -122.42169499397278, 37.798026360466025 ], [ -122.42168962955475, 37.79802212163088 ], [ -122.42178082466125, 37.798013643959806 ], [ -122.42181301116943, 37.79818319719633 ], [ -122.4218237400055, 37.798242540737206 ], [ -122.4218237400055, 37.798242540737206 ], [ -122.4218237400055, 37.79824254073718 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41199612617493, 37.79809418179568 ], [ -122.41175472736359, 37.79812385360782 ], [ -122.4117386341095, 37.798026360466025 ], [ -122.41183519363403, 37.798013643959806 ], [ -122.41198003292084, 37.797996688614745 ], [ -122.41199612617493, 37.79809418179568 ], [ -122.41199612617493, 37.79809418179568 ], [ -122.41199612617493, 37.79809418179568 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40985572338104, 37.79836970530704 ], [ -122.40963041782379, 37.79839513819475 ], [ -122.40950167179108, 37.798412093448356 ], [ -122.40950167179108, 37.798030599300965 ], [ -122.40954458713531, 37.798026360466025 ], [ -122.40955531597137, 37.79802212163088 ], [ -122.40978062152863, 37.797996688614745 ], [ -122.40985572338104, 37.79836970530704 ], [ -122.40985572338104, 37.79836970530704 ], [ -122.40985572338104, 37.79836970530704 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42189884185791, 37.798170480717104 ], [ -122.42181301116943, 37.79818319719633 ], [ -122.42178082466125, 37.798013643959806 ], [ -122.42177546024323, 37.79798397210339 ], [ -122.42185592651367, 37.79797125558984 ], [ -122.42187738418579, 37.79806027113865 ], [ -122.42188811302185, 37.79813657009509 ], [ -122.42189884185791, 37.79817048071708 ], [ -122.42189884185791, 37.79817048071708 ], [ -122.42189884185791, 37.798170480717104 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42366909980774, 37.79802212163088 ], [ -122.42334723472595, 37.79806450997163 ], [ -122.42327213287354, 37.79807298763686 ], [ -122.42326140403748, 37.79800516628776 ], [ -122.42365837097168, 37.79795853907413 ], [ -122.42366909980774, 37.79802212163088 ], [ -122.42366909980774, 37.79802212163088 ], [ -122.42366909980774, 37.79802212163088 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42209196090698, 37.79803483813565 ], [ -122.42187738418579, 37.79806027113865 ], [ -122.42185592651367, 37.797971255589864 ], [ -122.4220758676529, 37.7979458225562 ], [ -122.42209196090698, 37.79803483813565 ], [ -122.42209196090698, 37.79803483813565 ], [ -122.42209196090698, 37.79803483813565 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41198003292084, 37.797996688614745 ], [ -122.41183519363403, 37.798013643959806 ], [ -122.41181910037996, 37.797950061395746 ], [ -122.41196393966676, 37.79793310603611 ], [ -122.41198003292084, 37.797996688614745 ], [ -122.41198003292084, 37.797996688614745 ], [ -122.41198003292084, 37.797996688614745 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41097688674927, 37.798017882795456 ], [ -122.41079986095428, 37.798039076970106 ], [ -122.41079449653625, 37.798026360466025 ], [ -122.41077840328218, 37.798026360466025 ], [ -122.41052627563477, 37.79806027113865 ], [ -122.41051018238069, 37.797979733265805 ], [ -122.4109447002411, 37.79792462835481 ], [ -122.41096079349518, 37.79792462835481 ], [ -122.41097688674927, 37.798017882795456 ], [ -122.41097688674927, 37.798017882795456 ], [ -122.41097688674927, 37.798017882795456 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42254257202148, 37.79808146530112 ], [ -122.42233335971832, 37.79810689828806 ], [ -122.42229044437408, 37.797911911831086 ], [ -122.42249965667725, 37.79788647877699 ], [ -122.42254257202148, 37.79808146530112 ], [ -122.42254257202148, 37.79808146530112 ], [ -122.42254257202148, 37.79808146530112 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42365837097168, 37.79795853907413 ], [ -122.42326140403748, 37.79800516628776 ], [ -122.42324531078339, 37.79792886719558 ], [ -122.4236422777176, 37.79787800109037 ], [ -122.42365837097168, 37.79795853907413 ], [ -122.42365837097168, 37.79795853907413 ], [ -122.42365837097168, 37.79795853907413 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40954458713531, 37.79798397210339 ], [ -122.40950167179108, 37.797988210940744 ], [ -122.40950167179108, 37.797873762246674 ], [ -122.40951776504517, 37.797873762246674 ], [ -122.4095445871353, 37.79798397210339 ], [ -122.4095445871353, 37.79798397210339 ], [ -122.40954458713531, 37.79798397210339 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42269814014435, 37.79813233126623 ], [ -122.42258012294769, 37.798145047752044 ], [ -122.42257475852966, 37.79811113711837 ], [ -122.42253184318542, 37.797882239933806 ], [ -122.42264986038208, 37.79786952340275 ], [ -122.42269814014435, 37.79813233126623 ], [ -122.42269814014435, 37.79813233126623 ], [ -122.42269814014435, 37.79813233126623 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41151869297028, 37.79815352540803 ], [ -122.41139531135559, 37.798170480717104 ], [ -122.41136848926544, 37.798030599300965 ], [ -122.41133630275726, 37.79787800109037 ], [ -122.41145968437195, 37.797865284558576 ], [ -122.41151869297028, 37.79815352540803 ], [ -122.41151869297028, 37.79815352540803 ], [ -122.41151869297028, 37.79815352540803 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41196393966675, 37.79793310603611 ], [ -122.41181910037994, 37.797950061395746 ], [ -122.41176545619965, 37.79795853907413 ], [ -122.41174399852753, 37.79785256802462 ], [ -122.41194784641264, 37.79782713495009 ], [ -122.41196393966673, 37.79793310603611 ], [ -122.41196393966673, 37.79793310603611 ], [ -122.41196393966675, 37.79793310603611 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42323458194733, 37.79809418179568 ], [ -122.42314875125885, 37.79810689828806 ], [ -122.42314875125885, 37.79811537594843 ], [ -122.42302536964417, 37.79813233126623 ], [ -122.42305755615234, 37.798284928951475 ], [ -122.42277324199677, 37.79831883950538 ], [ -122.42268204689026, 37.797865284558576 ], [ -122.42295026779175, 37.797831373796456 ], [ -122.42296636104584, 37.79792038951381 ], [ -122.42299318313597, 37.79791615067256 ], [ -122.4229770898819, 37.79782713495009 ], [ -122.423175573349, 37.79780170186684 ], [ -122.42320239543913, 37.79793310603611 ], [ -122.42323458194733, 37.79809418179568 ], [ -122.42323458194733, 37.79809418179568 ], [ -122.42323458194733, 37.79809418179568 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41194784641266, 37.79782713495009 ], [ -122.41174399852753, 37.79785256802462 ], [ -122.41173326969147, 37.79779322417047 ], [ -122.41193175315857, 37.79777202992529 ], [ -122.41194784641266, 37.79782713495009 ], [ -122.41194784641266, 37.79782713495009 ], [ -122.41194784641266, 37.79782713495009 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4116313457489, 37.79814080892369 ], [ -122.41152405738829, 37.79815352540803 ], [ -122.41146504878998, 37.797865284558576 ], [ -122.41144895553589, 37.79777202992531 ], [ -122.41155624389648, 37.7977593133753 ], [ -122.41163134574892, 37.79814080892369 ], [ -122.41163134574892, 37.79814080892369 ], [ -122.4116313457489, 37.79814080892369 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41175472736359, 37.79812385360782 ], [ -122.41164207458496, 37.79814080892369 ], [ -122.41156697273254, 37.797767791075536 ], [ -122.41167962551116, 37.79775083567405 ], [ -122.41173863410948, 37.798026360466025 ], [ -122.41175472736357, 37.79812385360782 ], [ -122.41175472736357, 37.79812385360782 ], [ -122.41175472736359, 37.79812385360782 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42364227771759, 37.79787800109037 ], [ -122.42324531078339, 37.79792886719558 ], [ -122.42320239543913, 37.79793310603611 ], [ -122.423175573349, 37.79780170186684 ], [ -122.42361545562744, 37.79774659682308 ], [ -122.42364227771759, 37.79787800109037 ], [ -122.42364227771759, 37.79787800109037 ], [ -122.42364227771759, 37.79787800109037 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41094470024109, 37.79792462835481 ], [ -122.41051018238068, 37.797979733265805 ], [ -122.41046726703644, 37.79777626877483 ], [ -122.41064965724944, 37.79775083567405 ], [ -122.41068184375763, 37.79774659682308 ], [ -122.4106979370117, 37.7978228961035 ], [ -122.41092324256896, 37.797797463018796 ], [ -122.41094470024107, 37.79792462835481 ], [ -122.41094470024107, 37.79792462835481 ], [ -122.41094470024109, 37.79792462835481 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41193175315857, 37.79777202992531 ], [ -122.41173326969147, 37.79779322417047 ], [ -122.41172254085541, 37.797742357971856 ], [ -122.41192102432251, 37.797716924859415 ], [ -122.41193175315857, 37.79777202992531 ], [ -122.41193175315857, 37.79777202992531 ], [ -122.41193175315857, 37.79777202992531 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42134094238281, 37.79786952340275 ], [ -122.4212282896042, 37.797882239933806 ], [ -122.42119073867799, 37.797708447153305 ], [ -122.42130875587465, 37.797695730592324 ], [ -122.42134094238283, 37.79786952340275 ], [ -122.42134094238283, 37.79786952340275 ], [ -122.42134094238281, 37.79786952340275 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42091715335846, 37.79792462835481 ], [ -122.42062211036682, 37.79795853907413 ], [ -122.42058455944061, 37.7977593133753 ], [ -122.42057383060455, 37.79772540256451 ], [ -122.42083668708801, 37.7976914917382 ], [ -122.42084205150604, 37.79772964141673 ], [ -122.42086350917816, 37.797831373796456 ], [ -122.42090106010436, 37.79782713495009 ], [ -122.42091715335845, 37.79792462835481 ], [ -122.42091715335845, 37.79792462835481 ], [ -122.42091715335846, 37.79792462835481 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41064965724945, 37.79775083567405 ], [ -122.41046726703645, 37.79777626877483 ], [ -122.41045653820039, 37.797712686006484 ], [ -122.41063892841339, 37.7976914917382 ], [ -122.41064965724945, 37.79775083567405 ], [ -122.41064965724945, 37.79775083567405 ], [ -122.41064965724945, 37.79775083567405 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42103517055511, 37.797907672989325 ], [ -122.42091715335846, 37.79792462835481 ], [ -122.42090106010437, 37.79782713495009 ], [ -122.42087423801424, 37.79770420829989 ], [ -122.42099225521089, 37.79768725288382 ], [ -122.42103517055513, 37.797907672989325 ], [ -122.42103517055513, 37.797907672989325 ], [ -122.42103517055511, 37.797907672989325 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42143213748932, 37.79785680686951 ], [ -122.42134094238281, 37.79786952340275 ], [ -122.42130875587463, 37.797695730592324 ], [ -122.42130339145662, 37.79768301402918 ], [ -122.42139458656312, 37.79767453631921 ], [ -122.42143213748932, 37.79785680686951 ], [ -122.42143213748932, 37.79785680686951 ], [ -122.42143213748932, 37.79785680686951 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41192102432251, 37.797716924859415 ], [ -122.41172254085541, 37.797742357971856 ], [ -122.41171181201935, 37.79768301402918 ], [ -122.41191029548645, 37.79765758089631 ], [ -122.41192102432251, 37.797716924859415 ], [ -122.41192102432251, 37.797716924859415 ], [ -122.41192102432251, 37.797716924859415 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40951240062714, 37.79781865725665 ], [ -122.40950167179108, 37.79781865725665 ], [ -122.40950167179108, 37.79775931337528 ], [ -122.40951240062714, 37.79781865725665 ], [ -122.40951240062714, 37.79781865725665 ], [ -122.40951240062714, 37.79781865725665 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42122828960419, 37.797882239933806 ], [ -122.42111563682556, 37.79789919530514 ], [ -122.42108881473541, 37.79776355222553 ], [ -122.4210673570633, 37.7976618197524 ], [ -122.42118000984192, 37.79764910318341 ], [ -122.42119073867798, 37.797708447153305 ], [ -122.42122828960419, 37.797882239933806 ], [ -122.42122828960419, 37.797882239933806 ], [ -122.42122828960419, 37.797882239933806 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42255330085754, 37.797716924859415 ], [ -122.42225289344788, 37.797755074524794 ], [ -122.42223680019379, 37.79767453631921 ], [ -122.42248356342316, 37.79764062546953 ], [ -122.42253720760345, 37.797636386612204 ], [ -122.42255330085754, 37.797716924859415 ], [ -122.42255330085754, 37.797716924859415 ], [ -122.42255330085754, 37.797716924859415 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41066575050354, 37.79768725288382 ], [ -122.41063892841339, 37.7976914917382 ], [ -122.41045653820039, 37.797712686006484 ], [ -122.41044580936433, 37.79765758089631 ], [ -122.41061747074129, 37.797636386612204 ], [ -122.4106550216675, 37.79763214775467 ], [ -122.41066575050355, 37.79768725288382 ], [ -122.41066575050355, 37.79768725288382 ], [ -122.41066575050354, 37.79768725288382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4095767736435, 37.797788985321915 ], [ -122.40953385829926, 37.797797463018796 ], [ -122.40953385829926, 37.79778474647316 ], [ -122.40950703620912, 37.797788985321915 ], [ -122.40950167179109, 37.797755074524794 ], [ -122.40950167179109, 37.797636386612204 ], [ -122.40954458713533, 37.79763214775467 ], [ -122.40957677364351, 37.797788985321915 ], [ -122.40957677364351, 37.797788985321915 ], [ -122.4095767736435, 37.797788985321915 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40976989269257, 37.79789919530514 ], [ -122.40955531597137, 37.79792886719558 ], [ -122.40954995155336, 37.797886478777016 ], [ -122.4095928668976, 37.797882239933806 ], [ -122.4095392227173, 37.79762367003883 ], [ -122.40971088409425, 37.79760247574503 ], [ -122.40976989269258, 37.79789919530514 ], [ -122.40976989269258, 37.79789919530514 ], [ -122.40976989269257, 37.79789919530514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42160379886627, 37.79783561264257 ], [ -122.4214321374893, 37.79785680686951 ], [ -122.42139458656311, 37.79767453631921 ], [ -122.42138385772705, 37.797619431180564 ], [ -122.421555519104, 37.797598236885534 ], [ -122.42160379886627, 37.79783561264257 ], [ -122.42160379886627, 37.79783561264257 ], [ -122.42160379886627, 37.79783561264257 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42248356342316, 37.79764062546953 ], [ -122.42223680019379, 37.79767453631921 ], [ -122.42222607135773, 37.797615192322034 ], [ -122.4224728345871, 37.7975855203056 ], [ -122.42248356342316, 37.79764062546953 ], [ -122.42248356342316, 37.79764062546953 ], [ -122.42248356342316, 37.79764062546953 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42083668708801, 37.7976914917382 ], [ -122.42057383060455, 37.79772540256451 ], [ -122.42055237293243, 37.79760671460429 ], [ -122.42080986499786, 37.797572803723476 ], [ -122.420836687088, 37.7976914917382 ], [ -122.420836687088, 37.7976914917382 ], [ -122.42083668708801, 37.7976914917382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42111563682556, 37.79789919530514 ], [ -122.4210512638092, 37.79790343414736 ], [ -122.42098152637482, 37.797564326000824 ], [ -122.42104589939117, 37.797555848277206 ], [ -122.42108881473541, 37.79776355222553 ], [ -122.42111563682556, 37.79789919530512 ], [ -122.42111563682556, 37.79789919530512 ], [ -122.42111563682556, 37.79789919530514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42174327373505, 37.79781865725665 ], [ -122.42160379886627, 37.79783561264257 ], [ -122.421555519104, 37.797598236885534 ], [ -122.42155015468599, 37.797572803723476 ], [ -122.42168962955476, 37.79755160941504 ], [ -122.42174327373506, 37.79781865725665 ], [ -122.42174327373506, 37.79781865725665 ], [ -122.42174327373505, 37.79781865725665 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41191029548645, 37.79765758089631 ], [ -122.41171181201935, 37.79768301402918 ], [ -122.41169571876527, 37.79768725288382 ], [ -122.41167426109315, 37.79757704258442 ], [ -122.41188883781433, 37.79755160941504 ], [ -122.41191029548645, 37.79765758089631 ], [ -122.41191029548645, 37.79765758089631 ], [ -122.41191029548645, 37.79765758089631 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42280542850494, 37.79768301402918 ], [ -122.4227249622345, 37.797695730592324 ], [ -122.42269814014436, 37.797560087139146 ], [ -122.42277860641481, 37.79755160941504 ], [ -122.42280542850494, 37.79768301402918 ], [ -122.42280542850494, 37.79768301402918 ], [ -122.42280542850494, 37.79768301402918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42252111434937, 37.79758128144514 ], [ -122.4224728345871, 37.7975855203056 ], [ -122.42222607135773, 37.797615192322034 ], [ -122.42221534252167, 37.797555848277206 ], [ -122.42251038551332, 37.79751769850893 ], [ -122.42252111434938, 37.79758128144514 ], [ -122.42252111434938, 37.79758128144514 ], [ -122.42252111434937, 37.79758128144514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4227249622345, 37.797695730592324 ], [ -122.422633767128, 37.797708447153305 ], [ -122.42260158061983, 37.79752617623693 ], [ -122.4226874113083, 37.79751345964458 ], [ -122.42269814014436, 37.797560087139146 ], [ -122.4227249622345, 37.797695730592324 ], [ -122.4227249622345, 37.797695730592324 ], [ -122.4227249622345, 37.797695730592324 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42289125919342, 37.79767453631921 ], [ -122.42280542850494, 37.79768301402918 ], [ -122.42277860641481, 37.79755160941504 ], [ -122.42277324199678, 37.79752193737306 ], [ -122.42285907268526, 37.79750922077997 ], [ -122.42289125919343, 37.79767453631921 ], [ -122.42289125919343, 37.79767453631921 ], [ -122.42289125919342, 37.79767453631921 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4230682849884, 37.79765334203998 ], [ -122.42298245429993, 37.7976618197524 ], [ -122.42295563220979, 37.79751769850896 ], [ -122.42303609848022, 37.79750498191513 ], [ -122.4230682849884, 37.79765334203998 ], [ -122.4230682849884, 37.79765334203998 ], [ -122.4230682849884, 37.79765334203998 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41061747074127, 37.797636386612204 ], [ -122.41044580936432, 37.79765758089631 ], [ -122.41041898727417, 37.79752193737306 ], [ -122.41059064865114, 37.797500743050065 ], [ -122.41061747074127, 37.797636386612204 ], [ -122.41061747074127, 37.797636386612204 ], [ -122.41061747074127, 37.797636386612204 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42298245429993, 37.79766181975238 ], [ -122.42289125919342, 37.79767453631921 ], [ -122.42285907268524, 37.79750922077997 ], [ -122.42295026779175, 37.79749650418472 ], [ -122.42295563220978, 37.79751769850893 ], [ -122.42298245429991, 37.79766181975238 ], [ -122.42298245429991, 37.79766181975238 ], [ -122.42298245429993, 37.79766181975238 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4207991361618, 37.797572803723476 ], [ -122.42055237293245, 37.79760671460429 ], [ -122.42053627967836, 37.79752617623693 ], [ -122.42078304290773, 37.79749650418472 ], [ -122.4207991361618, 37.797572803723476 ], [ -122.4207991361618, 37.797572803723476 ], [ -122.4207991361618, 37.797572803723476 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42314875125885, 37.79764062546953 ], [ -122.4230682849884, 37.79765334203998 ], [ -122.42303609848022, 37.79750498191513 ], [ -122.42303609848022, 37.79749650418472 ], [ -122.42311656475067, 37.797488026453316 ], [ -122.42314875125885, 37.79764062546953 ], [ -122.42314875125885, 37.79764062546953 ], [ -122.42314875125885, 37.79764062546953 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4225103855133, 37.79751769850893 ], [ -122.42221534252167, 37.797555848277206 ], [ -122.42219924926758, 37.797488026453316 ], [ -122.42249965667725, 37.79745411551802 ], [ -122.4225103855133, 37.79751769850893 ], [ -122.4225103855133, 37.79751769850893 ], [ -122.4225103855133, 37.79751769850893 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42357790470123, 37.79758975916583 ], [ -122.42328822612762, 37.79762367003883 ], [ -122.42325603961945, 37.79746259325332 ], [ -122.42354571819305, 37.797428682306354 ], [ -122.42357790470123, 37.79758975916583 ], [ -122.42357790470123, 37.79758975916583 ], [ -122.42357790470123, 37.79758975916583 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42082059383392, 37.79749226531914 ], [ -122.42078304290773, 37.79749650418472 ], [ -122.42053627967836, 37.79752617623693 ], [ -122.42052018642427, 37.79745411551802 ], [ -122.42080450057988, 37.79742020456719 ], [ -122.42082059383394, 37.79749226531914 ], [ -122.42082059383394, 37.79749226531914 ], [ -122.42082059383392, 37.79749226531914 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41142749786377, 37.79774659682308 ], [ -122.41097688674927, 37.79780170186684 ], [ -122.41096079349518, 37.79772540256451 ], [ -122.41090178489686, 37.797733880268694 ], [ -122.41090714931488, 37.79774659682308 ], [ -122.4107301235199, 37.797767791075536 ], [ -122.4106764793396, 37.797488026453344 ], [ -122.41085350513458, 37.797466832120605 ], [ -122.41085886955261, 37.79749226531914 ], [ -122.41092324256897, 37.79748378758728 ], [ -122.41095542907715, 37.79763214775467 ], [ -122.41130948066711, 37.79758975916583 ], [ -122.41129338741302, 37.797513459644605 ], [ -122.41124510765076, 37.79751769850896 ], [ -122.41122364997864, 37.79742020456719 ], [ -122.41135776042938, 37.7974032490859 ], [ -122.41142749786377, 37.79774659682308 ], [ -122.41142749786377, 37.79774659682308 ], [ -122.41142749786377, 37.79774659682308 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4115240573883, 37.79756856486228 ], [ -122.41140067577362, 37.7975855203056 ], [ -122.41136312484743, 37.7974032490859 ], [ -122.41148650646211, 37.797390532472384 ], [ -122.4115240573883, 37.79756856486228 ], [ -122.4115240573883, 37.79756856486228 ], [ -122.4115240573883, 37.79756856486228 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42249965667725, 37.79745411551802 ], [ -122.42219924926758, 37.797488026453316 ], [ -122.42218315601349, 37.79741596569723 ], [ -122.42248356342316, 37.7973778158567 ], [ -122.42249965667725, 37.79745411551802 ], [ -122.42249965667725, 37.79745411551802 ], [ -122.42249965667725, 37.79745411551802 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41164207458496, 37.797555848277206 ], [ -122.41152405738829, 37.79756856486228 ], [ -122.4114865064621, 37.797390532472384 ], [ -122.41160452365875, 37.797373576984334 ], [ -122.41164207458496, 37.79753889282706 ], [ -122.41164207458496, 37.797555848277206 ], [ -122.41164207458496, 37.797555848277206 ], [ -122.41164207458496, 37.797555848277206 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42259085178375, 37.79749226531914 ], [ -122.42250502109526, 37.797500743050065 ], [ -122.42248356342314, 37.7973778158567 ], [ -122.42256939411163, 37.79736933811171 ], [ -122.42259085178375, 37.79749226531914 ], [ -122.42259085178375, 37.79749226531914 ], [ -122.42259085178375, 37.79749226531914 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41174936294556, 37.79752193737306 ], [ -122.41164207458496, 37.79753889282706 ], [ -122.41160452365875, 37.797373576984334 ], [ -122.41171717643738, 37.7973608603657 ], [ -122.41174936294556, 37.79752193737306 ], [ -122.41174936294556, 37.79752193737306 ], [ -122.41174936294556, 37.79752193737306 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42267668247223, 37.79747954872097 ], [ -122.42259085178375, 37.79749226531914 ], [ -122.42256939411163, 37.79736933811171 ], [ -122.42265522480011, 37.79735662149236 ], [ -122.42267668247223, 37.79747954872097 ], [ -122.42267668247223, 37.79747954872097 ], [ -122.42267668247223, 37.79747954872097 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42086350917816, 37.79741172682703 ], [ -122.42080450057983, 37.79742020456719 ], [ -122.42052018642426, 37.79745411551802 ], [ -122.4205094575882, 37.79739477134381 ], [ -122.4208527803421, 37.79735238261875 ], [ -122.42086350917816, 37.79741172682703 ], [ -122.42086350917816, 37.79741172682703 ], [ -122.42086350917816, 37.79741172682703 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4227625131607, 37.79747530985443 ], [ -122.42268204689026, 37.797488026453316 ], [ -122.42267668247224, 37.79747954872097 ], [ -122.42265522480012, 37.79735662149236 ], [ -122.42273569107056, 37.7973481437449 ], [ -122.42275714874268, 37.797449876650035 ], [ -122.4227625131607, 37.79747530985443 ], [ -122.4227625131607, 37.79747530985443 ], [ -122.4227625131607, 37.79747530985443 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4118834733963, 37.79750922078 ], [ -122.41174936294556, 37.79752193737306 ], [ -122.41171717643738, 37.79736086036572 ], [ -122.41185128688812, 37.7973439048708 ], [ -122.4118834733963, 37.79750922078 ], [ -122.4118834733963, 37.79750922078 ], [ -122.4118834733963, 37.79750922078 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42354571819305, 37.79741172682703 ], [ -122.42325603961945, 37.797449876650035 ], [ -122.42324531078339, 37.79740748795659 ], [ -122.42323994636537, 37.7973778158567 ], [ -122.42352962493898, 37.797339665996475 ], [ -122.42354571819305, 37.79741172682703 ], [ -122.42354571819305, 37.79741172682703 ], [ -122.42354571819305, 37.79741172682703 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42284297943115, 37.79743716004455 ], [ -122.42275714874268, 37.797449876650035 ], [ -122.42273569107056, 37.7973481437449 ], [ -122.42282152175903, 37.797335427121915 ], [ -122.42284297943115, 37.79743716004455 ], [ -122.42284297943115, 37.79743716004455 ], [ -122.42284297943115, 37.79743716004455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42293953895569, 37.79746259325332 ], [ -122.42284834384918, 37.79747530985443 ], [ -122.42284297943117, 37.79743716004455 ], [ -122.42282152175905, 37.797335427121915 ], [ -122.42291271686554, 37.797326949372035 ], [ -122.42293417453766, 37.79742020456719 ], [ -122.42293953895569, 37.79746259325332 ], [ -122.42293953895569, 37.79746259325332 ], [ -122.42293953895569, 37.79746259325332 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42328822612762, 37.79762367003883 ], [ -122.42314875125884, 37.79764062546953 ], [ -122.42311656475066, 37.797488026453316 ], [ -122.4231058359146, 37.79742444343689 ], [ -122.42313802242278, 37.79742020456719 ], [ -122.42312729358672, 37.79738205472884 ], [ -122.42308974266052, 37.79738629360075 ], [ -122.42307901382446, 37.79733118824708 ], [ -122.42319166660307, 37.79731847162117 ], [ -122.42320239543913, 37.797373576984334 ], [ -122.42320775985716, 37.79741172682703 ], [ -122.42324531078337, 37.79740748795659 ], [ -122.42325603961943, 37.797449876650035 ], [ -122.42325603961943, 37.79746259325332 ], [ -122.42328822612761, 37.79762367003883 ], [ -122.42328822612761, 37.79762367003883 ], [ -122.42328822612762, 37.79762367003883 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42302000522614, 37.79741172682703 ], [ -122.42293417453766, 37.79742020456719 ], [ -122.42291271686554, 37.797326949372035 ], [ -122.42300391197203, 37.797314232745414 ], [ -122.42302000522612, 37.79741172682703 ], [ -122.42302000522612, 37.79741172682703 ], [ -122.42302000522614, 37.79741172682703 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42204904556274, 37.7977805076241 ], [ -122.42180764675139, 37.79781017956224 ], [ -122.42170572280884, 37.79732271049674 ], [ -122.4219524860382, 37.7972930383628 ], [ -122.42204904556274, 37.7977805076241 ], [ -122.42204904556274, 37.7977805076241 ], [ -122.42204904556274, 37.7977805076241 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4208527803421, 37.7973481437449 ], [ -122.4205094575882, 37.79739053247241 ], [ -122.4204933643341, 37.797318471621196 ], [ -122.42083668708801, 37.797276082852335 ], [ -122.4208527803421, 37.7973481437449 ], [ -122.4208527803421, 37.7973481437449 ], [ -122.4208527803421, 37.7973481437449 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42352962493896, 37.797339665996496 ], [ -122.42323994636536, 37.7973778158567 ], [ -122.42321848869324, 37.797276082852335 ], [ -122.42326140403748, 37.797271843974144 ], [ -122.42350816726685, 37.79724217181975 ], [ -122.42352962493896, 37.797339665996496 ], [ -122.42352962493896, 37.797339665996496 ], [ -122.42352962493896, 37.797339665996496 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42195248603821, 37.7972930383628 ], [ -122.42170572280884, 37.79732271049674 ], [ -122.42163062095642, 37.797335427121915 ], [ -122.42161452770235, 37.797259127338 ], [ -122.42168962955476, 37.79725064957937 ], [ -122.42193639278413, 37.79722097741648 ], [ -122.42195248603821, 37.7972930383628 ], [ -122.42195248603821, 37.7972930383628 ], [ -122.42195248603821, 37.7972930383628 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42083668708801, 37.797276082852335 ], [ -122.4204933643341, 37.797318471621196 ], [ -122.42048263549805, 37.797254888458816 ], [ -122.42082059383392, 37.79721249965347 ], [ -122.42083668708801, 37.797276082852335 ], [ -122.42083668708801, 37.797276082852335 ], [ -122.42083668708801, 37.797276082852335 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42246747016907, 37.7972930383628 ], [ -122.42217242717741, 37.797326949372035 ], [ -122.4221509695053, 37.79724217181975 ], [ -122.42242991924284, 37.79720826077158 ], [ -122.42245137691496, 37.79720826077158 ], [ -122.42246747016905, 37.7972930383628 ], [ -122.42246747016905, 37.7972930383628 ], [ -122.42246747016907, 37.7972930383628 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42263376712799, 37.797271843974116 ], [ -122.42254793643951, 37.797280321730305 ], [ -122.4225264787674, 37.79718282747526 ], [ -122.42261767387389, 37.79717434970787 ], [ -122.42263376712798, 37.797271843974116 ], [ -122.42263376712798, 37.797271843974116 ], [ -122.42263376712799, 37.797271843974116 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4227249622345, 37.797259127338 ], [ -122.422633767128, 37.797271843974116 ], [ -122.42261767387392, 37.79717434970787 ], [ -122.42261230945589, 37.797157394170185 ], [ -122.42270350456239, 37.797144677514346 ], [ -122.42272496223451, 37.797259127338 ], [ -122.42272496223451, 37.797259127338 ], [ -122.4227249622345, 37.797259127338 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42082059383392, 37.79721249965347 ], [ -122.42048263549805, 37.797254888458816 ], [ -122.42046654224396, 37.7971785885917 ], [ -122.42080986499786, 37.797140438628595 ], [ -122.42082059383392, 37.79721249965347 ], [ -122.42082059383392, 37.79721249965347 ], [ -122.42082059383392, 37.79721249965347 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42254793643951, 37.797280321730305 ], [ -122.42246747016908, 37.7972930383628 ], [ -122.42245137691499, 37.79720826077158 ], [ -122.4224352836609, 37.797144677514346 ], [ -122.42251574993135, 37.797131960856326 ], [ -122.42252111434938, 37.797153155285145 ], [ -122.4225264787674, 37.79718282747526 ], [ -122.42254793643951, 37.797280321730305 ], [ -122.42254793643951, 37.797280321730305 ], [ -122.42254793643951, 37.797280321730305 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42280542850494, 37.79725064957937 ], [ -122.4227249622345, 37.797259127338 ], [ -122.42270350456238, 37.797144677514346 ], [ -122.42270350456238, 37.79713619974259 ], [ -122.42278397083282, 37.79712772196984 ], [ -122.42280542850494, 37.79725064957937 ], [ -122.42280542850494, 37.79725064957937 ], [ -122.42280542850494, 37.79725064957937 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42093324661255, 37.797339665996496 ], [ -122.42085278034212, 37.7973481437449 ], [ -122.42083668708803, 37.797276082852335 ], [ -122.42082059383394, 37.79721249965347 ], [ -122.42080986499788, 37.797140438628595 ], [ -122.42089569568635, 37.79712772196984 ], [ -122.42093324661256, 37.797339665996496 ], [ -122.42093324661256, 37.797339665996496 ], [ -122.42093324661255, 37.797339665996496 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42242991924286, 37.79720826077158 ], [ -122.42215096950531, 37.79724217181975 ], [ -122.42213487625123, 37.79716163305497 ], [ -122.42241382598877, 37.79712772196984 ], [ -122.42242991924286, 37.79720826077158 ], [ -122.42242991924286, 37.79720826077158 ], [ -122.42242991924286, 37.79720826077158 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42103517055511, 37.79739901021499 ], [ -122.42094933986664, 37.79740748795659 ], [ -122.42093324661255, 37.797339665996475 ], [ -122.42089569568635, 37.79712772196984 ], [ -122.42098152637483, 37.79711924419614 ], [ -122.42103517055513, 37.79739901021499 ], [ -122.42103517055513, 37.79739901021499 ], [ -122.42103517055511, 37.79739901021499 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42289125919342, 37.79725064957937 ], [ -122.42281079292299, 37.79726336621694 ], [ -122.42278397083284, 37.79712772196984 ], [ -122.42277860641481, 37.79711924419614 ], [ -122.42286443710331, 37.79710652753374 ], [ -122.42287516593937, 37.79717011082383 ], [ -122.42289125919343, 37.79725064957937 ], [ -122.42289125919343, 37.79725064957937 ], [ -122.42289125919342, 37.79725064957937 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42114782333374, 37.79743292117557 ], [ -122.42104589939117, 37.797445637781784 ], [ -122.42103517055511, 37.79739901021499 ], [ -122.42098152637482, 37.79711924419614 ], [ -122.42107808589935, 37.79710652753374 ], [ -122.42113173007965, 37.797369338111686 ], [ -122.42114782333374, 37.79743292117557 ], [ -122.42114782333374, 37.79743292117557 ], [ -122.42114782333374, 37.79743292117557 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42350816726685, 37.79724217181975 ], [ -122.42326140403748, 37.797271843974116 ], [ -122.42323458194733, 37.79712348308311 ], [ -122.4234813451767, 37.79709381086916 ], [ -122.42350816726685, 37.79724217181975 ], [ -122.42350816726685, 37.79724217181975 ], [ -122.42350816726685, 37.79724217181975 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42123365402222, 37.79735662149236 ], [ -122.42113173007965, 37.79736933811171 ], [ -122.42107808589935, 37.79710652753374 ], [ -122.42118000984192, 37.79709381086916 ], [ -122.42123365402222, 37.79735662149236 ], [ -122.42123365402222, 37.79735662149236 ], [ -122.42123365402222, 37.79735662149236 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42193639278412, 37.79722097741648 ], [ -122.42168962955475, 37.79725064957937 ], [ -122.4216628074646, 37.79711500530891 ], [ -122.42190957069397, 37.797085333091545 ], [ -122.42193639278412, 37.79722097741648 ], [ -122.42193639278412, 37.79722097741648 ], [ -122.42193639278412, 37.79722097741648 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42139458656311, 37.79736933811171 ], [ -122.42127120494843, 37.79738629360075 ], [ -122.42128193378448, 37.79743716004455 ], [ -122.42134630680084, 37.797428682306354 ], [ -122.42136240005493, 37.79750922078 ], [ -122.42129802703856, 37.79751769850896 ], [ -122.42130339145659, 37.797530415100546 ], [ -122.42127120494841, 37.797530415100546 ], [ -122.42126584053038, 37.79752193737306 ], [ -122.42122292518614, 37.79752617623693 ], [ -122.42120683193207, 37.797445637781784 ], [ -122.4212497472763, 37.797441398913286 ], [ -122.42123365402222, 37.79735662149236 ], [ -122.42118000984192, 37.79709381086916 ], [ -122.42133557796478, 37.79707261642332 ], [ -122.42139458656311, 37.79735238261875 ], [ -122.42139458656311, 37.79736933811171 ], [ -122.42139458656311, 37.79736933811171 ], [ -122.42139458656311, 37.79736933811171 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41181373596191, 37.797259127338 ], [ -122.41130411624908, 37.79732271049674 ], [ -122.41128802299501, 37.797254888458816 ], [ -122.41127192974092, 37.7971785885917 ], [ -122.41126120090486, 37.79712772196984 ], [ -122.41177618503572, 37.797064138643265 ], [ -122.41178691387178, 37.797110766421454 ], [ -122.41179764270784, 37.79717434970787 ], [ -122.41180300712587, 37.797187066358596 ], [ -122.41181373596193, 37.797259127338 ], [ -122.41181373596193, 37.797259127338 ], [ -122.41181373596191, 37.797259127338 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42151260375977, 37.797339665996496 ], [ -122.42139458656311, 37.79735238261875 ], [ -122.42133557796478, 37.79707261642332 ], [ -122.42145359516144, 37.7970598997529 ], [ -122.42151260375977, 37.797339665996496 ], [ -122.42151260375977, 37.797339665996496 ], [ -122.42151260375977, 37.797339665996496 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42241382598877, 37.79712772196984 ], [ -122.42213487625122, 37.79716163305497 ], [ -122.42211878299713, 37.79708109420238 ], [ -122.42239773273468, 37.797047183080274 ], [ -122.42241382598877, 37.79712772196984 ], [ -122.42241382598877, 37.79712772196984 ], [ -122.42241382598877, 37.79712772196984 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42317020893097, 37.7972040218895 ], [ -122.4230682849884, 37.7972167385351 ], [ -122.42305219173433, 37.797140438628595 ], [ -122.42303609848024, 37.7970598997529 ], [ -122.4231380224228, 37.7970471830803 ], [ -122.42317020893098, 37.7972040218895 ], [ -122.42317020893098, 37.7972040218895 ], [ -122.42317020893097, 37.7972040218895 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42165207862854, 37.79743716004455 ], [ -122.42153406143188, 37.79745411551802 ], [ -122.42151260375977, 37.797339665996496 ], [ -122.42145359516144, 37.7970598997529 ], [ -122.42158234119417, 37.797042944188924 ], [ -122.42159307003023, 37.79710652753374 ], [ -122.42158234119417, 37.797110766421454 ], [ -122.42161452770235, 37.797259127338 ], [ -122.42163062095642, 37.797335427121915 ], [ -122.42165207862854, 37.79743716004455 ], [ -122.42165207862854, 37.79743716004455 ], [ -122.42165207862854, 37.79743716004455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42305219173431, 37.797140438628595 ], [ -122.42296099662781, 37.797153155285145 ], [ -122.42293953895569, 37.797051421971396 ], [ -122.4230307340622, 37.79703870529732 ], [ -122.42303609848021, 37.7970598997529 ], [ -122.4230521917343, 37.797140438628595 ], [ -122.4230521917343, 37.797140438628595 ], [ -122.42305219173431, 37.797140438628595 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42190957069397, 37.797085333091545 ], [ -122.4216628074646, 37.79711500530891 ], [ -122.42159843444824, 37.79712348308311 ], [ -122.42158234119417, 37.797042944188924 ], [ -122.4218934774399, 37.797004794155775 ], [ -122.42190957069397, 37.797085333091545 ], [ -122.42190957069397, 37.797085333091545 ], [ -122.42190957069397, 37.797085333091545 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42239773273468, 37.797047183080274 ], [ -122.42211878299713, 37.79708109420238 ], [ -122.42210268974306, 37.79699207747368 ], [ -122.42238163948059, 37.796958166310716 ], [ -122.42239773273468, 37.797047183080274 ], [ -122.42239773273468, 37.797047183080274 ], [ -122.42239773273468, 37.797047183080274 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42251574993134, 37.797131960856326 ], [ -122.4224352836609, 37.797144677514346 ], [ -122.4223977327347, 37.79695392741425 ], [ -122.42247819900514, 37.79694544962059 ], [ -122.42251574993134, 37.797131960856326 ], [ -122.42251574993134, 37.797131960856326 ], [ -122.42251574993134, 37.797131960856326 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42260694503784, 37.797140438628595 ], [ -122.42252111434937, 37.797153155285145 ], [ -122.42251574993134, 37.797131960856326 ], [ -122.42247819900514, 37.79694544962059 ], [ -122.42256402969362, 37.79693273292826 ], [ -122.42260694503786, 37.797140438628595 ], [ -122.42260694503786, 37.797140438628595 ], [ -122.42260694503784, 37.797140438628595 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42270350456238, 37.79713619974259 ], [ -122.42260694503784, 37.79714891639987 ], [ -122.42260694503784, 37.797140438628595 ], [ -122.4225640296936, 37.79693273292829 ], [ -122.42266058921814, 37.796924255132176 ], [ -122.42270350456238, 37.79713619974259 ], [ -122.42270350456238, 37.79713619974259 ], [ -122.42270350456238, 37.79713619974259 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42278397083282, 37.79712772196984 ], [ -122.42270350456238, 37.79713619974259 ], [ -122.42266058921814, 37.796924255132176 ], [ -122.42274105548859, 37.79691153843622 ], [ -122.42276787757874, 37.797047183080274 ], [ -122.4227786064148, 37.79711924419614 ], [ -122.42278397083281, 37.79712772196984 ], [ -122.42278397083281, 37.79712772196984 ], [ -122.42278397083282, 37.79712772196984 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42284834384918, 37.79703870529732 ], [ -122.42276787757875, 37.797047183080274 ], [ -122.4227410554886, 37.79691153843622 ], [ -122.42282152175905, 37.79690306063769 ], [ -122.42284834384918, 37.79703870529732 ], [ -122.42284834384918, 37.79703870529732 ], [ -122.42284834384918, 37.79703870529732 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42296099662781, 37.79716163305497 ], [ -122.42287516593933, 37.79717011082383 ], [ -122.42286443710327, 37.79710652753374 ], [ -122.42284834384918, 37.79703870529732 ], [ -122.42282152175905, 37.79690306063769 ], [ -122.42291271686554, 37.79689034393807 ], [ -122.42293953895569, 37.797051421971375 ], [ -122.42296099662781, 37.797153155285145 ], [ -122.42296099662781, 37.79716163305497 ], [ -122.42296099662781, 37.79716163305497 ], [ -122.42296099662781, 37.79716163305497 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4230307340622, 37.79703870529732 ], [ -122.42293953895569, 37.797051421971396 ], [ -122.42291271686554, 37.796890343938095 ], [ -122.42299854755403, 37.79688186613715 ], [ -122.42303073406221, 37.79703870529732 ], [ -122.42303073406221, 37.79703870529732 ], [ -122.4230307340622, 37.79703870529732 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42313802242279, 37.797047183080274 ], [ -122.42303609848022, 37.7970598997529 ], [ -122.42303073406221, 37.79703870529732 ], [ -122.42299854755403, 37.79688186613715 ], [ -122.42310583591463, 37.79686914943388 ], [ -122.4231380224228, 37.797047183080274 ], [ -122.4231380224228, 37.797047183080274 ], [ -122.42313802242279, 37.797047183080274 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4234813451767, 37.79709381086916 ], [ -122.42323458194733, 37.79712348308311 ], [ -122.42318630218507, 37.79712772196984 ], [ -122.4231380224228, 37.79686491053231 ], [ -122.42342770099641, 37.79682676040723 ], [ -122.42348134517671, 37.79709381086916 ], [ -122.42348134517671, 37.79709381086916 ], [ -122.4234813451767, 37.79709381086916 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42184519767761, 37.796843716020796 ], [ -122.42153942584991, 37.79688186613715 ], [ -122.42151260375977, 37.79675893791397 ], [ -122.42161452770233, 37.79674622118954 ], [ -122.42161989212035, 37.79677165463619 ], [ -122.42172718048096, 37.79675469900605 ], [ -122.42172181606293, 37.796733504462914 ], [ -122.42181837558746, 37.79672078773413 ], [ -122.42184519767761, 37.796843716020796 ], [ -122.42184519767761, 37.796843716020796 ], [ -122.42184519767761, 37.796843716020796 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42239773273468, 37.79676317682161 ], [ -122.42206513881683, 37.796805565884775 ], [ -122.42204904556274, 37.79672502664398 ], [ -122.42219388484955, 37.79670807100316 ], [ -122.42238163948059, 37.7966826375346 ], [ -122.42239773273468, 37.79676317682161 ], [ -122.42239773273468, 37.79676317682161 ], [ -122.42239773273468, 37.79676317682161 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42181837558746, 37.79672078773413 ], [ -122.42172181606293, 37.796733504462914 ], [ -122.42161452770233, 37.79674622118954 ], [ -122.42151260375977, 37.79675893791397 ], [ -122.42147505283356, 37.79676317682161 ], [ -122.4214643239975, 37.79669535426995 ], [ -122.4218076467514, 37.79665296514357 ], [ -122.42181837558746, 37.79672078773413 ], [ -122.42181837558746, 37.79672078773413 ], [ -122.42181837558746, 37.79672078773413 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42219388484955, 37.79670807100314 ], [ -122.42204904556274, 37.79672502664398 ], [ -122.42203295230867, 37.79664024840093 ], [ -122.42217779159547, 37.79661905382496 ], [ -122.42219388484955, 37.79670807100314 ], [ -122.42219388484955, 37.79670807100314 ], [ -122.42219388484955, 37.79670807100314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4218076467514, 37.79665296514357 ], [ -122.4214643239975, 37.79669535426995 ], [ -122.42144823074342, 37.796627531656064 ], [ -122.42179155349733, 37.796585142490756 ], [ -122.4218076467514, 37.79665296514357 ], [ -122.4218076467514, 37.79665296514357 ], [ -122.4218076467514, 37.79665296514357 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42339551448822, 37.796636009486214 ], [ -122.42302536964417, 37.79668687644664 ], [ -122.42302000522615, 37.79662329274064 ], [ -122.42305755615234, 37.79661905382496 ], [ -122.42338478565217, 37.796580903572895 ], [ -122.42339551448823, 37.796636009486214 ], [ -122.42339551448823, 37.796636009486214 ], [ -122.42339551448822, 37.796636009486214 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42338478565216, 37.796580903572895 ], [ -122.42305755615234, 37.79661905382496 ], [ -122.42303609848021, 37.79652579761845 ], [ -122.42336869239806, 37.79648764731826 ], [ -122.42338478565215, 37.796580903572895 ], [ -122.42338478565215, 37.796580903572895 ], [ -122.42338478565216, 37.796580903572895 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42179155349731, 37.796585142490756 ], [ -122.42144823074341, 37.796627531656064 ], [ -122.42142140865326, 37.796496125164445 ], [ -122.42176473140717, 37.79644949699833 ], [ -122.42179155349731, 37.796585142490756 ], [ -122.42179155349731, 37.796585142490756 ], [ -122.42179155349731, 37.796585142490756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42237627506256, 37.79657242573643 ], [ -122.42203831672668, 37.796614814909034 ], [ -122.42200076580048, 37.79643678022064 ], [ -122.42233872413635, 37.79639015201705 ], [ -122.42237627506256, 37.79657242573643 ], [ -122.42237627506256, 37.79657242573643 ], [ -122.42237627506256, 37.79657242573643 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41783797740936, 37.79647493054711 ], [ -122.41766095161438, 37.79650036408717 ], [ -122.41762340068817, 37.796326568055655 ], [ -122.41780579090118, 37.79630113445578 ], [ -122.41783797740936, 37.79647493054711 ], [ -122.41783797740936, 37.79647493054711 ], [ -122.41783797740936, 37.79647493054711 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42176473140717, 37.79644949699833 ], [ -122.42142140865326, 37.796496125164445 ], [ -122.42134094238281, 37.796504603009666 ], [ -122.42129802703857, 37.79629689552161 ], [ -122.42172718048097, 37.79624178935534 ], [ -122.42176473140717, 37.79644949699833 ], [ -122.42176473140717, 37.79644949699833 ], [ -122.42176473140717, 37.79644949699833 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42233872413635, 37.79639015201707 ], [ -122.42200076580048, 37.79643678022064 ], [ -122.42195785045624, 37.79624602829267 ], [ -122.42230117321014, 37.79620363890844 ], [ -122.42233872413634, 37.79639015201707 ], [ -122.42233872413634, 37.79639015201707 ], [ -122.42233872413635, 37.79639015201707 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42230117321014, 37.79620363890844 ], [ -122.42195785045624, 37.79624602829267 ], [ -122.42192029953003, 37.79605527587214 ], [ -122.42226362228394, 37.79601288637848 ], [ -122.42230117321014, 37.79620363890844 ], [ -122.42230117321014, 37.79620363890844 ], [ -122.42230117321014, 37.79620363890844 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42202758789062, 37.795813655432426 ], [ -122.42187201976776, 37.795830611278554 ], [ -122.42184519767763, 37.795703442337825 ], [ -122.42200076580049, 37.79568224749312 ], [ -122.42202758789062, 37.795813655432426 ], [ -122.42202758789062, 37.795813655432426 ], [ -122.42202758789062, 37.795813655432426 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41046726703644, 37.7958009385453 ], [ -122.41036534309387, 37.795813655432426 ], [ -122.41035461425781, 37.79575430994039 ], [ -122.41032779216766, 37.7956483357289 ], [ -122.41043508052827, 37.79563561881328 ], [ -122.41046726703645, 37.7958009385453 ], [ -122.41046726703645, 37.7958009385453 ], [ -122.41046726703644, 37.7958009385453 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42079377174377, 37.79568224749312 ], [ -122.42061674594879, 37.795703442337825 ], [ -122.42062211036682, 37.795737354076756 ], [ -122.42050409317015, 37.79575430994039 ], [ -122.42048263549803, 37.79564409675727 ], [ -122.42077767848967, 37.79561018497552 ], [ -122.42079377174376, 37.79568224749312 ], [ -122.42079377174376, 37.79568224749312 ], [ -122.42079377174377, 37.79568224749312 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42215633392334, 37.79566529161295 ], [ -122.42200076580048, 37.79568224749312 ], [ -122.42184519767761, 37.795703442337825 ], [ -122.42183446884155, 37.7956483357289 ], [ -122.42214560508728, 37.795605946001736 ], [ -122.42215633392334, 37.79566529161295 ], [ -122.42215633392334, 37.79566529161295 ], [ -122.42215633392334, 37.79566529161295 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42214560508728, 37.795605946001736 ], [ -122.42183446884155, 37.7956483357289 ], [ -122.42181837558746, 37.795555078297006 ], [ -122.422091960907, 37.79551692749549 ], [ -122.42212414741518, 37.79551268851633 ], [ -122.4221456050873, 37.795605946001736 ], [ -122.4221456050873, 37.795605946001736 ], [ -122.42214560508728, 37.795605946001736 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42209196090698, 37.79551692749549 ], [ -122.42181837558745, 37.795555078297006 ], [ -122.42179691791533, 37.79545758176509 ], [ -122.42206513881682, 37.79542366989775 ], [ -122.42207586765288, 37.79541943091325 ], [ -122.42209196090697, 37.79551692749549 ], [ -122.42209196090697, 37.79551692749549 ], [ -122.42209196090698, 37.79551692749549 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42206513881683, 37.79542366989775 ], [ -122.42179691791534, 37.79545758176509 ], [ -122.42178082466127, 37.795381280041674 ], [ -122.42194712162019, 37.795360085104505 ], [ -122.42204904556274, 37.795347368139296 ], [ -122.42206513881683, 37.79542366989775 ], [ -122.42206513881683, 37.79542366989775 ], [ -122.42206513881683, 37.79542366989775 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42194712162018, 37.795360085104505 ], [ -122.42178082466125, 37.795381280041674 ], [ -122.4217540025711, 37.795262588315275 ], [ -122.42192029953003, 37.79524139334406 ], [ -122.42194712162018, 37.795360085104505 ], [ -122.42194712162018, 37.795360085104505 ], [ -122.42194712162018, 37.795360085104505 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41045653820038, 37.79530073924811 ], [ -122.40998446941376, 37.795360085104505 ], [ -122.40994691848755, 37.79517780839393 ], [ -122.41041898727417, 37.79511422338909 ], [ -122.41045653820038, 37.79530073924811 ], [ -122.41045653820038, 37.79530073924811 ], [ -122.41045653820038, 37.79530073924811 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42193102836609, 37.79524139334406 ], [ -122.42192029953003, 37.79524139334406 ], [ -122.4217540025711, 37.795262588315275 ], [ -122.42172181606293, 37.795109984386826 ], [ -122.42189884185791, 37.795088789371825 ], [ -122.42193102836609, 37.79524139334406 ], [ -122.42193102836609, 37.79524139334406 ], [ -122.42193102836609, 37.79524139334406 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4214643239975, 37.79497433618579 ], [ -122.42100834846497, 37.79503368230439 ], [ -122.42093324661255, 37.79468608293166 ], [ -122.42139458656312, 37.794626736533836 ], [ -122.4214643239975, 37.79497433618579 ], [ -122.4214643239975, 37.79497433618579 ], [ -122.4214643239975, 37.79497433618579 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41237163543701, 37.795262588315275 ], [ -122.41227507591248, 37.795275305295064 ], [ -122.41227507591248, 37.79529226126473 ], [ -122.41221606731415, 37.79530073924811 ], [ -122.41221070289612, 37.79529650025653 ], [ -122.41217315196992, 37.79530073924811 ], [ -122.41213023662569, 37.795304978239436 ], [ -122.41208195686342, 37.7950506383295 ], [ -122.41163671016695, 37.7951184623911 ], [ -122.4116098880768, 37.79499553123362 ], [ -122.41158306598668, 37.79499977024245 ], [ -122.41151332855229, 37.7946182584731 ], [ -122.41198003292088, 37.7945504339523 ], [ -122.41213560104374, 37.79452499974094 ], [ -122.41221606731419, 37.79491922903299 ], [ -122.41227507591249, 37.794910751005816 ], [ -122.41237163543705, 37.795262588315275 ], [ -122.41237163543705, 37.795262588315275 ], [ -122.41237163543701, 37.795262588315275 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40958750247955, 37.79468608293166 ], [ -122.40950167179108, 37.79469456098458 ], [ -122.40950167179108, 37.794516521668534 ], [ -122.40955531597137, 37.79450804359518 ], [ -122.40958750247955, 37.79468608293166 ], [ -122.40958750247955, 37.79468608293166 ], [ -122.40958750247955, 37.79468608293166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42296099662781, 37.794232505681 ], [ -122.42254257202148, 37.794283374296356 ], [ -122.4225103855133, 37.794122290227605 ], [ -122.42292881011963, 37.794071421501364 ], [ -122.42296099662781, 37.794232505681 ], [ -122.42296099662781, 37.794232505681 ], [ -122.42296099662781, 37.794232505681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41999983787537, 37.79424522283814 ], [ -122.41987645626068, 37.79426641809515 ], [ -122.41984963417053, 37.794257939993045 ], [ -122.41983890533447, 37.79424522283814 ], [ -122.41981208324434, 37.79408413868621 ], [ -122.41996228694917, 37.79406718243925 ], [ -122.41999983787538, 37.79424522283814 ], [ -122.41999983787538, 37.79424522283814 ], [ -122.41999983787537, 37.79424522283814 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41181373596191, 37.79424098378598 ], [ -122.41148114204407, 37.794283374296356 ], [ -122.41147041320801, 37.79424522283814 ], [ -122.41143822669983, 37.79424946189002 ], [ -122.41140067577362, 37.794071421501364 ], [ -122.41176545619965, 37.794024791804866 ], [ -122.41181373596191, 37.79424098378598 ], [ -122.41181373596191, 37.79424098378598 ], [ -122.41181373596191, 37.79424098378598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41907715797424, 37.794313047639136 ], [ -122.41881966590881, 37.79434272097 ], [ -122.41874992847443, 37.79399511834632 ], [ -122.41900205612184, 37.79396120580767 ], [ -122.41907715797426, 37.794313047639136 ], [ -122.41907715797426, 37.794313047639136 ], [ -122.41907715797424, 37.794313047639136 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4189966917038, 37.79395696673922 ], [ -122.41876602172852, 37.793982401146124 ], [ -122.41871237754822, 37.793770447487695 ], [ -122.41894841194153, 37.793740773926984 ], [ -122.41899669170378, 37.79395696673922 ], [ -122.41899669170378, 37.79395696673922 ], [ -122.4189966917038, 37.79395696673922 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41986572742462, 37.7938001210365 ], [ -122.41976916790009, 37.793808599191095 ], [ -122.41971552371977, 37.793554254129674 ], [ -122.41981208324432, 37.793545775945866 ], [ -122.41986572742462, 37.7938001210365 ], [ -122.41986572742462, 37.7938001210365 ], [ -122.41986572742462, 37.7938001210365 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41993546485901, 37.79375773024885 ], [ -122.41985499858858, 37.793766208408336 ], [ -122.41981208324434, 37.793545775945866 ], [ -122.41988718509675, 37.79353729776109 ], [ -122.41993546485901, 37.79375773024885 ], [ -122.41993546485901, 37.79375773024885 ], [ -122.41993546485901, 37.79375773024885 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42002129554749, 37.7937492520884 ], [ -122.41993546485901, 37.79375773024885 ], [ -122.41988718509674, 37.79353729776109 ], [ -122.41997301578522, 37.79352458048213 ], [ -122.42002129554749, 37.7937492520884 ], [ -122.42002129554749, 37.7937492520884 ], [ -122.42002129554749, 37.7937492520884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42013394832611, 37.793723817601254 ], [ -122.42012321949005, 37.79373653484592 ], [ -122.4200963973999, 37.793740773926984 ], [ -122.42008566856384, 37.793732295764606 ], [ -122.42007493972778, 37.793740773926984 ], [ -122.42002129554749, 37.7937492520884 ], [ -122.41997301578522, 37.79352458048213 ], [ -122.41999983787537, 37.79351186320097 ], [ -122.4200266599655, 37.79351610229493 ], [ -122.42004811763762, 37.79350762410675 ], [ -122.42008566856383, 37.79351610229493 ], [ -122.4201339483261, 37.793723817601254 ], [ -122.4201339483261, 37.793723817601254 ], [ -122.42013394832611, 37.793723817601254 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4202412366867, 37.79374501300782 ], [ -122.4202036857605, 37.7937492520884 ], [ -122.4202036857605, 37.79372805668306 ], [ -122.4201500415802, 37.793732295764606 ], [ -122.42013394832611, 37.793723817601254 ], [ -122.42008566856386, 37.79352034138864 ], [ -122.42010176181793, 37.79351610229493 ], [ -122.42011249065399, 37.7935033850123 ], [ -122.4201500415802, 37.79350762410675 ], [ -122.42016613483429, 37.793494906822666 ], [ -122.42019295692442, 37.7935033850123 ], [ -122.42021441459654, 37.79359664503403 ], [ -122.42018222808836, 37.79360088412314 ], [ -122.42018222808836, 37.79361360138898 ], [ -122.42020905017851, 37.79361360138898 ], [ -122.42024123668669, 37.79374501300782 ], [ -122.42024123668669, 37.79374501300782 ], [ -122.4202412366867, 37.79374501300782 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4204021692276, 37.793732295764606 ], [ -122.42024660110474, 37.79375349116876 ], [ -122.42022514343262, 37.793668709515686 ], [ -122.42025196552277, 37.79366023134501 ], [ -122.42023587226868, 37.79357968867522 ], [ -122.42020905017854, 37.79358392776529 ], [ -122.42019295692445, 37.79349914591762 ], [ -122.42034852504732, 37.7934779504405 ], [ -122.4203646183014, 37.7935584932212 ], [ -122.42033779621126, 37.79356273231249 ], [ -122.42035925388338, 37.79365599225931 ], [ -122.42038607597352, 37.793651753173364 ], [ -122.42039680480958, 37.793689904938056 ], [ -122.4204021692276, 37.793732295764606 ], [ -122.4204021692276, 37.793732295764606 ], [ -122.4204021692276, 37.793732295764606 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4205631017685, 37.793723817601254 ], [ -122.42040753364563, 37.79374501300782 ], [ -122.42039680480957, 37.793689904938056 ], [ -122.42041289806365, 37.79368566585406 ], [ -122.42038071155547, 37.79352881957535 ], [ -122.42035925388335, 37.79353305866835 ], [ -122.42034852504729, 37.79347371134435 ], [ -122.42049872875214, 37.79345251585992 ], [ -122.4205631017685, 37.793723817601226 ], [ -122.4205631017685, 37.793723817601226 ], [ -122.4205631017685, 37.793723817601254 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42123901844025, 37.79360936230061 ], [ -122.42101907730103, 37.79363903591409 ], [ -122.42097079753876, 37.793393168471205 ], [ -122.42119073867798, 37.793367733861466 ], [ -122.42123901844025, 37.79360936230061 ], [ -122.42123901844025, 37.79360936230061 ], [ -122.42123901844025, 37.79360936230061 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41855144500732, 37.7935500150379 ], [ -122.41840124130249, 37.79356697140353 ], [ -122.4183851480484, 37.7934991459176 ], [ -122.41835832595827, 37.7935033850123 ], [ -122.41837441921234, 37.79357121049434 ], [ -122.41826176643373, 37.79358392776529 ], [ -122.41823494434358, 37.793469472247935 ], [ -122.41821348667146, 37.79347371134435 ], [ -122.41823494434358, 37.79358816685511 ], [ -122.41807401180269, 37.79360936230061 ], [ -122.4180418252945, 37.793469472247935 ], [ -122.41812229156494, 37.793460994054406 ], [ -122.41812229156494, 37.79344827676231 ], [ -122.4180418252945, 37.79345675495729 ], [ -122.41802036762238, 37.793359255656256 ], [ -122.41810619831087, 37.79335077745011 ], [ -122.41810619831087, 37.79333806013901 ], [ -122.41801500320436, 37.79335077745011 ], [ -122.41799354553224, 37.7932236042408 ], [ -122.4180954694748, 37.79321088690781 ], [ -122.41810083389282, 37.7932278433513 ], [ -122.41817057132721, 37.79321936513004 ], [ -122.41817057132721, 37.79320664779634 ], [ -122.41826713085175, 37.793193930460454 ], [ -122.4182939529419, 37.79331262551028 ], [ -122.41820275783539, 37.79332534282574 ], [ -122.41820275783539, 37.79335077745011 ], [ -122.41829931735992, 37.79333806013901 ], [ -122.41831541061401, 37.79343132036943 ], [ -122.41836905479431, 37.79342708127058 ], [ -122.41832077503204, 37.79318545223532 ], [ -122.41847634315491, 37.7931642566682 ], [ -122.41855144500732, 37.7935500150379 ], [ -122.41855144500732, 37.7935500150379 ], [ -122.41855144500732, 37.7935500150379 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41042971611023, 37.79328295176571 ], [ -122.41004884243013, 37.793333821034835 ], [ -122.4099737405777, 37.79296501804014 ], [ -122.41035461425781, 37.79291414851708 ], [ -122.41042971611023, 37.79328295176571 ], [ -122.41042971611023, 37.79328295176571 ], [ -122.41042971611023, 37.79328295176571 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41097688674927, 37.79319816957266 ], [ -122.41043508052826, 37.79326599533489 ], [ -122.41036534309387, 37.79290990938859 ], [ -122.41055309772491, 37.792888713742435 ], [ -122.41060137748718, 37.79310914816524 ], [ -122.41095006465912, 37.79306251786141 ], [ -122.41097688674927, 37.79319816957266 ], [ -122.41097688674927, 37.79319816957266 ], [ -122.41097688674927, 37.79319816957266 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41998374462128, 37.79282088763388 ], [ -122.41963505744934, 37.79286327895901 ], [ -122.41959750652313, 37.79266403951932 ], [ -122.41994619369507, 37.792621648079844 ], [ -122.41998374462128, 37.79282088763388 ], [ -122.41998374462128, 37.79282088763388 ], [ -122.41998374462128, 37.79282088763388 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42254793643951, 37.79240969051771 ], [ -122.42218315601349, 37.792460560388086 ], [ -122.42215633392335, 37.79235882061232 ], [ -122.42252111434938, 37.792303711508595 ], [ -122.42254793643951, 37.79240969051771 ], [ -122.42254793643951, 37.79240969051771 ], [ -122.42254793643951, 37.79240969051771 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4135571718216, 37.792337624808056 ], [ -122.41298854351044, 37.7924139296749 ], [ -122.41296172142029, 37.792303711508595 ], [ -122.41353571414949, 37.792227406527935 ], [ -122.41355717182161, 37.792337624808056 ], [ -122.41355717182161, 37.792337624808056 ], [ -122.4135571718216, 37.792337624808056 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41290271282196, 37.792426647145035 ], [ -122.41276860237122, 37.79244360376852 ], [ -122.41273105144501, 37.7922782765238 ], [ -122.41275250911713, 37.7922782765238 ], [ -122.41274178028107, 37.79223588486298 ], [ -122.41282761096956, 37.79222316736003 ], [ -122.41283833980562, 37.792265559028095 ], [ -122.41286516189575, 37.792265559028095 ], [ -122.41290271282196, 37.792426647145035 ], [ -122.41290271282196, 37.792426647145035 ], [ -122.41290271282196, 37.792426647145035 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41371810436249, 37.79225284153023 ], [ -122.41366446018219, 37.792261319862405 ], [ -122.41368591785431, 37.79235034229134 ], [ -122.41357862949371, 37.79236305977244 ], [ -122.41351962089539, 37.79212566643111 ], [ -122.41362154483795, 37.79211294890917 ], [ -122.41364300251007, 37.792210449854856 ], [ -122.41370737552643, 37.792197732347496 ], [ -122.41371810436249, 37.79225284153023 ], [ -122.41371810436249, 37.79225284153023 ], [ -122.41371810436249, 37.79225284153023 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42094397544861, 37.79230795067187 ], [ -122.42060601711273, 37.79235034229134 ], [ -122.4205631017685, 37.79211718808339 ], [ -122.42089569568634, 37.79207479633018 ], [ -122.4209439754486, 37.79230795067187 ], [ -122.4209439754486, 37.79230795067187 ], [ -122.42094397544861, 37.79230795067187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4140989780426, 37.792168058155134 ], [ -122.41401851177216, 37.7921807756676 ], [ -122.41403996944427, 37.792265559028095 ], [ -122.41385221481323, 37.79229099401729 ], [ -122.41386294364929, 37.79232914648466 ], [ -122.41371273994446, 37.79235034229134 ], [ -122.4137020111084, 37.79229523318131 ], [ -122.41373956203459, 37.79229099401729 ], [ -122.4137020111084, 37.79212142725738 ], [ -122.41407752037048, 37.792070557153494 ], [ -122.4140989780426, 37.792168058155134 ], [ -122.4140989780426, 37.792168058155134 ], [ -122.4140989780426, 37.792168058155134 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41232335567474, 37.79207903550658 ], [ -122.41231262683868, 37.79209175303438 ], [ -122.41225898265839, 37.79209599220981 ], [ -122.4122428894043, 37.79208751385868 ], [ -122.4122428894043, 37.79207055715352 ], [ -122.41225898265839, 37.79205783962207 ], [ -122.41230189800262, 37.792049361266564 ], [ -122.41232335567474, 37.79205783962207 ], [ -122.41232335567474, 37.79207903550658 ], [ -122.41232335567474, 37.79207903550658 ], [ -122.41232335567474, 37.79207903550658 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4107301235199, 37.792460560388086 ], [ -122.41064965724945, 37.79246903869639 ], [ -122.41070866584778, 37.79274034404906 ], [ -122.40950167179108, 37.79289295287215 ], [ -122.40950167179108, 37.79268099608831 ], [ -122.40969479084015, 37.79265556123338 ], [ -122.40961968898773, 37.79228675485305 ], [ -122.40950167179106, 37.792299472345086 ], [ -122.40950167179106, 37.79212142725738 ], [ -122.41054236888884, 37.791990012750766 ], [ -122.41060137748717, 37.792282515688555 ], [ -122.41068720817564, 37.79226979819359 ], [ -122.41073012351988, 37.792460560388086 ], [ -122.41073012351988, 37.792460560388086 ], [ -122.4107301235199, 37.792460560388086 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4117386341095, 37.792146862296164 ], [ -122.4117386341095, 37.7921807756676 ], [ -122.41172254085541, 37.7922146890235 ], [ -122.41159915924074, 37.792227406527935 ], [ -122.41163671016693, 37.79237577725132 ], [ -122.41150259971619, 37.792392733886466 ], [ -122.41151332855225, 37.79246479954235 ], [ -122.41135239601135, 37.79248599531013 ], [ -122.41133630275726, 37.7924139296749 ], [ -122.41125583648683, 37.792422407988575 ], [ -122.41122364997864, 37.792282515688555 ], [ -122.4111270904541, 37.79229523318131 ], [ -122.41110026836397, 37.792282515688555 ], [ -122.41107881069185, 37.792261319862405 ], [ -122.41106808185577, 37.79223164569559 ], [ -122.41106808185577, 37.79220621068598 ], [ -122.41108417510986, 37.792185014837955 ], [ -122.41110563278198, 37.792168058155134 ], [ -122.41120755672455, 37.79215534064047 ], [ -122.41118609905243, 37.79207479633018 ], [ -122.41128265857697, 37.792066317976605 ], [ -122.41126656532289, 37.79200696947442 ], [ -122.41145431995393, 37.791985773569245 ], [ -122.41146504878999, 37.792045122088425 ], [ -122.41157233715059, 37.79203240455262 ], [ -122.41158843040466, 37.79210447055998 ], [ -122.41167962551117, 37.79209175303435 ], [ -122.41171181201935, 37.79211294890915 ], [ -122.4117386341095, 37.792146862296164 ], [ -122.4117386341095, 37.792146862296164 ], [ -122.4117386341095, 37.792146862296164 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4281644821167, 37.79176533579482 ], [ -122.42810010910034, 37.79176957498901 ], [ -122.42808938026428, 37.79165935586148 ], [ -122.42815911769867, 37.79165935586148 ], [ -122.42816448211669, 37.79176533579482 ], [ -122.42816448211669, 37.79176533579482 ], [ -122.4281644821167, 37.79176533579482 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42084205150604, 37.79183316287237 ], [ -122.42054700851439, 37.791871315576145 ], [ -122.4205094575882, 37.791672073461534 ], [ -122.42080450057983, 37.79163392065487 ], [ -122.42084205150604, 37.79183316287237 ], [ -122.42084205150604, 37.79183316287237 ], [ -122.42084205150604, 37.79183316287237 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41403996944427, 37.791782292570055 ], [ -122.41403996944427, 37.791807727725605 ], [ -122.41401851177216, 37.791837402062676 ], [ -122.41399705410004, 37.79185435882137 ], [ -122.41397023200989, 37.79186707638783 ], [ -122.41393804550171, 37.79187555476425 ], [ -122.41374492645265, 37.79190098988767 ], [ -122.41377174854279, 37.79201968701463 ], [ -122.41360008716583, 37.79203664373147 ], [ -122.41358399391174, 37.79195609929177 ], [ -122.4130153656006, 37.792028165373544 ], [ -122.41295635700227, 37.79178653176325 ], [ -122.41354107856752, 37.79171446544581 ], [ -122.41353034973146, 37.791642399058084 ], [ -122.41369128227235, 37.7916212030483 ], [ -122.41371273994447, 37.79173142223272 ], [ -122.41389513015748, 37.79171022624848 ], [ -122.41393804550172, 37.79171022624848 ], [ -122.41398096084596, 37.791718704642896 ], [ -122.41400778293611, 37.79173142223272 ], [ -122.41402924060823, 37.79175261821087 ], [ -122.41403996944429, 37.791782292570076 ], [ -122.41403996944429, 37.791782292570076 ], [ -122.41403996944427, 37.791782292570055 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41118609905243, 37.79168903025815 ], [ -122.41090714931488, 37.79172294383976 ], [ -122.4108749628067, 37.791553375776175 ], [ -122.41115391254425, 37.79151946211675 ], [ -122.41118609905243, 37.79168903025815 ], [ -122.41118609905243, 37.79168903025815 ], [ -122.41118609905243, 37.79168903025815 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41126120090485, 37.791680551860324 ], [ -122.41118609905243, 37.79168903025815 ], [ -122.41115391254425, 37.79151946211675 ], [ -122.41122901439667, 37.79150674449044 ], [ -122.41126120090485, 37.791680551860324 ], [ -122.41126120090485, 37.791680551860324 ], [ -122.41126120090485, 37.791680551860324 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42244064807892, 37.791748379015715 ], [ -122.42193102836609, 37.79181196691732 ], [ -122.42186665534973, 37.791485548441756 ], [ -122.42237627506256, 37.791421960259214 ], [ -122.42244064807892, 37.791748379015715 ], [ -122.42244064807892, 37.791748379015715 ], [ -122.42244064807892, 37.791748379015715 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42651224136353, 37.791591528624394 ], [ -122.42607772350311, 37.791646638259294 ], [ -122.42603480815887, 37.79139652497087 ], [ -122.4263995885849, 37.79135413280419 ], [ -122.42643713951111, 37.791553375776175 ], [ -122.42650151252747, 37.791544897362755 ], [ -122.42651224136353, 37.791591528624394 ], [ -122.42651224136353, 37.791591528624394 ], [ -122.42651224136353, 37.791591528624394 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42077231407166, 37.7914261994731 ], [ -122.42050409317017, 37.79146435238699 ], [ -122.42048263549805, 37.79137956810714 ], [ -122.42049872875214, 37.79137956810714 ], [ -122.42048263549805, 37.79129902295115 ], [ -122.42073476314545, 37.791269348397854 ], [ -122.42077231407166, 37.7914261994731 ], [ -122.42077231407166, 37.7914261994731 ], [ -122.42077231407166, 37.7914261994731 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41186738014221, 37.7916042462361 ], [ -122.41162598133087, 37.79163392065487 ], [ -122.4116098880768, 37.791553375776175 ], [ -122.41165816783905, 37.79154913656959 ], [ -122.41163671016693, 37.79144315632614 ], [ -122.41158843040466, 37.79145163475121 ], [ -122.41155624389648, 37.79129054450855 ], [ -122.41179764270784, 37.79126086995186 ], [ -122.41182982921602, 37.791421960259214 ], [ -122.41177618503572, 37.7914261994731 ], [ -122.41179764270784, 37.79153217974085 ], [ -122.41185128688814, 37.79152370132501 ], [ -122.41186738014221, 37.7916042462361 ], [ -122.41186738014221, 37.7916042462361 ], [ -122.41186738014221, 37.7916042462361 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41162598133087, 37.79163392065487 ], [ -122.41126120090485, 37.791680551860324 ], [ -122.41122901439667, 37.79150674449044 ], [ -122.4111807346344, 37.7912863052869 ], [ -122.41154551506042, 37.79123967383262 ], [ -122.41155624389648, 37.79129054450855 ], [ -122.41158843040466, 37.79145163475121 ], [ -122.4116098880768, 37.791553375776175 ], [ -122.41162598133087, 37.79163392065487 ], [ -122.41162598133087, 37.79163392065487 ], [ -122.41162598133087, 37.79163392065487 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41235017776489, 37.79154065815572 ], [ -122.4118673801422, 37.7916042462361 ], [ -122.41185128688812, 37.79152370132501 ], [ -122.411829829216, 37.791421960259214 ], [ -122.41179764270782, 37.79126086995186 ], [ -122.4117922782898, 37.7912269561582 ], [ -122.41227507591248, 37.79116760698179 ], [ -122.4123501777649, 37.79154065815572 ], [ -122.4123501777649, 37.79154065815572 ], [ -122.41235017776489, 37.79154065815572 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41739273071289, 37.79150250528121 ], [ -122.41730153560638, 37.79151522290824 ], [ -122.41729617118837, 37.79146859159843 ], [ -122.41728007793428, 37.791472830809646 ], [ -122.41728544235231, 37.791489787651976 ], [ -122.41703331470491, 37.79152370132501 ], [ -122.41702795028688, 37.791485548441756 ], [ -122.41700649261476, 37.791489787651976 ], [ -122.41701722145082, 37.79152370132501 ], [ -122.41692066192628, 37.7915364189484 ], [ -122.41690993309022, 37.791472830809646 ], [ -122.41694748401642, 37.79146859159843 ], [ -122.41690456867218, 37.791265109174965 ], [ -122.41686701774599, 37.791269348397826 ], [ -122.4168509244919, 37.79118880312169 ], [ -122.41705477237703, 37.79116336775309 ], [ -122.4170708656311, 37.79124391305694 ], [ -122.41700649261475, 37.791252391504884 ], [ -122.41700649261475, 37.791265109174965 ], [ -122.41703867912292, 37.79126086995184 ], [ -122.41707623004913, 37.791455873963365 ], [ -122.41711378097533, 37.79145163475121 ], [ -122.41710841655731, 37.79140500340129 ], [ -122.4172693490982, 37.79138380732341 ], [ -122.4172693490982, 37.791362611239464 ], [ -122.41736590862276, 37.79134989358616 ], [ -122.41739273071289, 37.79150250528119 ], [ -122.41739273071289, 37.79150250528119 ], [ -122.41739273071289, 37.79150250528121 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41064429283142, 37.791553375776175 ], [ -122.41057991981506, 37.79156185418857 ], [ -122.41041898727416, 37.79173566142882 ], [ -122.41042435169219, 37.791778053376625 ], [ -122.41009175777434, 37.79182468449112 ], [ -122.4100488424301, 37.79162968145292 ], [ -122.40995228290556, 37.791642399058055 ], [ -122.40986108779906, 37.791231195383254 ], [ -122.41056382656093, 37.79114217160591 ], [ -122.41064429283138, 37.791553375776175 ], [ -122.41064429283138, 37.791553375776175 ], [ -122.41064429283142, 37.791553375776175 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41736590862274, 37.79134989358618 ], [ -122.41726934909819, 37.791362611239464 ], [ -122.41725862026213, 37.791362611239464 ], [ -122.41725325584412, 37.79134989358618 ], [ -122.4171781539917, 37.791362611239464 ], [ -122.4171781539917, 37.791371089673774 ], [ -122.41709768772125, 37.79138380732341 ], [ -122.41709232330322, 37.791337175930686 ], [ -122.41710305213928, 37.791337175930686 ], [ -122.4170869588852, 37.79124391305697 ], [ -122.41707086563112, 37.79124391305697 ], [ -122.41705477237703, 37.79116336775309 ], [ -122.41731762886052, 37.79112945391467 ], [ -122.41736590862276, 37.79134989358618 ], [ -122.41736590862276, 37.79134989358618 ], [ -122.41736590862274, 37.79134989358618 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42073476314545, 37.79126510917499 ], [ -122.42048263549805, 37.79129902295112 ], [ -122.42045044898987, 37.79113793237575 ], [ -122.4207079410553, 37.79110825775774 ], [ -122.42073476314543, 37.79126510917499 ], [ -122.42073476314543, 37.79126510917499 ], [ -122.42073476314545, 37.79126510917499 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42130875587463, 37.79135413280419 ], [ -122.42100834846497, 37.79139228575531 ], [ -122.42096006870271, 37.79114217160591 ], [ -122.42126047611238, 37.791104018525644 ], [ -122.42130875587463, 37.79135413280419 ], [ -122.42130875587463, 37.79135413280419 ], [ -122.42130875587463, 37.79135413280419 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42231726646423, 37.791231195383254 ], [ -122.4218612909317, 37.79129478372996 ], [ -122.42182910442352, 37.79113369314532 ], [ -122.42228507995605, 37.791070104659966 ], [ -122.42231726646423, 37.791231195383254 ], [ -122.42231726646423, 37.791231195383254 ], [ -122.42231726646423, 37.791231195383254 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41788625717163, 37.79123967383262 ], [ -122.41783797740936, 37.79124815228106 ], [ -122.41783261299133, 37.791231195383254 ], [ -122.41775751113892, 37.79123967383262 ], [ -122.41776287555695, 37.79129054450855 ], [ -122.41759657859802, 37.79131174061318 ], [ -122.41755902767181, 37.791095540060674 ], [ -122.41785407066345, 37.79106162619113 ], [ -122.41787016391754, 37.79114641083583 ], [ -122.41784870624542, 37.79115065006551 ], [ -122.41785407066345, 37.79118032466647 ], [ -122.41787552833557, 37.79117608543849 ], [ -122.41788625717163, 37.79123967383262 ], [ -122.41788625717163, 37.79123967383262 ], [ -122.41788625717163, 37.79123967383262 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42152333259583, 37.79132869749249 ], [ -122.4213033914566, 37.79135413280419 ], [ -122.42126047611237, 37.79110825775774 ], [ -122.4212121963501, 37.79111249698962 ], [ -122.42119610309602, 37.791019233832294 ], [ -122.42145895957948, 37.79098955916663 ], [ -122.42152333259584, 37.79132869749249 ], [ -122.42152333259584, 37.79132869749249 ], [ -122.42152333259583, 37.79132869749249 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42070257663727, 37.79110825775774 ], [ -122.42037534713745, 37.79115065006551 ], [ -122.42033779621124, 37.79096412372947 ], [ -122.42066502571106, 37.790921731314675 ], [ -122.42070257663727, 37.79110825775774 ], [ -122.42070257663727, 37.79110825775774 ], [ -122.42070257663727, 37.79110825775774 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42228507995605, 37.791070104659966 ], [ -122.42182910442352, 37.79112945391467 ], [ -122.42179155349733, 37.79096412372947 ], [ -122.42224752902986, 37.79090053509816 ], [ -122.42228507995605, 37.791070104659966 ], [ -122.42228507995605, 37.791070104659966 ], [ -122.42228507995605, 37.791070104659966 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41350889205933, 37.79138380732341 ], [ -122.41255939006805, 37.79150674449044 ], [ -122.41244673728943, 37.79096412372947 ], [ -122.41302073001862, 37.79088781736534 ], [ -122.41305828094482, 37.79106162619113 ], [ -122.41342842578887, 37.79101499459507 ], [ -122.41345524787901, 37.79112521468376 ], [ -122.41350889205931, 37.79138380732341 ], [ -122.41350889205931, 37.79138380732341 ], [ -122.41350889205933, 37.79138380732341 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42310047149658, 37.79115065006551 ], [ -122.42277324199675, 37.79119304234894 ], [ -122.42271959781645, 37.790921731314675 ], [ -122.42304146289824, 37.79087933887559 ], [ -122.42310047149657, 37.79115065006551 ], [ -122.42310047149657, 37.79115065006551 ], [ -122.42310047149658, 37.79115065006551 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41398632526398, 37.79132021905332 ], [ -122.41376101970673, 37.79134989358618 ], [ -122.41370737552643, 37.79109130082786 ], [ -122.41345524787903, 37.79112521468376 ], [ -122.41342842578888, 37.79101499459507 ], [ -122.41340160369874, 37.79087086038484 ], [ -122.41387367248537, 37.79080727167329 ], [ -122.41398632526399, 37.79132021905332 ], [ -122.41398632526399, 37.79132021905332 ], [ -122.41398632526398, 37.79132021905332 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4172693490982, 37.79090477434197 ], [ -122.41713523864746, 37.79092597055724 ], [ -122.41711378097534, 37.79080303242391 ], [ -122.41724789142609, 37.790786075423945 ], [ -122.4172693490982, 37.79090477434197 ], [ -122.4172693490982, 37.79090477434197 ], [ -122.4172693490982, 37.79090477434197 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42065966129303, 37.790917492071834 ], [ -122.42043972015381, 37.79094716676645 ], [ -122.4204021692276, 37.79074792215982 ], [ -122.42057383060457, 37.79072248663944 ], [ -122.42062211036682, 37.7907182473852 ], [ -122.420654296875, 37.79087933887556 ], [ -122.42065966129303, 37.790917492071834 ], [ -122.42065966129303, 37.790917492071834 ], [ -122.42065966129303, 37.790917492071834 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42116928100586, 37.79094292752511 ], [ -122.42092788219452, 37.7909726022095 ], [ -122.42086350917816, 37.79066737631527 ], [ -122.42103517055511, 37.79064618002581 ], [ -122.42108345031738, 37.79088357812059 ], [ -122.42115318775177, 37.790875099630334 ], [ -122.42116928100585, 37.79094292752511 ], [ -122.42116928100585, 37.79094292752511 ], [ -122.42116928100586, 37.79094292752511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42123365402222, 37.7908666211391 ], [ -122.42108881473541, 37.79088357812059 ], [ -122.42103517055511, 37.79064618002581 ], [ -122.42119073867798, 37.79062922298984 ], [ -122.42123365402222, 37.7908666211391 ], [ -122.42123365402222, 37.7908666211391 ], [ -122.42123365402222, 37.7908666211391 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42172718048096, 37.790917492071834 ], [ -122.4215179681778, 37.79094292752511 ], [ -122.42145359516142, 37.79059530890626 ], [ -122.42166817188262, 37.790569873333375 ], [ -122.42172718048094, 37.790917492071834 ], [ -122.42172718048094, 37.790917492071834 ], [ -122.42172718048096, 37.790917492071834 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4222582578659, 37.79089629585415 ], [ -122.42192566394806, 37.79094292752511 ], [ -122.42183983325958, 37.7905529162799 ], [ -122.42217242717741, 37.79050628436279 ], [ -122.4222582578659, 37.79089629585415 ], [ -122.4222582578659, 37.79089629585415 ], [ -122.4222582578659, 37.79089629585415 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41121292114258, 37.7907012903658 ], [ -122.41073548793794, 37.790769118420094 ], [ -122.41071403026581, 37.79076063991673 ], [ -122.41066575050355, 37.790510523629194 ], [ -122.4109071493149, 37.79048084875924 ], [ -122.41114854812623, 37.790446934607566 ], [ -122.41121292114259, 37.7907012903658 ], [ -122.41121292114259, 37.7907012903658 ], [ -122.41121292114258, 37.7907012903658 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41825103759766, 37.79079031467432 ], [ -122.41780042648314, 37.790845424906784 ], [ -122.41772532463072, 37.79046813095418 ], [ -122.41817593574524, 37.7904130204403 ], [ -122.41825103759766, 37.79079031467432 ], [ -122.41825103759766, 37.79079031467432 ], [ -122.41825103759766, 37.79079031467432 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41133093833923, 37.79068857259868 ], [ -122.41121292114258, 37.7907012903658 ], [ -122.4111485481262, 37.790446934607566 ], [ -122.41114318370819, 37.790404541896045 ], [ -122.41126656532288, 37.79038758480464 ], [ -122.41133093833923, 37.79068857259868 ], [ -122.41133093833923, 37.79068857259868 ], [ -122.41133093833923, 37.79068857259868 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41196930408478, 37.79059954816758 ], [ -122.41187274456024, 37.79061226595001 ], [ -122.41182446479797, 37.79040030262357 ], [ -122.41192638874054, 37.79038758480466 ], [ -122.41196930408478, 37.79059954816758 ], [ -122.41196930408478, 37.79059954816758 ], [ -122.41196930408478, 37.79059954816758 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41144895553589, 37.790671615572435 ], [ -122.41133093833923, 37.79068857259868 ], [ -122.41126656532288, 37.79038758480464 ], [ -122.4113792181015, 37.790370627709365 ], [ -122.41144895553587, 37.790671615572435 ], [ -122.41144895553587, 37.790671615572435 ], [ -122.41144895553589, 37.790671615572435 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41215705871582, 37.790569873333375 ], [ -122.41196930408478, 37.79059954816758 ], [ -122.41192638874054, 37.79038758480466 ], [ -122.41210877895355, 37.79035790988532 ], [ -122.4121570587158, 37.790569873333375 ], [ -122.4121570587158, 37.790569873333375 ], [ -122.41215705871582, 37.790569873333375 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41090714931488, 37.79048084875924 ], [ -122.41066575050354, 37.790510523629194 ], [ -122.41063892841339, 37.79038334553119 ], [ -122.41088032722473, 37.79035367061017 ], [ -122.41090714931488, 37.79048084875924 ], [ -122.41090714931488, 37.79048084875924 ], [ -122.41090714931488, 37.79048084875924 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41156160831451, 37.79065465854232 ], [ -122.41144895553589, 37.790671615572435 ], [ -122.4113792181015, 37.790370627709365 ], [ -122.41137385368349, 37.790353670610145 ], [ -122.41149187088014, 37.790340952783204 ], [ -122.41156160831453, 37.79065465854232 ], [ -122.41156160831453, 37.79065465854232 ], [ -122.41156160831451, 37.79065465854232 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41114854812622, 37.790446934607566 ], [ -122.41090714931488, 37.79048084875924 ], [ -122.41088032722473, 37.79035367061017 ], [ -122.41091787815094, 37.79034943133476 ], [ -122.41112172603607, 37.79032399567722 ], [ -122.41114318370819, 37.790404541896045 ], [ -122.4111485481262, 37.790446934607566 ], [ -122.4111485481262, 37.790446934607566 ], [ -122.41114854812622, 37.790446934607566 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41187274456024, 37.79061226595001 ], [ -122.4117761850357, 37.79062498373026 ], [ -122.41170644760132, 37.79032399567722 ], [ -122.41180837154388, 37.79031127784516 ], [ -122.41182446479796, 37.79040030262357 ], [ -122.41187274456023, 37.79061226595001 ], [ -122.41187274456023, 37.79061226595001 ], [ -122.41187274456024, 37.79061226595001 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4209600687027, 37.79043421679666 ], [ -122.42079377174377, 37.79045117387736 ], [ -122.42076694965363, 37.79031127784516 ], [ -122.42083668708801, 37.79030279928923 ], [ -122.42094397544861, 37.790370627709365 ], [ -122.4209600687027, 37.79043421679666 ], [ -122.4209600687027, 37.79043421679666 ], [ -122.4209600687027, 37.79043421679666 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4117761850357, 37.79062498373026 ], [ -122.41167962551116, 37.790637701508324 ], [ -122.41160988807678, 37.790315517122735 ], [ -122.41170108318327, 37.79030279928923 ], [ -122.4117064476013, 37.79032399567719 ], [ -122.41177618503569, 37.79062498373026 ], [ -122.41177618503569, 37.79062498373026 ], [ -122.4117761850357, 37.79062498373026 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41167962551117, 37.790637701508324 ], [ -122.41156160831451, 37.79065465854232 ], [ -122.41149187088013, 37.790340952783204 ], [ -122.41151869297028, 37.79033671350706 ], [ -122.41151332855225, 37.79030279928923 ], [ -122.41159915924074, 37.79029008145351 ], [ -122.4116098880768, 37.790315517122735 ], [ -122.41167962551117, 37.790637701508324 ], [ -122.41167962551117, 37.790637701508324 ], [ -122.41167962551117, 37.790637701508324 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41091787815094, 37.79034943133474 ], [ -122.41088032722473, 37.790353670610145 ], [ -122.41063892841339, 37.79038334553119 ], [ -122.41062283515932, 37.790298560010896 ], [ -122.41090178489686, 37.790264645775565 ], [ -122.41091787815094, 37.79034943133474 ], [ -122.41091787815094, 37.79034943133474 ], [ -122.41091787815094, 37.79034943133474 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41211414337158, 37.79033247423071 ], [ -122.41186738014221, 37.79036638843492 ], [ -122.41185665130615, 37.790298560010896 ], [ -122.41181910037996, 37.79030279928923 ], [ -122.41180300712587, 37.79022649224218 ], [ -122.41208195686342, 37.7901883386891 ], [ -122.4121141433716, 37.79033247423071 ], [ -122.4121141433716, 37.79033247423071 ], [ -122.41211414337158, 37.79033247423071 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42111563682556, 37.7904087811683 ], [ -122.42077231407166, 37.79018409940419 ], [ -122.42105662822723, 37.79014594582926 ], [ -122.42111563682556, 37.7904087811683 ], [ -122.42111563682556, 37.7904087811683 ], [ -122.42111563682556, 37.7904087811683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42128729820251, 37.79040030262357 ], [ -122.42111563682556, 37.79042573825485 ], [ -122.4210512638092, 37.79012898867849 ], [ -122.42122292518616, 37.79010779223458 ], [ -122.42128729820251, 37.79040030262357 ], [ -122.42128729820251, 37.79040030262357 ], [ -122.42128729820251, 37.79040030262357 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42154479026794, 37.79037910625748 ], [ -122.42128729820251, 37.7904130204403 ], [ -122.42122292518616, 37.79010779223458 ], [ -122.42148578166962, 37.790078117202874 ], [ -122.42154479026794, 37.79037910625748 ], [ -122.42154479026794, 37.79037910625748 ], [ -122.42154479026794, 37.79037910625748 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42104053497314, 37.79014594582926 ], [ -122.42077231407166, 37.79018409940419 ], [ -122.42075085639954, 37.790082356493855 ], [ -122.42101907730103, 37.79005268145195 ], [ -122.42104053497314, 37.79014594582926 ], [ -122.42104053497314, 37.79014594582926 ], [ -122.42104053497314, 37.79014594582926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42214024066925, 37.79029432073236 ], [ -122.42154479026794, 37.790374866983555 ], [ -122.42147505283356, 37.79003572427978 ], [ -122.42157161235811, 37.79002300639811 ], [ -122.42159843444824, 37.79016290297611 ], [ -122.42210805416107, 37.79009931365531 ], [ -122.42214024066925, 37.79029432073233 ], [ -122.42214024066925, 37.79029432073233 ], [ -122.42214024066925, 37.79029432073236 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41086959838867, 37.79022225295947 ], [ -122.41062283515932, 37.790251927933284 ], [ -122.41057991981508, 37.79001452780913 ], [ -122.41081595420837, 37.78998485273997 ], [ -122.41086959838867, 37.79022225295947 ], [ -122.41086959838867, 37.79022225295947 ], [ -122.41086959838867, 37.79022225295947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41094470024109, 37.79021377439333 ], [ -122.41086959838867, 37.79022225295947 ], [ -122.41081595420836, 37.78998485273997 ], [ -122.41089105606079, 37.78997213484955 ], [ -122.41091787815093, 37.790078117202874 ], [ -122.41093933582304, 37.7901883386891 ], [ -122.41094470024107, 37.79021377439333 ], [ -122.41094470024107, 37.79021377439333 ], [ -122.41094470024109, 37.79021377439333 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41111099720001, 37.79028160289519 ], [ -122.41096615791321, 37.790298560010896 ], [ -122.41094470024109, 37.79021377439336 ], [ -122.41093933582306, 37.7901883386891 ], [ -122.41098761558533, 37.79017986011907 ], [ -122.41096615791321, 37.79007387791167 ], [ -122.41091787815094, 37.790078117202874 ], [ -122.41089105606079, 37.78997213484955 ], [ -122.41104662418365, 37.78995093836062 ], [ -122.41110563278198, 37.790264645775565 ], [ -122.41111099720001, 37.79028160289519 ], [ -122.41111099720001, 37.79028160289519 ], [ -122.41111099720001, 37.79028160289519 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41121828556061, 37.790251927933284 ], [ -122.41110563278198, 37.790264645775565 ], [ -122.41104662418365, 37.78995093836062 ], [ -122.41115391254426, 37.78993822046437 ], [ -122.41121828556062, 37.790251927933284 ], [ -122.41121828556062, 37.790251927933284 ], [ -122.41121828556061, 37.790251927933284 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41135239601135, 37.790234970806864 ], [ -122.41121828556061, 37.790251927933284 ], [ -122.41115391254425, 37.78993822046437 ], [ -122.411288022995, 37.78992550256591 ], [ -122.41131484508513, 37.79004420286635 ], [ -122.41129338741301, 37.79004420286635 ], [ -122.4113094806671, 37.790120510101644 ], [ -122.41133093833922, 37.790120510101644 ], [ -122.41135239601134, 37.790234970806836 ], [ -122.41135239601134, 37.790234970806836 ], [ -122.41135239601135, 37.790234970806864 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41142213344574, 37.790027245692244 ], [ -122.41131484508513, 37.79004420286635 ], [ -122.411288022995, 37.78992550256591 ], [ -122.41139531135559, 37.789908545364554 ], [ -122.41142213344574, 37.790027245692244 ], [ -122.41142213344574, 37.790027245692244 ], [ -122.41142213344574, 37.790027245692244 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41158306598663, 37.79023073152464 ], [ -122.41147041320801, 37.79024344937056 ], [ -122.41142213344574, 37.790027245692244 ], [ -122.4113953113556, 37.789908545364554 ], [ -122.41150796413423, 37.789895827461 ], [ -122.41151332855225, 37.78991278466528 ], [ -122.41152942180634, 37.7899975706282 ], [ -122.41158306598663, 37.79023073152464 ], [ -122.41158306598663, 37.79023073152464 ], [ -122.41158306598663, 37.79023073152464 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41170108318329, 37.78997637414658 ], [ -122.41152942180634, 37.7899975706282 ], [ -122.41151332855225, 37.78991278466528 ], [ -122.41168498992921, 37.789891588159335 ], [ -122.41170108318329, 37.78997637414658 ], [ -122.41170108318329, 37.78997637414658 ], [ -122.41170108318329, 37.78997637414658 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41189420223236, 37.790090835075056 ], [ -122.41173326969147, 37.790112031523854 ], [ -122.41171181201935, 37.790018767103746 ], [ -122.41173326969147, 37.79001452780913 ], [ -122.41172254085541, 37.78997213484955 ], [ -122.41170108318327, 37.78997637414658 ], [ -122.4116849899292, 37.789891588159335 ], [ -122.41167962551117, 37.78986615234419 ], [ -122.41184055805208, 37.789844955824854 ], [ -122.41189420223238, 37.790090835075056 ], [ -122.41189420223238, 37.790090835075056 ], [ -122.41189420223236, 37.790090835075056 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41206586360931, 37.790090835075056 ], [ -122.41190493106842, 37.790116270812874 ], [ -122.41189420223236, 37.790090835075056 ], [ -122.41184055805206, 37.789844955824854 ], [ -122.41200149059296, 37.78981951999368 ], [ -122.41206586360931, 37.790090835075056 ], [ -122.41206586360931, 37.790090835075056 ], [ -122.41206586360931, 37.790090835075056 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42102980613708, 37.79004844215926 ], [ -122.42074012756348, 37.79008659578458 ], [ -122.42069184780121, 37.789823759299495 ], [ -122.42098152637482, 37.789785605538455 ], [ -122.42102980613708, 37.79004844215926 ], [ -122.42102980613708, 37.79004844215926 ], [ -122.42102980613708, 37.79004844215926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42098152637482, 37.789785605538455 ], [ -122.42069184780121, 37.789823759299495 ], [ -122.42066502571106, 37.78971777658132 ], [ -122.42096006870271, 37.789679622765576 ], [ -122.42098152637483, 37.789785605538455 ], [ -122.42098152637483, 37.789785605538455 ], [ -122.42098152637482, 37.789785605538455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41371810436249, 37.78999333133236 ], [ -122.41341233253479, 37.79003148498613 ], [ -122.41338551044464, 37.789878870252856 ], [ -122.41353571414949, 37.789861913040816 ], [ -122.41352498531343, 37.78981104138134 ], [ -122.41338014602663, 37.789827998605055 ], [ -122.41335332393648, 37.789696580019445 ], [ -122.41364836692811, 37.78965842619276 ], [ -122.4137181043625, 37.78999333133236 ], [ -122.4137181043625, 37.78999333133236 ], [ -122.41371810436249, 37.78999333133236 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42137312889099, 37.79000604921915 ], [ -122.4210351705551, 37.79004844215926 ], [ -122.42096006870268, 37.789679622765576 ], [ -122.42129802703856, 37.78963722961387 ], [ -122.42137312889099, 37.79000604921915 ], [ -122.42137312889099, 37.79000604921915 ], [ -122.42137312889099, 37.79000604921915 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42156624794006, 37.78998061344342 ], [ -122.421373128891, 37.79000604921915 ], [ -122.42129802703857, 37.78963722961387 ], [ -122.42149114608765, 37.78961179371117 ], [ -122.42156624794006, 37.78998061344342 ], [ -122.42156624794006, 37.78998061344342 ], [ -122.42156624794006, 37.78998061344342 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41076231002808, 37.789802562768 ], [ -122.41054773330688, 37.78983223791036 ], [ -122.41049945354463, 37.789616033028864 ], [ -122.41071939468385, 37.789586357799685 ], [ -122.41076231002809, 37.789802562768 ], [ -122.41076231002809, 37.789802562768 ], [ -122.41076231002808, 37.789802562768 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41084814071655, 37.789794084153726 ], [ -122.41076231002808, 37.78980256276803 ], [ -122.41071939468384, 37.789586357799685 ], [ -122.41079986095428, 37.78957363984067 ], [ -122.41082668304442, 37.789696580019445 ], [ -122.41084814071655, 37.789794084153726 ], [ -122.41084814071655, 37.789794084153726 ], [ -122.41084814071655, 37.789794084153726 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42210268974304, 37.79010355294507 ], [ -122.42159843444823, 37.79016290297611 ], [ -122.42149114608763, 37.78961179371117 ], [ -122.42200076580046, 37.78955244323747 ], [ -122.42210268974303, 37.79010355294507 ], [ -122.42210268974303, 37.79010355294507 ], [ -122.42210268974304, 37.79010355294507 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41118609905243, 37.789751691067664 ], [ -122.4110198020935, 37.789772887613736 ], [ -122.41096615791321, 37.789522767982724 ], [ -122.41113781929016, 37.78950157136492 ], [ -122.41118609905243, 37.789751691067664 ], [ -122.41118609905243, 37.789751691067664 ], [ -122.41118609905243, 37.789751691067664 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41142213344574, 37.78972625520438 ], [ -122.4113416671753, 37.789734733826435 ], [ -122.41129338741302, 37.78951005001279 ], [ -122.41137385368347, 37.78950157136492 ], [ -122.41142213344574, 37.78972625520438 ], [ -122.41142213344574, 37.78972625520438 ], [ -122.41142213344574, 37.78972625520438 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41076231002808, 37.789556682558576 ], [ -122.41048872470856, 37.78959059711889 ], [ -122.4104779958725, 37.78952700730556 ], [ -122.41075158119202, 37.78949309271609 ], [ -122.41076231002808, 37.789556682558576 ], [ -122.41076231002808, 37.789556682558576 ], [ -122.41076231002808, 37.789556682558576 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42271959781647, 37.78971777658132 ], [ -122.42255866527557, 37.78973897313711 ], [ -122.4225103855133, 37.78951428933633 ], [ -122.4226713180542, 37.78948885339132 ], [ -122.42271959781647, 37.78971777658132 ], [ -122.42271959781647, 37.78971777658132 ], [ -122.42271959781647, 37.78971777658132 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4113416671753, 37.789734733826435 ], [ -122.41118609905243, 37.789751691067664 ], [ -122.41113781929016, 37.78950157136492 ], [ -122.4111270904541, 37.789467656763776 ], [ -122.41128265857697, 37.789446460130144 ], [ -122.41129338741302, 37.78951005001279 ], [ -122.4113416671753, 37.789734733826435 ], [ -122.4113416671753, 37.789734733826435 ], [ -122.4113416671753, 37.789734733826435 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41165816783905, 37.78966266550779 ], [ -122.41164207458498, 37.78966690482261 ], [ -122.41165280342103, 37.78970081933231 ], [ -122.41150796413423, 37.78971777658132 ], [ -122.41145431995393, 37.789463417437524 ], [ -122.41161525249483, 37.789442220802705 ], [ -122.41162061691286, 37.789484614066296 ], [ -122.41165816783905, 37.78966266550779 ], [ -122.41165816783905, 37.78966266550779 ], [ -122.41165816783905, 37.78966266550779 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41198003292084, 37.789654186877456 ], [ -122.41165280342102, 37.78970081933231 ], [ -122.41164207458496, 37.78966690482261 ], [ -122.41165816783904, 37.78966266550779 ], [ -122.41162061691284, 37.789484614066296 ], [ -122.4119371175766, 37.789442220802705 ], [ -122.41198003292084, 37.789654186877456 ], [ -122.41198003292084, 37.789654186877456 ], [ -122.41198003292084, 37.789654186877456 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4110198020935, 37.789772887613736 ], [ -122.41084814071655, 37.789794084153726 ], [ -122.41082668304442, 37.789696580019445 ], [ -122.41084814071655, 37.78969234070635 ], [ -122.41081058979034, 37.78951005001279 ], [ -122.4107837677002, 37.78951428933633 ], [ -122.41077840328218, 37.78948885339132 ], [ -122.41077303886415, 37.789446460130144 ], [ -122.4109447002411, 37.789425263490436 ], [ -122.41096615791322, 37.789522767982724 ], [ -122.41101980209355, 37.789772887613736 ], [ -122.41101980209355, 37.789772887613736 ], [ -122.4110198020935, 37.789772887613736 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41240382194519, 37.78961179371117 ], [ -122.41215705871582, 37.789641468930114 ], [ -122.41211950778961, 37.78945069945736 ], [ -122.41236090660097, 37.78941678483285 ], [ -122.4124038219452, 37.78961179371117 ], [ -122.4124038219452, 37.78961179371117 ], [ -122.41240382194519, 37.78961179371117 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41077840328217, 37.78948885339132 ], [ -122.41075158119202, 37.78949309271609 ], [ -122.4104779958725, 37.78952700730556 ], [ -122.41046726703644, 37.78945069945736 ], [ -122.41048336029051, 37.789446460130144 ], [ -122.41054773330688, 37.789437981475004 ], [ -122.41064429283142, 37.789425263490465 ], [ -122.41076231002808, 37.78940830617431 ], [ -122.41077303886414, 37.789446460130144 ], [ -122.41077840328217, 37.78948885339132 ], [ -122.41077840328217, 37.78948885339132 ], [ -122.41077840328217, 37.78948885339132 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4126398563385, 37.7895778791606 ], [ -122.41255939006805, 37.78959059711889 ], [ -122.41252183914185, 37.78941678483285 ], [ -122.41260230541229, 37.78940406684465 ], [ -122.4126398563385, 37.7895778791606 ], [ -122.4126398563385, 37.7895778791606 ], [ -122.4126398563385, 37.7895778791606 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41247355937958, 37.78959907575652 ], [ -122.41240382194519, 37.78961179371117 ], [ -122.41236090660095, 37.789404066844675 ], [ -122.41243064403534, 37.78939558818465 ], [ -122.41247355937958, 37.78959907575652 ], [ -122.41247355937958, 37.78959907575652 ], [ -122.41247355937958, 37.78959907575652 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41255939006805, 37.78959059711889 ], [ -122.41247355937958, 37.78959907575652 ], [ -122.41243064403534, 37.78939558818465 ], [ -122.41251647472382, 37.78938710952366 ], [ -122.41255939006805, 37.78959059711889 ], [ -122.41255939006805, 37.78959059711889 ], [ -122.41255939006805, 37.78959059711889 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41150796413422, 37.78971777658132 ], [ -122.41142213344574, 37.78972625520438 ], [ -122.41137385368347, 37.78950157136492 ], [ -122.41134703159332, 37.7893786308617 ], [ -122.41143286228181, 37.78936591286693 ], [ -122.41145431995393, 37.789463417437524 ], [ -122.41150796413423, 37.78971777658132 ], [ -122.41150796413423, 37.78971777658132 ], [ -122.41150796413422, 37.78971777658132 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4129992723465, 37.789531246628144 ], [ -122.41281151771545, 37.789556682558576 ], [ -122.41277933120728, 37.78938710952366 ], [ -122.41296172142029, 37.78936591286693 ], [ -122.41299927234648, 37.789531246628144 ], [ -122.41299927234648, 37.789531246628144 ], [ -122.4129992723465, 37.789531246628144 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41061210632324, 37.78941254550371 ], [ -122.41054236888885, 37.789421024161776 ], [ -122.41054773330688, 37.789437981475004 ], [ -122.41048336029051, 37.789446460130144 ], [ -122.41046726703644, 37.78945069945736 ], [ -122.41044580936432, 37.78936167353485 ], [ -122.41059601306915, 37.78934047687082 ], [ -122.41061210632324, 37.78941254550371 ], [ -122.41061210632324, 37.78941254550371 ], [ -122.41061210632324, 37.78941254550371 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4195921421051, 37.78963299029734 ], [ -122.41893768310548, 37.78971353726942 ], [ -122.41887867450716, 37.789399827514764 ], [ -122.41901814937593, 37.7893828701928 ], [ -122.41905570030214, 37.78957363984067 ], [ -122.41941511631012, 37.789531246628144 ], [ -122.41937756538393, 37.78932775886948 ], [ -122.41952776908876, 37.78931080153099 ], [ -122.41959214210512, 37.78963299029734 ], [ -122.41959214210512, 37.78963299029734 ], [ -122.4195921421051, 37.78963299029734 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.412548661232, 37.7893786308617 ], [ -122.41211414337158, 37.789433742147054 ], [ -122.41209805011749, 37.78935319486999 ], [ -122.4125325679779, 37.789298083524535 ], [ -122.412548661232, 37.7893786308617 ], [ -122.412548661232, 37.7893786308617 ], [ -122.412548661232, 37.7893786308617 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4119371175766, 37.789425263490436 ], [ -122.41174936294556, 37.789446460130144 ], [ -122.41171717643738, 37.789298083524535 ], [ -122.41188883781433, 37.78927688684228 ], [ -122.41190493106842, 37.78935319486999 ], [ -122.41192102432251, 37.78934895553716 ], [ -122.41193711757658, 37.789425263490436 ], [ -122.41193711757658, 37.789425263490436 ], [ -122.4119371175766, 37.789425263490436 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41318702697754, 37.78950581068898 ], [ -122.4129992723465, 37.789531246628165 ], [ -122.4129456281662, 37.78928536551592 ], [ -122.41313338279724, 37.789259929492104 ], [ -122.41318702697754, 37.78950581068898 ], [ -122.41318702697754, 37.78950581068898 ], [ -122.41318702697754, 37.78950581068898 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42153406143188, 37.78941254550371 ], [ -122.42136240005493, 37.789433742147054 ], [ -122.42133021354675, 37.78927264750509 ], [ -122.4215018749237, 37.78925145081554 ], [ -122.42153406143188, 37.78941254550371 ], [ -122.42153406143188, 37.78941254550371 ], [ -122.42153406143188, 37.78941254550371 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.43181228637695, 37.789535485950495 ], [ -122.43175864219666, 37.78929384418857 ], [ -122.43181228637695, 37.78928960485237 ], [ -122.43181228637695, 37.789535485950495 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41410434246063, 37.78940406684465 ], [ -122.41383612155914, 37.789437981475004 ], [ -122.41379857063295, 37.78924297213801 ], [ -122.413991689682, 37.78921753609959 ], [ -122.413991689682, 37.78922601478002 ], [ -122.41406679153444, 37.789213296758994 ], [ -122.4140775203705, 37.78928112617922 ], [ -122.41406142711641, 37.78928536551592 ], [ -122.41406679153444, 37.789315040865986 ], [ -122.41408824920656, 37.78931080153099 ], [ -122.41410434246063, 37.78940406684465 ], [ -122.41410434246063, 37.78940406684465 ], [ -122.41410434246063, 37.78940406684465 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41188883781433, 37.78927688684228 ], [ -122.41171717643738, 37.789298083524535 ], [ -122.41164743900299, 37.789306562195755 ], [ -122.41163134574892, 37.78924297213801 ], [ -122.41187810897827, 37.78920905741816 ], [ -122.41188883781433, 37.78927688684228 ], [ -122.41188883781433, 37.78927688684228 ], [ -122.41188883781433, 37.78927688684228 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4125325679779, 37.789298083524535 ], [ -122.41209805011749, 37.78935319486999 ], [ -122.41207659244537, 37.78925145081554 ], [ -122.41251111030579, 37.78919210005242 ], [ -122.4125325679779, 37.789298083524535 ], [ -122.4125325679779, 37.789298083524535 ], [ -122.4125325679779, 37.789298083524535 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41281151771545, 37.789556682558576 ], [ -122.4126398563385, 37.7895778791606 ], [ -122.41256475448607, 37.78920057873577 ], [ -122.41273641586304, 37.78917938202556 ], [ -122.41281151771545, 37.789556682558576 ], [ -122.41281151771545, 37.789556682558576 ], [ -122.41281151771545, 37.789556682558576 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4135947227478, 37.78945069945736 ], [ -122.41343379020691, 37.789471896089765 ], [ -122.41336941719055, 37.78919210005242 ], [ -122.41353571414948, 37.78917090333976 ], [ -122.41359472274779, 37.78945069945736 ], [ -122.41359472274779, 37.78945069945736 ], [ -122.4135947227478, 37.78945069945736 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4142062664032, 37.78939134885428 ], [ -122.41410434246063, 37.78940406684465 ], [ -122.4140614271164, 37.78918362136809 ], [ -122.41416871547699, 37.78917090333976 ], [ -122.4142062664032, 37.78939134885428 ], [ -122.4142062664032, 37.78939134885428 ], [ -122.4142062664032, 37.78939134885428 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41089642047882, 37.78926840816768 ], [ -122.41076231002808, 37.78928536551592 ], [ -122.41074085235596, 37.78917090333976 ], [ -122.4108749628067, 37.78915394596523 ], [ -122.41089642047882, 37.78926840816768 ], [ -122.41089642047882, 37.78926840816768 ], [ -122.41089642047882, 37.78926840816768 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41187810897827, 37.78920905741816 ], [ -122.41163134574892, 37.78924297213801 ], [ -122.41161525249483, 37.78917938202556 ], [ -122.4118620157242, 37.789149706621 ], [ -122.41187810897827, 37.78920905741816 ], [ -122.41187810897827, 37.78920905741816 ], [ -122.41187810897827, 37.78920905741816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41092324256897, 37.78939134885428 ], [ -122.41076231002806, 37.78940830617431 ], [ -122.4106442928314, 37.789425263490436 ], [ -122.41059601306914, 37.78915818530923 ], [ -122.41073548793793, 37.78914122793181 ], [ -122.41074085235594, 37.78917090333976 ], [ -122.41076231002806, 37.78928536551592 ], [ -122.4108964204788, 37.78926840816768 ], [ -122.41092324256896, 37.78939134885428 ], [ -122.41092324256896, 37.78939134885428 ], [ -122.41092324256897, 37.78939134885428 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41450667381287, 37.78935319486999 ], [ -122.41439938545227, 37.78936591286693 ], [ -122.41435110569, 37.78913274924163 ], [ -122.41446375846863, 37.78911579185838 ], [ -122.41450667381287, 37.78935319486999 ], [ -122.41450667381287, 37.78935319486999 ], [ -122.41450667381287, 37.78935319486999 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41342842578888, 37.789476135415526 ], [ -122.41318702697754, 37.78950581068898 ], [ -122.41317093372346, 37.789421024161776 ], [ -122.41319239139558, 37.78941678483285 ], [ -122.41314947605133, 37.789213296758994 ], [ -122.41312801837921, 37.78921753609959 ], [ -122.41311192512514, 37.78914122793181 ], [ -122.41331577301025, 37.78911579185838 ], [ -122.41333186626434, 37.78919633939423 ], [ -122.41336941719055, 37.78919210005242 ], [ -122.41342842578887, 37.789476135415526 ], [ -122.41342842578887, 37.789476135415526 ], [ -122.41342842578888, 37.789476135415526 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4140453338623, 37.78919210005242 ], [ -122.41379857063293, 37.78922601478005 ], [ -122.41378247737885, 37.789145467276526 ], [ -122.41402387619019, 37.78911579185838 ], [ -122.41404533386232, 37.78919210005242 ], [ -122.41404533386232, 37.78919210005242 ], [ -122.4140453338623, 37.78919210005242 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42136240005493, 37.789433742147054 ], [ -122.42119610309601, 37.78945069945736 ], [ -122.42113173007965, 37.78912850989617 ], [ -122.42129266262054, 37.789107313165275 ], [ -122.42136240005493, 37.789433742147054 ], [ -122.42136240005493, 37.789433742147054 ], [ -122.42136240005493, 37.789433742147054 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41439938545227, 37.78936591286693 ], [ -122.4142062664032, 37.78939134885428 ], [ -122.41416335105896, 37.78912427055049 ], [ -122.41434037685394, 37.789094595123814 ], [ -122.41439938545227, 37.78936591286693 ], [ -122.41439938545227, 37.78936591286693 ], [ -122.41439938545227, 37.78936591286693 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41491973400116, 37.789298083524535 ], [ -122.41481244564055, 37.78931080153099 ], [ -122.41476953029631, 37.78910307381837 ], [ -122.41482853889464, 37.789094595123814 ], [ -122.41488218307494, 37.789213296758994 ], [ -122.41490364074706, 37.789213296758994 ], [ -122.41491973400115, 37.789298083524535 ], [ -122.41491973400115, 37.789298083524535 ], [ -122.41491973400116, 37.789298083524535 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41464078426361, 37.78933623753729 ], [ -122.41450667381287, 37.78935319486999 ], [ -122.41449058055878, 37.789259929492104 ], [ -122.4144583940506, 37.78910307381837 ], [ -122.41459250450134, 37.78909035577617 ], [ -122.41462469100952, 37.78926416883001 ], [ -122.41464078426361, 37.78933623753729 ], [ -122.41464078426361, 37.78933623753729 ], [ -122.41464078426361, 37.78933623753729 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4135410785675, 37.78917090333976 ], [ -122.41335332393646, 37.78919633939423 ], [ -122.41333186626434, 37.789098834471204 ], [ -122.41351962089539, 37.78907339838317 ], [ -122.4135410785675, 37.78917090333976 ], [ -122.4135410785675, 37.78917090333976 ], [ -122.4135410785675, 37.78917090333976 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42161452770233, 37.78940406684465 ], [ -122.42153406143188, 37.78941254550371 ], [ -122.4214643239975, 37.78908187708016 ], [ -122.42154479026794, 37.78907339838317 ], [ -122.42161452770233, 37.78940406684465 ], [ -122.42161452770233, 37.78940406684465 ], [ -122.42161452770233, 37.78940406684465 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41481244564056, 37.789315040865986 ], [ -122.41464078426361, 37.78933623753729 ], [ -122.41459250450134, 37.78909035577617 ], [ -122.41475880146027, 37.78906915903432 ], [ -122.41481244564056, 37.789315040865986 ], [ -122.41481244564056, 37.789315040865986 ], [ -122.41481244564056, 37.789315040865986 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41059601306915, 37.78934047687082 ], [ -122.41044580936432, 37.78936167353485 ], [ -122.41039216518402, 37.78908187708016 ], [ -122.41054773330688, 37.789064919685224 ], [ -122.41056382656096, 37.78916242465299 ], [ -122.41059601306914, 37.78934047687082 ], [ -122.41059601306914, 37.78934047687082 ], [ -122.41059601306915, 37.78934047687082 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42194175720215, 37.78936167353485 ], [ -122.42161452770233, 37.789404066844675 ], [ -122.42154479026794, 37.78907339838317 ], [ -122.42187201976776, 37.789031004883654 ], [ -122.42194175720215, 37.78936167353485 ], [ -122.42194175720215, 37.78936167353485 ], [ -122.42194175720215, 37.78936167353485 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4108749628067, 37.78915394596523 ], [ -122.41074085235596, 37.78917090333976 ], [ -122.41073548793794, 37.78914122793181 ], [ -122.41059601306915, 37.78915818530923 ], [ -122.41056382656097, 37.78916242465299 ], [ -122.41054773330688, 37.789064919685224 ], [ -122.4108535051346, 37.78902676553237 ], [ -122.41087496280672, 37.78915394596523 ], [ -122.41087496280672, 37.78915394596523 ], [ -122.4108749628067, 37.78915394596523 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41407215595245, 37.789107313165275 ], [ -122.41378247737885, 37.789145467276526 ], [ -122.41376101970673, 37.789064919685224 ], [ -122.41405069828033, 37.78902252618086 ], [ -122.41407215595245, 37.789107313165275 ], [ -122.41407215595245, 37.789107313165275 ], [ -122.41407215595245, 37.789107313165275 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41572976112366, 37.78919210005242 ], [ -122.41549372673036, 37.78921753609959 ], [ -122.41546154022218, 37.78903524423471 ], [ -122.41569221019746, 37.78900980812477 ], [ -122.41572976112366, 37.78919210005242 ], [ -122.41572976112366, 37.78919210005242 ], [ -122.41572976112366, 37.78919210005242 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4158638715744, 37.78917514268277 ], [ -122.41576194763184, 37.78918362136809 ], [ -122.4157351255417, 37.788980132652135 ], [ -122.41582632064821, 37.788971653943484 ], [ -122.4158638715744, 37.78917514268277 ], [ -122.4158638715744, 37.78917514268277 ], [ -122.4158638715744, 37.78917514268277 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41351962089539, 37.78907339838317 ], [ -122.41332113742828, 37.78910307381837 ], [ -122.41329431533813, 37.78898437200612 ], [ -122.41349279880524, 37.78895893587867 ], [ -122.41351962089539, 37.78907339838317 ], [ -122.41351962089539, 37.78907339838317 ], [ -122.41351962089539, 37.78907339838317 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41138458251953, 37.78930232286027 ], [ -122.41119682788849, 37.78932775886951 ], [ -122.41115927696228, 37.78912003120455 ], [ -122.41108953952791, 37.7891285098962 ], [ -122.41113781929016, 37.78937015219877 ], [ -122.41096615791321, 37.78939134885428 ], [ -122.41088569164276, 37.78900980812479 ], [ -122.41131484508514, 37.788954696523255 ], [ -122.41138458251953, 37.78930232286027 ], [ -122.41138458251953, 37.78930232286027 ], [ -122.41138458251953, 37.78930232286027 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4140077829361, 37.78902676553237 ], [ -122.41376101970673, 37.78906068033588 ], [ -122.4137395620346, 37.78896741458879 ], [ -122.41398632526398, 37.788933499742484 ], [ -122.4140077829361, 37.78902676553237 ], [ -122.4140077829361, 37.78902676553237 ], [ -122.4140077829361, 37.78902676553237 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4152684211731, 37.78925569015392 ], [ -122.41494655609131, 37.789298083524535 ], [ -122.41491436958313, 37.789149706621 ], [ -122.41505920886993, 37.78912850989617 ], [ -122.41504848003387, 37.78907339838317 ], [ -122.41491436958313, 37.78909035577617 ], [ -122.41488218307495, 37.78895045716757 ], [ -122.41519331932068, 37.78891230295563 ], [ -122.4152684211731, 37.78925569015392 ], [ -122.4152684211731, 37.78925569015392 ], [ -122.4152684211731, 37.78925569015392 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41627156734467, 37.78898861135982 ], [ -122.41624474525453, 37.78898861135982 ], [ -122.41626620292665, 37.78913274924163 ], [ -122.41615355014802, 37.789145467276526 ], [ -122.41611599922182, 37.78892502102847 ], [ -122.41626083850862, 37.78891230295563 ], [ -122.41627156734468, 37.78898861135982 ], [ -122.41627156734468, 37.78898861135982 ], [ -122.41627156734467, 37.78898861135982 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41170644760132, 37.78913274924163 ], [ -122.41155624389648, 37.789149706621 ], [ -122.4115401506424, 37.78907339838317 ], [ -122.4115777015686, 37.78906915903432 ], [ -122.41156697273254, 37.78900132941952 ], [ -122.41154551506042, 37.78900556877228 ], [ -122.41152942180634, 37.78892502102847 ], [ -122.41166889667511, 37.78890806359755 ], [ -122.4116849899292, 37.78902252618086 ], [ -122.41170644760132, 37.78913274924163 ], [ -122.41170644760132, 37.78913274924163 ], [ -122.41170644760132, 37.78913274924163 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4160623550415, 37.78915394596523 ], [ -122.41597115993501, 37.78916242465299 ], [ -122.41592824459076, 37.78891654231348 ], [ -122.41601943969727, 37.7889038242392 ], [ -122.4160623550415, 37.78915394596523 ], [ -122.4160623550415, 37.78915394596523 ], [ -122.4160623550415, 37.78915394596523 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41175472736359, 37.78901404747704 ], [ -122.4116849899292, 37.78902252618086 ], [ -122.41166889667511, 37.78890806359755 ], [ -122.41173326969147, 37.7889038242392 ], [ -122.41175472736359, 37.78901404747704 ], [ -122.41175472736359, 37.78901404747704 ], [ -122.41175472736359, 37.78901404747704 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41186201572418, 37.78912003120455 ], [ -122.4117761850357, 37.78912850989617 ], [ -122.41176009178162, 37.78906068033585 ], [ -122.41175472736359, 37.78901404747704 ], [ -122.41173326969147, 37.7889038242392 ], [ -122.4117922782898, 37.788895345521766 ], [ -122.41181373596191, 37.78889958488058 ], [ -122.41182446479797, 37.78891230295563 ], [ -122.41186201572418, 37.78912003120455 ], [ -122.41186201572418, 37.78912003120455 ], [ -122.41186201572418, 37.78912003120455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41976380348206, 37.78919633939423 ], [ -122.41940975189209, 37.78923449345951 ], [ -122.41934537887573, 37.7889207816711 ], [ -122.4196994304657, 37.78888262744385 ], [ -122.41976380348206, 37.78919633939423 ], [ -122.41976380348206, 37.78919633939423 ], [ -122.41976380348206, 37.78919633939423 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41615355014801, 37.789145467276526 ], [ -122.4160623550415, 37.78915394596523 ], [ -122.41601943969727, 37.7889038242392 ], [ -122.41601407527925, 37.78886567000316 ], [ -122.41610527038574, 37.78885719128138 ], [ -122.4161159992218, 37.78892502102847 ], [ -122.41615355014801, 37.789145467276526 ], [ -122.41615355014801, 37.789145467276526 ], [ -122.41615355014801, 37.789145467276526 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4123340845108, 37.78908611642829 ], [ -122.41205513477325, 37.78912427055049 ], [ -122.41200149059296, 37.7888911061627 ], [ -122.41228580474854, 37.78885295192013 ], [ -122.4123340845108, 37.78908611642829 ], [ -122.4123340845108, 37.78908611642829 ], [ -122.4123340845108, 37.78908611642829 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41349279880524, 37.788954696523255 ], [ -122.41328895092012, 37.78898437200612 ], [ -122.413267493248, 37.788878388084036 ], [ -122.41347134113312, 37.78885295192013 ], [ -122.41349279880524, 37.788954696523255 ], [ -122.41349279880524, 37.788954696523255 ], [ -122.41349279880524, 37.788954696523255 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.415971159935, 37.78916242465299 ], [ -122.41586387157439, 37.78917514268277 ], [ -122.4158263206482, 37.788971653943484 ], [ -122.41580486297607, 37.7888529519201 ], [ -122.41591215133667, 37.788840233834875 ], [ -122.41592824459076, 37.78891654231348 ], [ -122.415971159935, 37.78916242465299 ], [ -122.415971159935, 37.78916242465299 ], [ -122.415971159935, 37.78916242465299 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41736054420471, 37.788963175233846 ], [ -122.41720497608185, 37.78898437200612 ], [ -122.41719424724579, 37.78893773909911 ], [ -122.41721034049988, 37.78893773909911 ], [ -122.41719961166382, 37.7888868668034 ], [ -122.41718888282776, 37.7888911061627 ], [ -122.4171781539917, 37.78885719128138 ], [ -122.41733372211456, 37.78883599447265 ], [ -122.41734445095062, 37.788878388084036 ], [ -122.41732835769653, 37.788878388084036 ], [ -122.41733372211456, 37.7889207816711 ], [ -122.41734981536864, 37.7889207816711 ], [ -122.4173605442047, 37.788963175233846 ], [ -122.4173605442047, 37.788963175233846 ], [ -122.41736054420471, 37.788963175233846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41720497608185, 37.78898437200612 ], [ -122.41711914539337, 37.78899285071331 ], [ -122.41708695888519, 37.78884871255861 ], [ -122.4171781539917, 37.78883599447265 ], [ -122.4171781539917, 37.78885719128138 ], [ -122.41718888282776, 37.7888911061627 ], [ -122.41719424724577, 37.78893773909911 ], [ -122.41720497608183, 37.78898437200612 ], [ -122.41720497608183, 37.78898437200612 ], [ -122.41720497608185, 37.78898437200612 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41254329681396, 37.789145467276526 ], [ -122.41235554218292, 37.78917090333976 ], [ -122.41228580474854, 37.7888529519201 ], [ -122.41247892379761, 37.78882751574746 ], [ -122.41254329681396, 37.789145467276526 ], [ -122.41254329681396, 37.789145467276526 ], [ -122.41254329681396, 37.789145467276526 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41569757461548, 37.78899285071331 ], [ -122.41545617580414, 37.78901828682906 ], [ -122.41542398929596, 37.78884871255861 ], [ -122.4156653881073, 37.78882327638447 ], [ -122.41569757461548, 37.78899285071331 ], [ -122.41569757461548, 37.78899285071331 ], [ -122.41569757461548, 37.78899285071331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41263449192047, 37.78903524423471 ], [ -122.41252720355988, 37.789047962286396 ], [ -122.41247892379761, 37.78882751574746 ], [ -122.4125862121582, 37.78881055829413 ], [ -122.41263449192047, 37.78903524423471 ], [ -122.41263449192047, 37.78903524423471 ], [ -122.41263449192047, 37.78903524423471 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41691529750824, 37.78903524423471 ], [ -122.41660416126251, 37.78906915903432 ], [ -122.4165987968445, 37.789031004883654 ], [ -122.41652369499208, 37.78903948358551 ], [ -122.4164915084839, 37.7888529519201 ], [ -122.416689991951, 37.78883175511017 ], [ -122.416872382164, 37.7888063189302 ], [ -122.41691529750824, 37.78903524423471 ], [ -122.41691529750824, 37.78903524423471 ], [ -122.41691529750824, 37.78903524423471 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41758048534393, 37.78893773909911 ], [ -122.41736054420471, 37.788963175233846 ], [ -122.41734445095062, 37.788878388084036 ], [ -122.41733372211456, 37.78883599447265 ], [ -122.41733372211456, 37.78883175511017 ], [ -122.41755902767181, 37.7888063189302 ], [ -122.41756975650787, 37.78885719128138 ], [ -122.41758048534393, 37.78893773909911 ], [ -122.41758048534393, 37.78893773909911 ], [ -122.41758048534393, 37.78893773909911 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4165290594101, 37.78909035577617 ], [ -122.41630911827087, 37.78911579185838 ], [ -122.41628766059875, 37.78900132941952 ], [ -122.41631984710693, 37.78900132941952 ], [ -122.41630375385284, 37.7889038242392 ], [ -122.4162608385086, 37.78891230295563 ], [ -122.41624474525453, 37.78881055829413 ], [ -122.41638958454134, 37.7887978402016 ], [ -122.4164003133774, 37.78886143064241 ], [ -122.4164915084839, 37.78885295192013 ], [ -122.41652369499208, 37.78903948358551 ], [ -122.4165290594101, 37.78909035577619 ], [ -122.4165290594101, 37.78909035577619 ], [ -122.4165290594101, 37.78909035577617 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41288125514984, 37.78913274924163 ], [ -122.41266131401062, 37.78915818530923 ], [ -122.4125862121582, 37.78881055829413 ], [ -122.41280615329742, 37.78878512210689 ], [ -122.41288125514984, 37.78913274924163 ], [ -122.41288125514984, 37.78913274924163 ], [ -122.41288125514984, 37.78913274924163 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4101185798645, 37.7889207816711 ], [ -122.40987181663515, 37.788954696523255 ], [ -122.40983963012695, 37.78880207956601 ], [ -122.41008639335632, 37.788768164643834 ], [ -122.4101185798645, 37.7889207816711 ], [ -122.4101185798645, 37.7889207816711 ], [ -122.4101185798645, 37.7889207816711 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41301536560059, 37.78913274924163 ], [ -122.41288661956786, 37.78915394596523 ], [ -122.41280615329742, 37.78878512210689 ], [ -122.41294026374817, 37.788763925277465 ], [ -122.41301536560059, 37.78913274924163 ], [ -122.41301536560059, 37.78913274924163 ], [ -122.41301536560059, 37.78913274924163 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4156653881073, 37.7888232763845 ], [ -122.41542398929596, 37.78884871255861 ], [ -122.4154132604599, 37.78878512210689 ], [ -122.41551518440247, 37.788772404009954 ], [ -122.41552054882048, 37.78878512210689 ], [ -122.41554737091063, 37.78878088274148 ], [ -122.41554737091063, 37.788768164643834 ], [ -122.41565465927123, 37.788751207176915 ], [ -122.41566538810729, 37.78882327638447 ], [ -122.41566538810729, 37.78882327638447 ], [ -122.4156653881073, 37.7888232763845 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41324067115784, 37.78908187708016 ], [ -122.4130153656006, 37.78911579185838 ], [ -122.41298854351045, 37.78899709006656 ], [ -122.41303145885469, 37.78899285071331 ], [ -122.41301000118257, 37.788878388084036 ], [ -122.41296708583833, 37.7888868668034 ], [ -122.41294026374818, 37.788763925277465 ], [ -122.41316556930543, 37.78873424970608 ], [ -122.41319239139558, 37.78885295192013 ], [ -122.41314411163331, 37.78886143064241 ], [ -122.41316556930543, 37.78897589329795 ], [ -122.4132138490677, 37.78896741458879 ], [ -122.41324067115784, 37.78908187708016 ], [ -122.41324067115784, 37.78908187708016 ], [ -122.41324067115784, 37.78908187708016 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40950167179108, 37.78900980812477 ], [ -122.40950167179108, 37.78900980812477 ], [ -122.40950167179108, 37.78899709006654 ], [ -122.40950167179108, 37.78900980812477 ], [ -122.40950167179108, 37.78900980812477 ], [ -122.40950167179108, 37.78900980812477 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41347134113312, 37.7888529519201 ], [ -122.4131977558136, 37.7888868668034 ], [ -122.41316556930542, 37.78873424970608 ], [ -122.41343915462494, 37.78870033475276 ], [ -122.41347134113312, 37.7888529519201 ], [ -122.41347134113312, 37.7888529519201 ], [ -122.41347134113312, 37.7888529519201 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41781651973724, 37.78891230295563 ], [ -122.41769313812256, 37.78892502102847 ], [ -122.4176824092865, 37.78885295192013 ], [ -122.41769313812256, 37.78885295192013 ], [ -122.41766631603241, 37.78870457412277 ], [ -122.41775751113892, 37.788691856012 ], [ -122.4177896976471, 37.78884447319687 ], [ -122.41780579090118, 37.788840233834875 ], [ -122.41781651973724, 37.78891230295563 ], [ -122.41781651973724, 37.78891230295563 ], [ -122.41781651973724, 37.78891230295563 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42262840270996, 37.78884447319687 ], [ -122.42228507995605, 37.7888911061627 ], [ -122.42225289344788, 37.78873424970608 ], [ -122.42259085178375, 37.78868761664125 ], [ -122.42262840270996, 37.78884447319687 ], [ -122.42262840270996, 37.78884447319687 ], [ -122.42262840270996, 37.78884447319687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40964651107788, 37.78899285071331 ], [ -122.40950167179108, 37.78900980812477 ], [ -122.40950167179108, 37.78899709006654 ], [ -122.40950167179108, 37.78869609538249 ], [ -122.40958213806152, 37.788683377270274 ], [ -122.40964651107788, 37.78899285071331 ], [ -122.40964651107788, 37.78899285071331 ], [ -122.40964651107788, 37.78899285071331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41735517978668, 37.78880207956601 ], [ -122.41726934909819, 37.78881055829413 ], [ -122.41726398468018, 37.78879360083693 ], [ -122.41718351840973, 37.78880207956601 ], [ -122.41718351840973, 37.78881479765783 ], [ -122.41708695888519, 37.78882751574746 ], [ -122.41706013679504, 37.788708813492555 ], [ -122.4171245098114, 37.78870033475276 ], [ -122.41715133190155, 37.78869609538249 ], [ -122.41716742515564, 37.78869609538249 ], [ -122.41716742515564, 37.78871305286208 ], [ -122.41724252700806, 37.78870457412277 ], [ -122.41724252700806, 37.788691856012 ], [ -122.41733372211456, 37.78867913789904 ], [ -122.41735517978668, 37.78880207956601 ], [ -122.41735517978668, 37.78880207956601 ], [ -122.41735517978668, 37.78880207956601 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41518259048462, 37.788878388084036 ], [ -122.41471588611603, 37.78892926038561 ], [ -122.41467833518982, 37.78873001033775 ], [ -122.41514503955841, 37.78867489852755 ], [ -122.41518259048462, 37.788878388084036 ], [ -122.41518259048462, 37.788878388084036 ], [ -122.41518259048462, 37.788878388084036 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41009712219238, 37.788768164643834 ], [ -122.40983963012695, 37.78880207956601 ], [ -122.40981817245483, 37.78870033475276 ], [ -122.41007566452026, 37.788666419783866 ], [ -122.41009712219238, 37.788768164643834 ], [ -122.41009712219238, 37.788768164643834 ], [ -122.41009712219238, 37.788768164643834 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41568148136139, 37.788751207176915 ], [ -122.41565465927124, 37.788751207176915 ], [ -122.41554737091064, 37.788768164643834 ], [ -122.41551518440247, 37.788772404009954 ], [ -122.4154132604599, 37.78878512210689 ], [ -122.41539180278778, 37.78868761664125 ], [ -122.41547763347626, 37.78867489852755 ], [ -122.41548299789429, 37.788691856012 ], [ -122.4155741930008, 37.78867913789904 ], [ -122.4155741930008, 37.788666419783866 ], [ -122.41566002368927, 37.788653701666526 ], [ -122.41568148136139, 37.788751207176915 ], [ -122.41568148136139, 37.788751207176915 ], [ -122.41568148136139, 37.788751207176915 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41834223270416, 37.78884447319687 ], [ -122.41825103759767, 37.78885719128138 ], [ -122.41823494434358, 37.78878512210689 ], [ -122.41825103759767, 37.78878512210689 ], [ -122.41824030876161, 37.78872577096919 ], [ -122.41822421550752, 37.78872577096919 ], [ -122.41821348667146, 37.78865794103921 ], [ -122.41830468177797, 37.78864946229359 ], [ -122.41832077503204, 37.788717292231354 ], [ -122.41829931735992, 37.7887215316004 ], [ -122.41831004619598, 37.78878088274148 ], [ -122.4183315038681, 37.78877664337584 ], [ -122.41834223270416, 37.78884447319687 ], [ -122.41834223270416, 37.78884447319687 ], [ -122.41834223270416, 37.78884447319687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41402387619019, 37.78889958488061 ], [ -122.41372883319853, 37.78893773909911 ], [ -122.41366982460022, 37.788670659155834 ], [ -122.41397023200987, 37.788636744173324 ], [ -122.41398632526396, 37.78874272844198 ], [ -122.41390585899352, 37.788755446544 ], [ -122.41391658782958, 37.78881055829413 ], [ -122.41400241851807, 37.78880207956601 ], [ -122.41402387619019, 37.78889958488061 ], [ -122.41402387619019, 37.78889958488061 ], [ -122.41402387619019, 37.78889958488061 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41081595420837, 37.78885719128138 ], [ -122.4105852842331, 37.7888868668034 ], [ -122.41053700447083, 37.788653701666526 ], [ -122.41076767444612, 37.788624026050876 ], [ -122.41078913211824, 37.78874272844198 ], [ -122.41081595420837, 37.78885719128138 ], [ -122.41081595420837, 37.78885719128138 ], [ -122.41081595420837, 37.78885719128138 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41417407989502, 37.78886990936371 ], [ -122.41401851177216, 37.7888868668034 ], [ -122.4140077829361, 37.78881479765783 ], [ -122.41403460502625, 37.78881055829413 ], [ -122.41401314735413, 37.78873001033775 ], [ -122.41398632526398, 37.78873001033775 ], [ -122.41397023200989, 37.788636744173324 ], [ -122.4141311645508, 37.788619786676236 ], [ -122.41414725780487, 37.788725770969215 ], [ -122.41411507129669, 37.788725770969215 ], [ -122.41413116455078, 37.78877664337584 ], [ -122.41415798664093, 37.78877664337584 ], [ -122.414174079895, 37.78886990936371 ], [ -122.414174079895, 37.78886990936371 ], [ -122.41417407989502, 37.78886990936371 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40987181663513, 37.788963175233846 ], [ -122.40964651107788, 37.78899285071331 ], [ -122.40958213806152, 37.788683377270274 ], [ -122.4095767736435, 37.78864522292042 ], [ -122.40980207920074, 37.78861554730136 ], [ -122.40981817245483, 37.78870033475276 ], [ -122.40983963012695, 37.78880207956601 ], [ -122.40987181663513, 37.788963175233846 ], [ -122.40987181663513, 37.788963175233846 ], [ -122.40987181663513, 37.788963175233846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41796135902405, 37.788895345521794 ], [ -122.41781651973724, 37.78891230295563 ], [ -122.41780579090118, 37.788840233834875 ], [ -122.41776823997498, 37.78863250479942 ], [ -122.41791307926178, 37.78861554730136 ], [ -122.41795063018799, 37.78881479765786 ], [ -122.41796135902405, 37.788895345521794 ], [ -122.41796135902405, 37.788895345521794 ], [ -122.41796135902405, 37.788895345521794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42182910442352, 37.788751207176915 ], [ -122.4215018749237, 37.78879360083693 ], [ -122.42147505283356, 37.788653701666526 ], [ -122.42180228233339, 37.78861130792624 ], [ -122.42182910442352, 37.788751207176915 ], [ -122.42182910442352, 37.788751207176915 ], [ -122.42182910442352, 37.788751207176915 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41769313812256, 37.78892502102847 ], [ -122.41758048534393, 37.78893773909911 ], [ -122.41756975650787, 37.78885719128138 ], [ -122.41760194301605, 37.78885295192013 ], [ -122.41758048534393, 37.78871305286208 ], [ -122.41754829883575, 37.788717292231354 ], [ -122.41753220558168, 37.788624026050876 ], [ -122.41763412952423, 37.78861130792624 ], [ -122.4176824092865, 37.78885295192013 ], [ -122.41769313812256, 37.78892502102847 ], [ -122.41769313812256, 37.78892502102847 ], [ -122.41769313812256, 37.78892502102847 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41805791854858, 37.78880207956601 ], [ -122.41795063018799, 37.78881479765783 ], [ -122.41791307926178, 37.78861554730136 ], [ -122.41802036762238, 37.78860282917525 ], [ -122.41805791854858, 37.78880207956601 ], [ -122.41805791854858, 37.78880207956601 ], [ -122.41805791854858, 37.78880207956601 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.416872382164, 37.7888063189302 ], [ -122.416689991951, 37.78883175511017 ], [ -122.41666316986085, 37.788691856012 ], [ -122.41652369499208, 37.78871305286208 ], [ -122.41650760173799, 37.788640983547005 ], [ -122.41652369499208, 37.788640983547005 ], [ -122.41682946681978, 37.788598589799406 ], [ -122.41687238216402, 37.7888063189302 ], [ -122.41687238216402, 37.7888063189302 ], [ -122.416872382164, 37.7888063189302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4145495891571, 37.788963175233846 ], [ -122.41432428359985, 37.78898861135982 ], [ -122.41424381732942, 37.78861554730136 ], [ -122.4144744873047, 37.78858587167039 ], [ -122.41454958915712, 37.788963175233846 ], [ -122.41454958915712, 37.788963175233846 ], [ -122.4145495891571, 37.788963175233846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41853535175323, 37.7888232763845 ], [ -122.41834223270416, 37.78884447319687 ], [ -122.4183315038681, 37.78877664337584 ], [ -122.41832077503204, 37.788717292231354 ], [ -122.41830468177797, 37.78864946229359 ], [ -122.41829931735994, 37.78860706855085 ], [ -122.41835832595827, 37.788598589799406 ], [ -122.4184173345566, 37.788590111046965 ], [ -122.41848707199097, 37.788581632293536 ], [ -122.41853535175323, 37.78882327638447 ], [ -122.41853535175323, 37.78882327638447 ], [ -122.41853535175323, 37.7888232763845 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.414710521698, 37.78891230295563 ], [ -122.41454422473907, 37.788933499742484 ], [ -122.414528131485, 37.78885295192013 ], [ -122.41455495357513, 37.78884871255861 ], [ -122.41452276706696, 37.78867913789904 ], [ -122.41449594497682, 37.788683377270274 ], [ -122.4144744873047, 37.78858587167039 ], [ -122.4146354198456, 37.78856467478382 ], [ -122.41465687751771, 37.78866218041166 ], [ -122.4146354198456, 37.788666419783866 ], [ -122.4146729707718, 37.78883599447265 ], [ -122.41469442844392, 37.78883175511017 ], [ -122.414710521698, 37.78891230295563 ], [ -122.414710521698, 37.78891230295563 ], [ -122.414710521698, 37.78891230295563 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41161525249481, 37.788755446544 ], [ -122.41145431995392, 37.78877664337584 ], [ -122.41141140460968, 37.78857739291647 ], [ -122.41157233715057, 37.788556196027486 ], [ -122.41161525249481, 37.788755446544 ], [ -122.41161525249481, 37.788755446544 ], [ -122.41161525249481, 37.788755446544 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4100810289383, 37.788666419783866 ], [ -122.40981817245483, 37.78870033475276 ], [ -122.40979671478271, 37.788590111046965 ], [ -122.40987181663513, 37.7885773929165 ], [ -122.41005420684813, 37.788556196027486 ], [ -122.41008102893828, 37.788666419783866 ], [ -122.41008102893828, 37.788666419783866 ], [ -122.4100810289383, 37.788666419783866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41478025913239, 37.78870457412277 ], [ -122.41466760635376, 37.7887215316004 ], [ -122.41463541984558, 37.78856467478382 ], [ -122.4147480726242, 37.78855195664895 ], [ -122.41478025913239, 37.78870457412277 ], [ -122.41478025913239, 37.78870457412277 ], [ -122.41478025913239, 37.78870457412277 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41750538349152, 37.78864522292042 ], [ -122.41745173931122, 37.788653701666526 ], [ -122.41744637489319, 37.78863250479942 ], [ -122.41739809513093, 37.788636744173324 ], [ -122.4173927307129, 37.78861554730136 ], [ -122.41722106933595, 37.788636744173324 ], [ -122.41723179817201, 37.78868761664125 ], [ -122.41716742515564, 37.78869609538249 ], [ -122.41715133190156, 37.78869609538249 ], [ -122.41715133190156, 37.788683377270274 ], [ -122.41711914539339, 37.78868761664125 ], [ -122.4171245098114, 37.78870033475276 ], [ -122.41706013679504, 37.788708813492555 ], [ -122.41704404354097, 37.78860282917525 ], [ -122.41742491722107, 37.788556196027486 ], [ -122.41748929023743, 37.78854771727019 ], [ -122.41750538349152, 37.78864522292042 ], [ -122.41750538349152, 37.78864522292042 ], [ -122.41750538349152, 37.78864522292042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41497337818146, 37.788670659155834 ], [ -122.41477489471436, 37.78869609538249 ], [ -122.4147480726242, 37.78855195664898 ], [ -122.41494655609131, 37.78852652037268 ], [ -122.41497337818146, 37.788670659155834 ], [ -122.41497337818146, 37.788670659155834 ], [ -122.41497337818146, 37.788670659155834 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41682946681976, 37.788598589799406 ], [ -122.41652369499207, 37.788640983547005 ], [ -122.416512966156, 37.788568914161615 ], [ -122.41660416126251, 37.78856043540577 ], [ -122.41660952568053, 37.7885773929165 ], [ -122.41668462753294, 37.78856467478382 ], [ -122.41667926311493, 37.78853923851192 ], [ -122.4168187379837, 37.78852228099244 ], [ -122.41682946681976, 37.788598589799406 ], [ -122.41682946681976, 37.788598589799406 ], [ -122.41682946681976, 37.788598589799406 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41177082061768, 37.78873424970608 ], [ -122.41161525249481, 37.788755446544 ], [ -122.41157233715057, 37.788556196027486 ], [ -122.41156697273254, 37.78853499913242 ], [ -122.41172254085541, 37.78851380223124 ], [ -122.41177082061768, 37.78873424970608 ], [ -122.41177082061768, 37.78873424970608 ], [ -122.41177082061768, 37.78873424970608 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41514503955841, 37.78867489852755 ], [ -122.41497874259949, 37.78869609538249 ], [ -122.41494655609131, 37.78852652037268 ], [ -122.41511285305023, 37.78850532346909 ], [ -122.41514503955841, 37.78867489852755 ], [ -122.41514503955841, 37.78867489852755 ], [ -122.41514503955841, 37.78867489852755 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41069793701172, 37.78861130792624 ], [ -122.4105316400528, 37.78863250479942 ], [ -122.41053700447083, 37.788653701666526 ], [ -122.41058528423308, 37.7888868668034 ], [ -122.41034388542174, 37.7889207816711 ], [ -122.41026878356932, 37.788556196027486 ], [ -122.41067647933959, 37.78850108408765 ], [ -122.4106979370117, 37.78861130792624 ], [ -122.4106979370117, 37.78861130792624 ], [ -122.41069793701172, 37.78861130792624 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41825103759766, 37.78885719128138 ], [ -122.41807401180267, 37.788878388084036 ], [ -122.41805791854858, 37.78880207956601 ], [ -122.41802036762238, 37.78860282917525 ], [ -122.4180042743683, 37.78852228099244 ], [ -122.41818130016328, 37.78850108408765 ], [ -122.41821348667146, 37.78865794103921 ], [ -122.41822421550752, 37.788725770969215 ], [ -122.41823494434358, 37.78878512210689 ], [ -122.41825103759767, 37.78885719128138 ], [ -122.41825103759767, 37.78885719128138 ], [ -122.41825103759766, 37.78885719128138 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41099298000336, 37.78883599447265 ], [ -122.41081595420837, 37.78885719128138 ], [ -122.41078913211824, 37.78874272844198 ], [ -122.41081595420837, 37.788738489074134 ], [ -122.41076767444612, 37.78850108408765 ], [ -122.41089642047884, 37.78848412655941 ], [ -122.4109447002411, 37.78873001033775 ], [ -122.41097152233124, 37.78872577096919 ], [ -122.41099298000336, 37.78883599447265 ], [ -122.41099298000336, 37.78883599447265 ], [ -122.41099298000336, 37.78883599447265 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41120219230652, 37.78881055829413 ], [ -122.41099298000336, 37.78883599447265 ], [ -122.41097152233124, 37.788725770969215 ], [ -122.41097152233124, 37.788708813492555 ], [ -122.41099298000336, 37.788708813492555 ], [ -122.41095006465912, 37.788492605324016 ], [ -122.41110563278198, 37.78847140841073 ], [ -122.41114854812622, 37.788683377270274 ], [ -122.41117537021637, 37.78867913789904 ], [ -122.41120219230652, 37.78881055829413 ], [ -122.41120219230652, 37.78881055829413 ], [ -122.41120219230652, 37.78881055829413 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42069721221924, 37.78854771727019 ], [ -122.4204236268997, 37.78858587167039 ], [ -122.42041289806365, 37.78854771727019 ], [ -122.42040216922759, 37.78850532346909 ], [ -122.42061138153076, 37.788479887176756 ], [ -122.42068111896513, 37.78846716902731 ], [ -122.42068111896513, 37.78846716902731 ], [ -122.42069721221922, 37.78854771727019 ], [ -122.42069721221922, 37.78854771727019 ], [ -122.42069721221924, 37.78854771727019 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41848707199097, 37.788581632293536 ], [ -122.4184173345566, 37.788590111046965 ], [ -122.41841197013856, 37.78856043540577 ], [ -122.41835296154024, 37.788568914161615 ], [ -122.41835832595827, 37.788598589799406 ], [ -122.41829931735994, 37.78860706855088 ], [ -122.41823494434358, 37.78861130792624 ], [ -122.41821348667146, 37.788492605324016 ], [ -122.41829931735994, 37.78848412655941 ], [ -122.41829931735994, 37.78850108408765 ], [ -122.41833150386812, 37.78850108408765 ], [ -122.41833150386812, 37.788509562850294 ], [ -122.41839051246644, 37.78850108408765 ], [ -122.41840660572053, 37.78850108408765 ], [ -122.41840660572053, 37.78848836594184 ], [ -122.4184012413025, 37.78847140841073 ], [ -122.41846561431886, 37.78846292964368 ], [ -122.41848707199098, 37.788581632293536 ], [ -122.41848707199098, 37.788581632293536 ], [ -122.41848707199097, 37.788581632293536 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41567611694336, 37.788624026050876 ], [ -122.41539180278778, 37.78865794103921 ], [ -122.41535425186157, 37.78846716902731 ], [ -122.41551518440248, 37.78845021149131 ], [ -122.41563856601717, 37.78843325395142 ], [ -122.41567611694336, 37.788624026050876 ], [ -122.41567611694336, 37.788624026050876 ], [ -122.41567611694336, 37.788624026050876 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41208732128143, 37.78868761664125 ], [ -122.41198539733888, 37.78870033475276 ], [ -122.41193175315857, 37.78843325395142 ], [ -122.412006855011, 37.78842477518002 ], [ -122.41201221942902, 37.78845021149131 ], [ -122.41203904151917, 37.78844597210669 ], [ -122.41208732128143, 37.78868761664125 ], [ -122.41208732128143, 37.78868761664125 ], [ -122.41208732128143, 37.78868761664125 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41145431995392, 37.78877664337584 ], [ -122.41120219230652, 37.78881055829413 ], [ -122.41117537021637, 37.78867913789904 ], [ -122.4111270904541, 37.78845021149131 ], [ -122.4113792181015, 37.78842053579395 ], [ -122.41140067577362, 37.788518041611965 ], [ -122.41141140460968, 37.7885773929165 ], [ -122.41145431995393, 37.78877664337584 ], [ -122.41145431995393, 37.78877664337584 ], [ -122.41145431995392, 37.78877664337584 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41742491722107, 37.788556196027486 ], [ -122.41704404354097, 37.78860282917525 ], [ -122.41701722145082, 37.7884586902598 ], [ -122.41710841655733, 37.78844597210669 ], [ -122.41733372211456, 37.788420535793925 ], [ -122.41739809513093, 37.788412057021056 ], [ -122.41742491722107, 37.788556196027486 ], [ -122.41742491722107, 37.788556196027486 ], [ -122.41742491722107, 37.788556196027486 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41589069366455, 37.78874696780958 ], [ -122.41572976112366, 37.788763925277465 ], [ -122.41570830345152, 37.788653701666526 ], [ -122.41573512554167, 37.78864946229359 ], [ -122.4156868457794, 37.78842477518002 ], [ -122.41575658321379, 37.78841629640763 ], [ -122.41582095623015, 37.78840781763428 ], [ -122.41584241390227, 37.78852652037268 ], [ -122.41580486297607, 37.78853075975266 ], [ -122.4158263206482, 37.788636744173324 ], [ -122.41586387157439, 37.78863250479942 ], [ -122.41589069366454, 37.78874696780958 ], [ -122.41589069366454, 37.78874696780958 ], [ -122.41589069366455, 37.78874696780958 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41932928562164, 37.788738489074134 ], [ -122.41877675056458, 37.7888063189302 ], [ -122.41871237754822, 37.78847564779387 ], [ -122.41925954818726, 37.78840781763428 ], [ -122.41932928562163, 37.788738489074134 ], [ -122.41932928562163, 37.788738489074134 ], [ -122.41932928562164, 37.788738489074134 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42061138153076, 37.788479887176756 ], [ -122.4204021692276, 37.78850532346909 ], [ -122.42038607597352, 37.788429014565835 ], [ -122.42058992385864, 37.78839933885995 ], [ -122.42061138153076, 37.788479887176756 ], [ -122.42061138153076, 37.788479887176756 ], [ -122.42061138153076, 37.788479887176756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4207991361618, 37.78853499913242 ], [ -122.42069721221925, 37.78854771727019 ], [ -122.42068111896516, 37.78846716902731 ], [ -122.42068111896516, 37.78846292964368 ], [ -122.42069184780122, 37.78845445087567 ], [ -122.4206864833832, 37.78840781763428 ], [ -122.42076694965364, 37.78839933885995 ], [ -122.42079913616182, 37.78853499913242 ], [ -122.42079913616182, 37.78853499913242 ], [ -122.4207991361618, 37.78853499913242 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41941511631012, 37.78872577096919 ], [ -122.41932928562164, 37.788738489074134 ], [ -122.41925954818726, 37.78840781763428 ], [ -122.41935074329376, 37.78839509947241 ], [ -122.41941511631012, 37.78872577096919 ], [ -122.41941511631012, 37.78872577096919 ], [ -122.41941511631012, 37.78872577096919 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41609454154968, 37.788738489074134 ], [ -122.41589069366456, 37.788768164643834 ], [ -122.41589069366456, 37.78874696780958 ], [ -122.41586387157442, 37.78863250479942 ], [ -122.4158424139023, 37.78852652037268 ], [ -122.41582095623018, 37.78840781763428 ], [ -122.41587460041048, 37.78840357824722 ], [ -122.41603016853334, 37.78838662069664 ], [ -122.41604626178743, 37.78846716902731 ], [ -122.4160623550415, 37.78853499913242 ], [ -122.41594970226288, 37.78854771727019 ], [ -122.41596579551697, 37.788619786676236 ], [ -122.41606771945953, 37.78860282917525 ], [ -122.4160784482956, 37.78864522292042 ], [ -122.41609454154968, 37.78872577096919 ], [ -122.41609454154968, 37.788738489074134 ], [ -122.41609454154968, 37.788738489074134 ], [ -122.41609454154968, 37.788738489074134 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41266131401062, 37.788624026050876 ], [ -122.41218924522398, 37.78867913789904 ], [ -122.41214632987975, 37.78843325395142 ], [ -122.41225361824036, 37.78842477518002 ], [ -122.41225898265837, 37.78844173272184 ], [ -122.41246819496153, 37.78841629640763 ], [ -122.41246283054352, 37.78839933885995 ], [ -122.41260766983032, 37.78838662069664 ], [ -122.41261839866638, 37.78846716902731 ], [ -122.4126237630844, 37.788479887176756 ], [ -122.41262912750243, 37.78852228099244 ], [ -122.41263985633849, 37.78852228099244 ], [ -122.4126613140106, 37.788624026050876 ], [ -122.4126613140106, 37.788624026050876 ], [ -122.41266131401062, 37.788624026050876 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4195009469986, 37.788717292231354 ], [ -122.41941511631012, 37.78872577096919 ], [ -122.41935074329375, 37.78839509947241 ], [ -122.4194312095642, 37.78838238130836 ], [ -122.41950094699858, 37.788717292231354 ], [ -122.41950094699858, 37.788717292231354 ], [ -122.4195009469986, 37.788717292231354 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41967260837555, 37.78869609538249 ], [ -122.4195009469986, 37.788717292231354 ], [ -122.41943120956421, 37.78838238130836 ], [ -122.41960823535919, 37.78836118436342 ], [ -122.41967260837555, 37.78869609538249 ], [ -122.41967260837555, 37.78869609538249 ], [ -122.41967260837555, 37.78869609538249 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4163681268692, 37.788691856012 ], [ -122.41625547409058, 37.788708813492555 ], [ -122.41623938083649, 37.78864946229359 ], [ -122.41620182991029, 37.788653701666526 ], [ -122.41621255874635, 37.78871305286208 ], [ -122.41609454154968, 37.788725770969215 ], [ -122.41607844829561, 37.78864522292042 ], [ -122.41612136363985, 37.788640983547005 ], [ -122.41608381271364, 37.78846292964368 ], [ -122.41604626178746, 37.78846716902731 ], [ -122.41603016853337, 37.78838662069664 ], [ -122.41630911827092, 37.788352705583755 ], [ -122.41632521152498, 37.788429014565835 ], [ -122.41628229618074, 37.78843325395142 ], [ -122.41630911827089, 37.78861554730136 ], [ -122.41635739803316, 37.78861130792624 ], [ -122.41636812686922, 37.788691856012 ], [ -122.41636812686922, 37.788691856012 ], [ -122.4163681268692, 37.788691856012 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42153406143188, 37.788437493336744 ], [ -122.42144286632538, 37.78845021149131 ], [ -122.42142140865326, 37.788361184363445 ], [ -122.42151260375977, 37.78834846619357 ], [ -122.42153406143188, 37.788437493336744 ], [ -122.42153406143188, 37.788437493336744 ], [ -122.42153406143188, 37.788437493336744 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41644859313965, 37.78869609538249 ], [ -122.41641104221345, 37.78870033475276 ], [ -122.41641640663147, 37.78872577096919 ], [ -122.41637349128723, 37.78873001033775 ], [ -122.41636812686922, 37.788691856012 ], [ -122.41635739803316, 37.78861130792624 ], [ -122.41630911827089, 37.78861554730136 ], [ -122.41628229618074, 37.78843325395142 ], [ -122.41632521152498, 37.788429014565835 ], [ -122.41630911827092, 37.788352705583755 ], [ -122.41638958454136, 37.78834422680312 ], [ -122.41642713546754, 37.78855195664895 ], [ -122.41644859313966, 37.78869609538249 ], [ -122.41644859313966, 37.78869609538249 ], [ -122.41644859313965, 37.78869609538249 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41650760173798, 37.78854347789117 ], [ -122.41642713546753, 37.78855195664898 ], [ -122.41638958454134, 37.78834422680312 ], [ -122.41647005081177, 37.788335748021495 ], [ -122.41650760173798, 37.78854347789117 ], [ -122.41650760173798, 37.78854347789117 ], [ -122.41650760173798, 37.78854347789117 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41989254951477, 37.788666419783866 ], [ -122.41967260837555, 37.78869609538249 ], [ -122.41960823535919, 37.788361184363445 ], [ -122.41982281208038, 37.788335748021495 ], [ -122.41989254951476, 37.788666419783866 ], [ -122.41989254951476, 37.788666419783866 ], [ -122.41989254951477, 37.788666419783866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41306900978088, 37.788568914161615 ], [ -122.41288661956787, 37.788598589799406 ], [ -122.41286516189575, 37.78850532346909 ], [ -122.41287589073181, 37.78850532346909 ], [ -122.41285979747774, 37.78843325395142 ], [ -122.41284906864168, 37.788437493336744 ], [ -122.41283297538759, 37.78835694497374 ], [ -122.41301000118257, 37.788331508630314 ], [ -122.41303145885469, 37.78841629640763 ], [ -122.41299927234651, 37.78842053579395 ], [ -122.4130153656006, 37.78849684470596 ], [ -122.4130529165268, 37.78848836594184 ], [ -122.41306900978088, 37.788568914161615 ], [ -122.41306900978088, 37.788568914161615 ], [ -122.41306900978088, 37.788568914161615 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42173254489899, 37.788412057021084 ], [ -122.42153406143188, 37.788437493336744 ], [ -122.42151260375977, 37.78834846619357 ], [ -122.42159843444824, 37.78833998741243 ], [ -122.42159843444824, 37.788361184363445 ], [ -122.42164134979248, 37.788352705583755 ], [ -122.42163598537446, 37.788331508630314 ], [ -122.42171108722688, 37.78832302984724 ], [ -122.421732544899, 37.788412057021084 ], [ -122.421732544899, 37.788412057021084 ], [ -122.42173254489899, 37.788412057021084 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41287589073181, 37.78860282917525 ], [ -122.41273105144501, 37.788624026050876 ], [ -122.41270422935487, 37.78852228099244 ], [ -122.41272568702699, 37.788518041611965 ], [ -122.41270422935487, 37.78844173272184 ], [ -122.41268277168275, 37.78844597210669 ], [ -122.4126559495926, 37.78834422680312 ], [ -122.4128168821335, 37.78831879045532 ], [ -122.41284370422365, 37.78842477518002 ], [ -122.41281151771547, 37.788429014565835 ], [ -122.41282761096956, 37.78849684470596 ], [ -122.41285443305969, 37.788492605324016 ], [ -122.41287589073181, 37.78860282917525 ], [ -122.41287589073181, 37.78860282917525 ], [ -122.41287589073181, 37.78860282917525 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41668462753296, 37.78856467478382 ], [ -122.41660952568054, 37.78857739291647 ], [ -122.41660416126251, 37.78856043540577 ], [ -122.41651296615602, 37.788568914161615 ], [ -122.41650760173799, 37.78854347789117 ], [ -122.41647005081178, 37.788335748021495 ], [ -122.41655051708223, 37.788327269238906 ], [ -122.4166363477707, 37.7883145510632 ], [ -122.41667926311494, 37.78853923851192 ], [ -122.41668462753297, 37.78856467478382 ], [ -122.41668462753297, 37.78856467478382 ], [ -122.41668462753296, 37.78856467478382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41846561431885, 37.78844597210669 ], [ -122.41835296154022, 37.7884586902598 ], [ -122.4183475971222, 37.78844173272184 ], [ -122.41822421550752, 37.78845445087567 ], [ -122.41822957992555, 37.78847140841073 ], [ -122.41811692714693, 37.78848412655941 ], [ -122.4180954694748, 37.78835694497374 ], [ -122.41820812225342, 37.78833998741243 ], [ -122.41821348667145, 37.78835694497374 ], [ -122.41832613945007, 37.78834422680312 ], [ -122.41832077503204, 37.788327269238906 ], [ -122.41843879222871, 37.7883145510632 ], [ -122.41846561431885, 37.78844597210669 ], [ -122.41846561431885, 37.78844597210669 ], [ -122.41846561431885, 37.78844597210669 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42073476314545, 37.78838238130839 ], [ -122.42058992385864, 37.78839933885995 ], [ -122.42038607597352, 37.788429014565835 ], [ -122.42036998271944, 37.78834846619357 ], [ -122.42046117782594, 37.788335748021495 ], [ -122.42046654224396, 37.788352705583755 ], [ -122.42062747478487, 37.788331508630314 ], [ -122.42062211036684, 37.7883145510632 ], [ -122.42071866989137, 37.78830183288528 ], [ -122.42073476314546, 37.78838238130839 ], [ -122.42073476314546, 37.78838238130839 ], [ -122.42073476314545, 37.78838238130839 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4168187379837, 37.78852228099244 ], [ -122.41667926311493, 37.78853923851192 ], [ -122.41663634777069, 37.7883145510632 ], [ -122.41677045822144, 37.78830183288528 ], [ -122.41681873798369, 37.78852228099244 ], [ -122.41681873798369, 37.78852228099244 ], [ -122.4168187379837, 37.78852228099244 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42134630680084, 37.78846292964368 ], [ -122.42118000984192, 37.78848412655941 ], [ -122.42114245891571, 37.78832302984724 ], [ -122.42131412029268, 37.78829759349217 ], [ -122.42134630680086, 37.78846292964368 ], [ -122.42134630680086, 37.78846292964368 ], [ -122.42134630680084, 37.78846292964368 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42018759250641, 37.78862826542526 ], [ -122.41989254951476, 37.788666419783866 ], [ -122.41982281208038, 37.788335748021495 ], [ -122.42011785507202, 37.78829759349217 ], [ -122.42018759250641, 37.78862826542526 ], [ -122.42018759250641, 37.78862826542526 ], [ -122.42018759250641, 37.78862826542526 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41235554218292, 37.78837814191988 ], [ -122.41220533847809, 37.78839509947241 ], [ -122.41219997406006, 37.788373902531134 ], [ -122.4121356010437, 37.78838238130839 ], [ -122.41214096546173, 37.78840357824722 ], [ -122.41207122802734, 37.788412057021084 ], [ -122.41206586360931, 37.78839086008464 ], [ -122.41201758384706, 37.78839933885995 ], [ -122.41201758384706, 37.78842053579395 ], [ -122.41193175315857, 37.788429014565835 ], [ -122.41191029548645, 37.788331508630314 ], [ -122.41200149059296, 37.78831879045532 ], [ -122.41200685501099, 37.78833998741243 ], [ -122.41205513477325, 37.788335748021495 ], [ -122.41205513477325, 37.7883145510632 ], [ -122.41211950778961, 37.78830607227817 ], [ -122.41211950778961, 37.788327269238906 ], [ -122.41219460964203, 37.78831879045532 ], [ -122.412189245224, 37.7882933540988 ], [ -122.4123340845108, 37.7882763965229 ], [ -122.41235554218292, 37.78837814191988 ], [ -122.41235554218292, 37.78837814191988 ], [ -122.41235554218292, 37.78837814191988 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41343379020691, 37.78852652037268 ], [ -122.41317093372345, 37.78856467478382 ], [ -122.4131441116333, 37.7884586902598 ], [ -122.41318166255951, 37.78845021149131 ], [ -122.41314947605133, 37.78830607227817 ], [ -122.41337478160857, 37.78827215712833 ], [ -122.4134337902069, 37.78852652037268 ], [ -122.4134337902069, 37.78852652037268 ], [ -122.41343379020691, 37.78852652037268 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4207454919815, 37.78830183288528 ], [ -122.42071866989137, 37.78830183288528 ], [ -122.42062211036682, 37.7883145510632 ], [ -122.42046117782593, 37.788335748021495 ], [ -122.42036998271942, 37.78834846619357 ], [ -122.42035388946535, 37.78826367833844 ], [ -122.42072939872743, 37.78821704497665 ], [ -122.4207454919815, 37.78830183288528 ], [ -122.4207454919815, 37.78830183288528 ], [ -122.4207454919815, 37.78830183288528 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41216778755188, 37.78829759349217 ], [ -122.41191029548645, 37.788327269238906 ], [ -122.41189420223238, 37.788242481359454 ], [ -122.4121516942978, 37.78821704497665 ], [ -122.41216778755188, 37.78829759349217 ], [ -122.41216778755188, 37.78829759349217 ], [ -122.41216778755188, 37.78829759349217 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41742491722107, 37.78840781763428 ], [ -122.41739809513093, 37.788412057021084 ], [ -122.41733372211456, 37.78842053579395 ], [ -122.41732835769655, 37.78839933885995 ], [ -122.41710841655733, 37.78842477518002 ], [ -122.41710841655733, 37.78844597210669 ], [ -122.41701722145082, 37.7884586902598 ], [ -122.41697430610658, 37.788250960151764 ], [ -122.41738200187685, 37.788200087383245 ], [ -122.41739809513093, 37.78828063591724 ], [ -122.41737663745882, 37.78828487531134 ], [ -122.41739273071289, 37.78838238130839 ], [ -122.41741955280304, 37.78838238130839 ], [ -122.41741955280304, 37.78839086008464 ], [ -122.41742491722106, 37.78840781763428 ], [ -122.41742491722106, 37.78840781763428 ], [ -122.41742491722107, 37.78840781763428 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41748929023743, 37.78838238130839 ], [ -122.41741955280305, 37.78839086008464 ], [ -122.41741955280305, 37.78838238130839 ], [ -122.41739809513093, 37.78828063591724 ], [ -122.41738200187685, 37.788200087383245 ], [ -122.41745173931123, 37.78819584798428 ], [ -122.41748929023743, 37.78838238130839 ], [ -122.41748929023743, 37.78838238130839 ], [ -122.41748929023743, 37.78838238130839 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42098152637482, 37.788509562850294 ], [ -122.4207991361618, 37.78853499913242 ], [ -122.42076694965363, 37.78839933885995 ], [ -122.4207454919815, 37.78830183288528 ], [ -122.42072939872743, 37.78821704497665 ], [ -122.42091178894043, 37.78819160858508 ], [ -122.42098152637482, 37.788509562850294 ], [ -122.42098152637482, 37.788509562850294 ], [ -122.42098152637482, 37.788509562850294 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41761267185211, 37.788492605324016 ], [ -122.41751074790955, 37.78850532346909 ], [ -122.41748929023743, 37.78838238130839 ], [ -122.41745173931123, 37.78819584798428 ], [ -122.4175536632538, 37.78818312978595 ], [ -122.41756439208986, 37.78825519954756 ], [ -122.41753756999971, 37.78825519954756 ], [ -122.41753756999971, 37.78828063591724 ], [ -122.41756975650789, 37.7882763965229 ], [ -122.41759121418, 37.78839509947241 ], [ -122.41756439208986, 37.78839509947241 ], [ -122.41756975650789, 37.78842477518002 ], [ -122.41759657859804, 37.78842477518002 ], [ -122.4176073074341, 37.78847564779387 ], [ -122.41761267185211, 37.788492605324016 ], [ -122.41761267185211, 37.788492605324016 ], [ -122.41761267185211, 37.788492605324016 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41005420684814, 37.788556196027486 ], [ -122.40987181663515, 37.78857739291647 ], [ -122.4098289012909, 37.78837814191988 ], [ -122.40975379943848, 37.78838662069664 ], [ -122.40974843502046, 37.78834846619357 ], [ -122.40952849388124, 37.78837814191988 ], [ -122.40950167179109, 37.78824672075573 ], [ -122.40950167179109, 37.788242481359454 ], [ -122.40997910499574, 37.78818312978595 ], [ -122.41005420684816, 37.788556196027486 ], [ -122.41005420684816, 37.788556196027486 ], [ -122.41005420684814, 37.788556196027486 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4210673570633, 37.78850108408765 ], [ -122.42098152637482, 37.788509562850294 ], [ -122.42091178894043, 37.78819160858508 ], [ -122.42100298404694, 37.788178890386014 ], [ -122.4210673570633, 37.78850108408765 ], [ -122.4210673570633, 37.78850108408765 ], [ -122.4210673570633, 37.78850108408765 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41482317447662, 37.78833998741243 ], [ -122.41474270820619, 37.78834846619357 ], [ -122.41470515727998, 37.78818736918563 ], [ -122.41479098796846, 37.78817465098585 ], [ -122.41482317447664, 37.78833998741243 ], [ -122.41482317447664, 37.78833998741243 ], [ -122.41482317447662, 37.78833998741243 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42118000984192, 37.78848412655941 ], [ -122.4210673570633, 37.78850108408765 ], [ -122.42100298404694, 37.788178890386014 ], [ -122.42111027240753, 37.788166172184766 ], [ -122.42114245891571, 37.78832302984724 ], [ -122.42118000984192, 37.78848412655941 ], [ -122.42118000984192, 37.78848412655941 ], [ -122.42118000984192, 37.78848412655941 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41780042648315, 37.78845445087567 ], [ -122.4176073074341, 37.78847564779387 ], [ -122.41759657859804, 37.78842477518002 ], [ -122.41759121418, 37.78839509947241 ], [ -122.41756975650789, 37.7882763965229 ], [ -122.41756439208986, 37.78825519954756 ], [ -122.4175536632538, 37.78818312978595 ], [ -122.41774678230287, 37.78815769338271 ], [ -122.41776823997499, 37.78827215712833 ], [ -122.41771459579469, 37.78828063591724 ], [ -122.41771459579469, 37.78826367833842 ], [ -122.41768240928651, 37.78826791773349 ], [ -122.41769850254059, 37.78836966314214 ], [ -122.41773068904878, 37.78836542375292 ], [ -122.41773068904878, 37.788356944973714 ], [ -122.41777896881104, 37.78834846619357 ], [ -122.41780042648315, 37.78845445087567 ], [ -122.41780042648315, 37.78845445087567 ], [ -122.41780042648315, 37.78845445087567 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41464614868164, 37.788361184363445 ], [ -122.41458177566528, 37.78836966314214 ], [ -122.41453886032104, 37.788166172184766 ], [ -122.4146032333374, 37.78815769338271 ], [ -122.41464614868164, 37.788361184363445 ], [ -122.41464614868164, 37.788361184363445 ], [ -122.41464614868164, 37.788361184363445 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41243600845337, 37.78824672075573 ], [ -122.41237163543701, 37.788250960151764 ], [ -122.41235554218292, 37.78815769338271 ], [ -122.41241991519928, 37.78815345398132 ], [ -122.41243600845337, 37.78824672075573 ], [ -122.41243600845337, 37.78824672075573 ], [ -122.41243600845337, 37.78824672075573 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41795599460602, 37.788479887176756 ], [ -122.4178272485733, 37.78849684470596 ], [ -122.41782188415527, 37.7884586902598 ], [ -122.41780042648315, 37.78846292964368 ], [ -122.41780042648315, 37.78845445087567 ], [ -122.41777896881104, 37.78834846619357 ], [ -122.41776823997498, 37.78827215712833 ], [ -122.41774678230286, 37.78815769338271 ], [ -122.4178272485733, 37.78814921457968 ], [ -122.41783797740936, 37.78822128437439 ], [ -122.41784870624542, 37.78828063591724 ], [ -122.4178272485733, 37.78828487531134 ], [ -122.41783797740936, 37.788327269238906 ], [ -122.41784870624542, 37.788327269238906 ], [ -122.41785407066345, 37.788361184363445 ], [ -122.41780579090118, 37.78836542375292 ], [ -122.4178111553192, 37.78838662069664 ], [ -122.41785943508147, 37.78838238130839 ], [ -122.41787016391753, 37.78842053579395 ], [ -122.41793990135191, 37.78840781763428 ], [ -122.417955994606, 37.788479887176756 ], [ -122.417955994606, 37.788479887176756 ], [ -122.41795599460602, 37.788479887176756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42131412029266, 37.78829759349217 ], [ -122.42114245891571, 37.78832302984724 ], [ -122.42111027240752, 37.788166172184766 ], [ -122.42127656936644, 37.78814497517779 ], [ -122.42131412029265, 37.78829759349217 ], [ -122.42131412029265, 37.78829759349217 ], [ -122.42131412029266, 37.78829759349217 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41796135902405, 37.78834422680312 ], [ -122.41786479949951, 37.78835694497374 ], [ -122.41784870624542, 37.78828063591724 ], [ -122.41787552833557, 37.78828063591724 ], [ -122.41786479949951, 37.78821704497665 ], [ -122.41783797740936, 37.78822128437439 ], [ -122.4178272485733, 37.78814921457968 ], [ -122.41792380809784, 37.78813649637332 ], [ -122.41793990135193, 37.78821280557867 ], [ -122.41791307926178, 37.78821704497665 ], [ -122.41792380809784, 37.7882763965229 ], [ -122.41795063018799, 37.78827215712833 ], [ -122.41796135902405, 37.78834422680312 ], [ -122.41796135902405, 37.78834422680312 ], [ -122.41796135902405, 37.78834422680312 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42144286632538, 37.78845021149131 ], [ -122.42134630680084, 37.78846292964368 ], [ -122.42131412029266, 37.78829759349217 ], [ -122.42127656936646, 37.78814497517779 ], [ -122.421373128891, 37.78813225697071 ], [ -122.42142140865326, 37.78836118436342 ], [ -122.42144286632538, 37.78845021149128 ], [ -122.42144286632538, 37.78845021149128 ], [ -122.42144286632538, 37.78845021149131 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41218388080597, 37.78821280557867 ], [ -122.41189420223236, 37.788242481359454 ], [ -122.41187810897827, 37.788161932783865 ], [ -122.41216778755188, 37.78812801756788 ], [ -122.41218388080597, 37.78821280557867 ], [ -122.41218388080597, 37.78821280557867 ], [ -122.41218388080597, 37.78821280557867 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41074621677399, 37.78846292964368 ], [ -122.41026341915129, 37.78852652037268 ], [ -122.41018831729887, 37.788161932783865 ], [ -122.41067111492157, 37.78809834174111 ], [ -122.41074621677399, 37.78846292964368 ], [ -122.41074621677399, 37.78846292964368 ], [ -122.41074621677399, 37.78846292964368 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42171108722687, 37.78832302984724 ], [ -122.42163598537445, 37.788331508630314 ], [ -122.42159843444824, 37.78833998741243 ], [ -122.42151260375977, 37.78834846619357 ], [ -122.42142140865326, 37.788361184363445 ], [ -122.421373128891, 37.788132256970734 ], [ -122.4216628074646, 37.788089862931294 ], [ -122.42171108722687, 37.78832302984724 ], [ -122.42171108722687, 37.78832302984724 ], [ -122.42171108722687, 37.78832302984724 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41843342781067, 37.7882933540988 ], [ -122.41822957992555, 37.78831879045532 ], [ -122.41819202899934, 37.788106820549984 ], [ -122.41839587688446, 37.78808138412048 ], [ -122.41843342781067, 37.7882933540988 ], [ -122.41843342781067, 37.7882933540988 ], [ -122.41843342781067, 37.7882933540988 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41887867450714, 37.78834846619357 ], [ -122.41868555545807, 37.78836966314214 ], [ -122.41862118244171, 37.788047468867504 ], [ -122.41881966590881, 37.78802627182651 ], [ -122.41883039474487, 37.788085623525994 ], [ -122.4188357591629, 37.78812377816479 ], [ -122.41876602172852, 37.788132256970734 ], [ -122.41877138614655, 37.788161932783865 ], [ -122.41884112358092, 37.78815345398132 ], [ -122.41885185241698, 37.788225523771885 ], [ -122.41885721683501, 37.78823824196291 ], [ -122.41878747940062, 37.78824672075573 ], [ -122.41879284381865, 37.78826791773351 ], [ -122.41885721683501, 37.788259438943136 ], [ -122.41886258125304, 37.78828487531134 ], [ -122.4188786745071, 37.78834846619357 ], [ -122.4188786745071, 37.78834846619357 ], [ -122.41887867450714, 37.78834846619357 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41131484508514, 37.78839086008464 ], [ -122.410746216774, 37.78846292964368 ], [ -122.41067111492157, 37.78809834174111 ], [ -122.41123974323273, 37.78802627182651 ], [ -122.41131484508514, 37.78839086008464 ], [ -122.41131484508514, 37.78839086008464 ], [ -122.41131484508514, 37.78839086008464 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41655051708221, 37.78812377816479 ], [ -122.4164754152298, 37.788132256970734 ], [ -122.41645932197571, 37.788022032417594 ], [ -122.4165290594101, 37.788013553599 ], [ -122.41655051708221, 37.78812377816479 ], [ -122.41655051708221, 37.78812377816479 ], [ -122.41655051708221, 37.78812377816479 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41900205612183, 37.788331508630314 ], [ -122.41887867450714, 37.78834846619357 ], [ -122.41886258125305, 37.78828487531132 ], [ -122.4188894033432, 37.78828063591724 ], [ -122.41887867450714, 37.788221284374366 ], [ -122.41885185241699, 37.788225523771885 ], [ -122.41884112358093, 37.78815345398132 ], [ -122.41884112358093, 37.78814921457968 ], [ -122.41886258125305, 37.78814497517779 ], [ -122.41885185241699, 37.788085623525994 ], [ -122.41883039474487, 37.788085623525994 ], [ -122.41881966590881, 37.78802627182648 ], [ -122.41893768310548, 37.78800931418932 ], [ -122.41895377635956, 37.78808138412046 ], [ -122.41893231868744, 37.788085623525994 ], [ -122.41894841194153, 37.78816193278384 ], [ -122.4189645051956, 37.78815769338271 ], [ -122.41898059844969, 37.788221284374366 ], [ -122.41895914077757, 37.788225523771885 ], [ -122.41896986961363, 37.7882763965229 ], [ -122.41899132728575, 37.78827215712831 ], [ -122.41900205612181, 37.788331508630314 ], [ -122.41900205612181, 37.788331508630314 ], [ -122.41900205612183, 37.788331508630314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4207991361618, 37.788106820549984 ], [ -122.42070257663727, 37.78812377816479 ], [ -122.42067575454713, 37.788005074779434 ], [ -122.42077767848969, 37.78799235654826 ], [ -122.4207991361618, 37.788106820549984 ], [ -122.4207991361618, 37.788106820549984 ], [ -122.4207991361618, 37.788106820549984 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41336941719055, 37.78825519954756 ], [ -122.41305828094482, 37.7882933540988 ], [ -122.41304218769073, 37.78819584798428 ], [ -122.41305828094482, 37.78819160858508 ], [ -122.41302609443665, 37.7880305112352 ], [ -122.41331577301025, 37.78799235654826 ], [ -122.41336941719055, 37.78825519954756 ], [ -122.41336941719055, 37.78825519954756 ], [ -122.41336941719055, 37.78825519954756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41915762424469, 37.7883145510632 ], [ -122.41900205612183, 37.788331508630314 ], [ -122.41899132728577, 37.78827215712833 ], [ -122.4189805984497, 37.788221284374366 ], [ -122.41896450519562, 37.78815769338271 ], [ -122.41895377635956, 37.78808138412046 ], [ -122.41893768310548, 37.78800931418932 ], [ -122.41909325122833, 37.78799235654826 ], [ -122.41910934448242, 37.78808138412046 ], [ -122.4191415309906, 37.788221284374366 ], [ -122.41915762424469, 37.78831455106317 ], [ -122.41915762424469, 37.78831455106317 ], [ -122.41915762424469, 37.7883145510632 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42061138153076, 37.788132256970734 ], [ -122.42033779621124, 37.78817041158543 ], [ -122.42030560970306, 37.788022032417594 ], [ -122.42039680480957, 37.788009314189345 ], [ -122.42044508457184, 37.788000835369274 ], [ -122.4205094575882, 37.78799235654826 ], [ -122.42058455944061, 37.787983877726255 ], [ -122.42061138153076, 37.788132256970734 ], [ -122.42061138153076, 37.788132256970734 ], [ -122.42061138153076, 37.788132256970734 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41171717643738, 37.788479887176756 ], [ -122.41140067577362, 37.788518041611965 ], [ -122.4113792181015, 37.78842053579395 ], [ -122.41137385368347, 37.78839933885995 ], [ -122.41132020950317, 37.78840357824722 ], [ -122.41131484508514, 37.78839086008464 ], [ -122.41123974323273, 37.78802627182651 ], [ -122.41160988807678, 37.787975398903306 ], [ -122.41171717643738, 37.788479887176756 ], [ -122.41171717643738, 37.788479887176756 ], [ -122.41171717643738, 37.788479887176756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41629302501678, 37.78815769338271 ], [ -122.41621792316435, 37.788166172184766 ], [ -122.41618573665617, 37.787975398903285 ], [ -122.4162608385086, 37.78796692007934 ], [ -122.41629302501678, 37.78815769338271 ], [ -122.41629302501678, 37.78815769338271 ], [ -122.41629302501678, 37.78815769338271 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.419393658638, 37.78828487531132 ], [ -122.4191576242447, 37.7883145510632 ], [ -122.41914153099061, 37.78822128437439 ], [ -122.41916298866273, 37.78822128437439 ], [ -122.41913616657259, 37.7880771447147 ], [ -122.41910934448246, 37.78808138412048 ], [ -122.41909325122838, 37.78799235654826 ], [ -122.41932392120366, 37.78796268066702 ], [ -122.41934001445775, 37.78805170827497 ], [ -122.41931855678563, 37.7880559476822 ], [ -122.41934537887578, 37.788200087383245 ], [ -122.41937756538395, 37.78819584798428 ], [ -122.41937756538395, 37.78822128437439 ], [ -122.41939365863801, 37.78828487531134 ], [ -122.41939365863801, 37.78828487531134 ], [ -122.419393658638, 37.78828487531132 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42295563220978, 37.78827215712833 ], [ -122.42219388484955, 37.788373902531134 ], [ -122.42212951183318, 37.78805170827497 ], [ -122.42288589477538, 37.78794996242857 ], [ -122.42295563220976, 37.78827215712833 ], [ -122.42295563220976, 37.78827215712833 ], [ -122.42295563220978, 37.78827215712833 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4195545911789, 37.78826367833844 ], [ -122.419393658638, 37.78828487531134 ], [ -122.41937756538391, 37.78822128437439 ], [ -122.41940438747406, 37.78821704497665 ], [ -122.41937756538391, 37.78807290530868 ], [ -122.41934537887573, 37.7880771447147 ], [ -122.4193400144577, 37.78805170827497 ], [ -122.41932392120363, 37.78796268066702 ], [ -122.4194473028183, 37.78794996242857 ], [ -122.41949021816255, 37.78794996242857 ], [ -122.41951167583467, 37.78804322945978 ], [ -122.41948485374452, 37.78804322945978 ], [ -122.4195170402527, 37.78821280557867 ], [ -122.41954386234285, 37.788208566180444 ], [ -122.41955459117891, 37.78826367833844 ], [ -122.41955459117891, 37.78826367833844 ], [ -122.4195545911789, 37.78826367833844 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4205094575882, 37.78799235654826 ], [ -122.42044508457184, 37.788000835369274 ], [ -122.42044508457184, 37.78798811713739 ], [ -122.42039680480957, 37.78799235654826 ], [ -122.42039680480957, 37.788009314189345 ], [ -122.42030560970306, 37.788022032417594 ], [ -122.420294880867, 37.78796268066702 ], [ -122.42042362689972, 37.78794996242857 ], [ -122.42049872875215, 37.78794996242857 ], [ -122.42050409317017, 37.787979638314894 ], [ -122.4205094575882, 37.78799235654826 ], [ -122.4205094575882, 37.78799235654826 ], [ -122.4205094575882, 37.78799235654826 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42315411567688, 37.788242481359454 ], [ -122.42295563220978, 37.78826791773351 ], [ -122.42288589477539, 37.78794996242857 ], [ -122.42291271686554, 37.78794996242857 ], [ -122.42309510707854, 37.78794996242857 ], [ -122.42315411567687, 37.788242481359454 ], [ -122.42315411567687, 37.788242481359454 ], [ -122.42315411567688, 37.788242481359454 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41207659244537, 37.788085623525994 ], [ -122.41186738014221, 37.78811105995404 ], [ -122.41183519363403, 37.78794996242857 ], [ -122.41184055805206, 37.78794996242857 ], [ -122.41205513477325, 37.78794996242857 ], [ -122.41207659244537, 37.788085623525994 ], [ -122.41207659244537, 37.788085623525994 ], [ -122.41207659244537, 37.788085623525994 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41972625255585, 37.788242481359454 ], [ -122.4195545911789, 37.78826367833844 ], [ -122.41954386234283, 37.788208566180444 ], [ -122.41951167583466, 37.78804322945978 ], [ -122.41949021816254, 37.78794996242857 ], [ -122.41966724395752, 37.78794996242857 ], [ -122.41967797279358, 37.788005074779434 ], [ -122.41970479488371, 37.78814921457968 ], [ -122.41972625255583, 37.788242481359454 ], [ -122.41972625255583, 37.788242481359454 ], [ -122.41972625255585, 37.788242481359454 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4164754152298, 37.788132256970734 ], [ -122.41638422012329, 37.788144975177815 ], [ -122.4163466691971, 37.78794996242857 ], [ -122.41644322872163, 37.78794996242857 ], [ -122.41647541522981, 37.788132256970734 ], [ -122.41647541522981, 37.788132256970734 ], [ -122.4164754152298, 37.788132256970734 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41668999195099, 37.788106820549984 ], [ -122.4165505170822, 37.78812377816479 ], [ -122.41651833057402, 37.78794996242857 ], [ -122.41666316986083, 37.78794996242857 ], [ -122.41668999195097, 37.788106820549984 ], [ -122.41668999195097, 37.788106820549984 ], [ -122.41668999195099, 37.788106820549984 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41220533847809, 37.78807290530868 ], [ -122.4120819568634, 37.788085623525994 ], [ -122.41205513477325, 37.78794996242857 ], [ -122.41217851638794, 37.78794996242857 ], [ -122.41220533847809, 37.78807290530868 ], [ -122.41220533847809, 37.78807290530868 ], [ -122.41220533847809, 37.78807290530868 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41638422012329, 37.78814497517779 ], [ -122.41629302501678, 37.78815345398132 ], [ -122.41625547409059, 37.78794996242854 ], [ -122.4163466691971, 37.78794996242854 ], [ -122.41638422012329, 37.78814497517779 ], [ -122.41638422012329, 37.78814497517779 ], [ -122.41638422012329, 37.78814497517779 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41236627101898, 37.78805170827497 ], [ -122.41220533847809, 37.78807290530868 ], [ -122.41218388080597, 37.78794996242857 ], [ -122.41234481334686, 37.78794996242857 ], [ -122.41236627101898, 37.78805170827497 ], [ -122.41236627101898, 37.78805170827497 ], [ -122.41236627101898, 37.78805170827497 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42349207401276, 37.78819584798428 ], [ -122.42315411567688, 37.788242481359454 ], [ -122.42309510707855, 37.78794996242857 ], [ -122.42343842983246, 37.78794996242857 ], [ -122.42349207401276, 37.78819584798428 ], [ -122.42349207401276, 37.78819584798428 ], [ -122.42349207401276, 37.78819584798428 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42010176181793, 37.78819584798428 ], [ -122.41972625255585, 37.788242481359454 ], [ -122.41970479488373, 37.78814921457968 ], [ -122.41974234580994, 37.788144975177815 ], [ -122.41971552371979, 37.788000835369274 ], [ -122.4196779727936, 37.788005074779434 ], [ -122.41966724395753, 37.78794996242857 ], [ -122.42005348205568, 37.78794996242857 ], [ -122.42010176181793, 37.78819584798428 ], [ -122.42010176181793, 37.78819584798428 ], [ -122.42010176181793, 37.78819584798428 ], [ -122.41993546485901, 37.78811529935787 ], [ -122.41990327835083, 37.787979638314894 ], [ -122.41985499858858, 37.78798811713739 ], [ -122.41988718509675, 37.78812377816479 ], [ -122.41993546485901, 37.78811529935787 ], [ -122.41993546485901, 37.78811529935787 ], [ -122.42010176181793, 37.78819584798428 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41254329681396, 37.7880305112352 ], [ -122.41239845752716, 37.788047468867504 ], [ -122.41238236427309, 37.78794996242857 ], [ -122.41252720355989, 37.78794996242857 ], [ -122.41254329681396, 37.7880305112352 ], [ -122.41254329681396, 37.7880305112352 ], [ -122.41254329681396, 37.7880305112352 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41268277168274, 37.78801355359897 ], [ -122.41254329681395, 37.7880305112352 ], [ -122.41252720355988, 37.78794996242857 ], [ -122.41266667842865, 37.78794996242857 ], [ -122.41268277168274, 37.788013553599 ], [ -122.41268277168274, 37.788013553599 ], [ -122.41268277168274, 37.78801355359897 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41276323795319, 37.788005074779434 ], [ -122.41268277168275, 37.78801355359897 ], [ -122.4126720428467, 37.78794996242854 ], [ -122.41275250911713, 37.78794996242854 ], [ -122.41276323795319, 37.788005074779434 ], [ -122.41276323795319, 37.788005074779434 ], [ -122.41276323795319, 37.788005074779434 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42042362689972, 37.78794996242857 ], [ -122.420294880867, 37.78796268066702 ], [ -122.42028951644897, 37.78794996242857 ], [ -122.42042362689972, 37.78794996242857 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42057919502258, 37.78797115949147 ], [ -122.42050409317017, 37.787979638314894 ], [ -122.42049872875215, 37.78794996242857 ], [ -122.42057383060457, 37.78794996242857 ], [ -122.42057919502258, 37.78797115949147 ], [ -122.42057919502258, 37.78797115949147 ], [ -122.42057919502258, 37.78797115949147 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41301000118256, 37.78797115949147 ], [ -122.41279542446136, 37.78799659595888 ], [ -122.4127846956253, 37.78794996242857 ], [ -122.41300463676454, 37.78794996242857 ], [ -122.41301000118256, 37.78797115949147 ], [ -122.41301000118256, 37.78797115949147 ], [ -122.41301000118256, 37.78797115949147 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42070257663727, 37.78812377816479 ], [ -122.42061138153076, 37.788132256970734 ], [ -122.42058455944063, 37.787983877726255 ], [ -122.4205791950226, 37.78797115949147 ], [ -122.4205738306046, 37.78794996242857 ], [ -122.42066502571107, 37.78794996242857 ], [ -122.42067575454713, 37.788005074779434 ], [ -122.42070257663728, 37.78812377816479 ], [ -122.42070257663728, 37.78812377816479 ], [ -122.42070257663727, 37.78812377816479 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41314947605133, 37.78795420184161 ], [ -122.41301000118254, 37.78797115949147 ], [ -122.41300463676453, 37.78794996242857 ], [ -122.41314947605133, 37.78794996242857 ], [ -122.41314947605133, 37.78795420184161 ], [ -122.41314947605133, 37.78795420184161 ], [ -122.41314947605133, 37.78795420184161 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42077767848969, 37.78799235654826 ], [ -122.42067575454713, 37.788005074779434 ], [ -122.42066502571106, 37.78794996242857 ], [ -122.42076694965363, 37.78794996242857 ], [ -122.42077767848969, 37.78799235654826 ], [ -122.42077767848969, 37.78799235654826 ], [ -122.42077767848969, 37.78799235654826 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41320312023163, 37.78794996242857 ], [ -122.41314947605133, 37.78795420184161 ], [ -122.41314947605133, 37.78794996242857 ], [ -122.41320312023163, 37.78794996242857 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42093861103058, 37.788089862931294 ], [ -122.4207991361618, 37.788106820549984 ], [ -122.42077767848967, 37.78799235654826 ], [ -122.42076694965361, 37.78794996242857 ], [ -122.42091178894042, 37.78794996242857 ], [ -122.42093861103056, 37.788089862931294 ], [ -122.42093861103056, 37.788089862931294 ], [ -122.42093861103058, 37.788089862931294 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4104779958725, 37.78794996242857 ], [ -122.41015613079071, 37.78798811713739 ], [ -122.41014540195465, 37.78794996242857 ], [ -122.4104779958725, 37.78794996242857 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42123365402222, 37.78805170827497 ], [ -122.42093861103058, 37.788089862931294 ], [ -122.42091178894043, 37.78794996242857 ], [ -122.4212121963501, 37.78794996242857 ], [ -122.42123365402222, 37.78805170827497 ], [ -122.42123365402222, 37.78805170827497 ], [ -122.42123365402222, 37.78805170827497 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42164671421051, 37.788000835369274 ], [ -122.42123365402222, 37.78805170827499 ], [ -122.4212121963501, 37.78794996242857 ], [ -122.42163598537445, 37.78794996242857 ], [ -122.42164671421051, 37.788000835369296 ], [ -122.42164671421051, 37.788000835369296 ], [ -122.42164671421051, 37.788000835369274 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40990936756134, 37.78799659595888 ], [ -122.4095606803894, 37.78803899005183 ], [ -122.40954458713531, 37.78794996242857 ], [ -122.40950167179108, 37.78794996242857 ], [ -122.40989863872528, 37.78794996242857 ], [ -122.40990936756134, 37.78799659595888 ], [ -122.40990936756134, 37.78799659595888 ], [ -122.40990936756134, 37.78799659595888 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41431891918182, 37.78802627182651 ], [ -122.41402387619019, 37.78806442649594 ], [ -122.41400241851807, 37.78794996242857 ], [ -122.41430282592772, 37.78794996242857 ], [ -122.41431891918181, 37.78802627182651 ], [ -122.41431891918181, 37.78802627182651 ], [ -122.41431891918182, 37.78802627182651 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41458177566528, 37.78795844125444 ], [ -122.41441011428833, 37.787983877726255 ], [ -122.41439938545227, 37.78794996242857 ], [ -122.41457641124725, 37.78794996242857 ], [ -122.41458177566527, 37.78795844125444 ], [ -122.41458177566527, 37.78795844125444 ], [ -122.41458177566528, 37.78795844125444 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41813838481903, 37.787983877726255 ], [ -122.41792917251587, 37.788009314189345 ], [ -122.41791844367981, 37.78794996242857 ], [ -122.41813302040099, 37.78794996242857 ], [ -122.41813838481902, 37.787983877726255 ], [ -122.41813838481902, 37.787983877726255 ], [ -122.41813838481903, 37.787983877726255 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40951776504517, 37.78804322945978 ], [ -122.40950167179108, 37.788047468867504 ], [ -122.40950167179108, 37.78794996242857 ], [ -122.40950167179108, 37.78795844125444 ], [ -122.40951776504517, 37.78804322945978 ], [ -122.40951776504517, 37.78804322945978 ], [ -122.40951776504517, 37.78804322945978 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41784870624542, 37.796335045920344 ], [ -122.41178691387177, 37.797110766421454 ], [ -122.41127192974089, 37.7971785885917 ] ] }, "properties": { "class": "main", "layer": -1, "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.411288022995, 37.797254888458816 ], [ -122.41180300712585, 37.797187066358596 ], [ -122.41785407066345, 37.79641558558629 ] ] }, "properties": { "class": "main", "layer": -1, "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41441011428833, 37.79789071761994 ] }, "properties": { "class": "turning_circle" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42340624332428, 37.801023156054995 ] }, "properties": { "class": "turning_circle" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4150002002716, 37.80457507030913 ], [ -122.41506457328796, 37.80485056964608 ], [ -122.41512894630434, 37.805248982254014 ] ] }, "properties": { "class": "street_limited", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40991473197937, 37.79367718768535 ], [ -122.40993618965149, 37.793804360113924 ] ] }, "properties": { "class": "street_limited", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41068184375763, 37.79168903025815 ], [ -122.41062283515932, 37.79175685740575 ], [ -122.41042435169221, 37.791778053376625 ], [ -122.41041898727418, 37.79173566142882 ], [ -122.41057991981508, 37.79156185418857 ], [ -122.41064429283146, 37.791553375776175 ], [ -122.41065502166752, 37.791553375776175 ], [ -122.41068184375764, 37.79168903025815 ], [ -122.41068184375764, 37.79168903025815 ], [ -122.41068184375763, 37.79168903025815 ] ] ] }, "properties": { "class": "street_limited", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41658806800842, 37.79902671876394 ], [ -122.41568148136139, 37.79914540444266 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41773068904877, 37.799874469428296 ], [ -122.41826176643372, 37.799781217331464 ], [ -122.41855680942535, 37.799743068712466 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41544544696808, 37.79176533579482 ], [ -122.41552591323853, 37.7921807756676 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42077767848969, 37.79047660949114 ], [ -122.42078840732574, 37.790531719957585 ], [ -122.42080450057983, 37.79061226595001 ], [ -122.4208152294159, 37.790671615572435 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41262376308441, 37.80209976863108 ], [ -122.41266667842865, 37.80205738260592 ], [ -122.41273105144501, 37.80200228073689 ], [ -122.4127846956253, 37.80195565604636 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43091642856598, 37.79113369314532 ], [ -122.4315655231476, 37.79104466925053 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41214096546173, 37.80220573358751 ], [ -122.4121570587158, 37.80230322121314 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4129992723465, 37.80210400723224 ], [ -122.41295099258423, 37.8020743370189 ], [ -122.41288125514986, 37.8020234737683 ], [ -122.41286516189577, 37.80201499655647 ], [ -122.41278469562532, 37.80195565604636 ], [ -122.41270422935487, 37.801904792714005 ], [ -122.41265594959263, 37.801866645191794 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41209268569946, 37.8019810876994 ], [ -122.41214096546173, 37.80220573358751 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41576731204987, 37.78929384418857 ], [ -122.41574585437775, 37.78917938202556 ], [ -122.41569757461548, 37.7889504571676 ], [ -122.4157726764679, 37.78894197845551 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41216778755188, 37.792227406527935 ], [ -122.412189245224, 37.79222316736003 ], [ -122.41219997406006, 37.7922146890235 ], [ -122.41221070289612, 37.79220621068598 ], [ -122.41222143173218, 37.792197732347496 ], [ -122.41222679615021, 37.792185014837955 ], [ -122.41222679615021, 37.792172297326196 ], [ -122.41222679615021, 37.79215957981227 ], [ -122.41222143173218, 37.79214262312365 ], [ -122.41221070289612, 37.79212990560461 ], [ -122.41219997406006, 37.79212142725738 ], [ -122.412189245224, 37.79211718808339 ], [ -122.41217315196992, 37.79211294890915 ], [ -122.41215705871583, 37.79210870973468 ], [ -122.41214632987977, 37.79210870973468 ], [ -122.41212487220766, 37.79211294890915 ], [ -122.41210877895357, 37.79212142725738 ], [ -122.4120980501175, 37.79212990560461 ], [ -122.4120926856995, 37.79213838395086 ], [ -122.41208195686345, 37.79215534064047 ], [ -122.41208195686345, 37.792163818983845 ], [ -122.41208195686345, 37.7921807756676 ], [ -122.41208732128145, 37.79219349317789 ], [ -122.4120980501175, 37.79220621068598 ], [ -122.41210877895357, 37.7922146890235 ], [ -122.41212487220766, 37.79222316736003 ], [ -122.41213560104372, 37.79222316736003 ], [ -122.4121516942978, 37.792227406527935 ], [ -122.41216778755188, 37.792227406527935 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41856217384338, 37.80407916891281 ], [ -122.41857290267944, 37.80414274620098 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42814838886261, 37.791498266071706 ], [ -122.42822349071504, 37.7918458804425 ], [ -122.42822349071504, 37.791985773569245 ], [ -122.42816984653473, 37.79221044985483 ], [ -122.42812693119049, 37.79226979819359 ], [ -122.4280893802643, 37.792392733886466 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41522550582886, 37.799687965116924 ], [ -122.41532742977142, 37.80016694115013 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41021513938904, 37.80060776590507 ], [ -122.4101722240448, 37.800637436707525 ], [ -122.41009175777435, 37.8006331980222 ], [ -122.41001665592194, 37.80061200459185 ], [ -122.4099415540695, 37.80055690164453 ], [ -122.40989327430725, 37.8005357081923 ], [ -122.40979135036469, 37.80053994688323 ], [ -122.40966796875, 37.80055690164453 ], [ -122.40963578224182, 37.80056961771293 ], [ -122.4095606803894, 37.800620481964714 ], [ -122.40952849388123, 37.80065015276208 ], [ -122.40950167179108, 37.80067982354754 ], [ -122.40945875644684, 37.800760358476495 ], [ -122.40945339202881, 37.80081969994693 ], [ -122.40945875644684, 37.800849370664245 ], [ -122.40948021411896, 37.80095109874748 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43000447750092, 37.80373585061088 ], [ -122.4299830198288, 37.80362564933614 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40948021411896, 37.80095109874748 ], [ -122.40954995155334, 37.80103163338067 ], [ -122.40965187549591, 37.80109097463317 ], [ -122.40977525711058, 37.80112064524154 ], [ -122.4098879098892, 37.80112064524154 ], [ -122.41000592708588, 37.80112064524154 ], [ -122.41010248661041, 37.801116406583915 ], [ -122.41011857986449, 37.80119270238364 ], [ -122.41014003753662, 37.80128171405037 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41630375385284, 37.8038630057236 ], [ -122.41663098335266, 37.80382062071034 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41010248661041, 37.801116406583915 ], [ -122.41012394428253, 37.80107825865449 ], [ -122.41018295288086, 37.801023156054995 ], [ -122.41027414798735, 37.80096805341439 ], [ -122.4103707075119, 37.80097653074639 ], [ -122.41045653820038, 37.80099772407214 ], [ -122.41050481796265, 37.80103163338067 ], [ -122.41052627563477, 37.8010824973143 ], [ -122.41053164005278, 37.80113759986951 ], [ -122.41054773330687, 37.80123085025394 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41392731666565, 37.798958898290465 ], [ -122.41461396217346, 37.798891077754746 ], [ -122.41466760635376, 37.79884021231206 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41780042648315, 37.801256282156544 ], [ -122.41832077503204, 37.80117998642249 ], [ -122.41840660572053, 37.801196941036885 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41903424263, 37.80279489597278 ], [ -122.41907715797424, 37.80301530083702 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41468906402588, 37.799276806221656 ], [ -122.41402924060822, 37.79937005895526 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41283297538757, 37.7980772264691 ], [ -122.41373419761658, 37.797950061395746 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43018686771393, 37.803684988504514 ], [ -122.43017077445985, 37.803600218249386 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42754757404327, 37.79150250528121 ], [ -122.42752611637115, 37.79141348183073 ], [ -122.42750465869904, 37.79135413280419 ], [ -122.42748320102692, 37.79133293671171 ], [ -122.42748856544493, 37.79126086995186 ], [ -122.42749929428099, 37.791171846210275 ], [ -122.42747247219086, 37.791095540060674 ], [ -122.42748320102692, 37.79098955916663 ], [ -122.42747783660889, 37.79081151092244 ], [ -122.42745101451874, 37.79066737631527 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42038607597351, 37.801035872043144 ], [ -122.42086350917816, 37.800993485407474 ], [ -122.42109417915344, 37.800938382744725 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4287760257721, 37.7914261994731 ], [ -122.428759932518, 37.79132869749249 ], [ -122.42874383926393, 37.791235434608055 ], [ -122.42871701717378, 37.79109130082786 ], [ -122.42874920368196, 37.79090477434197 ], [ -122.42887258529665, 37.79072672589345 ], [ -122.42901742458345, 37.79055715554363 ], [ -122.42909252643587, 37.79045965241627 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41243064403534, 37.799764262392124 ], [ -122.41245210170746, 37.79976002365667 ], [ -122.41256475448608, 37.79976002365667 ], [ -122.41301000118256, 37.7996922038565 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42600798606873, 37.79188403313969 ], [ -122.42613136768341, 37.79187555476423 ], [ -122.42628157138824, 37.791837402062676 ], [ -122.42637276649475, 37.791807727725605 ], [ -122.42647469043732, 37.79176957498901 ], [ -122.42660343647003, 37.79170598705089 ], [ -122.4267429113388, 37.791650877460256 ], [ -122.42686092853548, 37.79163815985657 ], [ -122.42695212364197, 37.79163815985657 ], [ -122.42705941200258, 37.79162544225071 ], [ -122.4271720647812, 37.79162120304828 ], [ -122.4272793531418, 37.79158728941997 ], [ -122.4273866415024, 37.791549136569564 ], [ -122.42754757404332, 37.79150250528116 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42009103298187, 37.795987452670616 ], [ -122.4197906255722, 37.79603408112835 ], [ -122.41968333721161, 37.79604679797535 ], [ -122.4194473028183, 37.796084948503236 ], [ -122.41934537887575, 37.796097665341506 ], [ -122.41930246353151, 37.796097665341506 ], [ -122.41927027702332, 37.79609342639566 ], [ -122.4192649126053, 37.796072231662805 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42216169834137, 37.80196413326501 ], [ -122.42217779159546, 37.80193446299548 ], [ -122.42214024066925, 37.80175220250688 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41555273532867, 37.79338469026892 ], [ -122.41562247276306, 37.79369414402182 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42816984653473, 37.792210449854856 ], [ -122.42798745632172, 37.79224012403017 ], [ -122.4276602268219, 37.792282515688555 ], [ -122.426598072052, 37.792422407988575 ], [ -122.42638885974884, 37.792439364613 ], [ -122.42636740207672, 37.79232490732258 ], [ -122.4263834953308, 37.79226979819359 ], [ -122.42645323276518, 37.792227406527935 ], [ -122.42648541927336, 37.792176536497024 ], [ -122.42650151252745, 37.79211294890915 ], [ -122.42651224136351, 37.791990012750766 ], [ -122.42651760578151, 37.7919094682602 ], [ -122.42651760578151, 37.79181620610884 ], [ -122.42647469043727, 37.79176957498901 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41297245025635, 37.79691577733512 ], [ -122.41272032260893, 37.79694121072341 ], [ -122.41269886493681, 37.79691577733512 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43190348148346, 37.801569941568545 ], [ -122.43186056613922, 37.801374964252865 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43188202381134, 37.80324842065075 ], [ -122.43183374404907, 37.803028016482195 ], [ -122.43186056613922, 37.802909337042074 ], [ -122.43186056613922, 37.80279913453407 ], [ -122.43186056613922, 37.802663500452326 ], [ -122.43184983730316, 37.80251938896754 ], [ -122.43177473545074, 37.80245157170093 ], [ -122.43168890476227, 37.80239223154159 ], [ -122.43162453174591, 37.802379515786946 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43184983730316, 37.80251938896754 ], [ -122.43188202381134, 37.802413424461115 ], [ -122.43186593055727, 37.80231169839192 ], [ -122.43175327777864, 37.8022438809346 ], [ -122.43167817592622, 37.80231169839192 ], [ -122.43162453174591, 37.802379515786946 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43186593055725, 37.80231169839192 ], [ -122.43193566799162, 37.80226507389672 ], [ -122.43198394775389, 37.8022438809346 ], [ -122.43198394775389, 37.80212096163453 ], [ -122.43197858333588, 37.80209976863108 ], [ -122.43189275264739, 37.801667430033376 ], [ -122.43190348148345, 37.801569941568545 ], [ -122.43198394775389, 37.801569941568545 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43175327777863, 37.8022438809346 ], [ -122.43165135383606, 37.80216758622069 ], [ -122.43153870105743, 37.80209553002967 ], [ -122.4314421415329, 37.80209553002967 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43175327777863, 37.8022438809346 ], [ -122.43171036243439, 37.80201923516251 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42945194244385, 37.792218928191865 ], [ -122.42922127246857, 37.7921087097347 ], [ -122.42913544178008, 37.792049361266564 ], [ -122.42907106876372, 37.79200696947442 ], [ -122.4289584159851, 37.79188827232706 ], [ -122.42882966995238, 37.79171446544581 ], [ -122.42877602577208, 37.79142619947307 ], [ -122.42927491664885, 37.79134141514943 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42907106876373, 37.79200696947442 ], [ -122.42879211902618, 37.79199849111306 ], [ -122.42856681346895, 37.79202816537352 ], [ -122.42836296558382, 37.79208751385868 ], [ -122.42816984653474, 37.792210449854856 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42887258529663, 37.79072672589345 ], [ -122.42870092391968, 37.790786075423945 ], [ -122.42849171161652, 37.79083694641218 ], [ -122.42823421955109, 37.79085390340045 ], [ -122.42795526981354, 37.79083694641218 ], [ -122.42765486240387, 37.79074792215984 ], [ -122.42754757404327, 37.79065889780023 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41269886493683, 37.79691577733512 ], [ -122.41260766983032, 37.79691577733512 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41510212421417, 37.79343132036943 ], [ -122.41517186164856, 37.793770447487695 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40998446941376, 37.79419435419653 ], [ -122.40990400314332, 37.793808599191095 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41517186164856, 37.793770447487695 ], [ -122.41522014141083, 37.79402903086939 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41222143173218, 37.79248175615706 ], [ -122.41243064403534, 37.79245208207878 ], [ -122.41237163543703, 37.79214262312365 ], [ -122.41230726242067, 37.79184164125269 ], [ -122.41209805011749, 37.79186707638781 ], [ -122.41188883781433, 37.79189251151417 ], [ -122.41194784641266, 37.792197732347496 ], [ -122.41201221942902, 37.7925071910718 ], [ -122.41222143173218, 37.79248175615706 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41255939006805, 37.79211718808339 ], [ -122.41243600845337, 37.79213414477786 ], [ -122.41237163543701, 37.79214262312365 ], [ -122.41222679615021, 37.79215957981227 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4120819568634, 37.7921807756676 ], [ -122.41194784641266, 37.792197732347496 ], [ -122.41187810897827, 37.79220621068598 ], [ -122.41181910037996, 37.792210449854856 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4122428894043, 37.79259197405775 ], [ -122.41223216056824, 37.79254110427786 ], [ -122.41222143173218, 37.79248175615703 ], [ -122.41216778755188, 37.79222740652791 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41214632987976, 37.7921087097347 ], [ -122.41212487220764, 37.79200273029387 ], [ -122.41211950778961, 37.79196457765796 ], [ -122.41209805011749, 37.79186707638783 ], [ -122.41208195686342, 37.79179501014891 ], [ -122.4120604991913, 37.791684791059375 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41223216056824, 37.791990012750766 ], [ -122.41212487220764, 37.79200273029387 ], [ -122.41201758384705, 37.79201544783479 ], [ -122.41200685501099, 37.79201544783479 ], [ -122.41200149059296, 37.79201120865472 ], [ -122.41199612617494, 37.79201120865472 ], [ -122.41199076175691, 37.79200273029387 ], [ -122.41199076175691, 37.79199849111309 ], [ -122.41199076175691, 37.791990012750766 ], [ -122.41199612617494, 37.791985773569245 ], [ -122.41199612617494, 37.791981534387475 ], [ -122.412006855011, 37.79197729520547 ], [ -122.41211950778961, 37.79196457765796 ], [ -122.41222143173218, 37.79195186010829 ], [ -122.41223216056824, 37.79195186010829 ], [ -122.4122428894043, 37.79195186010829 ], [ -122.41225361824036, 37.79196033847499 ], [ -122.41225361824036, 37.79196457765796 ], [ -122.41225898265839, 37.79197305602321 ], [ -122.41225361824036, 37.79197729520547 ], [ -122.41224825382234, 37.791985773569245 ], [ -122.41223752498628, 37.791990012750766 ], [ -122.41223216056825, 37.791990012750766 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41318702697754, 37.797742357971856 ], [ -122.41366982460022, 37.79767029746383 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41283297538757, 37.7980772264691 ], [ -122.41287052631378, 37.79842480988598 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41753220558167, 37.79990837925248 ], [ -122.41773068904877, 37.799874469428296 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42162525653839, 37.804036784023594 ], [ -122.42172718048096, 37.80449030107562 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43004739284515, 37.8056431543148 ], [ -122.42999911308289, 37.80569401507263 ], [ -122.42997229099275, 37.80571096865078 ], [ -122.42945194244386, 37.80571096865078 ], [ -122.42941975593568, 37.80567282309445 ], [ -122.42938220500947, 37.80561348552322 ], [ -122.42934465408327, 37.8055202406721 ], [ -122.42931783199315, 37.805473618202406 ], [ -122.42921590805058, 37.805397326824874 ], [ -122.42914080619816, 37.805325273784824 ], [ -122.4290978908539, 37.805274412773024 ], [ -122.42907106876378, 37.80522355172624 ], [ -122.42905497550969, 37.80516845221935 ], [ -122.42905497550969, 37.805104875814145 ], [ -122.42906033992772, 37.805041299354215 ], [ -122.42908179759984, 37.80496924596682 ], [ -122.42912471294407, 37.804905669390145 ], [ -122.42916762828831, 37.80485056964608 ], [ -122.42921054363255, 37.80481242364534 ], [ -122.42927491664891, 37.80477427762488 ], [ -122.4293285608292, 37.80475732383168 ], [ -122.42970407009129, 37.80471070088035 ], [ -122.42973625659948, 37.80481666209083 ], [ -122.42973625659948, 37.80486328497526 ], [ -122.42971479892736, 37.804909907830286 ], [ -122.42968797683722, 37.804952292218374 ], [ -122.429650425911, 37.80499043814688 ], [ -122.42957532405859, 37.80504553778657 ], [ -122.42956459522253, 37.805075206806336 ], [ -122.42956459522253, 37.805104875814145 ], [ -122.42954313755041, 37.8051260679553 ], [ -122.42952704429632, 37.80514726009035 ], [ -122.42952167987832, 37.805189644342235 ], [ -122.42952167987832, 37.80528288961077 ], [ -122.42951631546029, 37.805325273784796 ], [ -122.42950022220622, 37.805367657934546 ], [ -122.42946803569802, 37.805405803648476 ], [ -122.42941975593577, 37.805435472523484 ], [ -122.4293178319932, 37.805473618202406 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43154406547546, 37.805087922096874 ], [ -122.43141531944273, 37.80505825308222 ], [ -122.43129730224608, 37.80502010718875 ], [ -122.4311739206314, 37.80496924596682 ], [ -122.43113100528716, 37.80493957690451 ], [ -122.43109881877898, 37.804905669390145 ], [ -122.43107736110686, 37.80485056964608 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43102371692657, 37.805189644342235 ], [ -122.43106126785277, 37.80513878323706 ], [ -122.4311739206314, 37.80496924596682 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43117392063141, 37.80496924596682 ], [ -122.43137240409851, 37.80468950862004 ], [ -122.4314421415329, 37.804592024144156 ], [ -122.43147432804108, 37.804524208780705 ], [ -122.4314957857132, 37.804456393354975 ], [ -122.43150115013123, 37.8044012932757 ], [ -122.4314957857132, 37.80432076231669 ], [ -122.43146896362305, 37.80415546165202 ], [ -122.43146359920503, 37.8040876458877 ], [ -122.43147432804109, 37.804036784023594 ], [ -122.43149042129518, 37.80399016061739 ], [ -122.43152260780336, 37.80395201417221 ], [ -122.43157088756561, 37.80390962921005 ], [ -122.43159234523773, 37.803888436719845 ], [ -122.43160843849182, 37.80385876722335 ], [ -122.43161916732788, 37.80381214370476 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42163062095642, 37.80375280463857 ], [ -122.42167890071869, 37.80377823567278 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41783261299133, 37.79839937700852 ], [ -122.41792917251588, 37.79886564503779 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42038607597351, 37.801035872043144 ], [ -122.41945266723633, 37.801146077182054 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41840660572052, 37.804083407400384 ], [ -122.41833150386809, 37.804087645887726 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42214024066925, 37.80175220250688 ], [ -122.42212414741518, 37.801658952780684 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41309583187103, 37.80243885595654 ], [ -122.41294026374817, 37.802332891334544 ], [ -122.41286516189575, 37.80227778967103 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41478562355042, 37.80023052180601 ], [ -122.41487681865692, 37.80067982354754 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41537570953369, 37.80438433939691 ], [ -122.41515576839447, 37.80440553174483 ], [ -122.4151396751404, 37.80428685451822 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41539180278778, 37.80452844724276 ], [ -122.41518259048462, 37.80454963954931 ], [ -122.4152684211731, 37.80499043814688 ], [ -122.4153220653534, 37.80521507488171 ], [ -122.41533815860748, 37.80533798903228 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41480708122253, 37.80460050106022 ], [ -122.41500020027159, 37.80457507030913 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41505920886993, 37.80378671268225 ], [ -122.41509675979614, 37.80374008911817 ], [ -122.41515040397644, 37.803668034461275 ], [ -122.41518259048462, 37.80362141082225 ], [ -122.41506457328796, 37.80352392493655 ], [ -122.41496801376341, 37.803464585638736 ], [ -122.41484463214873, 37.80337981513064 ], [ -122.41472125053406, 37.80330352159015 ], [ -122.41469442844391, 37.8033586224884 ], [ -122.41467297077179, 37.80340100776679 ], [ -122.4146568775177, 37.80343915449654 ], [ -122.41464078426363, 37.80348153972872 ], [ -122.4147266149521, 37.80356631012008 ], [ -122.41478562355043, 37.80362988784974 ], [ -122.41483390331268, 37.80365955743819 ], [ -122.41488218307495, 37.803680749994065 ], [ -122.41491973400116, 37.80370194254389 ], [ -122.41493582725523, 37.80371465807083 ], [ -122.41505920886992, 37.80378671268225 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41532742977142, 37.80016694115013 ], [ -122.41478562355042, 37.80023052180601 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42172718048096, 37.80449030107562 ], [ -122.42174863815308, 37.80457507030913 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4150002002716, 37.80457507030913 ], [ -122.41498410701753, 37.80449030107562 ], [ -122.41497337818147, 37.80442672408664 ], [ -122.41504311561584, 37.80441824715063 ], [ -122.41505920886993, 37.80441824715063 ], [ -122.41508066654205, 37.804414008682265 ], [ -122.41515576839447, 37.804405531744806 ], [ -122.41516649723053, 37.804469108752045 ], [ -122.41518259048462, 37.80454963954928 ], [ -122.4151074886322, 37.8045623549303 ], [ -122.41507530212402, 37.8045623549303 ], [ -122.41500020027159, 37.80457507030913 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43011176586151, 37.80407493042498 ], [ -122.42999911308289, 37.804087645887726 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.428759932518, 37.79132869749249 ], [ -122.42813766002655, 37.7914177210451 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41857290267944, 37.80414274620096 ], [ -122.4184763431549, 37.804151223168596 ], [ -122.41840660572052, 37.804083407400384 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4244737625122, 37.80537613476155 ], [ -122.42456495761871, 37.8053464658627 ], [ -122.4246346950531, 37.805278651192005 ], [ -122.42461860179901, 37.80516845221932 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42451667785645, 37.80558805512094 ], [ -122.4244737625122, 37.80537613476155 ], [ -122.42437183856964, 37.805367657934546 ], [ -122.4242752790451, 37.805321035368515 ], [ -122.42425918579102, 37.80521507488171 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4263083934784, 37.7925071910718 ], [ -122.42615282535553, 37.79263860465855 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42638885974884, 37.792439364613 ], [ -122.42630839347841, 37.7925071910718 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41417407989502, 37.795618662922415 ], [ -122.4142438173294, 37.79597897476603 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41027414798737, 37.80278641884947 ], [ -122.41032242774963, 37.8030322550301 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41961896419525, 37.80192598577343 ], [ -122.41951704025269, 37.801930224384584 ], [ -122.41949021816255, 37.80194294021658 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41512894630432, 37.805248982254014 ], [ -122.41524159908295, 37.80541851888209 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43004739284515, 37.8056431543148 ], [ -122.43003129959106, 37.805702491862185 ], [ -122.43003129959106, 37.80571096865078 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41906106472015, 37.80216758622069 ], [ -122.41952776908875, 37.80210400723224 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41949021816254, 37.80194294021658 ], [ -122.41932928562163, 37.80196837187395 ], [ -122.41912007331847, 37.801989564915125 ], [ -122.41905570030211, 37.80200651934365 ], [ -122.41879284381865, 37.80202771237386 ], [ -122.41868019104002, 37.802053144002095 ], [ -122.41857826709746, 37.80204890539802 ], [ -122.41846561431883, 37.80206585981292 ], [ -122.41836369037628, 37.802091291428006 ], [ -122.41819202899931, 37.802091291428006 ], [ -122.41804718971251, 37.80212943883419 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42557346820831, 37.80453268570453 ], [ -122.42551982402802, 37.80428685451822 ], [ -122.42547690868378, 37.80410459983463 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41000592708588, 37.794313047639136 ], [ -122.40998446941376, 37.79419435419653 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40935146808624, 37.80424446974821 ], [ -122.40944802761078, 37.80471070088038 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4218076467514, 37.8026635004523 ], [ -122.42229580879211, 37.80259144474508 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41891086101532, 37.80217606341504 ], [ -122.41887331008911, 37.802171824817975 ], [ -122.41884648799898, 37.802171824817975 ], [ -122.4188143014908, 37.80218030201184 ], [ -122.41876602172853, 37.80219301780076 ], [ -122.418669462204, 37.80220997218259 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41906106472015, 37.80216758622069 ], [ -122.41894841194154, 37.80218877920469 ], [ -122.41891086101533, 37.80217606341504 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4196457862854, 37.8020743370189 ], [ -122.41957068443298, 37.80208705282608 ], [ -122.41952776908873, 37.80210400723224 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41811692714691, 37.802256596712596 ], [ -122.41799890995026, 37.80227778967103 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42765486240387, 37.79074792215982 ], [ -122.427858710289, 37.79084966415375 ], [ -122.42799818515778, 37.79097684144913 ], [ -122.42810010910034, 37.791231195383254 ], [ -122.42813766002655, 37.7914177210451 ], [ -122.42814838886261, 37.791498266071706 ], [ -122.42796063423157, 37.79151098369947 ], [ -122.42777287960052, 37.79151522290824 ], [ -122.42754757404327, 37.79150250528121 ], [ -122.42765486240387, 37.791672073461534 ], [ -122.42769777774811, 37.79178653176325 ], [ -122.42775678634644, 37.791930664187284 ], [ -122.42778360843658, 37.79203240455262 ], [ -122.42775678634644, 37.79208751385868 ], [ -122.42770314216614, 37.792146862296164 ], [ -122.42767095565796, 37.79219349317789 ], [ -122.4276602268219, 37.792282515688555 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42874383926392, 37.791235434608055 ], [ -122.42826640605927, 37.791078583127835 ], [ -122.42799818515778, 37.79097684144913 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40990400314331, 37.793554254129674 ], [ -122.40993082523345, 37.79366447043045 ], [ -122.40991473197937, 37.79366447043045 ], [ -122.40991473197937, 37.79367718768535 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41866946220398, 37.80220997218259 ], [ -122.41864264011383, 37.80220997218259 ], [ -122.4186158180237, 37.80220997218259 ], [ -122.41857826709749, 37.802214210777436 ], [ -122.41839051246644, 37.802248119527505 ], [ -122.41828858852388, 37.802239642341455 ], [ -122.41811692714693, 37.802256596712596 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41481244564056, 37.80571096865078 ], [ -122.41476953029633, 37.805473618202406 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43019223213196, 37.80427413908977 ], [ -122.4299830198288, 37.80431652384273 ], [ -122.42989182472229, 37.80434619315537 ], [ -122.4298220872879, 37.80438433939691 ], [ -122.42977917194366, 37.80442672408664 ], [ -122.42974162101746, 37.804473347217254 ], [ -122.42972016334534, 37.804524208780705 ], [ -122.42970407009126, 37.80456659339016 ], [ -122.4296933412552, 37.804613216432486 ], [ -122.4296933412552, 37.804659839445364 ], [ -122.42970407009126, 37.8047107008804 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42911398410797, 37.80571096865078 ], [ -122.42910861968996, 37.805689776677475 ], [ -122.42907643318178, 37.80564739271261 ], [ -122.42903351783752, 37.80561772392273 ], [ -122.42897987365723, 37.805609247123456 ], [ -122.42892086505891, 37.805609247123456 ], [ -122.42864191532136, 37.80565163111018 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43102371692657, 37.805189644342235 ], [ -122.43092179298401, 37.805248982254014 ], [ -122.4308305978775, 37.80529136644753 ], [ -122.43074476718903, 37.805325273784824 ], [ -122.43059456348419, 37.80538037317473 ], [ -122.43046045303345, 37.80541851888209 ], [ -122.43028342723846, 37.805460902978304 ], [ -122.43019223213196, 37.805499048644094 ], [ -122.4301278591156, 37.80554143269408 ], [ -122.43007957935333, 37.805592293521954 ], [ -122.43004739284515, 37.8056431543148 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43106126785278, 37.80513878323706 ], [ -122.43108808994293, 37.805075206806336 ], [ -122.43109881877899, 37.80502858405566 ], [ -122.4310827255249, 37.80488447718576 ], [ -122.43107736110689, 37.80485056964608 ], [ -122.43106663227083, 37.80479546986089 ], [ -122.43105053901674, 37.80470222397696 ], [ -122.43102371692659, 37.804617454889396 ], [ -122.43099153041841, 37.804541162627416 ], [ -122.43094861507417, 37.804473347217225 ], [ -122.43090569972993, 37.80442248561876 ], [ -122.43083059787752, 37.8043673855142 ], [ -122.4307554960251, 37.80432500079042 ], [ -122.43066966533662, 37.80429109299386 ], [ -122.43057847023012, 37.804269900613114 ], [ -122.43048727512361, 37.80425718518177 ], [ -122.4303960800171, 37.80425718518177 ], [ -122.43029415607454, 37.80426566213625 ], [ -122.430192232132, 37.80427413908975 ], [ -122.43017077445988, 37.80418089254759 ], [ -122.43014395236973, 37.80412579226278 ], [ -122.43011176586155, 37.80407493042495 ], [ -122.43007421493535, 37.80396472965613 ], [ -122.43005812168127, 37.8039053907125 ], [ -122.4300473928452, 37.803846051721194 ], [ -122.4300473928452, 37.80379518969071 ], [ -122.43006885051733, 37.80376552015676 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43154406547546, 37.805087922096874 ], [ -122.4313884973526, 37.805087922096874 ], [ -122.4312973022461, 37.805096398955996 ], [ -122.43121147155762, 37.80510911424287 ], [ -122.43112564086914, 37.805134544810045 ], [ -122.43102371692657, 37.80518964434226 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4319839477539, 37.805079445236736 ], [ -122.43185520172119, 37.805092160526534 ], [ -122.43172109127045, 37.805096398955996 ], [ -122.43162989616394, 37.805096398955996 ], [ -122.43154406547546, 37.805087922096874 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43155479431152, 37.80349001677221 ], [ -122.4315869808197, 37.80351968641686 ], [ -122.43160843849182, 37.803557833085314 ], [ -122.43161916732788, 37.80360869527926 ], [ -122.43161916732788, 37.80381214370479 ], [ -122.43163526058197, 37.80399016061739 ], [ -122.43164062499999, 37.8040706919369 ], [ -122.43165671825408, 37.80415546165205 ], [ -122.4316835403442, 37.8042402312699 ], [ -122.43175327777858, 37.8044521548888 ], [ -122.43176937103267, 37.804519970318424 ], [ -122.43178546428675, 37.80459626260232 ], [ -122.43180155754084, 37.80479970830737 ], [ -122.4318122863769, 37.804876000302286 ], [ -122.43185520172113, 37.805092160526534 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4318015575409, 37.80339676924003 ], [ -122.43173718452454, 37.80339676924003 ], [ -122.43167281150818, 37.80339676924003 ], [ -122.43163526058197, 37.80343067744717 ], [ -122.43155479431154, 37.80349001677224 ], [ -122.4315118789673, 37.80347730120659 ], [ -122.43145823478699, 37.80348153972872 ], [ -122.43106663227083, 37.80357902567038 ], [ -122.43097007274629, 37.803600218249386 ], [ -122.43087351322174, 37.80361293379386 ], [ -122.4307769536972, 37.80362564933614 ], [ -122.43068039417267, 37.803629887849716 ], [ -122.43046045303345, 37.803634126363086 ], [ -122.4303638935089, 37.80363836487621 ], [ -122.4302726984024, 37.80365531892627 ], [ -122.43018686771391, 37.803684988504514 ], [ -122.43012249469756, 37.803727373595606 ], [ -122.43006885051726, 37.80376552015679 ], [ -122.4300044775009, 37.803735850610906 ], [ -122.42991864681242, 37.80374432762523 ], [ -122.42897450923918, 37.80386300572362 ], [ -122.42893159389494, 37.803807905201644 ], [ -122.4284380674362, 37.803846051721244 ], [ -122.42814302444454, 37.8038799597221 ], [ -122.42796599864955, 37.803909629210104 ], [ -122.4277567863464, 37.80393082169422 ], [ -122.42747247219081, 37.80397744513788 ], [ -122.42731690406795, 37.80399863760256 ], [ -122.42724716663356, 37.80400711458672 ], [ -122.42726325988765, 37.804045261003424 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41528987884521, 37.79770420829989 ], [ -122.41531670093536, 37.79772540256451 ], [ -122.41532742977142, 37.79777202992531 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41532742977142, 37.79777202992531 ], [ -122.41539716720581, 37.7977593133753 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4153220653534, 37.79785680686951 ], [ -122.41533815860748, 37.7978228961035 ], [ -122.41532742977142, 37.79777202992529 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41373419761658, 37.797950061395746 ], [ -122.41385757923126, 37.79793310603611 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41385757923126, 37.79793310603611 ], [ -122.41391122341156, 37.79790343414736 ], [ -122.41397023200987, 37.798026360466025 ], [ -122.4139755964279, 37.798026360466025 ], [ -122.41396486759184, 37.79792462835481 ], [ -122.41401851177214, 37.797950061395746 ], [ -122.41400778293608, 37.79789071761994 ], [ -122.41404533386229, 37.797831373796456 ], [ -122.41413116455077, 37.797844090334074 ], [ -122.41431891918181, 37.79781865725665 ], [ -122.41441011428832, 37.79789071761994 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41467833518982, 37.79712348308311 ], [ -122.41463005542757, 37.796877627236306 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41751611232758, 37.796292656587205 ], [ -122.41753220558167, 37.796335045920344 ], [ -122.41754293441772, 37.79635624057777 ], [ -122.4175375699997, 37.79636471843907 ], [ -122.41744101047516, 37.796373196299385 ], [ -122.41743564605713, 37.796381674158695 ], [ -122.41745173931122, 37.79640286880277 ], [ -122.41745710372923, 37.796407107730865 ], [ -122.4174302816391, 37.79643678022064 ], [ -122.41740882396698, 37.79643678022064 ], [ -122.41738736629486, 37.796441019146776 ], [ -122.41736054420471, 37.79645373592373 ], [ -122.41732835769653, 37.79646645269848 ], [ -122.41731226444244, 37.79646645269848 ], [ -122.41728007793427, 37.7964622137738 ], [ -122.41726398468019, 37.7964622137738 ], [ -122.4171942472458, 37.796470691622936 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41804718971252, 37.80212943883419 ], [ -122.41797745227814, 37.80213791603292 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41064429283142, 37.80085360933718 ], [ -122.41050481796265, 37.80103163338067 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4103707075119, 37.80097653074639 ], [ -122.41038680076598, 37.80095957608142 ], [ -122.41045117378233, 37.80087056402646 ], [ -122.41048872470854, 37.800794267894 ], [ -122.41045653820036, 37.8007434037619 ], [ -122.41038680076598, 37.80067982354751 ], [ -122.41033315658568, 37.80065439144644 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41077303886414, 37.800756119798216 ], [ -122.41070866584778, 37.80081546127204 ], [ -122.41064429283142, 37.80085360933718 ], [ -122.41048872470856, 37.800794267894 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40945339202881, 37.80081969994693 ], [ -122.4093943834305, 37.80082393862155 ], [ -122.40933001041412, 37.800832415970085 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40965187549591, 37.80109097463317 ], [ -122.40958750247955, 37.801150315837965 ], [ -122.40934610366821, 37.80118422507647 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41038680076599, 37.80048484388214 ], [ -122.41021513938904, 37.80060776590507 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40952849388123, 37.80065015276208 ], [ -122.40937292575836, 37.80054842426436 ], [ -122.40933001041412, 37.80055266295457 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41032242774963, 37.8030322550301 ], [ -122.41034924983978, 37.80316364989455 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40966796875, 37.80055690164453 ], [ -122.40964114665985, 37.8003915925559 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40989327430725, 37.8005357081923 ], [ -122.40986108779907, 37.80036192165469 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4101722240448, 37.800637436707525 ], [ -122.41033315658571, 37.80065439144644 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41495192050934, 37.804299569944476 ], [ -122.41497337818146, 37.80442672408664 ], [ -122.41477489471436, 37.8044521548888 ] ] }, "properties": { "class": "path", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43187129497528, 37.80557533991654 ], [ -122.4318391084671, 37.805664346301484 ], [ -122.43183374404907, 37.80571096865078 ] ] }, "properties": { "class": "driveway", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43166208267212, 37.80569401507261 ], [ -122.43181228637695, 37.80561348552322 ], [ -122.43187129497528, 37.80557533991654 ], [ -122.43192493915558, 37.80554143269405 ], [ -122.4319839477539, 37.80552871748163 ] ] }, "properties": { "class": "driveway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4319839477539, 37.805354942692176 ], [ -122.43160843849182, 37.80541428047113 ], [ -122.43166208267212, 37.80569401507263 ] ] }, "properties": { "class": "driveway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.431640625, 37.80571096865078 ], [ -122.43166208267212, 37.80569401507261 ] ] }, "properties": { "class": "driveway", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42909789085388, 37.80413850771679 ], [ -122.42989182472229, 37.804032545533346 ], [ -122.42985427379608, 37.8038502902222 ], [ -122.42905497550966, 37.80395201417224 ], [ -122.4290978908539, 37.80413850771679 ] ] }, "properties": { "class": "driveway", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4319839477539, 37.80440553174483 ], [ -122.43190348148346, 37.80441824715063 ] ] }, "properties": { "class": "driveway", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42891013622284, 37.80412155377767 ], [ -122.42909789085388, 37.80413850771679 ] ] }, "properties": { "class": "driveway", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41190493106842, 37.79716163305497 ], [ -122.41179764270782, 37.79717434970787 ] ] }, "properties": { "class": "driveway", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42909789085388, 37.80413850771679 ], [ -122.42909252643585, 37.804176654065614 ], [ -122.42914080619812, 37.8044394394888 ], [ -122.42914080619812, 37.804519970318424 ], [ -122.42916762828827, 37.80471070088035 ], [ -122.42916762828827, 37.80472341623366 ], [ -122.42916226387024, 37.804740370034615 ], [ -122.42915153503418, 37.804753085382806 ], [ -122.42913007736206, 37.804761562280376 ], [ -122.42908716201782, 37.80477003917697 ], [ -122.42867410182953, 37.80481666209083 ] ] }, "properties": { "class": "driveway", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41176009178162, 37.78815345398132 ], [ -122.41239309310913, 37.78807290530868 ], [ -122.4127846956253, 37.78802627182651 ], [ -122.41341233253479, 37.78794572301525 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4176824092865, 37.79235034229134 ], [ -122.41856753826141, 37.79224012403017 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41113245487213, 37.79338469026892 ], [ -122.41172790527344, 37.79331262551028 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41234481334686, 37.79532193420228 ], [ -122.41251647472383, 37.796152771615276 ], [ -122.41254329681396, 37.79619516102869 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41099834442139, 37.79083694641218 ], [ -122.41109490394592, 37.79129902295112 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40936756134033, 37.795686486462564 ], [ -122.40933001041412, 37.79549997157738 ] ] }, "properties": { "class": "service", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41076231002808, 37.79153217974085 ], [ -122.41120755672455, 37.791477070020576 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42177546024323, 37.7880177930084 ], [ -122.42021441459656, 37.788225523771885 ], [ -122.41856217384338, 37.78843325395139 ] ] }, "properties": { "class": "service", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41860508918762, 37.79269371351246 ], [ -122.41868555545807, 37.79304980050072 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41052627563477, 37.79644949699833 ], [ -122.41059064865114, 37.79676317682161 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41070866584778, 37.79344403766446 ], [ -122.41113245487213, 37.79338469026892 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41090714931488, 37.79639862987445 ], [ -122.4110358953476, 37.79703870529732 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41694211959839, 37.79707261642332 ], [ -122.41699039936066, 37.797051421971396 ], [ -122.41747856140137, 37.79699207747368 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41233944892883, 37.787814301082065 ], [ -122.41239309310913, 37.78807290530868 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4155580997467, 37.80395201417224 ], [ -122.41566002368927, 37.803913867707394 ], [ -122.41600334644318, 37.80387148272332 ], [ -122.41630375385284, 37.8038630057236 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41245746612549, 37.80182425903287 ], [ -122.41245746612549, 37.80170133903446 ], [ -122.41232335567474, 37.801010440064665 ] ] }, "properties": { "class": "service", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40956604480743, 37.79566105264231 ], [ -122.40965187549591, 37.796089187449574 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41671681404114, 37.7959238683626 ], [ -122.41722106933595, 37.79586028399988 ], [ -122.41834223270416, 37.79571192027404 ], [ -122.41835832595825, 37.79571192027404 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41281688213348, 37.79616124949991 ], [ -122.41297245025635, 37.79691577733512 ], [ -122.41301000118254, 37.79711500530891 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41254329681396, 37.79619516102869 ], [ -122.41257011890411, 37.796233311479945 ], [ -122.41269886493683, 37.79691577733512 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41274178028107, 37.787814301082065 ], [ -122.4127846956253, 37.78802627182651 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41160452365875, 37.80204466679365 ], [ -122.41145968437195, 37.801336816456995 ], [ -122.41146504878998, 37.801294429994016 ], [ -122.41149723529816, 37.80124780485665 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.80472341623366 ], [ -122.40944802761078, 37.80471070088035 ], [ -122.41004884243011, 37.80463864717042 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41596579551697, 37.790205295826226 ], [ -122.41598188877106, 37.79030279928923 ], [ -122.41601407527924, 37.79045965241627 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40965723991394, 37.79847143680532 ], [ -122.40974843502045, 37.798937704379746 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41183519363403, 37.79505911634061 ], [ -122.41189956665039, 37.795381280041674 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42660343647003, 37.79479205852346 ], [ -122.42711842060089, 37.79471999513757 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41010785102844, 37.801862406576994 ], [ -122.41053700447083, 37.80181578179817 ], [ -122.41060674190521, 37.802171824817975 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42193639278412, 37.788000835369274 ], [ -122.42345988750458, 37.787814301082065 ] ] }, "properties": { "class": "service", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42008566856384, 37.804235992791284 ], [ -122.421555519104, 37.804049499492926 ], [ -122.42162525653839, 37.804036784023594 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41185665130615, 37.799806649733185 ], [ -122.41239309310913, 37.799721875026755 ], [ -122.41241991519928, 37.79971763628886 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42914080619812, 37.8044394394888 ], [ -122.42867946624756, 37.804494539539625 ], [ -122.42865800857544, 37.80449877800336 ], [ -122.42864191532135, 37.80450301646686 ], [ -122.42863118648529, 37.80451149339313 ], [ -122.42862582206726, 37.804524208780705 ], [ -122.42862045764925, 37.804541162627416 ], [ -122.42862045764925, 37.804553878009884 ], [ -122.42867410182954, 37.80481666209083 ], [ -122.42869555950166, 37.80493957690451 ], [ -122.42869555950166, 37.80496500753008 ], [ -122.42869019508363, 37.804986199711365 ], [ -122.42867946624757, 37.805011630320884 ], [ -122.42866337299351, 37.80503282248878 ], [ -122.42863655090336, 37.80504977621872 ], [ -122.42860436439518, 37.80506249151361 ], [ -122.428572177887, 37.80507096837568 ], [ -122.42850780487065, 37.805087922096874 ], [ -122.4282342195511, 37.8051557369427 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41337478160858, 37.80440977021365 ], [ -122.4150002002716, 37.80420632343443 ], [ -122.4150162935257, 37.80420632343443 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41643249988556, 37.79112097545263 ], [ -122.41645932197571, 37.791231195383254 ], [ -122.41652369499207, 37.79152794053307 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41141676902771, 37.78853499913242 ], [ -122.41181910037994, 37.78848412655941 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41173326969147, 37.79017986011907 ], [ -122.41215705871582, 37.7901247493902 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4110895395279, 37.7931769740092 ], [ -122.4116849899292, 37.793100669930396 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4105155467987, 37.80505401465057 ], [ -122.41059601306915, 37.80546090297828 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4167650938034, 37.787869413534104 ], [ -122.41664707660675, 37.78788637120338 ], [ -122.41648614406584, 37.787903328868786 ], [ -122.4164968729019, 37.78797115949147 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4219685792923, 37.78896741458879 ], [ -122.42040216922759, 37.78916666399649 ], [ -122.41875529289244, 37.7893786308617 ] ] }, "properties": { "class": "service", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41070866584778, 37.78848412655941 ], [ -122.41016685962677, 37.78855195664898 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40972697734833, 37.79749226531914 ], [ -122.40989863872528, 37.79844176513279 ] ] }, "properties": { "class": "service", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.79899280853499 ], [ -122.40974843502045, 37.79893770437972 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40944802761078, 37.80471070088035 ], [ -122.40954458713531, 37.80517692906923 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42369055747986, 37.78874696780958 ], [ -122.42212414741516, 37.78894197845551 ] ] }, "properties": { "class": "service", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41753220558167, 37.79464369265235 ], [ -122.41761803627014, 37.795093028375305 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40985572338104, 37.80371041956209 ], [ -122.41029024124146, 37.80365955743819 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41145968437195, 37.79920898597781 ], [ -122.41166353225708, 37.80014574758602 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40968406200409, 37.796983599684395 ], [ -122.41016685962677, 37.79692001623378 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41692066192627, 37.795220198366735 ], [ -122.41700112819672, 37.79563561881328 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41054773330688, 37.79464369265235 ], [ -122.41046726703644, 37.79427065714581 ], [ -122.4103707075119, 37.793808599191095 ], [ -122.41036534309387, 37.7937492520884 ], [ -122.4102795124054, 37.79330838640464 ] ] }, "properties": { "class": "service", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42140531539917, 37.794147724577606 ], [ -122.42158770561217, 37.795029443297494 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42948412895203, 37.80073492640316 ], [ -122.4295002222061, 37.80080698392156 ], [ -122.42967188358307, 37.801654714153955 ], [ -122.42985963821411, 37.80258296759842 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42784261703491, 37.800942621412574 ], [ -122.42782652378084, 37.80084513199108 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4311363697052, 37.80052299211805 ], [ -122.43115246295928, 37.80059928853073 ], [ -122.43122220039366, 37.80098500807743 ], [ -122.43131339550017, 37.801447021146885 ], [ -122.43144214153288, 37.802095530029646 ], [ -122.43150115013121, 37.802379515786946 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42946803569794, 37.800637436707525 ], [ -122.42948412895203, 37.80073492640316 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43112027645111, 37.80042974083997 ], [ -122.4311363697052, 37.80052299211805 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4249941110611, 37.8031975582087 ], [ -122.42656588554382, 37.80299834664004 ], [ -122.42821276187898, 37.80279489597278 ], [ -122.42985963821413, 37.80258296759842 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42387294769287, 37.797615192322034 ], [ -122.42543935775757, 37.79741172682703 ], [ -122.42709159851074, 37.7972040218895 ], [ -122.42872774600983, 37.79699207747368 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42424845695496, 37.79947602782782 ], [ -122.42436647415161, 37.79945907281843 ], [ -122.42570757865906, 37.799289522510435 ], [ -122.42581486701965, 37.799276806221634 ], [ -122.42591679096222, 37.79926408993067 ], [ -122.42663562297821, 37.79917083706328 ], [ -122.42746710777283, 37.79906910652822 ], [ -122.42910325527191, 37.79885716746353 ], [ -122.43075013160706, 37.79864946659016 ], [ -122.4319839477539, 37.79849263084982 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42368519306183, 37.79667839862234 ], [ -122.42525160312653, 37.79648340839478 ], [ -122.42690920829773, 37.796275700847126 ], [ -122.42853999137878, 37.79606375376797 ], [ -122.43018686771393, 37.79585604504044 ], [ -122.43182301521301, 37.79564409675727 ], [ -122.43198394775392, 37.79562714086835 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42406070232391, 37.79854349653181 ], [ -122.42419481277466, 37.79852654130836 ], [ -122.4256271123886, 37.798344272410596 ], [ -122.42727935314177, 37.79813657009509 ], [ -122.42891550064085, 37.79792886719558 ], [ -122.43056237697601, 37.797716924859415 ], [ -122.43144214153288, 37.79760671460429 ], [ -122.43198394775389, 37.79753889282709 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42443084716797, 37.80041278604948 ], [ -122.4245595932007, 37.800395831255116 ], [ -122.4259275197983, 37.800222044388356 ], [ -122.42600262165071, 37.80020932826012 ], [ -122.4261260032654, 37.80019661212968 ], [ -122.42649614810945, 37.80014998629934 ], [ -122.42685556411743, 37.80010336043956 ], [ -122.42757976055145, 37.80001010863167 ], [ -122.4276602268219, 37.80000163118878 ], [ -122.4277675151825, 37.79998467630002 ], [ -122.42929100990295, 37.79978969479964 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42330431938171, 37.794809014604034 ], [ -122.42486000061037, 37.7946097804114 ], [ -122.42652833461763, 37.79440206759597 ], [ -122.42815911769867, 37.79419011514147 ], [ -122.42980599403383, 37.79397816207892 ], [ -122.43145287036897, 37.793770447487695 ], [ -122.43198394775392, 37.793702622188576 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42480635643005, 37.802269312488406 ], [ -122.4249565601349, 37.802252358120164 ], [ -122.42637813091278, 37.80207009841604 ], [ -122.42802500724794, 37.801862406576994 ], [ -122.42967188358308, 37.801654714153955 ], [ -122.43131339550018, 37.801447021146885 ], [ -122.43186056613922, 37.80137496425289 ], [ -122.4319839477539, 37.80136224832311 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41192638874054, 37.797271843974116 ], [ -122.41191565990448, 37.7972167385351 ], [ -122.41190493106842, 37.79716163305497 ], [ -122.41187274456024, 37.79700055526198 ], [ -122.41173326969147, 37.79629689552161 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41173326969147, 37.79629689552161 ], [ -122.41163671016693, 37.79583908920013 ], [ -122.41155624389648, 37.79541519192846 ], [ -122.41147577762605, 37.7950633553458 ], [ -122.41136848926544, 37.79454195588281 ], [ -122.41136848926544, 37.79452923877677 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42929100990295, 37.7997896947997 ], [ -122.42945194244386, 37.80056114033423 ], [ -122.42946803569794, 37.800637436707525 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42872774600983, 37.79699207747368 ], [ -122.42891550064087, 37.79792886719558 ], [ -122.42910325527191, 37.7988571674635 ], [ -122.42917835712433, 37.79923441857653 ], [ -122.42929100990295, 37.79978969479967 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41336941719055, 37.796084948503236 ], [ -122.41346061229706, 37.79652579761845 ], [ -122.41355180740355, 37.79694121072341 ], [ -122.41355180740355, 37.797034466405485 ], [ -122.41356253623961, 37.797131960856326 ], [ -122.41366982460022, 37.79767029746383 ], [ -122.41371273994446, 37.797844090334074 ], [ -122.41373419761658, 37.797950061395746 ], [ -122.41375029087065, 37.798030599300965 ], [ -122.41390585899352, 37.79887836139735 ], [ -122.41392731666564, 37.798958898290465 ], [ -122.4140292406082, 37.79937005895526 ], [ -122.41412580013274, 37.79983208212613 ], [ -122.41422235965729, 37.80030257981648 ], [ -122.41430282592772, 37.800756119798216 ], [ -122.41439938545227, 37.80122661160268 ], [ -122.4144959449768, 37.801692861785654 ], [ -122.41468906402588, 37.80261687617921 ], [ -122.41484463214873, 37.80337981513064 ], [ -122.41488218307494, 37.80354511753136 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42365837097168, 37.80528712802926 ], [ -122.42374420166016, 37.80571096865078 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42223680019379, 37.7903451920591 ], [ -122.42214560508728, 37.79036214916025 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42240846157074, 37.790328234954075 ], [ -122.42223680019379, 37.7903451920591 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42398023605347, 37.79016290297611 ], [ -122.4225264787674, 37.790315517122764 ], [ -122.42240846157074, 37.790328234954075 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42037534713745, 37.80571096865078 ], [ -122.42028415203094, 37.80523626699121 ], [ -122.42019295692444, 37.80478699296722 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4108213186264, 37.791837402062676 ], [ -122.41110563278198, 37.791799249341395 ], [ -122.41171717643738, 37.79172294383976 ], [ -122.41206049919128, 37.79168479105935 ], [ -122.41245210170746, 37.79163815985659 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41136848926544, 37.79452923877677 ], [ -122.41128802299501, 37.79453771684771 ], [ -122.41124510765076, 37.79454619491767 ], [ -122.4111968278885, 37.7945589120208 ], [ -122.4111592769623, 37.79456315105469 ], [ -122.4105477333069, 37.79464369265235 ], [ -122.41008639335634, 37.794707278062184 ], [ -122.4098986387253, 37.7947284731866 ], [ -122.4097377061844, 37.79474966830498 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40973770618439, 37.79474966830498 ], [ -122.40988254547119, 37.79551268851633 ], [ -122.40990400314331, 37.795618662922415 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40954458713531, 37.79385522902405 ], [ -122.40973770618439, 37.79474966830498 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40954458713531, 37.79385522902405 ], [ -122.4095231294632, 37.79385522902405 ], [ -122.40933001041412, 37.79388066346596 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.803295044525235 ], [ -122.40976452827452, 37.803239943579534 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4130368232727, 37.80282880445625 ], [ -122.41294026374817, 37.802332891334544 ], [ -122.41290807723998, 37.802184540608394 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41245210170746, 37.79163815985659 ], [ -122.41410970687866, 37.791421960259214 ], [ -122.41576731204987, 37.791209999255514 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.792782735420424 ], [ -122.4093621969223, 37.792960778914576 ], [ -122.4095445871353, 37.79385522902405 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.79203664373147 ], [ -122.4108213186264, 37.791837402062676 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41145431995392, 37.80112064524151 ], [ -122.41232335567474, 37.801010440064665 ], [ -122.41266131401063, 37.80098076941203 ], [ -122.41267740726471, 37.80098076941203 ], [ -122.41269886493683, 37.80098076941203 ], [ -122.41430282592773, 37.800756119798216 ], [ -122.41487681865692, 37.80067982354754 ], [ -122.41596579551697, 37.80053994688325 ], [ -122.41667926311493, 37.80044669562654 ], [ -122.41749465465546, 37.80034496684863 ], [ -122.41762340068817, 37.80032801203869 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41102516651154, 37.80117574776828 ], [ -122.41130948066713, 37.801141838525915 ], [ -122.41145431995393, 37.80112064524151 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40976452827454, 37.803239943579534 ], [ -122.41034924983978, 37.80316364989455 ], [ -122.41138994693756, 37.80303649357777 ], [ -122.41231262683868, 37.8029220527055 ], [ -122.4130368232727, 37.80282880445625 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.80109945195105 ], [ -122.4093461036682, 37.80118422507645 ], [ -122.40938365459441, 37.801379202895646 ], [ -122.40946948528288, 37.80184969073116 ], [ -122.40957677364348, 37.802303221213165 ], [ -122.40976452827452, 37.803239943579534 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.80042974083997 ], [ -122.40964114665985, 37.8003915925559 ], [ -122.40986108779907, 37.80036192165466 ], [ -122.41015613079071, 37.80032377333558 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41015613079071, 37.800323773335606 ], [ -122.4102795124054, 37.800311057224846 ], [ -122.41084277629852, 37.800251715345794 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41717278957367, 37.79634352378406 ], [ -122.41719424724579, 37.796470691622936 ], [ -122.41721034049988, 37.796559708979885 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42462933063507, 37.80129019134637 ], [ -122.42446303367615, 37.80132833916636 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42484390735626, 37.803218750897145 ], [ -122.4249941110611, 37.8031975582087 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42352962493896, 37.79669959318127 ], [ -122.42368519306183, 37.79667839862234 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42348670959473, 37.7957246371765 ], [ -122.42505848407745, 37.79552964443152 ], [ -122.42671072483061, 37.79532193420228 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42372810840607, 37.797636386612204 ], [ -122.42387294769287, 37.797615192322034 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42409288883209, 37.79949722158412 ], [ -122.42424845695496, 37.79947602782782 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42428600788116, 37.80042974083997 ], [ -122.42443084716797, 37.80041278604948 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42467224597931, 37.8022905054432 ], [ -122.42480635643005, 37.802269312488406 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42225289344788, 37.79042573825485 ], [ -122.42242455482484, 37.790396063350826 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42242455482483, 37.790396063350826 ], [ -122.42254257202148, 37.79037910625748 ], [ -122.42398023605347, 37.79016290297611 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41963505744934, 37.80199804212988 ], [ -122.41961896419525, 37.80192598577343 ], [ -122.41945266723633, 37.80114607718208 ], [ -122.41944193840027, 37.80109521329224 ], [ -122.41943657398224, 37.80106978133419 ], [ -122.41931855678558, 37.80045517301839 ], [ -122.41925418376923, 37.80012455401583 ], [ -122.41913080215454, 37.79951417658475 ], [ -122.41912543773653, 37.79948874408232 ], [ -122.4190664291382, 37.79919626967515 ], [ -122.41900742053987, 37.798916510462924 ], [ -122.41897523403169, 37.79874272011575 ], [ -122.41893768310548, 37.79856892935968 ], [ -122.41887867450718, 37.79826373484735 ], [ -122.41869091987614, 37.797339665996475 ], [ -122.4185031652451, 37.79643254129425 ], [ -122.41849780082707, 37.796398629874425 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42347061634064, 37.804358908571395 ], [ -122.42365837097168, 37.80528712802926 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41850316524506, 37.79643254129425 ], [ -122.41861045360565, 37.79641982451364 ], [ -122.41999447345734, 37.79623755041776 ], [ -122.42006957530975, 37.796241789355314 ], [ -122.42013931274414, 37.79625450616659 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42012321949005, 37.79614429372968 ], [ -122.42013931274414, 37.79625450616659 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42010712623596, 37.79606375376797 ], [ -122.42012321949005, 37.79614429372968 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42013931274414, 37.79625450616659 ], [ -122.42031633853912, 37.797110766421454 ], [ -122.42050409317017, 37.79804755463823 ], [ -122.42063820362091, 37.798696093367674 ], [ -122.42069721221924, 37.79898433097531 ], [ -122.42088496685028, 37.79991261797943 ], [ -122.42107272148132, 37.800832415970085 ], [ -122.42109417915344, 37.800938382744725 ], [ -122.4212658405304, 37.80178187284963 ], [ -122.42145359516144, 37.80271436326215 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41685092449188, 37.804977722839574 ], [ -122.41688847541809, 37.80521507488168 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42019295692444, 37.80478699296722 ], [ -122.42008566856384, 37.804235992791284 ], [ -122.42001593112946, 37.80388843671987 ], [ -122.4198228120804, 37.8029220527055 ], [ -122.41964578628541, 37.8020743370189 ], [ -122.41963505744936, 37.80199804212988 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42243528366089, 37.80354087901289 ], [ -122.42224752902985, 37.80362141082225 ], [ -122.42178618907927, 37.803672272972435 ], [ -122.42174327373503, 37.803684988504514 ], [ -122.4217003583908, 37.80371041956209 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41855680942535, 37.80500739188654 ], [ -122.41870164871216, 37.80571096865078 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42174863815308, 37.80423175431249 ], [ -122.42181837558745, 37.80456659339016 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4130368232727, 37.80282880445625 ], [ -122.41362690925598, 37.8027567489103 ], [ -122.41365909576416, 37.80275251034657 ], [ -122.41372346878052, 37.8027440332184 ], [ -122.41378784179688, 37.80272707895914 ], [ -122.41387367248535, 37.80270588612963 ], [ -122.41457104682922, 37.80262111475069 ], [ -122.41468906402588, 37.80261687617921 ], [ -122.41481781005861, 37.80260839903546 ], [ -122.41623938083649, 37.802430378792366 ], [ -122.41634130477905, 37.80240494729402 ], [ -122.41645395755768, 37.80238375437207 ], [ -122.4178808927536, 37.80220573358751 ], [ -122.4179881811142, 37.80220997218259 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41362690925598, 37.80571096865078 ], [ -122.41360545158386, 37.80561772392276 ], [ -122.41351962089539, 37.80515573694268 ], [ -122.41343379020691, 37.80468527016725 ], [ -122.41337478160858, 37.80440977021365 ], [ -122.41322457790375, 37.80376128165094 ], [ -122.4130368232727, 37.80282880445625 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41576731204987, 37.791209999255514 ], [ -122.4161159992218, 37.79116336775309 ], [ -122.41643249988557, 37.79112097545263 ], [ -122.4171942472458, 37.79102771230599 ], [ -122.41741418838502, 37.79099803764374 ], [ -122.41763412952425, 37.79097260220947 ], [ -122.41907179355623, 37.790798793174275 ], [ -122.42069184780122, 37.79057835185864 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42243528366089, 37.80354087901289 ], [ -122.4232828617096, 37.803426438922145 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42145359516144, 37.802714363262176 ], [ -122.42152333259583, 37.802803373095095 ], [ -122.42160379886627, 37.80321451235996 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42145359516144, 37.802714363262176 ], [ -122.42143750190736, 37.80282032733683 ], [ -122.42152333259584, 37.803295044525235 ], [ -122.42157161235811, 37.80340100776679 ], [ -122.42161452770235, 37.80349001677221 ], [ -122.42177009582521, 37.80354511753136 ], [ -122.42183446884157, 37.80354935604959 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41845488548279, 37.80405373798221 ], [ -122.41842806339265, 37.804019830061115 ], [ -122.41840660572053, 37.8039732066442 ], [ -122.41829931735992, 37.80347306268421 ], [ -122.41821885108948, 37.8033586224884 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42170035839081, 37.80371041956209 ], [ -122.42168426513672, 37.80375280463857 ], [ -122.4216789007187, 37.80377823567278 ], [ -122.42168426513672, 37.803871482723345 ], [ -122.42168426513672, 37.8038969137167 ], [ -122.4216789007187, 37.8039350601903 ], [ -122.42167353630067, 37.80396472965615 ], [ -122.42166280746461, 37.80399016061739 ], [ -122.42164671421055, 37.8040155915699 ], [ -122.42162525653843, 37.804036784023616 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41741418838501, 37.79099803764377 ], [ -122.41720497608185, 37.79004844215926 ], [ -122.4170172214508, 37.789111552511955 ], [ -122.41682946681976, 37.788178890386014 ], [ -122.4167650938034, 37.78786941353413 ], [ -122.41675436496735, 37.787814301082065 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42561638355255, 37.7899551776589 ], [ -122.4254232645035, 37.78899709006654 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.78913698858683 ], [ -122.41025805473328, 37.78901828682906 ], [ -122.41097152233122, 37.78892502102847 ], [ -122.41188883781433, 37.78881055829413 ], [ -122.41355180740355, 37.78860282917525 ], [ -122.41518795490263, 37.78839086008467 ], [ -122.41682946681975, 37.788178890386014 ], [ -122.41788625717162, 37.78804322945981 ], [ -122.41846561431883, 37.78796692007937 ], [ -122.41969943046566, 37.787814301082065 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42069184780121, 37.79057835185864 ], [ -122.42080450057983, 37.79061226595001 ], [ -122.42216169834137, 37.79043845606721 ], [ -122.42225289344788, 37.79042573825485 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42369055747986, 37.78874696780958 ], [ -122.42533206939697, 37.78853923851192 ], [ -122.42696821689606, 37.788331508630314 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41102516651154, 37.80117574776828 ], [ -122.41120755672455, 37.802095530029646 ], [ -122.41138994693756, 37.80303649357777 ], [ -122.41148114204405, 37.80347306268421 ], [ -122.41158306598662, 37.80396472965615 ], [ -122.41177082061766, 37.80489719250909 ], [ -122.41186201572417, 37.80536341952066 ], [ -122.41193175315856, 37.80571096865078 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4262011051178, 37.80115455449363 ], [ -122.42621719837189, 37.80123932755579 ], [ -122.42637813091278, 37.80207009841604 ], [ -122.42656588554382, 37.80299834664004 ], [ -122.42676973342896, 37.80394353718175 ], [ -122.42682337760925, 37.80419784647312 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41840660572052, 37.801196941036885 ], [ -122.418674826622, 37.80115879314906 ], [ -122.41908252239227, 37.80112064524151 ], [ -122.41931319236755, 37.80109097463317 ], [ -122.41943657398224, 37.801069781334164 ], [ -122.42036461830139, 37.80095109874748 ], [ -122.4204236268997, 37.80094262141255 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41187274456024, 37.79700055526198 ], [ -122.41189420223236, 37.79699631636796 ], [ -122.41260766983032, 37.79691577733512 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40990400314331, 37.795618662922415 ], [ -122.41001665592194, 37.795605946001736 ], [ -122.41003274917601, 37.795605946001736 ], [ -122.41108417510985, 37.79547029871132 ], [ -122.41155624389648, 37.79541519192846 ], [ -122.41189956665039, 37.79538128004165 ], [ -122.41234481334685, 37.79532193420228 ], [ -122.41318166255951, 37.795220198366735 ], [ -122.41402387619019, 37.795105745384284 ], [ -122.41483390331267, 37.79499129222454 ], [ -122.41647541522978, 37.79477934146046 ], [ -122.41695821285248, 37.79471999513755 ], [ -122.41753220558167, 37.79464369265235 ], [ -122.41796135902405, 37.79458858525292 ], [ -122.41812765598297, 37.794567390088325 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41290807723999, 37.802184540608394 ], [ -122.41288125514986, 37.80202347376832 ], [ -122.41285979747774, 37.801892076875475 ], [ -122.41275787353517, 37.80143006658992 ], [ -122.41267740726472, 37.80098076941203 ], [ -122.41254866123201, 37.80034072814651 ], [ -122.41248428821565, 37.80003977967424 ], [ -122.41243064403534, 37.799764262392124 ], [ -122.41241991519928, 37.79971763628886 ], [ -122.4122965335846, 37.79909453917511 ], [ -122.41210877895355, 37.79816624189021 ], [ -122.41192638874055, 37.797271843974116 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.79949298283334 ], [ -122.41064965724944, 37.799314955081435 ], [ -122.41145968437193, 37.79920898597781 ], [ -122.41194248199463, 37.799141165671685 ], [ -122.4122804403305, 37.79909877794875 ], [ -122.4122965335846, 37.79909453917511 ], [ -122.41231799125671, 37.79909030040123 ], [ -122.41293489933014, 37.7990097636514 ], [ -122.41390585899353, 37.79887836139735 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41096079349518, 37.800883280040885 ], [ -122.41098761558533, 37.801103690609615 ], [ -122.41102516651154, 37.80117574776828 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41095542907715, 37.80077731318719 ], [ -122.41084277629852, 37.800251715345794 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40990400314331, 37.795618662922415 ], [ -122.41000592708588, 37.79605527587214 ], [ -122.41009712219237, 37.79650036408717 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41454422473907, 37.79877663045951 ], [ -122.41459250450133, 37.79881054078769 ], [ -122.41466760635375, 37.798840212312086 ], [ -122.41475343704224, 37.7988359735236 ], [ -122.41512894630432, 37.79879358562553 ], [ -122.41520941257477, 37.79877239166739 ], [ -122.41540253162383, 37.79872152614298 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41104662418365, 37.797314232745414 ], [ -122.41127729415895, 37.79735662149236 ], [ -122.41191029548645, 37.797271843974144 ], [ -122.41192638874054, 37.797271843974144 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41926491260529, 37.796072231662805 ], [ -122.41918981075287, 37.796089187449574 ], [ -122.41915225982666, 37.796097665341506 ], [ -122.41856217384338, 37.79616972738355 ], [ -122.41854608058931, 37.79617396632503 ], [ -122.41847634315492, 37.79616972738355 ], [ -122.41844952106477, 37.79616972738355 ], [ -122.41833150386812, 37.79618244420722 ], [ -122.41751611232759, 37.796292656587205 ], [ -122.41717278957368, 37.79634352378406 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41721034049988, 37.796559708979885 ], [ -122.41731226444244, 37.79656394789897 ], [ -122.41839587688446, 37.79644525807265 ], [ -122.41850316524506, 37.79643254129425 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41846024990082, 37.79621635572625 ], [ -122.41844952106476, 37.79616972738355 ], [ -122.41835832595825, 37.79571192027404 ], [ -122.41831004619598, 37.79547877667427 ], [ -122.41821885108948, 37.795008248259386 ], [ -122.41812765598299, 37.794567390088325 ], [ -122.41793990135194, 37.79368566585404 ], [ -122.41777360439302, 37.7928124093659 ], [ -122.41774678230287, 37.79267251780427 ], [ -122.41768240928651, 37.792350342291314 ], [ -122.41760194301607, 37.79192642500235 ], [ -122.41741418838502, 37.79099803764374 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42671072483063, 37.79532193420228 ], [ -122.42834150791168, 37.79512270139288 ], [ -122.42999374866486, 37.79489803396326 ], [ -122.43163526058197, 37.79468608293166 ], [ -122.4319839477539, 37.794639453623084 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42580950260162, 37.79087933887559 ], [ -122.42561638355255, 37.7899551776589 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42872774600983, 37.79699207747368 ], [ -122.43037462234497, 37.79678437135622 ], [ -122.43119001388551, 37.7966826375346 ], [ -122.43198394775392, 37.796580903572895 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42158770561218, 37.795029443297494 ], [ -122.4217700958252, 37.795945063138014 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.794809014604034 ], [ -122.40960359573364, 37.79477510243896 ], [ -122.40963041782379, 37.79476662439528 ], [ -122.40973770618439, 37.79474966830498 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42598116397858, 37.791761096600425 ], [ -122.42433965206148, 37.79197305602319 ], [ -122.42278397083282, 37.792168058155134 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41410970687866, 37.791421960259214 ], [ -122.4140989780426, 37.79141348183073 ], [ -122.41406679153442, 37.79131597983338 ], [ -122.41392195224762, 37.79057835185864 ], [ -122.41391122341156, 37.79045965241627 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41245210170746, 37.79163815985659 ], [ -122.41245746612547, 37.79165511666101 ], [ -122.4124789237976, 37.79174413982033 ], [ -122.41255939006804, 37.79211718808339 ], [ -122.41265058517455, 37.79254110427786 ], [ -122.41274178028105, 37.79299469191242 ], [ -122.41283297538753, 37.79343555946803 ], [ -122.41300463676451, 37.79433000382966 ], [ -122.4131816625595, 37.79519900338339 ], [ -122.4131816625595, 37.795220198366735 ], [ -122.41336941719054, 37.796084948503236 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41907179355621, 37.7907987931743 ], [ -122.41923272609712, 37.791701747853054 ], [ -122.41932392120363, 37.792185014837926 ], [ -122.41942584514618, 37.79259621320449 ], [ -122.41952240467073, 37.79312186551574 ], [ -122.4195921421051, 37.7934779504405 ], [ -122.41976916790009, 37.79435967715371 ], [ -122.41994082927705, 37.795241393344035 ], [ -122.42009103298189, 37.795987452670616 ], [ -122.42010712623598, 37.79606375376797 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41226971149445, 37.790675854829374 ], [ -122.41226971149445, 37.790781836173345 ], [ -122.41241991519928, 37.791549136569564 ], [ -122.41244673728943, 37.79162544225071 ], [ -122.41245210170746, 37.79163815985659 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42278397083282, 37.792168058155134 ], [ -122.42262303829193, 37.792185014837955 ], [ -122.42106199264526, 37.792396973044646 ], [ -122.41942584514618, 37.79259621320451 ], [ -122.41860508918762, 37.79269371351246 ], [ -122.417773604393, 37.7928124093659 ], [ -122.41644322872162, 37.792973496290564 ], [ -122.4161159992218, 37.79301588752816 ], [ -122.41553127765654, 37.79309219169453 ], [ -122.41526305675507, 37.793126104632066 ], [ -122.41505920886993, 37.79315153932501 ], [ -122.41447448730469, 37.7932236042408 ], [ -122.41283297538757, 37.793435559468 ], [ -122.41211950778961, 37.79352881957535 ], [ -122.41151869297029, 37.79360512321199 ], [ -122.41118609905244, 37.79364751408718 ], [ -122.4106013774872, 37.79371957851917 ], [ -122.41036534309389, 37.7937492520884 ], [ -122.4099361896515, 37.793804360113896 ], [ -122.40990400314332, 37.793808599191095 ], [ -122.40957140922548, 37.793850989949526 ], [ -122.40954458713533, 37.793855229024025 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4108213186264, 37.791837402062676 ], [ -122.4110037088394, 37.792765778874795 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41100370883942, 37.792765778874795 ], [ -122.41108953952791, 37.7931769740092 ], [ -122.41113245487215, 37.79338469026892 ], [ -122.41118609905244, 37.79364751408718 ], [ -122.41127192974092, 37.794062943376915 ], [ -122.41136848926546, 37.79452923877677 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41793990135193, 37.79368566585406 ], [ -122.41629302501678, 37.793893380683656 ], [ -122.41567611694335, 37.79397392301147 ], [ -122.41522014141083, 37.79402903086939 ], [ -122.41465687751769, 37.7941053339894 ], [ -122.41300463676453, 37.79433000382966 ], [ -122.41184592247008, 37.794465653213706 ], [ -122.41136848926544, 37.79452923877677 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43156552314758, 37.79104466925053 ], [ -122.4319839477539, 37.7909937984053 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41576731204987, 37.791209999255514 ], [ -122.41578876972198, 37.79131597983335 ], [ -122.41583168506622, 37.791544897362755 ], [ -122.41589605808258, 37.79187555476423 ], [ -122.41594970226288, 37.79212990560461 ], [ -122.4161159992218, 37.79301588752816 ], [ -122.41629302501678, 37.793893380683656 ], [ -122.4164754152298, 37.79477934146046 ], [ -122.41666316986084, 37.795678008523424 ], [ -122.41671681404114, 37.7959238683626 ], [ -122.41674900054932, 37.79611886006703 ], [ -122.41685092449188, 37.796602098159795 ], [ -122.41694211959839, 37.79707261642332 ], [ -122.41703867912292, 37.79755160941504 ], [ -122.41722106933594, 37.79847991442385 ], [ -122.41731226444244, 37.79894618194477 ], [ -122.41739273071288, 37.799319193842436 ], [ -122.4173980951309, 37.7994082077669 ], [ -122.41753220558165, 37.79990837925248 ], [ -122.41762340068816, 37.80032801203869 ], [ -122.41773068904875, 37.80084089331766 ], [ -122.41780042648314, 37.801256282156544 ], [ -122.41780579090114, 37.8012859526985 ], [ -122.41789162158962, 37.801718293529156 ], [ -122.41797745227812, 37.80213791603292 ], [ -122.41798818111418, 37.80220997218259 ], [ -122.41799890995024, 37.80227778967103 ], [ -122.41817593574523, 37.80312974156482 ], [ -122.41821885108946, 37.8033586224884 ], [ -122.41821885108946, 37.80349001677221 ], [ -122.41833150386809, 37.804087645887726 ], [ -122.41839051246639, 37.80421480039474 ], [ -122.41855680942531, 37.80500739188654 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43168354034424, 37.80327809039246 ], [ -122.43188202381134, 37.80324842065075 ], [ -122.4319839477539, 37.80323570504354 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42494583129883, 37.801209656995105 ], [ -122.42471516132355, 37.80126899810456 ], [ -122.42462933063507, 37.801290191346396 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43150115013123, 37.802379515786946 ], [ -122.43168354034422, 37.80327809039246 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42985963821411, 37.80258296759844 ], [ -122.43150115013123, 37.802379515786946 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42985963821411, 37.80258296759844 ], [ -122.43006348609924, 37.803532401975204 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42215096950531, 37.797831373796456 ], [ -122.42372810840607, 37.797636386612204 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42929100990295, 37.7997896947997 ], [ -122.4309378862381, 37.799581996548405 ], [ -122.43198394775392, 37.799446356558846 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4217700958252, 37.795945063138014 ], [ -122.42196321487425, 37.79690306063769 ], [ -122.4220597743988, 37.797373576984334 ], [ -122.4221509695053, 37.797831373796456 ], [ -122.42232799530028, 37.798696093367674 ], [ -122.42233872413634, 37.79877239166739 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42233872413635, 37.79877239166739 ], [ -122.42235481739044, 37.79884445110031 ], [ -122.4224728345871, 37.79941244652253 ], [ -122.4225103855133, 37.79962014525055 ], [ -122.4225264787674, 37.79970068133491 ], [ -122.42254793643951, 37.79978969479964 ], [ -122.42270350456238, 37.800556901644505 ], [ -122.42271423339844, 37.80062895933659 ], [ -122.42273032665251, 37.80070949432101 ], [ -122.42288589477538, 37.801480930249134 ], [ -122.42290198802947, 37.801548748406965 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42290198802948, 37.80154874840699 ], [ -122.42291808128357, 37.801633521016726 ], [ -122.42307901382446, 37.80241342446109 ], [ -122.42309510707855, 37.802489718921066 ], [ -122.42311120033264, 37.802587206171864 ], [ -122.4232828617096, 37.803426438922145 ], [ -122.42347061634064, 37.804358908571395 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.798513824888246 ], [ -122.40965723991394, 37.79847143680529 ], [ -122.40989863872528, 37.798441765132765 ], [ -122.41045653820038, 37.79837394412226 ], [ -122.41176009178162, 37.79820863014824 ], [ -122.4120819568634, 37.79817048071708 ], [ -122.41210877895355, 37.79816624189018 ], [ -122.41213560104369, 37.79816200306305 ], [ -122.41283297538756, 37.7980772264691 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.80233712992234 ], [ -122.40957677364348, 37.802303221213165 ], [ -122.4106067419052, 37.802171824817975 ], [ -122.41120755672453, 37.80209553002967 ], [ -122.41160452365874, 37.80204466679365 ], [ -122.41209268569945, 37.8019810876994 ], [ -122.41238236427306, 37.801947178826744 ], [ -122.41243600845335, 37.80190055410142 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4168348312378, 37.804833615870386 ], [ -122.41672754287718, 37.80429533146929 ], [ -122.41663098335265, 37.80382062071034 ], [ -122.41653442382811, 37.80334166837023 ], [ -122.41634130477904, 37.80240494729402 ], [ -122.41615891456604, 37.80148940752228 ], [ -122.41605699062347, 37.801010440064665 ], [ -122.41596579551697, 37.80053994688323 ], [ -122.41594970226288, 37.80046365040925 ], [ -122.41577804088593, 37.79962014525055 ], [ -122.41568148136139, 37.79914540444263 ], [ -122.415611743927, 37.79879782441643 ], [ -122.41559028625488, 37.798696093367674 ], [ -122.41556882858276, 37.798598600981116 ], [ -122.41546154022217, 37.79806450997163 ], [ -122.41539716720581, 37.79775931337528 ], [ -122.41533815860748, 37.79746259325332 ], [ -122.41530060768127, 37.79728879948555 ], [ -122.41520404815674, 37.796805565884746 ], [ -122.4151074886322, 37.796326568055655 ], [ -122.4150162935257, 37.79588995670929 ], [ -122.41483390331268, 37.79499129222454 ], [ -122.4146568775177, 37.7941053339894 ], [ -122.4144744873047, 37.79322360424077 ], [ -122.41438865661621, 37.792786974556215 ], [ -122.41429746150972, 37.79233762480803 ], [ -122.4141150712967, 37.791438917113226 ], [ -122.4141097068787, 37.791421960259214 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42107272148132, 37.800832415970085 ], [ -122.42262303829193, 37.800637436707525 ], [ -122.42271423339844, 37.80062895933659 ], [ -122.42283225059509, 37.80061200459185 ], [ -122.42289662361145, 37.800603527218016 ], [ -122.42416799068451, 37.80044245693025 ], [ -122.42428600788116, 37.800429740839945 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41859436035156, 37.80020932826012 ], [ -122.41925418376923, 37.80012455401583 ], [ -122.41935610771179, 37.800111837870794 ], [ -122.42058455944061, 37.79995076651085 ], [ -122.42080986499786, 37.79992109543255 ], [ -122.42088496685028, 37.79991261797943 ], [ -122.42243528366089, 37.79971339755073 ], [ -122.4225264787674, 37.79970068133491 ], [ -122.42265522480011, 37.7996837263771 ], [ -122.42400169372559, 37.79950993783495 ], [ -122.42409288883209, 37.79949722158409 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41859436035156, 37.80020932826012 ], [ -122.41762340068816, 37.80032801203869 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.80424446974821 ], [ -122.40935146808624, 37.80424446974821 ], [ -122.40995228290556, 37.804176654065614 ], [ -122.41158306598662, 37.80396472965615 ], [ -122.41285443305968, 37.803807905201644 ], [ -122.41322457790373, 37.80376128165094 ], [ -122.41371810436247, 37.803697704034384 ], [ -122.41472661495207, 37.803566310120054 ], [ -122.41480171680449, 37.80355359456757 ], [ -122.41488218307494, 37.80354511753136 ], [ -122.41506457328795, 37.80352392493655 ], [ -122.41641104221343, 37.80336286101732 ], [ -122.41653442382811, 37.80334166837023 ], [ -122.41663634777068, 37.80332047571705 ], [ -122.41817593574523, 37.803129741564796 ], [ -122.4190771579742, 37.80301530083702 ], [ -122.41982281208034, 37.8029220527055 ], [ -122.4214535951614, 37.80271436326215 ], [ -122.42180764675136, 37.8026635004523 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41285979747772, 37.801892076875475 ], [ -122.41283297538757, 37.80190055410142 ], [ -122.41270422935486, 37.80190479271403 ], [ -122.41260766983032, 37.80192174716204 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41285979747772, 37.801892076875475 ], [ -122.41288661956786, 37.801887838262154 ], [ -122.41368055343628, 37.801790350088226 ], [ -122.4144959449768, 37.801692861785654 ], [ -122.41495192050934, 37.80163775964465 ], [ -122.41615891456604, 37.80148940752228 ], [ -122.41780579090118, 37.8012859526985 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41562247276306, 37.79369414402182 ], [ -122.41567611694336, 37.79397392301147 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42520332336426, 37.805096398955996 ], [ -122.42532670497894, 37.80571096865078 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4232828617096, 37.803426438922145 ], [ -122.42484390735626, 37.803218750897145 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41699039936066, 37.80571096865078 ], [ -122.41688847541809, 37.80521507488171 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4153059720993, 37.80571096865078 ], [ -122.41524159908295, 37.80541851888209 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42778897285461, 37.80515573694268 ], [ -122.42733299732208, 37.80521507488171 ], [ -122.4272471666336, 37.80521931330409 ], [ -122.4271559715271, 37.80521931330409 ], [ -122.42704331874847, 37.80521931330409 ], [ -122.4269038438797, 37.8051938827661 ], [ -122.42680728435516, 37.805164213794036 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42682337760925, 37.80419784647312 ], [ -122.42679655551912, 37.80427837756615 ], [ -122.42679655551912, 37.804337716210114 ], [ -122.42680191993713, 37.80440129327573 ], [ -122.42685556411743, 37.80462593180253 ], [ -122.42691993713379, 37.80482937742587 ], [ -122.42704331874847, 37.80521931330409 ], [ -122.42712914943696, 37.80543123411352 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42712914943695, 37.80543123411352 ], [ -122.42715060710907, 37.805321035368515 ], [ -122.42715597152709, 37.80521931330409 ], [ -122.42702186107634, 37.8048081851996 ], [ -122.42696821689604, 37.80460050106022 ], [ -122.42691993713379, 37.80438433939691 ], [ -122.42689311504364, 37.80432500079042 ], [ -122.42685556411743, 37.80426990061314 ], [ -122.42682337760925, 37.80419784647312 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42022514343262, 37.80192174716204 ], [ -122.42062211036682, 37.80187512242067 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42062211036682, 37.80187512242067 ], [ -122.42114245891571, 37.80179882732586 ], [ -122.4212658405304, 37.80178187284963 ], [ -122.42198467254639, 37.80168014591061 ], [ -122.42212414741518, 37.801658952780684 ], [ -122.42280542850496, 37.80156570293673 ], [ -122.4229019880295, 37.80154874840699 ], [ -122.42300927639012, 37.80153603250714 ], [ -122.4243557453156, 37.80134529374666 ], [ -122.42446303367619, 37.80132833916636 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42181837558746, 37.80456659339016 ], [ -122.42201149463654, 37.80549481023774 ], [ -122.42205440998077, 37.80571096865078 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41084277629852, 37.800251715345794 ], [ -122.41166353225708, 37.80014574758602 ], [ -122.41246819496155, 37.80004401839364 ], [ -122.41248428821564, 37.80003977967424 ], [ -122.41251647472382, 37.800035540954596 ], [ -122.41412580013274, 37.79983208212613 ], [ -122.41522550582884, 37.799687965116924 ], [ -122.41577804088591, 37.79962014525055 ], [ -122.41649150848387, 37.79952689283269 ], [ -122.4173980951309, 37.7994082077669 ], [ -122.41822957992552, 37.79930223879704 ], [ -122.41905033588408, 37.79919626967515 ], [ -122.41906642913814, 37.79919626967515 ], [ -122.41908252239223, 37.79919203090711 ], [ -122.4200856685638, 37.799064867752875 ], [ -122.42034852504726, 37.799030957541454 ], [ -122.42069721221922, 37.79898433097531 ], [ -122.42226898670195, 37.798780869251374 ], [ -122.42233872413634, 37.79877239166739 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41540253162384, 37.798721526143 ], [ -122.41559028625488, 37.798696093367674 ], [ -122.41722106933594, 37.79847991442385 ], [ -122.41783261299133, 37.79839937700852 ], [ -122.41887867450714, 37.79826373484738 ], [ -122.41963505744934, 37.79816200306305 ], [ -122.41989254951476, 37.79812809243717 ], [ -122.42039144039153, 37.79806450997163 ], [ -122.42050409317015, 37.79804755463823 ], [ -122.4221509695053, 37.797831373796456 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41963505744934, 37.80199804212988 ], [ -122.41953313350677, 37.8020107579502 ], [ -122.41951167583466, 37.80201499655647 ], [ -122.41947948932648, 37.802036189584236 ], [ -122.41942584514618, 37.80207857562153 ], [ -122.41940438747406, 37.802091291428006 ], [ -122.41938292980194, 37.80209553002967 ], [ -122.41935610771179, 37.80209553002967 ], [ -122.41933465003967, 37.802091291428006 ], [ -122.41931855678558, 37.8020743370189 ], [ -122.41926491260529, 37.80201499655647 ], [ -122.41923809051514, 37.80200228073689 ], [ -122.419211268425, 37.80199804212988 ], [ -122.41918444633485, 37.80200228073689 ], [ -122.4191576242447, 37.80201499655647 ], [ -122.41914153099064, 37.80203195097919 ], [ -122.41910934448246, 37.80210400723224 ], [ -122.41909325122838, 37.802125200234485 ], [ -122.41906642913824, 37.80213791603292 ], [ -122.41903424263005, 37.80214215463189 ], [ -122.41900742053991, 37.80213367743367 ], [ -122.4189859628678, 37.80211672303431 ], [ -122.41892695426947, 37.80206162120955 ], [ -122.41890549659735, 37.80204466679365 ], [ -122.4188786745072, 37.80204042818906 ], [ -122.41884648799902, 37.80204466679365 ], [ -122.4188250303269, 37.80205314400207 ], [ -122.41880893707284, 37.8020743370189 ], [ -122.41877675056463, 37.80214639323063 ], [ -122.41876065731057, 37.80216758622069 ], [ -122.41873919963845, 37.80217606341501 ], [ -122.41870701313027, 37.80218030201182 ], [ -122.41868019104012, 37.802171824817975 ], [ -122.418658733368, 37.802159109025396 ], [ -122.41859972476968, 37.80209976863108 ], [ -122.41857826709756, 37.80208705282608 ], [ -122.41855144500742, 37.80207857562153 ], [ -122.4185299873353, 37.80208281422394 ], [ -122.41850316524516, 37.802095530029646 ], [ -122.41848707199107, 37.80211672303431 ], [ -122.41845488548289, 37.80218877920469 ], [ -122.41843879222881, 37.802205733587485 ], [ -122.41841197013866, 37.802218449372056 ], [ -122.41838514804851, 37.80222268796642 ], [ -122.41835296154034, 37.802218449372056 ], [ -122.41833150386822, 37.802205733587485 ], [ -122.41827785968792, 37.80214639323063 ], [ -122.4182564020158, 37.80212943883419 ], [ -122.41823494434368, 37.80212096163453 ], [ -122.41820812225353, 37.80212096163453 ], [ -122.41818130016341, 37.80212943883419 ], [ -122.41816520690932, 37.80214639323063 ], [ -122.41813838481917, 37.80218030201182 ], [ -122.41812765598311, 37.802197256396575 ], [ -122.418106198311, 37.80220997218259 ], [ -122.41808474063888, 37.802214210777436 ], [ -122.41806328296676, 37.802214210777436 ], [ -122.41798818111434, 37.80220997218259 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42685556411743, 37.787814301082065 ], [ -122.42686629295349, 37.78786517411618 ], [ -122.42696821689606, 37.788331508630314 ], [ -122.4270647764206, 37.788789361472034 ], [ -122.4272632598877, 37.78974321244753 ], [ -122.42745101451874, 37.79066737631527 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41488218307495, 37.80354511753136 ], [ -122.41491973400116, 37.80370194254386 ], [ -122.4150162935257, 37.80420632343443 ], [ -122.41505920886993, 37.80441824715063 ], [ -122.415069937706, 37.80448182414693 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42214560508728, 37.790362149160224 ], [ -122.42078840732574, 37.790531719957585 ], [ -122.4206918478012, 37.79057835185864 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.80520235961308 ], [ -122.4095445871353, 37.80517692906923 ], [ -122.41014003753662, 37.805104875814145 ], [ -122.4105155467987, 37.80505401465057 ], [ -122.41177082061766, 37.80489719250912 ], [ -122.4134337902069, 37.80468527016725 ], [ -122.4149841070175, 37.80449030107562 ], [ -122.41505920886992, 37.80448182414693 ], [ -122.41506993770598, 37.80448182414693 ], [ -122.4150913953781, 37.80447758568221 ], [ -122.41516649723052, 37.804469108752045 ], [ -122.41598725318907, 37.8043673855142 ], [ -122.41614818572998, 37.80434619315537 ], [ -122.41659879684448, 37.8043038084194 ], [ -122.4167275428772, 37.80429533146929 ], [ -122.41684556007387, 37.80428685451822 ], [ -122.41750538349153, 37.8042020849539 ], [ -122.41833150386812, 37.804087645887726 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41192638874054, 37.797271843974116 ], [ -122.41195321083069, 37.79726760509566 ], [ -122.41301000118254, 37.79711500530889 ], [ -122.41346061229706, 37.797047183080274 ], [ -122.41355180740355, 37.797034466405464 ], [ -122.41366446018218, 37.79701751083568 ], [ -122.4144798517227, 37.79690306063769 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41453886032104, 37.796890343938095 ], [ -122.41463005542755, 37.796877627236306 ], [ -122.41520404815674, 37.796805565884775 ], [ -122.41685092449188, 37.796602098159795 ], [ -122.41721034049988, 37.796559708979885 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41533815860748, 37.79746259325332 ], [ -122.41526305675507, 37.79749650418472 ], [ -122.415252327919, 37.79752617623693 ], [ -122.4152898788452, 37.79770420829989 ], [ -122.41528451442719, 37.7977381191204 ], [ -122.4152684211731, 37.79778474647316 ], [ -122.41530060768127, 37.79781865725668 ], [ -122.4153220653534, 37.79785680686953 ], [ -122.41535425186157, 37.798013643959806 ], [ -122.41537570953369, 37.79804331580431 ], [ -122.41546154022218, 37.79806450997163 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40976452827454, 37.803239943579534 ], [ -122.40985572338104, 37.80371041956209 ], [ -122.40995228290558, 37.804176654065614 ], [ -122.41004884243013, 37.80463864717042 ], [ -122.41014003753662, 37.805104875814145 ], [ -122.4102634191513, 37.80571096865078 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41963505744934, 37.80199804212988 ], [ -122.41971552371977, 37.80198532630738 ], [ -122.4202251434326, 37.80192174716204 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42012858390808, 37.787814301082065 ], [ -122.42021441459656, 37.788225523771885 ], [ -122.4203109741211, 37.78870033475276 ], [ -122.4204021692276, 37.78916666399649 ], [ -122.4204933643341, 37.789620272346355 ], [ -122.42069184780121, 37.79057835185864 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42554128170013, 37.80571096865078 ], [ -122.42547154426575, 37.80537613476155 ], [ -122.42541253566743, 37.80515573694268 ], [ -122.42536962032318, 37.805075206806336 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41173326969147, 37.79629689552161 ], [ -122.41176009178162, 37.79628841765255 ], [ -122.41254329681396, 37.79619516102869 ], [ -122.41281688213348, 37.79616124949991 ], [ -122.41336941719057, 37.796084948503236 ], [ -122.41424381732942, 37.79597897476603 ], [ -122.41501629352571, 37.79588995670932 ], [ -122.41666316986085, 37.79567800852345 ], [ -122.41700112819673, 37.79563561881331 ], [ -122.418310046196, 37.79547877667427 ], [ -122.4191200733185, 37.795360085104505 ], [ -122.4198228120804, 37.79527106630204 ], [ -122.41994082927705, 37.79524139334406 ], [ -122.4215877056122, 37.795029443297494 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41173326969147, 37.79629689552161 ], [ -122.41171717643739, 37.79629689552161 ], [ -122.4109071493149, 37.79639862987445 ], [ -122.41052627563478, 37.79644949699833 ], [ -122.4100971221924, 37.79650036408717 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41009712219238, 37.79650036408717 ], [ -122.41016685962677, 37.79692001623378 ], [ -122.41022050380707, 37.79721249965347 ], [ -122.41025805473328, 37.79741596569723 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41025805473328, 37.79741596569721 ], [ -122.41045653820038, 37.79837394412226 ], [ -122.41064965724944, 37.799314955081435 ], [ -122.41084277629851, 37.800251715345794 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42289662361145, 37.800603527218016 ], [ -122.42327749729156, 37.800955337414564 ], [ -122.42340624332428, 37.801023156054995 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41219997406006, 37.787814301082065 ], [ -122.41170108318329, 37.787873652951795 ], [ -122.41007566452026, 37.78808138412048 ], [ -122.40933001041412, 37.788178890386014 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41843342781067, 37.787814301082065 ], [ -122.41846561431885, 37.78796692007934 ], [ -122.41856217384338, 37.78843325395142 ], [ -122.41865873336793, 37.78891230295563 ], [ -122.41875529289247, 37.78937863086172 ], [ -122.41884648799898, 37.78983223791039 ], [ -122.4190664291382, 37.79078183617337 ], [ -122.41907179355621, 37.7907987931743 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41789162158966, 37.801718293529156 ], [ -122.4185299873352, 37.801633521016726 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42246747016907, 37.80409612286167 ], [ -122.42253720760345, 37.804473347217254 ] ] }, "properties": { "class": "street_limited", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42002665996552, 37.79877239166739 ], [ -122.42063820362091, 37.798696093367674 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41568148136139, 37.79914540444266 ], [ -122.41468906402588, 37.799276806221656 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4160248041153, 37.790692811854626 ], [ -122.4161159992218, 37.79115065006551 ], [ -122.4161159992218, 37.79116336775309 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41897523403168, 37.79874272011575 ], [ -122.41998910903932, 37.798598600981116 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41100907325745, 37.795093028375305 ], [ -122.41108417510986, 37.79547029871132 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41387367248535, 37.80270588612963 ], [ -122.41368055343628, 37.801790350088226 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42752611637115, 37.80571096865078 ], [ -122.427499294281, 37.805689776677475 ], [ -122.42723643779755, 37.80551600226697 ], [ -122.42712914943695, 37.80543123411352 ], [ -122.42689311504364, 37.80544818775199 ], [ -122.42672145366669, 37.80546937979462 ], [ -122.42648541927338, 37.80551176386163 ], [ -122.42632985115051, 37.80552871748163 ], [ -122.42621183395386, 37.80551600226699 ], [ -122.42610991001129, 37.80546514138659 ], [ -122.42592215538025, 37.80530408170084 ], [ -122.42583632469176, 37.80520235961308 ], [ -122.42576122283934, 37.805087922096874 ], [ -122.42569684982298, 37.80493957690451 ], [ -122.42565393447875, 37.80481242364534 ], [ -122.4255734682083, 37.80453268570453 ], [ -122.42573976516722, 37.804312285368546 ], [ -122.42616355419158, 37.80425294670417 ], [ -122.42657661437987, 37.80421480039474 ], [ -122.42666244506835, 37.80435043162762 ], [ -122.4268341064453, 37.80506672994478 ], [ -122.42680728435516, 37.805164213794036 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41502702236176, 37.791799249341395 ], [ -122.41505920886993, 37.79193914255643 ], [ -122.41511821746826, 37.792235884863004 ], [ -122.41512358188628, 37.79229523318131 ], [ -122.41521477699278, 37.79274458318729 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41441011428833, 37.79789071761994 ], [ -122.41482853889465, 37.797831373796456 ], [ -122.41508603096008, 37.79780170186684 ], [ -122.41526842117308, 37.797784746473134 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43122220039368, 37.80098500807743 ], [ -122.4319839477539, 37.80088751871189 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41989254951477, 37.79812809243717 ], [ -122.41998910903932, 37.798598600981116 ], [ -122.42002665996552, 37.79877239166739 ], [ -122.42008566856384, 37.799064867752875 ], [ -122.42014467716217, 37.79935310392155 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42183446884155, 37.80354935604959 ], [ -122.42193102836609, 37.803557833085314 ], [ -122.42217242717743, 37.80355359456757 ], [ -122.4224352836609, 37.80354087901289 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42001593112946, 37.80388843671987 ], [ -122.41856217384338, 37.80407916891281 ], [ -122.41849780082703, 37.8040706919369 ], [ -122.41845488548279, 37.80405373798221 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41000592708588, 37.79605527587214 ], [ -122.41162061691284, 37.79583908920016 ], [ -122.41163671016692, 37.79583908920016 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41903424263, 37.80279489597278 ], [ -122.41892158985138, 37.802269312488406 ], [ -122.41892158985138, 37.802239642341455 ], [ -122.41892695426941, 37.802214210777436 ], [ -122.41894841194153, 37.80218877920469 ], [ -122.41896986961365, 37.802171824817975 ], [ -122.41899669170378, 37.802159109025396 ], [ -122.41900205612181, 37.80214639323063 ], [ -122.41900742053984, 37.80213367743367 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41190493106842, 37.79263436551425 ], [ -122.41181910037994, 37.792210449854856 ], [ -122.41171717643738, 37.79172294383976 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41530060768127, 37.79728879948555 ], [ -122.41689383983612, 37.79708957198048 ], [ -122.41694211959839, 37.79707261642332 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41913080215454, 37.79951417658475 ], [ -122.41874992847443, 37.79956080281643 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41508603096008, 37.79780170186684 ], [ -122.4151611328125, 37.79822134662093 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41000592708588, 37.794313047639136 ], [ -122.41008639335631, 37.794707278062184 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42676973342896, 37.7996922038565 ], [ -122.42685556411743, 37.80010336043956 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4203485250473, 37.799030957541454 ], [ -122.42044508457184, 37.79950569908492 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4220597743988, 37.797373576984334 ], [ -122.42317020893096, 37.79724217181975 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4171245098114, 37.79609342639566 ], [ -122.41717278957367, 37.79634352378406 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42229580879211, 37.80259144474508 ], [ -122.4224352836609, 37.80257449045081 ], [ -122.42300927639009, 37.80250243465672 ], [ -122.42309510707857, 37.802489718921066 ], [ -122.42319703102113, 37.80247700318321 ], [ -122.42455422878267, 37.802303221213165 ], [ -122.42467224597932, 37.8022905054432 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42712914943695, 37.80543123411352 ], [ -122.42722570896149, 37.80571096865078 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42828786373138, 37.80571096865078 ], [ -122.42864191532135, 37.80565163111018 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41902351379395, 37.79490227297768 ], [ -122.41912007331848, 37.795360085104505 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41649150848389, 37.79952689283269 ], [ -122.41658806800842, 37.79999739246696 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42028415203094, 37.80523626699121 ], [ -122.42078304290771, 37.805172690644405 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41833686828613, 37.798640988991096 ], [ -122.41893768310547, 37.79856892935968 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.412548661232, 37.80034072814651 ], [ -122.41257011890411, 37.800336489444156 ], [ -122.41312265396118, 37.800251715345794 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.801387680180454 ], [ -122.40938365459442, 37.801379202895646 ], [ -122.41014003753662, 37.80128171405037 ], [ -122.41054773330688, 37.80123085025394 ], [ -122.41102516651154, 37.80117574776828 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41275787353516, 37.80143006658992 ], [ -122.41279006004333, 37.80143006658992 ], [ -122.41439938545227, 37.80122661160265 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4148553609848, 37.80116727045915 ], [ -122.41605699062349, 37.801010440064665 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4297684431076, 37.799149643213354 ], [ -122.43082523345947, 37.7990140024299 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4284166097641, 37.80374008911817 ], [ -122.42821276187898, 37.80279489597278 ], [ -122.42802500724794, 37.801862406576994 ], [ -122.42785871028902, 37.801014678728365 ], [ -122.42784261703493, 37.800942621412574 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43134021759033, 37.79710652753374 ], [ -122.4314421415329, 37.797606714604264 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41912543773651, 37.79948874408232 ], [ -122.42014467716217, 37.79935310392155 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41422235965729, 37.80030257981648 ], [ -122.41433501243591, 37.800289863702076 ], [ -122.41478562355042, 37.80023052180601 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41583168506622, 37.791544897362755 ], [ -122.41630375385284, 37.791489787651976 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43186593055725, 37.80424446974821 ], [ -122.4319839477539, 37.80423175431249 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41470515727997, 37.79036638843492 ], [ -122.41464614868164, 37.79003572427978 ] ] }, "properties": { "class": "street_limited", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41187274456024, 37.79700055526198 ], [ -122.41185665130615, 37.79700055526198 ], [ -122.41121828556061, 37.79709381086916 ], [ -122.41106808185577, 37.797140438628595 ], [ -122.41048336029051, 37.79726336621694 ], [ -122.41038680076598, 37.797271843974116 ], [ -122.41034924983978, 37.797271843974116 ], [ -122.41030097007751, 37.797259127338 ], [ -122.41022050380707, 37.79721249965347 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41190493106842, 37.79263436551425 ], [ -122.41211950778961, 37.79352881957535 ] ] }, "properties": { "class": "street", "oneway": -1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42927491664886, 37.79134141514943 ], [ -122.43091642856598, 37.79113369314532 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40990400314331, 37.795618662922415 ], [ -122.40956604480742, 37.79566105264231 ], [ -122.40936756134032, 37.795686486462564 ], [ -122.40933001041412, 37.795694964400674 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4112719297409, 37.794062943376915 ], [ -122.41135239601135, 37.794058704314324 ], [ -122.41186201572418, 37.79399087927983 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41900742053986, 37.798916510462924 ], [ -122.4188894033432, 37.798929226813755 ], [ -122.41848707199097, 37.798963137071866 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42682337760925, 37.80419784647312 ], [ -122.4269038438797, 37.80426990061314 ], [ -122.42696821689606, 37.804341954682855 ], [ -122.4272632598877, 37.804876000302286 ], [ -122.42730617523195, 37.804952292218374 ], [ -122.4273544549942, 37.80500739188654 ], [ -122.42741882801056, 37.80505401465057 ], [ -122.427499294281, 37.805096398955996 ], [ -122.42759048938751, 37.805134544810045 ], [ -122.42767095565796, 37.80515149851663 ], [ -122.42778897285461, 37.80515573694268 ], [ -122.42791771888733, 37.80513878323706 ], [ -122.42803037166595, 37.805104875814145 ], [ -122.42821276187897, 37.804998915017194 ], [ -122.42823421955109, 37.80515573694268 ], [ -122.42825031280516, 37.805244743833335 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42825031280518, 37.805244743833335 ], [ -122.4272632598877, 37.80537189634818 ], [ -122.42719352245332, 37.805388850000256 ], [ -122.42712914943696, 37.80543123411352 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41357862949371, 37.80038735385647 ], [ -122.41422235965729, 37.80030257981648 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41346061229706, 37.79652579761845 ], [ -122.41510748863222, 37.796326568055655 ], [ -122.41674900054932, 37.79611886006703 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4282556772232, 37.803918106204456 ], [ -122.42833077907562, 37.8038969137167 ], [ -122.42840588092804, 37.803884198221105 ], [ -122.42882966995239, 37.80388843671987 ], [ -122.42887258529663, 37.80390115221473 ], [ -122.42889940738678, 37.803930821694195 ], [ -122.42893695831297, 37.804049499492926 ], [ -122.42893159389496, 37.804087645887726 ], [ -122.42891013622284, 37.80412155377767 ], [ -122.42888331413269, 37.80414274620098 ], [ -122.42884576320648, 37.80415546165205 ], [ -122.42865800857544, 37.80418936951085 ], [ -122.42853999137878, 37.80422327735411 ], [ -122.42843806743622, 37.80427837756618 ], [ -122.42835760116579, 37.804358908571395 ], [ -122.42833614349365, 37.804439439488824 ], [ -122.42829859256746, 37.80481242364534 ], [ -122.42827177047731, 37.80489295406824 ], [ -122.42823958396913, 37.80496076909309 ], [ -122.42821276187898, 37.804998915017194 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4272632598877, 37.804045261003395 ], [ -122.42763876914978, 37.80474460848425 ], [ -122.42768704891205, 37.80479546986092 ], [ -122.4277514219284, 37.8048081851996 ], [ -122.42781579494476, 37.80479970830737 ], [ -122.42786943912508, 37.80476580072879 ], [ -122.42789626121521, 37.80470646242878 ], [ -122.42794990539551, 37.804235992791284 ], [ -122.4279659986496, 37.80415546165205 ], [ -122.4280035495758, 37.804083407400384 ], [ -122.42806792259216, 37.80401559156988 ], [ -122.42814302444458, 37.80396472965615 ], [ -122.4282556772232, 37.803918106204456 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4282556772232, 37.803918106204456 ], [ -122.42797672748566, 37.80397744513788 ], [ -122.4277514219284, 37.8040155915699 ], [ -122.42751002311707, 37.80404102251361 ], [ -122.4272632598877, 37.804045261003395 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4272632598877, 37.804045261003395 ], [ -122.42712378501892, 37.80405797647123 ], [ -122.42707014083862, 37.80406645344859 ], [ -122.42702186107635, 37.804087645887726 ], [ -122.42698431015016, 37.80411307680662 ], [ -122.42695212364197, 37.80415546165205 ], [ -122.42693066596985, 37.80420632343443 ], [ -122.42690384387971, 37.80426990061314 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4272471666336, 37.80521931330409 ], [ -122.42726862430573, 37.8051938827661 ], [ -122.42727935314178, 37.80516845221935 ], [ -122.42729008197784, 37.805113352671334 ], [ -122.42729544639587, 37.80504129935424 ], [ -122.42728471755981, 37.80496076909309 ], [ -122.4272632598877, 37.804876000302286 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.418133020401, 37.798840212312086 ], [ -122.41822957992555, 37.79930223879704 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4148553609848, 37.80116727045915 ], [ -122.41495192050935, 37.80163775964465 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4107837677002, 37.794122290227605 ], [ -122.4112719297409, 37.794062943376915 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41750538349152, 37.8042020849539 ], [ -122.41760730743408, 37.80476580072879 ], [ -122.41787552833557, 37.80473189313464 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41908252239227, 37.80112064524151 ], [ -122.41913616657257, 37.80140887338821 ], [ -122.4191629886627, 37.80154027114065 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41912007331848, 37.795360085104505 ], [ -122.41926491260529, 37.796072231662805 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41467833518982, 37.79712348308311 ], [ -122.41482853889467, 37.797831373796456 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41274178028107, 37.79299469191242 ], [ -122.41438865661621, 37.792786974556215 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42229580879211, 37.80259144474508 ], [ -122.42238700389862, 37.803053447766 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42216169834137, 37.80196413326501 ], [ -122.42223143577576, 37.802387992956945 ], [ -122.42239773273468, 37.80248124176272 ], [ -122.42243528366089, 37.80257449045078 ] ] }, "properties": { "class": "street_limited", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41362690925598, 37.80275674891027 ], [ -122.41371810436249, 37.80322298943413 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41187274456024, 37.798780869251374 ], [ -122.41194248199463, 37.799141165671685 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41620719432831, 37.79165935586148 ], [ -122.41629302501678, 37.79208327468276 ], [ -122.41629302501678, 37.79214262312365 ], [ -122.41637349128723, 37.79252838682742 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42610991001129, 37.8007434037619 ], [ -122.42656588554382, 37.80055266295457 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41276323795319, 37.80334166837025 ], [ -122.41285443305969, 37.803807905201644 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41667926311493, 37.80044669562654 ], [ -122.41675436496735, 37.80085784800986 ] ] }, "properties": { "class": "street_limited", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4195009469986, 37.79722945517852 ], [ -122.41962432861328, 37.79786104571417 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42494583129883, 37.801209656995105 ], [ -122.42472052574158, 37.801218134299376 ], [ -122.42464542388916, 37.801196941036885 ], [ -122.42459177970886, 37.801141838525915 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43024587631226, 37.787814301082065 ], [ -122.43035852909088, 37.78836966314214 ], [ -122.43055164813995, 37.78932775886951 ], [ -122.430739402771, 37.79025616721429 ], [ -122.43091642856598, 37.79113369314532 ], [ -122.43109345436096, 37.79201120865472 ], [ -122.43126511573792, 37.79289295287215 ], [ -122.43138313293457, 37.79344827676231 ], [ -122.43145287036896, 37.793770447487695 ], [ -122.43163526058197, 37.79468608293166 ], [ -122.43182301521301, 37.79564409675727 ], [ -122.4319839477539, 37.79641982451366 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41788625717163, 37.78804322945978 ], [ -122.41784870624542, 37.787814301082065 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41751074790955, 37.79000604921915 ], [ -122.41759121417998, 37.79030703856731 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41841733455658, 37.78988734885741 ], [ -122.41848170757294, 37.79020105654232 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41765022277832, 37.78903524423471 ], [ -122.4177360534668, 37.789518528659656 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.415069937706, 37.787814301082065 ], [ -122.41518795490265, 37.78839086008464 ], [ -122.41538107395172, 37.78934471620411 ], [ -122.4155741930008, 37.79025616721429 ], [ -122.4156868457794, 37.79081151092244 ], [ -122.41575121879578, 37.791116736221234 ], [ -122.41576731204985, 37.791209999255514 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41186201572418, 37.80536341952066 ], [ -122.41351962089539, 37.80515573694268 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40942120552063, 37.80571096865078 ], [ -122.40933001041412, 37.80525745909466 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41539716720581, 37.7977593133753 ], [ -122.41703867912292, 37.79755160941504 ], [ -122.4186909198761, 37.797339665996496 ], [ -122.4195009469986, 37.79722945517852 ], [ -122.42031633853912, 37.797110766421454 ], [ -122.42196321487427, 37.79690306063772 ], [ -122.42352962493898, 37.79669959318127 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42233872413635, 37.79877239166739 ], [ -122.42244601249696, 37.79875967528956 ], [ -122.4237871170044, 37.79857740696702 ], [ -122.42390513420106, 37.79856469055563 ], [ -122.42406070232393, 37.79854349653181 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41658806800842, 37.79902671876394 ], [ -122.41731226444244, 37.79894618194477 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.79296501804014 ], [ -122.4093461036682, 37.792960778914576 ], [ -122.40936219692229, 37.792960778914576 ], [ -122.40937829017638, 37.792956539788726 ], [ -122.4097108840942, 37.792922626773354 ], [ -122.4110037088394, 37.792765778874795 ], [ -122.41112172603606, 37.79273610491059 ], [ -122.4119049310684, 37.79263436551425 ], [ -122.4122428894043, 37.79259197405775 ], [ -122.41265058517456, 37.79254110427786 ], [ -122.4142974615097, 37.792337624808056 ], [ -122.41511821746826, 37.79223588486298 ], [ -122.41552591323853, 37.7921807756676 ], [ -122.41594970226288, 37.79212990560459 ], [ -122.41629302501678, 37.79208327468274 ], [ -122.41760194301604, 37.79192642500235 ], [ -122.41923272609709, 37.791701747853054 ], [ -122.42088496685027, 37.79149402686194 ], [ -122.4224406480789, 37.79130750139274 ], [ -122.42259621620177, 37.79129054450855 ], [ -122.42415189743042, 37.79109130082783 ], [ -122.42580950260162, 37.79087933887556 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.796597859242894 ], [ -122.41009712219237, 37.79650036408717 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42580950260162, 37.79087933887559 ], [ -122.42745101451874, 37.79066737631527 ], [ -122.42754757404327, 37.790658897800206 ], [ -122.42909252643585, 37.79045965241627 ], [ -122.430739402771, 37.79025616721429 ], [ -122.4319839477539, 37.7900950743653 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42782652378082, 37.80084513199106 ], [ -122.42781043052673, 37.80076459715455 ], [ -122.42767095565796, 37.80006521198694 ], [ -122.4276602268219, 37.80000163118878 ], [ -122.42764413356781, 37.79992957288471 ], [ -122.42746710777283, 37.79906910652822 ], [ -122.42727935314178, 37.79813657009509 ], [ -122.42709159851074, 37.7972040218895 ], [ -122.42690920829773, 37.796275700847126 ], [ -122.42671072483063, 37.79532193420228 ], [ -122.42660343647003, 37.79479205852346 ], [ -122.42652833461761, 37.79440206759597 ], [ -122.42636740207672, 37.79362631865265 ], [ -122.42632985115051, 37.79351610229493 ], [ -122.42629766464233, 37.79343132036946 ], [ -122.42616355419159, 37.7927784962844 ], [ -122.42615282535553, 37.79263860465857 ], [ -122.42614209651947, 37.79250719107183 ], [ -122.42600798606873, 37.79188403313971 ], [ -122.42598116397858, 37.79176109660045 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42398023605347, 37.79016290297611 ], [ -122.42561638355255, 37.7899551776589 ], [ -122.4272632598877, 37.78974321244753 ], [ -122.42891013622285, 37.789535485950495 ], [ -122.43055164813995, 37.78932775886951 ], [ -122.4319839477539, 37.789145467276555 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42598116397858, 37.791761096600425 ], [ -122.42580950260162, 37.79087933887556 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4285614490509, 37.787814301082065 ], [ -122.42871701717377, 37.78857739291647 ], [ -122.42891013622284, 37.789535485950495 ], [ -122.42909252643584, 37.79045965241627 ], [ -122.42927491664885, 37.79134141514943 ], [ -122.42945194244383, 37.792218928191865 ], [ -122.42962896823882, 37.793100669930396 ], [ -122.4298059940338, 37.79397816207892 ], [ -122.42999374866484, 37.79489803396326 ], [ -122.43018686771391, 37.79585604504041 ], [ -122.43037462234496, 37.79678437135622 ], [ -122.430562376976, 37.797716924859415 ], [ -122.43075013160704, 37.79864946659016 ], [ -122.43082523345946, 37.7990140024299 ], [ -122.43093788623808, 37.799581996548376 ], [ -122.43110954761504, 37.800366160355566 ], [ -122.4311202764511, 37.80042974083997 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42158770561218, 37.795029443297494 ], [ -122.42314875125885, 37.79483020969929 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42615282535553, 37.79263860465855 ], [ -122.42451667785645, 37.792850561564016 ], [ -122.42295563220978, 37.79304980050074 ], [ -122.42280006408691, 37.79306251786141 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42314338684082, 37.79392729325345 ], [ -122.4246883392334, 37.79372805668306 ], [ -122.42632985115051, 37.79351610229493 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42314875125885, 37.79483020969929 ], [ -122.42330431938171, 37.794809014604034 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42280006408691, 37.79306251786141 ], [ -122.42122828960419, 37.79327023444296 ], [ -122.4195921421051, 37.7934779504405 ], [ -122.41797208786011, 37.79368142676982 ], [ -122.41793990135193, 37.79368566585406 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42632985115051, 37.79351610229493 ], [ -122.42798745632172, 37.79330838640464 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42798745632172, 37.79330838640464 ], [ -122.42815911769867, 37.79419011514147 ], [ -122.42834150791168, 37.79512270139288 ], [ -122.42853999137878, 37.79606375376797 ], [ -122.42872774600983, 37.79699207747368 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42798745632172, 37.79330838640464 ], [ -122.4280196428299, 37.79318121312238 ], [ -122.42793381214142, 37.79274034404906 ], [ -122.42788553237915, 37.7926725178043 ], [ -122.4279123544693, 37.792579256616065 ], [ -122.42789089679718, 37.79248175615706 ], [ -122.42783725261688, 37.792426647145035 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42783725261688, 37.792426647145035 ], [ -122.42781043052673, 37.792490234462946 ], [ -122.42783188819885, 37.79261740893458 ], [ -122.42788553237915, 37.7926725178043 ], [ -122.42785334587097, 37.79274882232528 ], [ -122.42791771888733, 37.79318969134799 ], [ -122.42798745632172, 37.79330838640464 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4108213186264, 37.791837402062676 ], [ -122.41076231002808, 37.79153217974085 ], [ -122.41062819957733, 37.79088357812059 ], [ -122.4105316400528, 37.79039182407786 ], [ -122.41044580936432, 37.78995941695693 ], [ -122.41025805473328, 37.78901828682906 ], [ -122.41016685962677, 37.78855195664898 ], [ -122.41007566452026, 37.78808138412048 ], [ -122.41002202033997, 37.787814301082065 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42615282535553, 37.79263860465855 ], [ -122.42783725261688, 37.79242664714506 ], [ -122.42808938026428, 37.792392733886466 ], [ -122.42945194244385, 37.792218928191865 ], [ -122.43109345436096, 37.79201120865472 ], [ -122.43198394775389, 37.791896750701035 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42798745632172, 37.79330838640464 ], [ -122.42962896823883, 37.793100669930396 ], [ -122.43126511573792, 37.79289295287215 ], [ -122.4319839477539, 37.79279969196218 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41812765598297, 37.794567390088325 ], [ -122.41814911365509, 37.79456315105469 ], [ -122.41892695426941, 37.79446141417424 ], [ -122.41976916790009, 37.79435967715371 ], [ -122.42140531539917, 37.794147724577606 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42069184780121, 37.79057835185864 ], [ -122.42088496685028, 37.79149402686194 ], [ -122.42106199264526, 37.792396973044646 ], [ -122.42122828960419, 37.79327023444296 ], [ -122.42140531539917, 37.794147724577606 ] ] }, "properties": { "class": "street", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42140531539917, 37.794147724577606 ], [ -122.42296099662781, 37.79394848860165 ], [ -122.42314338684082, 37.79392729325345 ] ] }, "properties": { "class": "street", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.79976002365667 ], [ -122.41015613079071, 37.800323773335606 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41722643375397, 37.805172690644405 ], [ -122.41800963878632, 37.80571096865078 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41096079349518, 37.800883280040885 ], [ -122.41130948066713, 37.801141838525915 ], [ -122.41149723529817, 37.80124780485665 ], [ -122.41243600845338, 37.80190055410142 ], [ -122.41266667842866, 37.80205738260592 ], [ -122.41290807724, 37.80218454060837 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41015613079071, 37.800323773335606 ], [ -122.41038680076599, 37.80048484388214 ], [ -122.41077303886414, 37.800756119798216 ], [ -122.41096079349518, 37.800883280040885 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42542326450348, 37.78899709006654 ], [ -122.42533206939697, 37.78853923851192 ], [ -122.42524087429047, 37.78807290530868 ], [ -122.42518723011017, 37.787814301082044 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41391122341156, 37.79045965241627 ], [ -122.41374492645264, 37.789548203916084 ], [ -122.41355180740356, 37.78860282917525 ], [ -122.41341233253479, 37.78794572301528 ], [ -122.41338551044464, 37.787814301082065 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41095542907715, 37.80077731318719 ], [ -122.4102795124054, 37.800311057224846 ], [ -122.40933001041412, 37.799649816449765 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42040753364563, 37.80571096865078 ], [ -122.42201149463654, 37.80549481023774 ], [ -122.42365837097168, 37.80528712802926 ], [ -122.42425918579102, 37.80521507488171 ], [ -122.42461860179901, 37.80516845221935 ], [ -122.42520332336426, 37.805096398955996 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41688847541809, 37.80521507488171 ], [ -122.41722643375397, 37.805172690644405 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41169035434723, 37.787814301082065 ], [ -122.41170108318329, 37.787873652951795 ], [ -122.41176009178162, 37.78815345398132 ], [ -122.41181910037994, 37.78848412655941 ], [ -122.41188883781433, 37.78881055829413 ], [ -122.41207659244537, 37.78974321244753 ], [ -122.4121570587158, 37.7901247493902 ], [ -122.41226971149443, 37.790675854829374 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42350280284882, 37.787814301082065 ], [ -122.42359399795532, 37.78828063591724 ], [ -122.42369055747986, 37.78874696780958 ], [ -122.42378175258636, 37.78920481807711 ], [ -122.42398023605347, 37.79016290297611 ], [ -122.42415189743042, 37.79109130082786 ], [ -122.42433965206148, 37.79197305602321 ], [ -122.42451667785646, 37.79285056156404 ], [ -122.42468833923341, 37.79372805668306 ], [ -122.42486000061037, 37.79460978041143 ], [ -122.42505848407747, 37.79552964443154 ], [ -122.42524087429048, 37.79642406344077 ], [ -122.42525160312654, 37.7964834083948 ], [ -122.42543935775758, 37.79741172682703 ], [ -122.42562711238863, 37.798344272410596 ], [ -122.42579877376558, 37.79920050844297 ], [ -122.42581486701967, 37.799276806221684 ], [ -122.42583096027376, 37.799348865162536 ], [ -122.42599189281465, 37.8001542250124 ], [ -122.42600262165071, 37.80020932826014 ], [ -122.42602407932283, 37.80029834111194 ], [ -122.4261099100113, 37.8007434037619 ], [ -122.42618501186375, 37.801052826690615 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41951704025269, 37.796212116787245 ], [ -122.42012321949005, 37.79614429372968 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42446303367615, 37.80132833916636 ], [ -122.4244898557663, 37.80144278250799 ], [ -122.42465615272522, 37.80220997218259 ], [ -122.42467224597931, 37.802290505443175 ], [ -122.42468833923338, 37.802379515786924 ], [ -122.42484390735625, 37.803218750897145 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41145431995392, 37.80112064524151 ], [ -122.41095542907715, 37.80077731318719 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41722643375397, 37.805172690644405 ], [ -122.41855680942535, 37.80500739188654 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41949558258057, 37.79613157689948 ], [ -122.41784870624542, 37.796335045920344 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41282761096954, 37.80571096865078 ], [ -122.41360545158385, 37.80561772392276 ], [ -122.41476953029631, 37.805473618202406 ], [ -122.41524159908295, 37.80541851888209 ], [ -122.41688847541809, 37.80521507488168 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42181837558746, 37.80456659339016 ], [ -122.42253720760345, 37.804473347217254 ], [ -122.42347061634064, 37.804358908571395 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42019295692444, 37.80478699296722 ], [ -122.42174863815309, 37.80457507030913 ], [ -122.42181837558746, 37.80456659339016 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41855680942535, 37.80500739188654 ], [ -122.42019295692444, 37.80478699296722 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.79754313168997 ], [ -122.40972697734833, 37.79749226531914 ], [ -122.41025805473328, 37.79741596569721 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41104662418365, 37.797314232745414 ], [ -122.41128802299501, 37.797254888458816 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42347061634064, 37.804358908571395 ], [ -122.42502093315125, 37.804159700135244 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.79104890848602 ], [ -122.41062819957732, 37.79088357812059 ], [ -122.41099834442137, 37.79083694641215 ], [ -122.41226971149443, 37.79067585482935 ], [ -122.41391122341155, 37.79045965241627 ], [ -122.41470515727995, 37.79036638843492 ], [ -122.4155741930008, 37.79025616721429 ], [ -122.41596579551695, 37.790205295826226 ], [ -122.41720497608183, 37.79004844215926 ], [ -122.41751074790955, 37.79000604921912 ], [ -122.41841733455658, 37.78988734885741 ], [ -122.41884648799896, 37.78983223791036 ], [ -122.4204933643341, 37.78962027234633 ], [ -122.42206513881683, 37.789421024161776 ], [ -122.4222207069397, 37.78940406684465 ], [ -122.42378175258636, 37.78920481807708 ], [ -122.42542326450348, 37.78899709006654 ], [ -122.4270647764206, 37.78878936147201 ], [ -122.42871701717375, 37.78857739291647 ], [ -122.43035852909087, 37.78836966314214 ], [ -122.43198394775389, 37.788161932783865 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43086814880371, 37.80343067744717 ], [ -122.4314957857132, 37.80338405365836 ], [ -122.4315494298935, 37.80338829218583 ], [ -122.43159770965576, 37.803405246293295 ], [ -122.43163526058197, 37.80343067744717 ], [ -122.4316620826721, 37.803464585638764 ], [ -122.43173718452452, 37.80362564933614 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42517650127411, 37.80413850771679 ], [ -122.4249941110611, 37.8031975582087 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42461860179901, 37.80134529374666 ], [ -122.42462933063507, 37.80129019134637 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43086814880371, 37.80343067744717 ], [ -122.43168354034424, 37.80327809039246 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42517650127411, 37.80413850771679 ], [ -122.42547690868378, 37.80410459983463 ], [ -122.42676973342896, 37.80394353718175 ], [ -122.4284166097641, 37.80374008911817 ], [ -122.43006348609924, 37.803532401975176 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42462933063507, 37.80129019134637 ], [ -122.42461860179901, 37.80125204350671 ], [ -122.42459177970888, 37.801141838525915 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43173718452454, 37.80362564933614 ], [ -122.43186593055727, 37.80424446974821 ], [ -122.43190348148346, 37.80441824715063 ], [ -122.4319839477539, 37.80481666209083 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42502093315125, 37.804159700135244 ], [ -122.42517650127411, 37.80413850771679 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42536962032318, 37.805075206806336 ], [ -122.42520332336426, 37.805096398955996 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43006348609924, 37.803532401975204 ], [ -122.43086814880373, 37.80343067744717 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42536962032318, 37.805075206806336 ], [ -122.42517650127411, 37.80413850771679 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42010712623596, 37.79606375376797 ], [ -122.41949558258057, 37.79613157689948 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42618501186371, 37.801052826690615 ], [ -122.4262011051178, 37.80115455449363 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43173718452454, 37.80362564933614 ], [ -122.4317479133606, 37.80354935604959 ], [ -122.4317479133606, 37.80347306268421 ], [ -122.43173718452454, 37.80339676924006 ], [ -122.43171572685242, 37.803337429840084 ], [ -122.43168354034424, 37.80327809039246 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42484390735626, 37.803218750897145 ], [ -122.42502093315125, 37.804159700135244 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42727398872375, 37.787814301082065 ], [ -122.42686629295349, 37.78786517411618 ], [ -122.42524087429047, 37.78807290530868 ], [ -122.42359399795532, 37.78828063591724 ], [ -122.42202758789062, 37.78847140841073 ], [ -122.42187738418578, 37.788492605324016 ], [ -122.42031097412108, 37.78870033475276 ], [ -122.4186587333679, 37.78891230295563 ], [ -122.4176502227783, 37.78903524423471 ], [ -122.41701722145079, 37.789111552511926 ], [ -122.41576731204985, 37.78929384418857 ], [ -122.4153810739517, 37.78934471620411 ], [ -122.41450130939484, 37.78945069945736 ], [ -122.41374492645264, 37.789548203916084 ], [ -122.41207659244537, 37.78974321244753 ], [ -122.41044580936432, 37.78995941695691 ], [ -122.40933001041412, 37.79010779223455 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42012321949005, 37.79614429372968 ], [ -122.42099225521089, 37.79608070955667 ], [ -122.42163598537446, 37.79600016952563 ], [ -122.42177009582521, 37.79594506313799 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41025805473328, 37.79741596569721 ], [ -122.41039216518402, 37.797445637781784 ], [ -122.41104662418365, 37.797314232745414 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4217700958252, 37.795945063138014 ], [ -122.42332577705383, 37.79574159304304 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41785407066345, 37.79641558558629 ], [ -122.41951704025269, 37.79621211678722 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4217700958252, 37.795945063138014 ], [ -122.42162525653839, 37.79593234627349 ], [ -122.42098689079285, 37.79601288637848 ], [ -122.42021441459654, 37.79605951482018 ], [ -122.42010712623595, 37.79606375376797 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4319839477539, 37.788068665902436 ], [ -122.43193030357361, 37.787814301082065 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4112719297409, 37.7971785885917 ], [ -122.41111636161804, 37.7972040218895 ], [ -122.41084277629852, 37.79726336621694 ], [ -122.41038680076599, 37.79736086036572 ], [ -122.41025805473328, 37.79741596569723 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41290807723999, 37.802184540608394 ], [ -122.41273105144501, 37.80200228073689 ], [ -122.41260766983032, 37.80192174716204 ], [ -122.41245746612549, 37.80182425903287 ], [ -122.41145431995392, 37.80112064524154 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42332577705383, 37.79574159304304 ], [ -122.42348670959474, 37.7957246371765 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4249941110611, 37.8031975582087 ], [ -122.42482781410217, 37.80237103861598 ], [ -122.42480635643005, 37.802269312488406 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42480635643005, 37.802269312488406 ], [ -122.42479026317598, 37.802197256396575 ], [ -122.42463469505311, 37.80142158930995 ], [ -122.42461860179903, 37.80134529374666 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41290807723999, 37.802184540608394 ], [ -122.41372346878053, 37.8027440332184 ], [ -122.4146729707718, 37.80340100776679 ], [ -122.41488218307497, 37.80354511753136 ] ] }, "properties": { "class": "main", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41722643375397, 37.805172690644405 ], [ -122.41683483123781, 37.804833615870386 ], [ -122.41614818573, 37.80434619315537 ], [ -122.41555809974672, 37.80395201417224 ], [ -122.41515040397645, 37.803668034461275 ], [ -122.41488218307497, 37.80354511753136 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42502093315125, 37.804159700135244 ], [ -122.42520332336426, 37.805096398955996 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41488218307495, 37.80354511753136 ], [ -122.41509675979614, 37.80374008911819 ], [ -122.41598725318907, 37.8043673855142 ], [ -122.41685092449187, 37.804977722839574 ], [ -122.41722643375395, 37.805172690644405 ] ] }, "properties": { "class": "main", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42618501186371, 37.801052826690615 ], [ -122.4260938167572, 37.80106554267365 ], [ -122.42494583129883, 37.801209656995105 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42173790931702, 37.787814301082065 ], [ -122.42177546024321, 37.7880177930084 ], [ -122.42187738418578, 37.788492605324016 ], [ -122.42196857929228, 37.78896741458879 ], [ -122.42206513881682, 37.7894210241618 ], [ -122.42223680019379, 37.79034519205912 ], [ -122.42225289344786, 37.79042573825485 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42314875125885, 37.79483020969929 ], [ -122.42332577705383, 37.79574159304304 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42443084716797, 37.80041278604948 ], [ -122.4244147539139, 37.800336489444156 ], [ -122.42426991462709, 37.79956928030996 ], [ -122.42424845695497, 37.79947602782785 ], [ -122.42423772811891, 37.79942092403308 ], [ -122.424076795578, 37.79862403379003 ], [ -122.42406070232393, 37.79854349653181 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43112027645111, 37.80042974083997 ], [ -122.43102371692657, 37.80044245693027 ], [ -122.42958068847656, 37.80062472065078 ], [ -122.42946803569794, 37.800637436707525 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42332577705383, 37.79574159304304 ], [ -122.42352962493896, 37.79669959318127 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42946803569794, 37.800637436707525 ], [ -122.42936611175537, 37.80065439144644 ], [ -122.42790699005127, 37.80083665464399 ], [ -122.42782652378084, 37.80084513199108 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4319839477539, 37.80031529592869 ], [ -122.43121147155762, 37.800417024747446 ], [ -122.43112027645111, 37.80042974083997 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42280006408691, 37.79306251786141 ], [ -122.42296099662781, 37.79394848860165 ], [ -122.42314875125885, 37.79483020969929 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42387294769287, 37.797615192322034 ], [ -122.42368519306183, 37.79667839862234 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42461860179901, 37.80134529374666 ], [ -122.42471516132356, 37.80133257781179 ], [ -122.4261099100113, 37.80116727045915 ], [ -122.4262011051178, 37.80115455449363 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42406070232391, 37.79854349653181 ], [ -122.42404460906982, 37.79847143680532 ], [ -122.42387294769287, 37.797615192322034 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42352962493896, 37.79669959318127 ], [ -122.42372810840607, 37.797636386612204 ], [ -122.42388904094696, 37.79848839204139 ], [ -122.42390513420105, 37.79856469055563 ], [ -122.42392659187317, 37.798657944188264 ], [ -122.42408215999603, 37.79942940154263 ], [ -122.42409288883209, 37.79949722158409 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42459177970886, 37.801141838525915 ], [ -122.42456495761871, 37.801052826690615 ], [ -122.42444694042206, 37.80048908257599 ], [ -122.42443084716797, 37.80041278604948 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42314338684082, 37.79392729325345 ], [ -122.42295563220978, 37.79304980050074 ], [ -122.42278397083281, 37.792168058155134 ], [ -122.42259621620177, 37.79129054450855 ], [ -122.42242455482481, 37.790396063350826 ], [ -122.42240846157073, 37.79032823495405 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42948412895203, 37.80073492640316 ], [ -122.42960214614868, 37.800722210363176 ], [ -122.43103444576263, 37.80053994688323 ], [ -122.4311363697052, 37.80052299211805 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42240846157074, 37.790328234954075 ], [ -122.4222207069397, 37.789404066844675 ], [ -122.42212414741516, 37.78894197845551 ], [ -122.42202758789062, 37.78847140841073 ], [ -122.42193639278412, 37.788000835369274 ], [ -122.42189347743988, 37.787814301082044 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42368519306183, 37.79667839862234 ], [ -122.42348670959473, 37.7957246371765 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42784261703491, 37.800942621412574 ], [ -122.42792308330536, 37.800929905408374 ], [ -122.42939829826355, 37.80074764244092 ], [ -122.42948412895203, 37.80073492640316 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42782652378082, 37.80084513199106 ], [ -122.42774605751038, 37.80085784800986 ], [ -122.42618501186371, 37.801052826690615 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42330431938171, 37.794809014604034 ], [ -122.42314338684082, 37.79392729325345 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42225289344788, 37.79042573825485 ], [ -122.42244064807892, 37.79130750139274 ], [ -122.42262303829193, 37.792185014837955 ], [ -122.42280006408691, 37.793062517861436 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42409288883209, 37.79949722158412 ], [ -122.42411434650421, 37.79959047403946 ], [ -122.42426991462708, 37.80035768295351 ], [ -122.42428600788116, 37.800429740839945 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4311363697052, 37.80052299211805 ], [ -122.43123292922974, 37.80051451473398 ], [ -122.4319839477539, 37.800417024747446 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42348670959473, 37.7957246371765 ], [ -122.42330431938171, 37.794809014604034 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4262011051178, 37.80115455449363 ], [ -122.42777287960052, 37.80095109874748 ], [ -122.42784261703491, 37.80094262141255 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42428600788116, 37.80042974083997 ], [ -122.42430210113525, 37.800510276041585 ], [ -122.42445766925812, 37.801256282156544 ], [ -122.42445766925812, 37.80129019134637 ], [ -122.42446303367615, 37.80132833916636 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42446303367615, 37.80132833916636 ], [ -122.42461860179901, 37.80134529374666 ] ] }, "properties": { "class": "motorway", "oneway": 1 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41119146347046, 37.79454619491767 ], [ -122.41031169891359, 37.79466064876697 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.792049361266564 ], [ -122.41245746612549, 37.79165511666101 ], [ -122.41312265396118, 37.791566093394444 ], [ -122.41411507129669, 37.79143891711325 ], [ -122.41567075252534, 37.79123967383262 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41686165332794, 37.79108282236141 ], [ -122.41681337356567, 37.79108706159474 ], [ -122.41678655147554, 37.79109130082786 ], [ -122.41675972938539, 37.79109130082786 ], [ -122.416689991951, 37.79108706159474 ], [ -122.41666853427888, 37.79108706159474 ], [ -122.41664707660676, 37.79108706159474 ], [ -122.41660952568058, 37.79109130082786 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40980207920074, 37.79514813539847 ], [ -122.4098128080368, 37.79517780839393 ], [ -122.40981817245483, 37.79520324238054 ], [ -122.4098289012909, 37.79523291535386 ], [ -122.40983963012695, 37.79525411032749 ], [ -122.40984499454497, 37.79528378328038 ], [ -122.40987181663512, 37.79545758176509 ], [ -122.40988254547118, 37.79549149361689 ], [ -122.40989863872527, 37.79552116647442 ], [ -122.40991473197933, 37.795542361365385 ], [ -122.40993618965145, 37.79556355625024 ], [ -122.40995764732357, 37.79557627317825 ], [ -122.40998446941371, 37.79558899010405 ], [ -122.41000592708583, 37.79559746805339 ], [ -122.41003274917598, 37.795601707027686 ], [ -122.41007030010218, 37.795601707027686 ], [ -122.41010248661036, 37.795601707027686 ], [ -122.41108417510982, 37.795474537692954 ], [ -122.41134166717524, 37.79543638684983 ], [ -122.41142213344568, 37.79542790888202 ], [ -122.41151869297022, 37.79541519192849 ], [ -122.41154551506037, 37.7954109529435 ], [ -122.41252720355982, 37.795292261264755 ], [ -122.41318166255945, 37.79519900338339 ], [ -122.41791844367975, 37.794592824285104 ], [ -122.41795599460596, 37.794592824285104 ], [ -122.41798281669611, 37.794592824285104 ], [ -122.41800427436823, 37.794597063317056 ], [ -122.41803109645835, 37.79460554138021 ], [ -122.41805255413047, 37.79461401944239 ], [ -122.41807401180259, 37.794626736533836 ], [ -122.41809546947471, 37.79464369265237 ], [ -122.41811692714683, 37.79466488779506 ], [ -122.41812765598289, 37.79469032195825 ], [ -122.41813838481897, 37.7947199951376 ], [ -122.41814911365503, 37.794745429281804 ], [ -122.4181652069091, 37.79483444871764 ], [ -122.41821348667136, 37.79508031136412 ], [ -122.41828322410575, 37.79541943091325 ], [ -122.41830468177787, 37.79552964443154 ], [ -122.41844415664664, 37.79622059466508 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.792049361266564 ], [ -122.41245746612549, 37.79165511666101 ], [ -122.41312265396118, 37.791566093394444 ], [ -122.41411507129669, 37.79143891711325 ], [ -122.41567075252534, 37.79123967383262 ], [ -122.4158638715744, 37.79121423848154 ], [ -122.41686165332794, 37.79108282236141 ], [ -122.41717278957367, 37.79104466925053 ], [ -122.41767168045044, 37.79098108068854 ], [ -122.41896450519562, 37.79081998941997 ], [ -122.41915762424469, 37.790798793174275 ], [ -122.42060601711273, 37.79061226595001 ], [ -122.42159843444824, 37.790489327294715 ], [ -122.42184519767761, 37.79045541314694 ], [ -122.42207050323486, 37.79042573825485 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41203904151917, 37.79793310603611 ], [ -122.41205513477325, 37.797767791075536 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41516649723053, 37.805028584055684 ], [ -122.41515040397645, 37.80512182952755 ], [ -122.41517186164857, 37.805227790148145 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41226971149445, 37.79517780839393 ], [ -122.41227507591248, 37.79520748137745 ], [ -122.41228580474854, 37.79523291535386 ], [ -122.41230189800261, 37.79525411032749 ], [ -122.41232335567473, 37.79526682730876 ], [ -122.41235017776488, 37.79527954428784 ], [ -122.41237699985503, 37.79528802227267 ], [ -122.4124091863632, 37.79529226126473 ], [ -122.41244137287138, 37.79529650025653 ], [ -122.41247892379756, 37.79529650025653 ], [ -122.41252720355983, 37.79529226126473 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41565465927124, 37.791209999255514 ], [ -122.4140989780426, 37.79141348183073 ], [ -122.41283297538757, 37.79157457180537 ], [ -122.41244673728943, 37.79162544225074 ], [ -122.41206049919128, 37.79166783426177 ], [ -122.41171181201935, 37.79171446544581 ], [ -122.40933001041412, 37.79202392619421 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4097591638565, 37.79493194607189 ], [ -122.40980207920074, 37.79514813539847 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41717278957367, 37.79104466925053 ], [ -122.41722106933594, 37.79104043001474 ], [ -122.41725862026213, 37.79104043001474 ], [ -122.41729080677032, 37.79104466925053 ], [ -122.41731762886046, 37.79104890848602 ], [ -122.41733908653258, 37.79105738695633 ], [ -122.41736590862273, 37.791074343894024 ], [ -122.41738200187679, 37.79108706159474 ], [ -122.41740345954894, 37.79110825775774 ], [ -122.417419552803, 37.79112945391467 ], [ -122.41742491722103, 37.791154889294944 ], [ -122.41743564605709, 37.79118880312169 ], [ -122.41774141788478, 37.79270219179405 ], [ -122.41791307926174, 37.79361784047711 ], [ -122.41791844367977, 37.7936347968272 ], [ -122.4179238080978, 37.79364751408718 ], [ -122.41792917251581, 37.79365599225931 ], [ -122.41796672344202, 37.79369838310532 ], [ -122.41797208786005, 37.79371533943691 ], [ -122.41797745227805, 37.79372805668306 ], [ -122.41798281669608, 37.79374077392701 ], [ -122.41800963878622, 37.79385946809832 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41511821746826, 37.804820900536086 ], [ -122.41518795490263, 37.80494381534272 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41800963878632, 37.79385946809832 ], [ -122.41799890995026, 37.79382131642118 ], [ -122.4179881811142, 37.7938001210365 ], [ -122.41797208786012, 37.793778925645704 ], [ -122.417950630188, 37.7937619693287 ], [ -122.41791844367982, 37.79374501300782 ], [ -122.41788089275362, 37.793732295764606 ], [ -122.41784870624544, 37.793723817601226 ], [ -122.4178057909012, 37.793719578519195 ], [ -122.41777360439302, 37.793719578519195 ], [ -122.41771996021272, 37.793723817601226 ], [ -122.41177618503572, 37.79447413129194 ], [ -122.41138458251955, 37.79452499974094 ], [ -122.41119146347047, 37.79454619491767 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42184519767761, 37.79045541314694 ], [ -122.42178618907928, 37.79045965241627 ], [ -122.42176473140717, 37.79045965241627 ], [ -122.42165207862854, 37.79045965241627 ], [ -122.42161989212036, 37.79045965241627 ], [ -122.42159307003023, 37.79046389168536 ], [ -122.4206006526947, 37.79058683038295 ], [ -122.41916298866272, 37.790769118420094 ], [ -122.41906642913818, 37.79078183617337 ], [ -122.41896450519562, 37.790794553924414 ], [ -122.41767704486847, 37.79095988448907 ], [ -122.41715669631958, 37.791019233832294 ], [ -122.41660952568056, 37.79109130082786 ], [ -122.4161159992218, 37.79115065006551 ], [ -122.41585314273834, 37.79118032466647 ], [ -122.41565465927124, 37.791209999255514 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40980207920074, 37.79514813539847 ], [ -122.40982353687286, 37.79527106630204 ], [ -122.40986108779907, 37.79546605972949 ], [ -122.40986645221709, 37.79549149361689 ], [ -122.40988254547118, 37.7955254054531 ], [ -122.40989863872527, 37.79554660034284 ], [ -122.40991473197933, 37.79555931727375 ], [ -122.40993082523342, 37.79557627317823 ], [ -122.40995228290554, 37.79558475112901 ], [ -122.40997374057766, 37.79559746805339 ], [ -122.4100005626678, 37.795605946001736 ], [ -122.41003274917598, 37.79561018497555 ], [ -122.41007030010218, 37.79561442394911 ], [ -122.41010785102839, 37.79561018497555 ], [ -122.41135776042933, 37.79544486481667 ], [ -122.41139531135553, 37.795440625833365 ], [ -122.41143286228171, 37.79544486481667 ], [ -122.41146504878989, 37.79545758176509 ], [ -122.41149187088004, 37.79546605972952 ], [ -122.41151869297019, 37.79548301565542 ], [ -122.41154015064231, 37.7955042105573 ], [ -122.41155624389638, 37.79553388340973 ], [ -122.41156697273244, 37.79556355625024 ], [ -122.4115777015685, 37.79559746805339 ], [ -122.41162061691276, 37.79583908920016 ], [ -122.41171717643729, 37.796296895521635 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.79285480069591 ], [ -122.4093461036682, 37.79296077891455 ], [ -122.4095070362091, 37.793804360113924 ], [ -122.40952312946318, 37.79385522902405 ], [ -122.40953922271727, 37.79392305418307 ], [ -122.40967869758605, 37.7945589120208 ], [ -122.40972161293028, 37.79475390732791 ], [ -122.40975916385649, 37.79493194607189 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41031169891357, 37.79466064876697 ], [ -122.41019904613495, 37.79467760487772 ], [ -122.40991473197937, 37.79471151708755 ], [ -122.40988790988922, 37.79471151708755 ], [ -122.4098664522171, 37.79471151708755 ], [ -122.40983963012695, 37.79471151708755 ], [ -122.40981817245483, 37.794703039036534 ], [ -122.40979671478271, 37.79469456098458 ], [ -122.40978062152864, 37.79468184390482 ], [ -122.40976452827455, 37.79466912682284 ], [ -122.40974843502049, 37.794647931681375 ], [ -122.4097377061844, 37.79462249750358 ], [ -122.40972697734834, 37.794592824285104 ], [ -122.40971088409428, 37.794550433952274 ], [ -122.40958213806157, 37.7939145760416 ], [ -122.40957140922548, 37.793850989949526 ], [ -122.40956068038942, 37.793791642880905 ], [ -122.40937829017643, 37.792956539788705 ], [ -122.40933001041417, 37.79268947437132 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41567075252533, 37.79123967383262 ], [ -122.41586387157439, 37.79121423848154 ], [ -122.41686165332793, 37.79108282236141 ], [ -122.41717278957366, 37.79104466925053 ], [ -122.41767168045043, 37.79098108068854 ], [ -122.4189645051956, 37.79081998941997 ], [ -122.41915762424468, 37.790798793174275 ], [ -122.42060601711272, 37.79061226595001 ], [ -122.42159843444823, 37.790489327294715 ], [ -122.4218451976776, 37.79045541314694 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41848170757294, 37.79621635572625 ], [ -122.41837441921234, 37.79570768130605 ], [ -122.41833686828613, 37.7955254054531 ], [ -122.41832077503204, 37.79541519192846 ], [ -122.41825640201569, 37.795109984386826 ], [ -122.41820812225342, 37.79487683888746 ], [ -122.41815984249116, 37.7946182584731 ], [ -122.4181491136551, 37.79456315105469 ], [ -122.41800963878632, 37.79385946809832 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41848707199097, 37.79640286880277 ], [ -122.41850852966309, 37.7965215586972 ], [ -122.41852462291718, 37.796602098159795 ], [ -122.41887331008911, 37.79833579477649 ], [ -122.41888403892517, 37.79838242175199 ], [ -122.4190503358841, 37.79919626967515 ], [ -122.41930782794952, 37.800476366493726 ], [ -122.41962969303131, 37.80207009841604 ], [ -122.42015540599823, 37.8046979855249 ], [ -122.42035388946533, 37.80566858469807 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41826713085175, 37.79511422338909 ], [ -122.41822957992555, 37.79493194607189 ], [ -122.41817057132722, 37.79462249750358 ], [ -122.41800963878632, 37.793825555497385 ], [ -122.41799354553224, 37.793740773926984 ], [ -122.41799354553224, 37.793719578519195 ], [ -122.41798281669618, 37.7937068612716 ], [ -122.41795599460603, 37.793643275000754 ], [ -122.41795063018803, 37.79363479682717 ], [ -122.41795063018803, 37.79362207956497 ], [ -122.41776823997502, 37.79268947437132 ], [ -122.41746783256535, 37.791154889294944 ], [ -122.41746783256535, 37.79112521468376 ], [ -122.41747319698338, 37.79109977929326 ], [ -122.41748392581944, 37.791074343894024 ], [ -122.4175000190735, 37.79104890848602 ], [ -122.41752147674562, 37.79103195154249 ], [ -122.41754293441774, 37.791019233832266 ], [ -122.41756975650789, 37.79100651611991 ], [ -122.41760194301607, 37.7909937984053 ], [ -122.41763412952425, 37.79098955916663 ], [ -122.41767168045045, 37.79098108068854 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42206513881683, 37.7904087811683 ], [ -122.42185592651367, 37.79043421679666 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4193024635315, 37.8002856249968 ], [ -122.41930782794951, 37.800311057224846 ], [ -122.41930782794951, 37.800336489444156 ], [ -122.41930782794951, 37.80036616035559 ], [ -122.4193024635315, 37.800417024747446 ], [ -122.4193024635315, 37.80043821823375 ], [ -122.4193024635315, 37.800459411713945 ], [ -122.41930782794951, 37.800476366493726 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42207050323486, 37.79042573825485 ], [ -122.42184519767761, 37.79045541314694 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41816520690918, 37.79483444871761 ], [ -122.41817057132721, 37.794851404788496 ], [ -122.41817593574524, 37.79486412183907 ], [ -122.41818130016325, 37.79487259987156 ], [ -122.41818666458128, 37.794881077903106 ], [ -122.4182081222534, 37.79489803396326 ], [ -122.41821885108946, 37.794910751005816 ], [ -122.41822421550746, 37.79491922903299 ], [ -122.4182295799255, 37.79493194607189 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42038607597351, 37.805664346301484 ], [ -122.42019295692444, 37.8046937470726 ], [ -122.41966187953949, 37.80206585981292 ], [ -122.41930246353151, 37.8002856249968 ], [ -122.41908252239227, 37.79919203090711 ], [ -122.41892158985138, 37.79837818293725 ], [ -122.41855680942535, 37.79659362032577 ], [ -122.41854071617126, 37.796504603009666 ], [ -122.41851925849915, 37.79639862987445 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42039680480957, 37.80571096865078 ], [ -122.42038607597351, 37.805664346301484 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42207050323486, 37.79042573825485 ], [ -122.42184519767761, 37.79045541314694 ], [ -122.42178618907928, 37.79045965241627 ], [ -122.42176473140717, 37.79045965241627 ], [ -122.42165207862854, 37.79045965241627 ], [ -122.42161989212036, 37.79045965241627 ], [ -122.42159307003023, 37.79046389168536 ], [ -122.4206006526947, 37.79058683038295 ], [ -122.41916298866272, 37.790769118420094 ], [ -122.41906642913818, 37.79078183617337 ], [ -122.41896450519562, 37.790794553924414 ], [ -122.41767704486847, 37.79095988448907 ], [ -122.41715669631958, 37.791019233832294 ], [ -122.41660952568056, 37.79109130082786 ], [ -122.4161159992218, 37.79115065006551 ], [ -122.41585314273834, 37.79118032466647 ], [ -122.41565465927124, 37.791209999255514 ], [ -122.4140989780426, 37.79141348183076 ], [ -122.41283297538757, 37.79157457180539 ], [ -122.41244673728943, 37.79162544225074 ], [ -122.41206049919128, 37.79166783426177 ], [ -122.41171181201935, 37.79171446544583 ], [ -122.40933001041412, 37.79202392619421 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42206513881683, 37.7904087811683 ], [ -122.42185592651367, 37.79043421679666 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41524159908295, 37.80522355172624 ], [ -122.41518795490263, 37.80494381534272 ], [ -122.4151074886322, 37.8045623549303 ], [ -122.41509139537811, 37.80447758568221 ], [ -122.41508066654205, 37.80441400868229 ], [ -122.41503238677979, 37.8042020849539 ], [ -122.41493582725525, 37.80371465807083 ], [ -122.41488218307495, 37.80354511753136 ], [ -122.41479635238647, 37.80343915449654 ], [ -122.41469442844391, 37.803358622488425 ], [ -122.41392731666565, 37.802824565896664 ], [ -122.41378784179688, 37.802727078959165 ], [ -122.4137020111084, 37.802667739021146 ], [ -122.41306364536284, 37.80222692656055 ], [ -122.41298317909241, 37.802142154631916 ], [ -122.41295099258423, 37.80207433701892 ], [ -122.41290807723998, 37.80198532630738 ], [ -122.41288661956786, 37.801887838262154 ], [ -122.4128758907318, 37.8018242590329 ], [ -122.41279006004332, 37.80143006658992 ], [ -122.41269886493681, 37.80098076941205 ], [ -122.4125701189041, 37.800336489444156 ], [ -122.41252720355986, 37.800111837870816 ], [ -122.4125164747238, 37.80003554095462 ], [ -122.41250038146971, 37.799950766510875 ], [ -122.41245210170746, 37.799760023656695 ], [ -122.41233408451079, 37.79917931460157 ], [ -122.41231799125671, 37.799090300401254 ], [ -122.41230726242065, 37.799030957541476 ], [ -122.41214632987975, 37.79823830191443 ], [ -122.41213560104369, 37.79816200306308 ], [ -122.41211950778961, 37.798094181795705 ], [ -122.41205513477325, 37.797767791075565 ], [ -122.41195321083069, 37.79726760509566 ], [ -122.41189420223236, 37.79699631636796 ], [ -122.41176009178162, 37.79628841765257 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42039680480957, 37.80571096865078 ], [ -122.42038607597351, 37.805664346301484 ], [ -122.42019295692444, 37.8046937470726 ], [ -122.41966187953949, 37.80206585981292 ], [ -122.41930246353151, 37.8002856249968 ], [ -122.41908252239227, 37.79919203090711 ], [ -122.41892158985138, 37.79837818293725 ], [ -122.41855680942535, 37.79659362032577 ], [ -122.41854071617126, 37.796504603009666 ], [ -122.41851925849915, 37.79639862987445 ], [ -122.41848170757295, 37.79621635572625 ], [ -122.41837441921234, 37.79570768130605 ], [ -122.41833686828615, 37.7955254054531 ], [ -122.41832077503206, 37.79541519192846 ], [ -122.4182564020157, 37.795109984386826 ], [ -122.41820812225343, 37.79487683888746 ], [ -122.41815984249119, 37.7946182584731 ], [ -122.41814911365513, 37.79456315105469 ], [ -122.41800963878633, 37.79385946809832 ], [ -122.41799890995027, 37.79382131642118 ], [ -122.41798818111421, 37.7938001210365 ], [ -122.41797208786015, 37.793778925645704 ], [ -122.41795063018803, 37.7937619693287 ], [ -122.41791844367982, 37.79374501300782 ], [ -122.41788089275364, 37.793732295764606 ], [ -122.41784870624546, 37.793723817601226 ], [ -122.41780579090123, 37.793719578519195 ], [ -122.41777360439302, 37.793719578519195 ], [ -122.41771996021272, 37.793723817601226 ], [ -122.41177618503572, 37.79447413129194 ], [ -122.41138458251957, 37.79452499974094 ], [ -122.4111914634705, 37.79454619491767 ], [ -122.41031169891362, 37.79466064876697 ], [ -122.410199046135, 37.79467760487772 ], [ -122.40991473197941, 37.79471151708755 ], [ -122.40988790988928, 37.79471151708755 ], [ -122.40986645221716, 37.79471151708755 ], [ -122.40983963012701, 37.79471151708755 ], [ -122.40981817245489, 37.794703039036534 ], [ -122.40979671478277, 37.79469456098458 ], [ -122.40978062152868, 37.79468184390482 ], [ -122.40976452827462, 37.79466912682284 ], [ -122.40974843502053, 37.794647931681375 ], [ -122.40973770618447, 37.79462249750358 ], [ -122.40972697734841, 37.794592824285104 ], [ -122.40971088409432, 37.794550433952274 ], [ -122.40958213806161, 37.7939145760416 ], [ -122.40957140922555, 37.793850989949526 ], [ -122.40956068038949, 37.793791642880905 ], [ -122.40937829017648, 37.792956539788705 ], [ -122.40933001041422, 37.79268947437132 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41171717643738, 37.79629689552161 ], [ -122.41185665130615, 37.79700055526198 ], [ -122.41191029548645, 37.797271843974116 ], [ -122.41203904151918, 37.79793310603611 ], [ -122.41208195686342, 37.79817048071708 ], [ -122.41228044033052, 37.79909877794875 ], [ -122.41239309310915, 37.79972187502673 ], [ -122.41245210170746, 37.799963482683594 ], [ -122.41246819496155, 37.80004401839361 ], [ -122.41247892379761, 37.80011607658604 ], [ -122.4125325679779, 37.8003449668486 ], [ -122.41266131401063, 37.800980769412 ], [ -122.41274714469911, 37.801430066589866 ], [ -122.41282224655153, 37.80182849764983 ], [ -122.41283297538759, 37.8019005541014 ], [ -122.41286516189577, 37.802014996556444 ], [ -122.41290807724, 37.80218454060837 ], [ -122.41298854351045, 37.802269312488356 ], [ -122.41312801837923, 37.80239223154157 ], [ -122.4135732650757, 37.80269317042896 ], [ -122.41365909576417, 37.802752510346544 ], [ -122.41380393505098, 37.80285847436647 ], [ -122.41465687751771, 37.80343915449651 ], [ -122.41480171680452, 37.80355359456754 ], [ -122.41488218307497, 37.803680749994044 ], [ -122.41491973400117, 37.80379518969071 ], [ -122.4150002002716, 37.8042063234344 ], [ -122.41504311561584, 37.8044182471506 ], [ -122.41505920886993, 37.804481824146876 ], [ -122.41507530212402, 37.804562354930276 ], [ -122.41511821746826, 37.80482090053606 ], [ -122.41516649723052, 37.805028584055634 ], [ -122.41519331932066, 37.805172690644376 ], [ -122.41524159908293, 37.80522355172619 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.79285480069591 ], [ -122.4093461036682, 37.79296077891455 ], [ -122.4095070362091, 37.793804360113924 ], [ -122.40952312946318, 37.79385522902405 ], [ -122.40953922271727, 37.79392305418307 ], [ -122.40967869758605, 37.7945589120208 ], [ -122.40972161293028, 37.79475390732791 ], [ -122.40975916385649, 37.79493194607189 ], [ -122.40980207920073, 37.79514813539847 ], [ -122.40981280803679, 37.79517780839393 ], [ -122.40981817245482, 37.79520324238054 ], [ -122.40982890129088, 37.79523291535386 ], [ -122.40983963012694, 37.79525411032749 ], [ -122.40984499454494, 37.79528378328038 ], [ -122.40987181663509, 37.79545758176509 ], [ -122.40988254547115, 37.79549149361689 ], [ -122.40989863872524, 37.79552116647442 ], [ -122.40991473197931, 37.795542361365385 ], [ -122.40993618965143, 37.79556355625024 ], [ -122.40995764732355, 37.79557627317825 ], [ -122.4099844694137, 37.79558899010405 ], [ -122.41000592708582, 37.79559746805339 ], [ -122.41003274917597, 37.795601707027686 ], [ -122.41007030010215, 37.795601707027686 ], [ -122.41010248661033, 37.795601707027686 ], [ -122.4110841751098, 37.795474537692954 ], [ -122.41134166717524, 37.79543638684983 ], [ -122.41142213344565, 37.79542790888202 ], [ -122.41151869297022, 37.79541519192849 ], [ -122.41154551506034, 37.7954109529435 ], [ -122.41252720355979, 37.795292261264755 ], [ -122.41318166255942, 37.79519900338339 ], [ -122.41791844367972, 37.794592824285104 ], [ -122.41795599460593, 37.794592824285104 ], [ -122.41798281669608, 37.794592824285104 ], [ -122.4180042743682, 37.794597063317056 ], [ -122.41803109645834, 37.79460554138021 ], [ -122.41805255413045, 37.79461401944239 ], [ -122.41807401180259, 37.794626736533836 ], [ -122.41809546947471, 37.79464369265237 ], [ -122.41811692714683, 37.79466488779506 ], [ -122.41812765598289, 37.79469032195825 ], [ -122.41813838481895, 37.7947199951376 ], [ -122.418149113655, 37.794745429281804 ], [ -122.41816520690908, 37.79483444871764 ], [ -122.41821348667135, 37.79508031136412 ], [ -122.41828322410574, 37.79541943091325 ], [ -122.41830468177785, 37.79552964443154 ], [ -122.41844415664663, 37.79622059466508 ], [ -122.41848707199087, 37.79640286880277 ], [ -122.41850852966299, 37.7965215586972 ], [ -122.41852462291708, 37.796602098159816 ], [ -122.41887331008901, 37.79833579477651 ], [ -122.41888403892507, 37.79838242175201 ], [ -122.419050335884, 37.79919626967518 ], [ -122.41930782794942, 37.800476366493726 ], [ -122.41962969303121, 37.80207009841606 ], [ -122.42015540599813, 37.8046979855249 ], [ -122.42035388946523, 37.8056685846981 ], [ -122.42035925388325, 37.80571096865078 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40933001041412, 37.79285480069591 ], [ -122.4093461036682, 37.79296077891455 ], [ -122.4095070362091, 37.793804360113924 ], [ -122.40952312946318, 37.79385522902405 ], [ -122.40953922271727, 37.79392305418307 ], [ -122.40967869758605, 37.7945589120208 ], [ -122.40972161293028, 37.79475390732791 ], [ -122.40975916385649, 37.79493194607189 ], [ -122.40980207920073, 37.79514813539847 ], [ -122.40982353687285, 37.79527106630204 ], [ -122.40986108779906, 37.79546605972949 ], [ -122.40986645221706, 37.79549149361689 ], [ -122.40988254547115, 37.7955254054531 ], [ -122.40989863872524, 37.79554660034284 ], [ -122.40991473197931, 37.79555931727375 ], [ -122.4099308252334, 37.79557627317823 ], [ -122.40995228290552, 37.79558475112901 ], [ -122.40997374057764, 37.79559746805339 ], [ -122.41000056266779, 37.795605946001736 ], [ -122.41003274917597, 37.79561018497555 ], [ -122.41007030010215, 37.79561442394911 ], [ -122.41010785102836, 37.79561018497555 ], [ -122.4113577604293, 37.79544486481667 ], [ -122.4113953113555, 37.795440625833365 ], [ -122.4114328622817, 37.79544486481667 ], [ -122.41146504878989, 37.79545758176509 ], [ -122.41149187088003, 37.79546605972952 ], [ -122.41151869297018, 37.79548301565542 ], [ -122.4115401506423, 37.7955042105573 ], [ -122.41155624389638, 37.79553388340973 ], [ -122.41156697273244, 37.79556355625024 ], [ -122.4115777015685, 37.79559746805339 ], [ -122.41162061691274, 37.79583908920016 ], [ -122.41171717643728, 37.796296895521635 ], [ -122.41185665130605, 37.79700055526198 ], [ -122.41191029548635, 37.797271843974144 ], [ -122.41203904151908, 37.79793310603611 ], [ -122.41208195686332, 37.798170480717104 ], [ -122.41228044033042, 37.79909877794875 ], [ -122.41239309310905, 37.799721875026755 ], [ -122.41245210170736, 37.79996348268362 ], [ -122.41246819496145, 37.80004401839364 ], [ -122.41247892379751, 37.800116076586065 ], [ -122.4125325679778, 37.80034496684863 ], [ -122.41266131401053, 37.80098076941203 ], [ -122.41274714469901, 37.80143006658992 ], [ -122.41282224655143, 37.80182849764988 ], [ -122.41283297538749, 37.80190055410142 ], [ -122.41286516189567, 37.80201499655647 ], [ -122.4129080772399, 37.80218454060837 ], [ -122.41298854351035, 37.802269312488384 ], [ -122.41312801837913, 37.80239223154157 ], [ -122.4135732650756, 37.80269317042896 ], [ -122.41365909576407, 37.802752510346544 ], [ -122.41380393505088, 37.802858474366495 ], [ -122.41465687751761, 37.80343915449654 ], [ -122.41480171680442, 37.80355359456757 ], [ -122.41488218307487, 37.803680749994065 ], [ -122.41491973400106, 37.80379518969073 ], [ -122.4150002002715, 37.8042063234344 ], [ -122.41504311561575, 37.80441824715063 ], [ -122.41505920886983, 37.804481824146905 ], [ -122.41507530212392, 37.8045623549303 ], [ -122.41511821746816, 37.804820900536086 ], [ -122.41516649723042, 37.80502858405566 ], [ -122.41519331932057, 37.805172690644405 ], [ -122.41524159908283, 37.80522355172624 ], [ -122.41518795490254, 37.80494381534269 ], [ -122.41510748863209, 37.8045623549303 ], [ -122.415091395378, 37.80447758568221 ], [ -122.41508066654194, 37.804414008682265 ], [ -122.41503238677969, 37.80420208495388 ], [ -122.41493582725514, 37.80371465807083 ], [ -122.41488218307484, 37.80354511753136 ], [ -122.41479635238636, 37.80343915449654 ], [ -122.4146944284438, 37.8033586224884 ], [ -122.41392731666554, 37.802824565896664 ], [ -122.41378784179676, 37.80272707895914 ], [ -122.41370201110828, 37.802667739021146 ], [ -122.41306364536274, 37.80222692656055 ], [ -122.4129831790923, 37.80214215463189 ], [ -122.41295099258411, 37.8020743370189 ], [ -122.41290807723988, 37.80198532630738 ], [ -122.41288661956776, 37.801887838262154 ], [ -122.4128758907317, 37.80182425903287 ], [ -122.41279006004319, 37.80143006658992 ], [ -122.41269886493671, 37.80098076941203 ], [ -122.41257011890397, 37.800336489444156 ], [ -122.41252720355973, 37.800111837870794 ], [ -122.41251647472367, 37.800035540954596 ], [ -122.41250038146958, 37.799950766510875 ], [ -122.41245210170734, 37.79976002365667 ], [ -122.41233408451066, 37.79917931460154 ], [ -122.4123179912566, 37.799090300401254 ], [ -122.41230726242054, 37.799030957541454 ], [ -122.41214632987962, 37.79823830191443 ], [ -122.41213560104356, 37.79816200306305 ], [ -122.4121195077895, 37.798094181795705 ], [ -122.41205513477314, 37.797767791075536 ], [ -122.41195321083057, 37.79726760509566 ], [ -122.41189420223225, 37.79699631636796 ], [ -122.4117600917815, 37.79628841765255 ], [ -122.411668896675, 37.79583908920016 ], [ -122.4115777015685, 37.79538975801483 ], [ -122.4115401506423, 37.79519052538833 ], [ -122.4114328622817, 37.79468608293166 ], [ -122.41142213344564, 37.79465217071015 ], [ -122.41140604019155, 37.794626736533836 ], [ -122.41138994693746, 37.79460130234873 ], [ -122.41136312484733, 37.794584346220475 ], [ -122.41133630275718, 37.794567390088325 ], [ -122.41129875183097, 37.79455467298668 ], [ -122.41126120090479, 37.794550433952274 ], [ -122.41122364997858, 37.79454619491767 ], [ -122.4111914634704, 37.79454619491767 ], [ -122.41031169891352, 37.79466064876697 ], [ -122.4101990461349, 37.79467760487772 ], [ -122.40991473197931, 37.79471151708752 ], [ -122.40988790988918, 37.79471151708752 ], [ -122.40986645221706, 37.79471151708752 ], [ -122.40983963012691, 37.79471151708752 ], [ -122.40981817245479, 37.794703039036534 ], [ -122.40979671478267, 37.79469456098458 ], [ -122.40978062152858, 37.79468184390479 ], [ -122.40976452827452, 37.79466912682284 ], [ -122.40974843502043, 37.794647931681375 ], [ -122.40973770618437, 37.79462249750358 ], [ -122.40972697734831, 37.794592824285075 ], [ -122.40971088409422, 37.794550433952274 ], [ -122.40958213806151, 37.7939145760416 ], [ -122.40957140922545, 37.793850989949526 ], [ -122.40956068038939, 37.79379164288088 ], [ -122.40937829017638, 37.792956539788705 ], [ -122.40933001041412, 37.79268947437132 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41312265396118, 37.791566093394444 ], [ -122.41306900978088, 37.79157033260003 ], [ -122.4130368232727, 37.79157457180537 ], [ -122.41300463676453, 37.79157457180537 ], [ -122.41296172142029, 37.79157033260003 ], [ -122.41292953491211, 37.79157033260003 ], [ -122.41289734840392, 37.79157033260003 ], [ -122.41286516189574, 37.79157457180537 ], [ -122.41283297538756, 37.79157457180537 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41031169891357, 37.79466064876697 ], [ -122.41026878356934, 37.79466912682284 ], [ -122.41024196147919, 37.79467760487772 ], [ -122.41022050380707, 37.79468184390482 ], [ -122.41019904613495, 37.79468608293166 ], [ -122.40991473197937, 37.79471999513757 ], [ -122.40988790988922, 37.794724234162196 ], [ -122.4098664522171, 37.79473271221077 ], [ -122.40984499454498, 37.79474119025835 ], [ -122.40981817245483, 37.79475390732791 ], [ -122.40980207920076, 37.79477086341726 ], [ -122.40978598594667, 37.794783580481706 ], [ -122.40977525711061, 37.794800536564246 ], [ -122.40975916385655, 37.79482597068075 ], [ -122.40975379943852, 37.79485564380559 ], [ -122.40975379943852, 37.794881077903106 ], [ -122.40975916385655, 37.79493194607191 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42035388946533, 37.80566858469807 ], [ -122.42035925388335, 37.80571096865078 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4117761850357, 37.79447413129197 ], [ -122.41181910037994, 37.79446989225296 ], [ -122.4118673801422, 37.79446989225296 ], [ -122.4119049310684, 37.79447837033072 ], [ -122.41193711757658, 37.79448684840749 ], [ -122.41196393966673, 37.79449956552084 ], [ -122.41199076175688, 37.794516521668555 ], [ -122.41200685501094, 37.794533477812365 ], [ -122.41202831268306, 37.79455467298668 ], [ -122.41203904151912, 37.7945843462205 ], [ -122.41204977035518, 37.79461401944236 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41176009178162, 37.79628841765255 ], [ -122.41166889667511, 37.79583908920013 ], [ -122.4115777015686, 37.79538975801483 ], [ -122.41154015064241, 37.79519052538833 ], [ -122.41143286228181, 37.794686082931634 ], [ -122.41142213344574, 37.79465217071015 ], [ -122.41140604019166, 37.79462673653381 ], [ -122.41138994693758, 37.79460130234873 ], [ -122.41136312484745, 37.794584346220475 ], [ -122.4113363027573, 37.794567390088325 ], [ -122.4112987518311, 37.79455467298668 ], [ -122.4112612009049, 37.794550433952274 ], [ -122.4112236499787, 37.79454619491767 ], [ -122.41119146347052, 37.79454619491767 ] ] }, "properties": { "class": "minor_rail", "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41849780082703, 37.79639862987445 ], [ -122.41846024990083, 37.79621635572625 ] ] }, "properties": { "class": "street", "layer": 1, "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41861045360565, 37.79641982451364 ], [ -122.41856217384338, 37.79616972738355 ] ] }, "properties": { "class": "path", "layer": 1, "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41839587688446, 37.79644525807265 ], [ -122.41833150386809, 37.79618244420722 ] ] }, "properties": { "class": "path", "layer": 1, "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41844415664673, 37.79622059466506 ], [ -122.41848707199097, 37.79640286880277 ] ] }, "properties": { "class": "minor_rail", "layer": 1, "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41851925849915, 37.79639862987445 ], [ -122.41848170757295, 37.79621635572625 ] ] }, "properties": { "class": "minor_rail", "layer": 1, "oneway": 0 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4290120601654, 37.806321294872326 ] }, "properties": { "area": 420936.875, "class": "park", "name": "Fort Mason", "name_de": "Fort Mason", "name_en": "Fort Mason", "name_es": "Fort Mason", "name_fr": "Fort Mason" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43312656879425, 37.80212943883419 ] }, "properties": { "area": 78644.2890625, "class": "park", "name": "Moscone Recreation Center", "name_de": "Moscone Recreation Center", "name_en": "Moscone Recreation Center", "name_es": "Moscone Recreation Center", "name_fr": "Moscone Recreation Center" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42762804031372, 37.791566093394444 ] }, "properties": { "area": 74781.1484375, "class": "park", "name": "Lafayette Park", "name_de": "Lafayette Park", "name_en": "Lafayette Park", "name_es": "Lafayette Park", "name_fr": "Lafayette Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42220997810364, 37.80701214416185 ] }, "properties": { "area": 54851.48046875, "class": "park", "name": "Aquatic Park", "name_de": "Aquatic Park", "name_en": "Aquatic Park", "name_es": "Aquatic Park", "name_fr": "Aquatic Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43235409259796, 37.790641940767166 ] }, "properties": { "area": 46714.70703125, "class": "hospital", "name": "CPMC Pacific Campus", "name_de": "CPMC Pacific Campus", "name_en": "CPMC Pacific Campus", "name_es": "CPMC Pacific Campus", "name_fr": "CPMC Pacific Campus" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43551909923553, 37.80181578179817 ] }, "properties": { "area": 37927.9453125, "class": "school", "name": "Marina Middle School", "name_de": "Marina Middle School", "name_en": "Marina Middle School", "name_es": "Marina Middle School", "name_fr": "Marina Middle School" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40603625774384, 37.80274827178258 ] }, "properties": { "area": 37910.67578125, "class": "park", "name": "Pioneer Park", "name_de": "Pioneer Park", "name_en": "Pioneer Park", "name_es": "Pioneer Park", "name_fr": "Pioneer Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42033243179321, 37.801391918822475 ] }, "properties": { "area": 18318.51953125, "class": "park", "name": "George Sterling Park", "name_de": "George Sterling Park", "name_en": "George Sterling Park", "name_es": "George Sterling Park", "name_fr": "George Sterling Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41092324256897, 37.80479970830737 ] }, "properties": { "area": 17887.583984375, "class": "school", "name": "Francisco Middle School", "name_de": "Francisco Middle School", "name_en": "Francisco Middle School", "name_es": "Francisco Middle School", "name_fr": "Francisco Middle School" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41206049919128, 37.802493957499856 ] }, "properties": { "area": 15649.849609375, "class": "park", "name": "North Beach Playground", "name_de": "North Beach Playground", "name_en": "North Beach Playground", "name_es": "North Beach Playground", "name_fr": "North Beach Playground" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.407506108284, 37.7879372441879 ] }, "properties": { "area": 14722.525390625, "class": "park", "name": "Union Square", "name_de": "Union Square", "name_en": "Union Square", "name_es": "Union Square", "name_fr": "Union Square" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41007566452026, 37.80084513199106 ] }, "properties": { "area": 14162.384765625, "class": "park", "name": "Washington Square Park", "name_de": "Washington Square Park", "name_en": "Washington Square Park", "name_es": "Washington Square Park", "name_fr": "Washington Square Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4165290594101, 37.789603315074956 ] }, "properties": { "area": 13636.7626953125, "class": "hospital", "name": "Saint Francis Memorial Hospital", "name_de": "Saint Francis Memorial Hospital", "name_en": "Saint Francis Memorial Hospital", "name_es": "Saint Francis Memorial Hospital", "name_fr": "Saint Francis Memorial Hospital" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40883648395538, 37.794647931681375 ] }, "properties": { "area": 12502.6455078125, "class": "school", "name": "Gordon J. Lau Elementary School", "name_de": "Gordon J. Lau Elementary School", "name_en": "Gordon J. Lau Elementary School", "name_es": "Gordon J. Lau Elementary School", "name_fr": "Gordon J. Lau Elementary School" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42612063884735, 37.79780594071465 ] }, "properties": { "area": 10926.486328125, "class": "school", "name": "Sherman Elementary School", "name_de": "Sherman Elementary School", "name_en": "Sherman Elementary School", "name_es": "Sherman Elementary School", "name_fr": "Sherman Elementary School" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42436647415161, 37.80485480808938 ] }, "properties": { "area": 10491.86328125, "class": "pitch", "name": "George White Field", "name_de": "George White Field", "name_en": "George White Field", "name_es": "George White Field", "name_fr": "George White Field" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4209600687027, 37.80437586245604 ] }, "properties": { "area": 9823.4970703125, "class": "park", "name": "Russian Hill Park", "name_de": "Russian Hill Park", "name_en": "Russian Hill Park", "name_es": "Russian Hill Park", "name_fr": "Russian Hill Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40533351898193, 37.79483444871761 ] }, "properties": { "area": 8338.2763671875, "class": "park", "name": "Portsmouth Square", "name_de": "Portsmouth Square", "name_en": "Portsmouth Square", "name_es": "Portsmouth Square", "name_fr": "Portsmouth Square" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40746855735779, 37.7879414836017 ] }, "properties": { "area": 7855.46435546875, "class": "parking", "name": "Union Square Garage", "name_de": "Union Square Garage", "name_en": "Union Square Garage", "name_es": "Union Square Garage", "name_fr": "Union Square Garage" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41215705871582, 37.792168058155134 ] }, "properties": { "area": 6761.63525390625, "class": "park", "name": "Huntington Park", "name_de": "Huntington Park", "name_en": "Huntington Park", "name_es": "Huntington Park", "name_fr": "Huntington Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40516722202301, 37.792045122088425 ] }, "properties": { "area": 6754.05224609375, "class": "park", "name": "Saint Mary's Square", "name_de": "Saint Mary's Square", "name_en": "Saint Mary's Square", "name_es": "Saint Mary's Square", "name_fr": "Saint Mary's Square" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41188883781433, 37.784486280685954 ] }, "properties": { "area": 5962.169921875, "class": "park", "name": "Boeddeker Park", "name_de": "Boeddeker Park", "name_en": "Boeddeker Park", "name_es": "Boeddeker Park", "name_fr": "Boeddeker Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42767095565796, 37.79746259325332 ] }, "properties": { "area": 5467.72900390625, "class": "park", "name": "Allyne Park", "name_de": "Allyne Park", "name_en": "Allyne Park", "name_es": "Allyne Park", "name_fr": "Allyne Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41339087486267, 37.79822982426816 ] }, "properties": { "area": 5286.7763671875, "class": "park", "name": "Ina Coolbrith Park", "name_de": "Ina Coolbrith Park", "name_en": "Ina Coolbrith Park", "name_es": "Ina Coolbrith Park", "name_fr": "Ina Coolbrith Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42066502571106, 37.795767026835556 ] }, "properties": { "area": 5055.89599609375, "class": "park", "name": "Helen Wills Playground", "name_de": "Helen Wills Playground", "name_en": "Helen Wills Playground", "name_es": "Helen Wills Playground", "name_fr": "Helen Wills Playground" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41659343242645, 37.80190055410142 ] }, "properties": { "area": 4614.470703125, "class": "school", "name": "Yick Wo Elementary School", "name_de": "Yick Wo Elementary School", "name_en": "Yick Wo Elementary School", "name_es": "Yick Wo Elementary School", "name_fr": "Yick Wo Elementary School" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40673899650574, 37.80204466679365 ] }, "properties": { "area": 4535.21484375, "class": "school", "name": "Garfield Elementary School", "name_de": "Garfield Elementary School", "name_en": "Garfield Elementary School", "name_es": "Garfield Elementary School", "name_fr": "Garfield Elementary School" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41504311561584, 37.80095109874748 ] }, "properties": { "area": 4380.76220703125, "class": "school", "name": "Sarah B. Cooper Child Development Center", "name_de": "Sarah B. Cooper Child Development Center", "name_en": "Sarah B. Cooper Child Development Center", "name_es": "Sarah B. Cooper Child Development Center", "name_fr": "Sarah B. Cooper Child Development Center" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41178691387177, 37.794211310414276 ] }, "properties": { "area": 4241.5634765625, "class": "park", "name": "Chinese Recreation Center", "name_de": "Chinese Recreation Center", "name_en": "Chinese Recreation Center", "name_es": "Chinese Recreation Center", "name_fr": "Chinese Recreation Center" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41104662418365, 37.79760247574503 ] }, "properties": { "area": 3482.419677734375, "class": "school", "name": "Jean Parker School", "name_de": "Jean Parker School", "name_en": "Jean Parker School", "name_es": "Jean Parker School", "name_fr": "Jean Parker School" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40708231925964, 37.79358816685511 ] }, "properties": { "area": 3241.57275390625, "class": "park", "name": "Willie \"Woo Woo\" Wong Park", "name_de": "Willie \"Woo Woo\" Wong Park", "name_en": "Willie \"Woo Woo\" Wong Park", "name_es": "Willie \"Woo Woo\" Wong Park", "name_fr": "Willie \"Woo Woo\" Wong Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42011785507202, 37.80156570293673 ] }, "properties": { "area": 3144.7783203125, "class": "pitch", "name": "Alice Marble Tennis Courts", "name_de": "Alice Marble Tennis Courts", "name_en": "Alice Marble Tennis Courts", "name_es": "Alice Marble Tennis Courts", "name_fr": "Alice Marble Tennis Courts" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41690993309021, 37.801116406583915 ] }, "properties": { "area": 2637.12255859375, "class": "park", "name": "Michelangelo Playground", "name_de": "Michelangelo Playground", "name_en": "Michelangelo Playground", "name_es": "Michelangelo Playground", "name_fr": "Michelangelo Playground" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40846633911133, 37.78405807864497 ] }, "properties": { "area": 2256.60009765625, "class": "park", "name": "Hallidie Plaza", "name_de": "Hallidie Plaza", "name_en": "Hallidie Plaza", "name_es": "Hallidie Plaza", "name_fr": "Hallidie Plaza" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41035461425781, 37.795826372317386 ] }, "properties": { "area": 2005.4078369140625, "class": "park", "name": "Woh Hei Yuen Recreation Center", "name_de": "Woh Hei Yuen Recreation Center", "name_en": "Woh Hei Yuen Recreation Center", "name_es": "Woh Hei Yuen Recreation Center", "name_fr": "Woh Hei Yuen Recreation Center" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40888476371765, 37.79552116647442 ] }, "properties": { "area": 1817.8153076171875, "class": "hospital", "name": "Chinese Hospital", "name_de": "Chinese Hospital", "name_en": "Chinese Hospital", "name_es": "Chinese Hospital", "name_fr": "Chinese Hospital" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40505993366241, 37.80187936103475 ] }, "properties": { "area": 1763.20166015625, "class": "park", "name": "Filbert Steeps Gargen", "name_de": "Filbert Steeps Gargen", "name_en": "Filbert Steeps Gargen", "name_es": "Filbert Steeps Gargen", "name_fr": "Filbert Steeps Gargen" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4178808927536, 37.80290509848712 ] }, "properties": { "area": 1628.5638427734375, "class": "park", "name": "Fay Park", "name_de": "Fay Park", "name_en": "Fay Park", "name_es": "Fay Park", "name_fr": "Fay Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41820275783539, 37.785406270739166 ] }, "properties": { "area": 1243.2176513671875, "class": "park", "name": "O'Farrell-Larkin Mini-Park", "name_de": "O'Farrell-Larkin Mini-Park", "name_en": "O'Farrell-Larkin Mini-Park", "name_es": "O'Farrell-Larkin Mini-Park", "name_fr": "O'Farrell-Larkin Mini-Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41145431995392, 37.78912427055049 ] }, "properties": { "area": 1096.6558837890625, "class": "parking", "name": "California Parking", "name_de": "California Parking", "name_en": "California Parking", "name_es": "California Parking", "name_fr": "California Parking" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41743564605713, 37.796441019146776 ] }, "properties": { "area": 944.394775390625, "class": "park", "name": "Broadway Tunnel West Mini Park", "name_de": "Broadway Tunnel West Mini Park", "name_en": "Broadway Tunnel West Mini Park", "name_es": "Broadway Tunnel West Mini Park", "name_fr": "Broadway Tunnel West Mini Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43233263492584, 37.78646615291675 ] }, "properties": { "area": 668.4193725585938, "class": "park", "name": "Cottage Row Mini Park", "name_de": "Cottage Row Mini Park", "name_en": "Cottage Row Mini Park", "name_es": "Cottage Row Mini Park", "name_fr": "Cottage Row Mini Park" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41070866584778, 37.80046365040925 ] }, "properties": { "area": 511.5633850097656, "class": "park", "name": "Marini Plaza", "name_de": "Marini Plaza", "name_en": "Marini Plaza", "name_es": "Marini Plaza", "name_fr": "Marini Plaza" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40694284439087, 37.78496111569185 ] }, "properties": { "class": "light", "group": "name", "name": "Powell Muni", "name_de": "Powell Muni", "name_en": "Powell Muni", "name_es": "Powell Muni", "name_fr": "Powell Muni", "network": "light" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40691065788269, 37.78493143859335 ] }, "properties": { "class": "light", "group": "name", "name": "Powell", "name_de": "Powell", "name_en": "Powell", "name_es": "Powell", "name_fr": "Powell", "network": "light" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40694284439087, 37.78496111569185 ] }, "properties": { "class": "light", "group": "network", "name": "Powell Muni", "name_de": "Powell Muni", "name_en": "Powell Muni", "name_es": "Powell Muni", "name_fr": "Powell Muni", "network": "light" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40691065788269, 37.78493143859335 ] }, "properties": { "class": "light", "group": "network", "name": "Powell", "name_de": "Powell", "name_en": "Powell", "name_es": "Powell", "name_fr": "Powell", "network": "light" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42946803569794, 37.800637436707525 ], [ -122.42936611175537, 37.80065439144644 ], [ -122.42790699005127, 37.80083665464399 ], [ -122.42782652378084, 37.80084513199108 ] ] }, "properties": { "class": "motorway", "len": 184.737921023889, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42618501186371, 37.801052826690615 ], [ -122.4260938167572, 37.80106554267365 ], [ -122.42494583129883, 37.801209656995105 ] ] }, "properties": { "class": "motorway", "len": 139.71186669914354, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43604481220245, 37.79980241100018 ], [ -122.435964345932, 37.79981512719847 ], [ -122.43449985980989, 37.80000163118878 ], [ -122.43440330028534, 37.800010108631696 ] ] }, "properties": { "class": "motorway", "len": 184.76161130760062, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42948412895203, 37.80073492640316 ], [ -122.42960214614868, 37.800722210363176 ], [ -122.43103444576263, 37.80053994688323 ], [ -122.4311363697052, 37.80052299211805 ] ] }, "properties": { "class": "motorway", "len": 186.47783273984427, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4311363697052, 37.80052299211805 ], [ -122.43123292922974, 37.80051451473398 ], [ -122.43267595767975, 37.800332250741526 ], [ -122.43278324604034, 37.80031529592869 ] ] }, "properties": { "class": "motorway", "len": 186.11676199570874, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4262011051178, 37.80115455449363 ], [ -122.42777287960052, 37.80095109874748 ], [ -122.42784261703491, 37.80094262141255 ] ] }, "properties": { "class": "motorway", "len": 185.3458172590662, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43112027645111, 37.80042974083997 ], [ -122.43102371692657, 37.80044245693027 ], [ -122.42958068847656, 37.80062472065078 ], [ -122.42946803569794, 37.800637436707525 ] ] }, "properties": { "class": "motorway", "len": 186.61022763211224, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42782652378082, 37.80084513199106 ], [ -122.42774605751038, 37.80085784800986 ], [ -122.42618501186371, 37.801052826690615 ] ] }, "properties": { "class": "motorway", "len": 185.30551717047499, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43278324604034, 37.80031529592869 ], [ -122.43287980556488, 37.80030257981648 ], [ -122.43431210517883, 37.800120315301065 ], [ -122.43443012237549, 37.80010336043956 ] ] }, "properties": { "class": "motorway", "len": 185.4256321395207, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4371337890625, 37.79966253267434 ], [ -122.43614137172699, 37.79979393353342 ], [ -122.43604481220244, 37.79980241100018 ] ] }, "properties": { "class": "motorway", "len": 185.1311305635713, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43440330028534, 37.800010108631696 ], [ -122.4343067407608, 37.80002282479424 ], [ -122.43285834789276, 37.80020508955023 ], [ -122.43276715278625, 37.800213566969795 ] ] }, "properties": { "class": "motorway", "len": 184.66599632077046, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43443012237549, 37.80010336043956 ], [ -122.43452668190002, 37.800094883007326 ], [ -122.43597507476807, 37.79990837925248 ], [ -122.43606090545656, 37.79989566307024 ] ] }, "properties": { "class": "motorway", "len": 184.20456691225687, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42784261703491, 37.800942621412574 ], [ -122.42792308330536, 37.800929905408374 ], [ -122.42939829826355, 37.80074764244092 ], [ -122.42948412895203, 37.80073492640316 ] ] }, "properties": { "class": "motorway", "len": 184.99709257762476, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43276715278625, 37.800213566969795 ], [ -122.43265986442566, 37.80023052180601 ], [ -122.43121147155762, 37.800417024747446 ], [ -122.43112027645111, 37.80042974083997 ] ] }, "properties": { "class": "motorway", "len": 185.92789437313337, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43606090545654, 37.79989566307024 ], [ -122.43616819381714, 37.79988294688579 ], [ -122.4371337890625, 37.79976002365667 ] ] }, "properties": { "class": "motorway", "len": 184.9897278124624, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42428600788116, 37.80042974083997 ], [ -122.42430210113525, 37.800510276041585 ], [ -122.42445766925812, 37.801256282156544 ], [ -122.42445766925812, 37.80129019134637 ], [ -122.42446303367615, 37.80132833916636 ] ] }, "properties": { "class": "motorway", "len": 128.2778210829967, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42368519306183, 37.79667839862234 ], [ -122.42348670959473, 37.7957246371765 ] ] }, "properties": { "class": "motorway", "len": 136.5028882485294, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42332577705383, 37.79574159304304 ], [ -122.42352962493896, 37.79669959318127 ] ] }, "properties": { "class": "motorway", "len": 137.0331321248979, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42387294769287, 37.797615192322034 ], [ -122.42368519306183, 37.79667839862234 ] ] }, "properties": { "class": "motorway", "len": 133.5035793525826, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42409288883209, 37.79949722158412 ], [ -122.42411434650421, 37.79959047403946 ], [ -122.42426991462708, 37.80035768295351 ], [ -122.42428600788116, 37.800429740839945 ] ] }, "properties": { "class": "motorway", "len": 133.1433528732395, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42352962493896, 37.79669959318127 ], [ -122.42372810840607, 37.797636386612204 ], [ -122.42388904094696, 37.79848839204139 ], [ -122.42390513420105, 37.79856469055563 ], [ -122.42392659187317, 37.798657944188264 ], [ -122.42408215999603, 37.79942940154263 ], [ -122.42409288883209, 37.79949722158409 ] ] }, "properties": { "class": "motorway", "len": 398.8752119340263, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42461860179901, 37.80134529374666 ], [ -122.42471516132356, 37.80133257781179 ], [ -122.4261099100113, 37.80116727045915 ], [ -122.4262011051178, 37.80115455449363 ] ] }, "properties": { "class": "motorway", "len": 178.0452893370852, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42406070232391, 37.79854349653181 ], [ -122.42404460906982, 37.79847143680532 ], [ -122.42387294769287, 37.797615192322034 ] ] }, "properties": { "class": "motorway", "len": 132.28270155674133, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42348670959473, 37.7957246371765 ], [ -122.42330431938171, 37.794809014604034 ] ] }, "properties": { "class": "motorway", "len": 130.55038720718602, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42443084716797, 37.80041278604948 ], [ -122.4244147539139, 37.800336489444156 ], [ -122.42426991462709, 37.79956928030996 ], [ -122.42424845695497, 37.79947602782785 ], [ -122.42423772811891, 37.79942092403308 ], [ -122.424076795578, 37.79862403379003 ], [ -122.42406070232393, 37.79854349653181 ] ] }, "properties": { "class": "motorway", "len": 266.44218449370885, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42165744304657, 37.78660605622855 ], [ -122.42162525653839, 37.78644495542216 ], [ -122.42146432399748, 37.78567760202419 ], [ -122.42136240005493, 37.78521549033291 ], [ -122.42126047611237, 37.78474913615547 ], [ -122.42117464542389, 37.78428701865866 ], [ -122.42107808589934, 37.78381641897222 ], [ -122.42106199264526, 37.78374434488178 ] ] }, "properties": { "class": "motorway", "len": 931.5280869634124, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42168962955475, 37.787572653691726 ], [ -122.42177546024323, 37.7880177930084 ], [ -122.42187738418579, 37.788492605324016 ], [ -122.4219685792923, 37.78896741458879 ], [ -122.42206513881683, 37.7894210241618 ], [ -122.42223680019379, 37.79034519205912 ], [ -122.42225289344788, 37.79042573825485 ] ] }, "properties": { "class": "motorway", "len": 406.9126600716541, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42240846157074, 37.790328234954075 ], [ -122.4222207069397, 37.789404066844675 ], [ -122.42212414741516, 37.78894197845551 ], [ -122.42202758789062, 37.78847140841073 ], [ -122.42193639278412, 37.788000835369274 ], [ -122.42183983325958, 37.78755145651453 ], [ -122.42174863815308, 37.787080877614905 ], [ -122.42165744304657, 37.78660605622852 ] ] }, "properties": { "class": "motorway", "len": 530.8518497886237, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42459177970886, 37.801141838525915 ], [ -122.42456495761871, 37.801052826690615 ], [ -122.42444694042206, 37.80048908257599 ], [ -122.42443084716797, 37.80041278604948 ] ] }, "properties": { "class": "motorway", "len": 104.60431610245338, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42446303367615, 37.80132833916636 ], [ -122.42461860179901, 37.80134529374666 ] ] }, "properties": { "class": "motorway", "len": 17.4174625020387, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42330431938171, 37.794809014604034 ], [ -122.42314338684082, 37.79392729325345 ] ] }, "properties": { "class": "motorway", "len": 125.35821034090405, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42225289344788, 37.79042573825485 ], [ -122.42244064807892, 37.79130750139274 ], [ -122.42262303829193, 37.792185014837955 ], [ -122.42280006408691, 37.793062517861436 ] ] }, "properties": { "class": "motorway", "len": 376.31890481789424, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42314875125885, 37.79483020969929 ], [ -122.42332577705383, 37.79574159304304 ] ] }, "properties": { "class": "motorway", "len": 130.0152010345565, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42280006408691, 37.79306251786141 ], [ -122.42296099662781, 37.79394848860165 ], [ -122.42314875125885, 37.79483020969929 ] ] }, "properties": { "class": "motorway", "len": 251.90400155211125, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42314338684082, 37.79392729325345 ], [ -122.42295563220978, 37.79304980050074 ], [ -122.42278397083281, 37.792168058155134 ], [ -122.42259621620177, 37.79129054450855 ], [ -122.42242455482481, 37.790396063350826 ], [ -122.42240846157073, 37.79032823495405 ] ] }, "properties": { "class": "motorway", "len": 513.7380007233647, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42091178894043, 37.78374434488178 ], [ -122.42093324661255, 37.78383337757154 ], [ -122.42101907730103, 37.78430397714999 ], [ -122.42112100124359, 37.78476609454075 ], [ -122.42121756076814, 37.78523668818016 ], [ -122.42130339145662, 37.785694560196426 ], [ -122.42140531539918, 37.78618634549861 ], [ -122.42152333259584, 37.78676715668372 ], [ -122.42149651050569, 37.78663149316584 ], [ -122.42159843444826, 37.787102074927084 ], [ -122.42168962955476, 37.787572653691726 ] ] }, "properties": { "class": "motorway", "len": 705.4033468001305, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "US 101", "reflen": 6 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40569829940796, 37.79887836139735 ], [ -122.40566074848175, 37.79868337697672 ], [ -122.4055427312851, 37.79811113711837 ] ] }, "properties": { "class": "path", "len": 109.7592293529278, "name": "Peter Macchiarini Steps", "name_de": "Peter Macchiarini Steps", "name_en": "Peter Macchiarini Steps", "name_es": "Peter Macchiarini Steps", "name_fr": "Peter Macchiarini Steps", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40558564662933, 37.798891077754746 ], [ -122.40547835826874, 37.79836970530704 ], [ -122.4054354429245, 37.79811537594843 ] ] }, "properties": { "class": "path", "len": 110.44634750447173, "name": "Peter Macchiarini Steps", "name_de": "Peter Macchiarini Steps", "name_en": "Peter Macchiarini Steps", "name_es": "Peter Macchiarini Steps", "name_fr": "Peter Macchiarini Steps", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40752220153809, 37.79410957304932 ], [ -122.4073988199234, 37.7934821895364 ], [ -122.40733444690704, 37.793490667727504 ], [ -122.40727543830872, 37.79323208246155 ] ] }, "properties": { "class": "path", "len": 133.77684616970024, "name": "Hang Ah Alley", "name_de": "Hang Ah Alley", "name_en": "Hang Ah Alley", "name_es": "Hang Ah Alley", "name_fr": "Hang Ah Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.798178958370166 ], [ -122.40469515323639, 37.79811537594843 ], [ -122.4054890871048, 37.798017882795456 ] ] }, "properties": { "class": "main", "len": 182.97421269792386, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.799776978597 ], [ -122.404265999794, 37.80013727015868 ], [ -122.40430891513824, 37.80034496684863 ] ] }, "properties": { "class": "street", "len": 303.8718420779123, "name": "Montgomery St", "name_de": "Montgomery St", "name_en": "Montgomery St", "name_es": "Montgomery St", "name_fr": "Montgomery St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40596115589142, 37.80662645609157 ], [ -122.4058485031128, 37.80656288094155 ], [ -122.4051457643509, 37.80619414399211 ], [ -122.40488827228548, 37.80606275451926 ], [ -122.40478098392487, 37.8059949405063 ], [ -122.40466833114625, 37.805910172902585 ], [ -122.40446984767915, 37.80577454453419 ], [ -122.40443766117096, 37.805744875795405 ], [ -122.40418016910554, 37.80556262470992 ] ] }, "properties": { "class": "main", "len": 540.2997532702911, "name": "The Embarcadero", "name_de": "The Embarcadero", "name_en": "The Embarcadero", "name_es": "The Embarcadero", "name_fr": "The Embarcadero", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.79169750865503 ], [ -122.40424454212189, 37.79168903025815 ], [ -122.40452885627747, 37.79165511666101 ], [ -122.40544617176056, 37.7915364189484 ], [ -122.40574657917023, 37.791498266071706 ], [ -122.40716814994812, 37.79132869749249 ], [ -122.4073451757431, 37.79130750139274 ], [ -122.4080640077591, 37.791205760029214 ], [ -122.40817129611969, 37.79119304234894 ], [ -122.40838050842285, 37.79116760698179 ], [ -122.40898132324219, 37.791095540060674 ], [ -122.4090027809143, 37.79109130082786 ] ] }, "properties": { "class": "main", "len": 1312.8583089500025, "name": "Pine St", "name_de": "Pine St", "name_en": "Pine St", "name_es": "Pine St", "name_fr": "Pine St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40479707717896, 37.79445293609456 ], [ -122.40418016910553, 37.794533477812365 ] ] }, "properties": { "class": "street", "len": 186.87536648900215, "name": "Clay St", "name_de": "Clay St", "name_en": "Clay St", "name_es": "Clay St", "name_fr": "Clay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40997910499573, 37.809279610214595 ], [ -122.41007566452026, 37.8094448994097 ], [ -122.41026878356934, 37.809779714850585 ] ] }, "properties": { "class": "path", "len": 202.17417323434879, "name": "Pier 39", "name_de": "Pier 39", "name_en": "Pier 39", "name_es": "Pier 39", "name_fr": "Pier 39", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.805973748614505 ], [ -122.40455031394957, 37.80624500437047 ], [ -122.40470051765442, 37.80634248666441 ], [ -122.40479707717896, 37.8063933469406 ], [ -122.40588068962097, 37.80695704598944 ], [ -122.40689456462862, 37.807465642942425 ], [ -122.40756511688234, 37.80764365104846 ] ] }, "properties": { "class": "path", "len": 2847.90071389486, "name": "Herb Caen Way", "name_de": "Herb Caen Way", "name_en": "Herb Caen Way", "name_es": "Herb Caen Way", "name_fr": "Herb Caen Way", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42774605751038, 37.8071138637568 ], [ -122.42828786373138, 37.80700790584237 ], [ -122.42834150791168, 37.80698671424124 ], [ -122.42885112762451, 37.80688499447117 ] ] }, "properties": { "class": "street", "len": 127.02433388408431, "name": "Funston Rd", "name_de": "Funston Rd", "name_en": "Funston Rd", "name_es": "Funston Rd", "name_fr": "Funston Rd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42774605751038, 37.8071138637568 ], [ -122.42772459983826, 37.80706724229317 ], [ -122.42771923542023, 37.80702909743741 ], [ -122.42773532867432, 37.80698671424122 ], [ -122.42773532867432, 37.80694433102072 ], [ -122.42770850658417, 37.80686804116251 ], [ -122.42768168449403, 37.80680446622046 ], [ -122.42764949798584, 37.80676208289537 ], [ -122.42760121822359, 37.80673241455334 ], [ -122.42755293846132, 37.80671122287313 ] ] }, "properties": { "class": "street", "len": 65.31910178357704, "name": "Funston Rd", "name_de": "Funston Rd", "name_en": "Funston Rd", "name_es": "Funston Rd", "name_fr": "Funston Rd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42471516132355, 37.78541898941539 ], [ -122.42498338222504, 37.78541474985691 ], [ -122.42522478103638, 37.785393552060754 ], [ -122.42799818515778, 37.78504590733613 ] ] }, "properties": { "class": "main", "len": 369.50623090765384, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42797136306763, 37.7848848031288 ], [ -122.42643177509309, 37.78507982396663 ], [ -122.42516577243806, 37.78524940688557 ], [ -122.42483854293823, 37.785279083856395 ], [ -122.42468297481537, 37.785279083856395 ] ] }, "properties": { "class": "main", "len": 370.3749078342734, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43443548679352, 37.78410895426485 ], [ -122.43139922618866, 37.784494759909215 ] ] }, "properties": { "class": "main", "len": 343.1258703445386, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43110418319702, 37.78443540532579 ], [ -122.43112564086914, 37.78453291640197 ], [ -122.43115246295929, 37.78465586496683 ], [ -122.43117392063141, 37.78474065696133 ] ] }, "properties": { "class": "main", "len": 43.9374386128022, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43460178375244, 37.78430397714999 ], [ -122.43476808071136, 37.78426158091439 ], [ -122.43546009063722, 37.78410047499729 ] ] }, "properties": { "class": "street", "len": 99.99036235992222, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4369353055954, 37.78374434488178 ], [ -122.43541181087492, 37.783930889442026 ] ] }, "properties": { "class": "main", "len": 273.1622823023084, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42799818515778, 37.78504590733613 ], [ -122.4290657043457, 37.78491024065857 ], [ -122.42950558662415, 37.78485088640879 ], [ -122.42956459522247, 37.784842407226364 ], [ -122.43019223213196, 37.78476609454075 ] ] }, "properties": { "class": "main", "len": 246.90071093811025, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43458032608032, 37.78421494502713 ], [ -122.4354600906372, 37.78410047499729 ] ] }, "properties": { "class": "main", "len": 98.99132941823262, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43453741073608, 37.78401144262929 ], [ -122.43448376655579, 37.78374434488178 ] ] }, "properties": { "class": "street", "len": 796.9525422784027, "name": "Steiner St", "name_de": "Steiner St", "name_en": "Steiner St", "name_es": "Steiner St", "name_fr": "Steiner St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43110418319702, 37.78443540532579 ], [ -122.43081450462343, 37.78447780146168 ], [ -122.43023514747621, 37.784558354052855 ], [ -122.43005812168123, 37.784630427349484 ] ] }, "properties": { "class": "street", "len": 120.59901360400228, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43453741073608, 37.78401144262929 ], [ -122.4344140291214, 37.784015682268304 ], [ -122.43289053440094, 37.78419798651539 ], [ -122.43141531944275, 37.78438876954822 ], [ -122.43138313293457, 37.784393009165576 ], [ -122.43125438690186, 37.78440996763259 ], [ -122.43110418319702, 37.78443540532579 ] ] }, "properties": { "class": "street", "len": 387.46292855770764, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43019223213196, 37.78476609454075 ], [ -122.43115246295929, 37.78465586496683 ], [ -122.43130266666412, 37.784634666952996 ], [ -122.43144214153291, 37.78461770853756 ] ] }, "properties": { "class": "main", "len": 141.18643556389938, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43131875991821, 37.784723698570225 ], [ -122.4329549074173, 37.78452019757324 ], [ -122.43379175662996, 37.78441844686463 ], [ -122.4344837665558, 37.78432517525866 ], [ -122.43460178375246, 37.78430397714999 ] ] }, "properties": { "class": "street", "len": 370.69020596579514, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42948412895203, 37.80073492640316 ], [ -122.4295002222061, 37.80080698392156 ], [ -122.42967188358307, 37.801654714153955 ], [ -122.42985963821411, 37.80258296759842 ] ] }, "properties": { "class": "street", "len": 263.6676040895868, "name": "Octavia St", "name_de": "Octavia St", "name_en": "Octavia St", "name_es": "Octavia St", "name_fr": "Octavia St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4311363697052, 37.80052299211805 ], [ -122.43115246295928, 37.80059928853073 ], [ -122.43122220039366, 37.80098500807743 ], [ -122.43131339550017, 37.801447021146885 ], [ -122.43144214153288, 37.802095530029646 ], [ -122.43150115013121, 37.802379515786946 ] ] }, "properties": { "class": "street", "len": 264.1923343285631, "name": "Laguna St", "name_de": "Laguna St", "name_en": "Laguna St", "name_es": "Laguna St", "name_fr": "Laguna St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43278324604034, 37.80031529592869 ], [ -122.43279933929442, 37.80040006995406 ], [ -122.43286371231079, 37.80077307450988 ], [ -122.43295490741728, 37.80123508890499 ] ] }, "properties": { "class": "street", "len": 131.1222974403771, "name": "Buchanan St", "name_de": "Buchanan St", "name_en": "Buchanan St", "name_es": "Buchanan St", "name_fr": "Buchanan St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43440330028534, 37.800010108631696 ], [ -122.43438720703126, 37.79993805033589 ], [ -122.43432819843294, 37.79963286148024 ], [ -122.43422091007234, 37.79916235952403 ], [ -122.43412971496583, 37.798696093367674 ], [ -122.4340331554413, 37.79822982426816 ], [ -122.43384540081026, 37.797301516116576 ], [ -122.43364691734315, 37.796373196299356 ], [ -122.43344843387605, 37.79544486481667 ], [ -122.43327677249908, 37.79464369265235 ], [ -122.43327677249908, 37.79448684840749 ] ] }, "properties": { "class": "street", "len": 788.7854607301381, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43604481220245, 37.79980241100018 ], [ -122.43602335453033, 37.79971763628886 ], [ -122.43595898151398, 37.79942092403308 ], [ -122.43586242198944, 37.7989546595088 ], [ -122.43577122688293, 37.79848839204139 ], [ -122.4356746673584, 37.79802212163085 ], [ -122.43548691272736, 37.79709381086916 ] ] }, "properties": { "class": "street", "len": 387.1206080608945, "name": "Fillmore St", "name_de": "Fillmore St", "name_en": "Fillmore St", "name_es": "Fillmore St", "name_fr": "Fillmore St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4249941110611, 37.8031975582087 ], [ -122.42656588554382, 37.80299834664004 ], [ -122.42821276187898, 37.80279489597278 ], [ -122.42985963821413, 37.80258296759842 ] ] }, "properties": { "class": "street", "len": 547.9933606097763, "name": "Francisco St", "name_de": "Francisco St", "name_en": "Francisco St", "name_es": "Francisco St", "name_fr": "Francisco St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42387294769287, 37.797615192322034 ], [ -122.42543935775757, 37.79741172682703 ], [ -122.42709159851074, 37.7972040218895 ], [ -122.42872774600983, 37.79699207747368 ] ] }, "properties": { "class": "street", "len": 547.5952812802853, "name": "Green St", "name_de": "Green St", "name_en": "Green St", "name_es": "Green St", "name_fr": "Green St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42424845695496, 37.79947602782782 ], [ -122.42436647415161, 37.79945907281843 ], [ -122.42570757865906, 37.799289522510435 ], [ -122.42581486701965, 37.799276806221634 ], [ -122.42591679096222, 37.79926408993067 ], [ -122.42663562297821, 37.79917083706328 ], [ -122.42746710777283, 37.79906910652822 ], [ -122.42910325527191, 37.79885716746353 ], [ -122.43075013160706, 37.79864946659016 ], [ -122.43239164352417, 37.79844176513279 ], [ -122.43403315544128, 37.798229824268184 ], [ -122.4356746673584, 37.79802212163088 ], [ -122.4371337890625, 37.797839851488476 ] ] }, "properties": { "class": "street", "len": 2567.1023567117613, "name": "Filbert St", "name_de": "Filbert St", "name_en": "Filbert St", "name_es": "Filbert St", "name_fr": "Filbert St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42368519306183, 37.79667839862234 ], [ -122.42525160312653, 37.79648340839478 ], [ -122.42690920829773, 37.796275700847126 ], [ -122.42853999137878, 37.79606375376797 ], [ -122.43018686771393, 37.79585604504044 ], [ -122.43182301521301, 37.79564409675727 ], [ -122.43344843387605, 37.79544486481667 ], [ -122.43511140346527, 37.79522867635841 ], [ -122.43675827980043, 37.795016726275364 ], [ -122.43713378906251, 37.79497009717551 ] ] }, "properties": { "class": "street", "len": 2582.8728328729226, "name": "Vallejo St", "name_de": "Vallejo St", "name_en": "Vallejo St", "name_es": "Vallejo St", "name_fr": "Vallejo St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42406070232391, 37.79854349653181 ], [ -122.42419481277466, 37.79852654130836 ], [ -122.4256271123886, 37.798344272410596 ], [ -122.42727935314177, 37.79813657009509 ], [ -122.42891550064085, 37.79792886719558 ], [ -122.43056237697601, 37.797716924859415 ], [ -122.43144214153288, 37.79760671460429 ], [ -122.43220388889311, 37.79750922078 ], [ -122.43384540081023, 37.797301516116576 ], [ -122.43548691272734, 37.79709381086918 ] ] }, "properties": { "class": "street", "len": 1288.9843538469645, "name": "Union St", "name_de": "Union St", "name_en": "Union St", "name_es": "Union St", "name_fr": "Union St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42517650127411, 37.80413850771679 ], [ -122.42547690868378, 37.80410459983463 ], [ -122.42676973342896, 37.80394353718175 ], [ -122.4284166097641, 37.80374008911817 ], [ -122.43006348609924, 37.803532401975176 ] ] }, "properties": { "class": "main", "len": 550.5640298929623, "name": "Bay St", "name_de": "Bay St", "name_en": "Bay St", "name_es": "Bay St", "name_fr": "Bay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42443084716797, 37.80041278604948 ], [ -122.4245595932007, 37.800395831255116 ], [ -122.4259275197983, 37.800222044388356 ], [ -122.42600262165071, 37.80020932826012 ], [ -122.4261260032654, 37.80019661212968 ], [ -122.42649614810945, 37.80014998629934 ], [ -122.42685556411743, 37.80010336043956 ], [ -122.42757976055145, 37.80001010863167 ], [ -122.4276602268219, 37.80000163118878 ], [ -122.4277675151825, 37.79998467630002 ], [ -122.42929100990295, 37.79978969479964 ] ] }, "properties": { "class": "street", "len": 548.3303036596409, "name": "Greenwich St", "name_de": "Greenwich St", "name_en": "Greenwich St", "name_es": "Greenwich St", "name_fr": "Greenwich St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42330431938171, 37.794809014604034 ], [ -122.42486000061037, 37.7946097804114 ], [ -122.42652833461763, 37.79440206759597 ], [ -122.42815911769867, 37.79419011514147 ], [ -122.42980599403383, 37.79397816207892 ], [ -122.43145287036897, 37.793770447487695 ], [ -122.43308365345003, 37.79355849322122 ] ] }, "properties": { "class": "street", "len": 1103.3859462619025, "name": "Pacific Ave", "name_de": "Pacific Ave", "name_en": "Pacific Ave", "name_es": "Pacific Ave", "name_fr": "Pacific Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42480635643005, 37.802269312488406 ], [ -122.4249565601349, 37.802252358120164 ], [ -122.42637813091278, 37.80207009841604 ], [ -122.42802500724794, 37.801862406576994 ], [ -122.42967188358308, 37.801654714153955 ], [ -122.43131339550018, 37.801447021146885 ], [ -122.43186056613922, 37.80137496425289 ], [ -122.4327403306961, 37.80126475945547 ], [ -122.43295490741728, 37.80123508890502 ], [ -122.43321776390076, 37.801205418342605 ], [ -122.43346452713011, 37.80117150911384 ], [ -122.43378102779388, 37.80113336121289 ], [ -122.43408679962158, 37.80109521329224 ], [ -122.43437647819519, 37.80105706535187 ], [ -122.43460178375244, 37.80102739471796 ], [ -122.4362701177597, 37.80081546127204 ], [ -122.43688702583313, 37.80073916508263 ], [ -122.4371337890625, 37.80070525563983 ] ] }, "properties": { "class": "street", "len": 2222.354808553998, "name": "Chestnut St", "name_de": "Chestnut St", "name_en": "Chestnut St", "name_es": "Chestnut St", "name_fr": "Chestnut St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43129193782806, 37.785372354258485 ], [ -122.43146896362305, 37.786330488846325 ] ] }, "properties": { "class": "main", "len": 136.47160876874025, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43117392063141, 37.78474065696133 ], [ -122.4311900138855, 37.784829688450905 ], [ -122.43129193782806, 37.785372354258485 ] ] }, "properties": { "class": "main", "len": 89.68332842594724, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43086814880371, 37.80343067744717 ], [ -122.43168354034424, 37.80327809039246 ] ] }, "properties": { "class": "main", "len": 93.86547235192626, "name": "Bay St", "name_de": "Bay St", "name_en": "Bay St", "name_es": "Bay St", "name_fr": "Bay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4090027809143, 37.79109130082786 ], [ -122.4090188741684, 37.79109130082786 ], [ -122.41062819957732, 37.79088357812059 ], [ -122.41099834442137, 37.79083694641218 ], [ -122.41226971149443, 37.790675854829374 ], [ -122.41391122341155, 37.79045965241627 ], [ -122.41470515727995, 37.79036638843492 ], [ -122.4155741930008, 37.79025616721429 ], [ -122.41596579551695, 37.790205295826226 ], [ -122.41720497608183, 37.79004844215926 ], [ -122.41751074790955, 37.79000604921915 ], [ -122.41841733455658, 37.78988734885741 ], [ -122.41884648799896, 37.78983223791036 ], [ -122.4204933643341, 37.789620272346355 ], [ -122.42206513881683, 37.789421024161776 ], [ -122.4222207069397, 37.78940406684465 ], [ -122.42378175258636, 37.78920481807708 ], [ -122.42542326450348, 37.78899709006654 ], [ -122.4270647764206, 37.788789361472034 ], [ -122.42871701717375, 37.7885773929165 ], [ -122.43035852909087, 37.78836966314217 ], [ -122.43200004100798, 37.788161932783865 ], [ -122.43282079696654, 37.78805594768223 ], [ -122.4336415529251, 37.78794996242857 ], [ -122.43528842926024, 37.78774223089048 ], [ -122.43692994117733, 37.787534498768416 ], [ -122.43713378906246, 37.78750906214192 ] ] }, "properties": { "class": "main", "len": 4240.973449295866, "name": "Pine St", "name_de": "Pine St", "name_en": "Pine St", "name_es": "Pine St", "name_fr": "Pine St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4327939748764, 37.78374434488178 ], [ -122.43289053440094, 37.78419798651539 ], [ -122.432901263237, 37.78426582053903 ] ] }, "properties": { "class": "street", "len": 803.2252406201831, "name": "Fillmore St", "name_de": "Fillmore St", "name_en": "Fillmore St", "name_es": "Fillmore St", "name_fr": "Fillmore St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43472516536713, 37.7849483969368 ], [ -122.43390440940857, 37.78505014691581 ], [ -122.43307828903198, 37.785151896754726 ], [ -122.43143677711487, 37.78535539601231 ], [ -122.43129193782806, 37.785372354258485 ] ] }, "properties": { "class": "street", "len": 387.43784348452124, "name": "Post St", "name_de": "Post St", "name_en": "Post St", "name_es": "Post St", "name_fr": "Post St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41192638874054, 37.797271843974116 ], [ -122.41191565990448, 37.7972167385351 ], [ -122.41190493106842, 37.79716163305497 ], [ -122.41187274456024, 37.79700055526198 ], [ -122.41173326969147, 37.79629689552161 ] ] }, "properties": { "class": "street", "len": 139.4149594024999, "name": "Mason St", "name_de": "Mason St", "name_en": "Mason St", "name_es": "Mason St", "name_fr": "Mason St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41173326969147, 37.79629689552161 ], [ -122.41163671016693, 37.79583908920013 ], [ -122.41155624389648, 37.79541519192846 ], [ -122.41147577762605, 37.7950633553458 ], [ -122.41136848926544, 37.79454195588281 ], [ -122.41136848926544, 37.79452923877677 ] ] }, "properties": { "class": "street", "len": 252.16487531315929, "name": "Mason St", "name_de": "Mason St", "name_en": "Mason St", "name_es": "Mason St", "name_fr": "Mason St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42929100990295, 37.7997896947997 ], [ -122.42945194244386, 37.80056114033423 ], [ -122.42946803569794, 37.800637436707525 ] ] }, "properties": { "class": "street", "len": 121.07622765164624, "name": "Octavia St", "name_de": "Octavia St", "name_en": "Octavia St", "name_es": "Octavia St", "name_fr": "Octavia St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42872774600983, 37.79699207747368 ], [ -122.42891550064087, 37.79792886719558 ], [ -122.42910325527191, 37.7988571674635 ], [ -122.42917835712433, 37.79923441857653 ], [ -122.42929100990295, 37.79978969479967 ] ] }, "properties": { "class": "street", "len": 399.03191064487265, "name": "Octavia St", "name_de": "Octavia St", "name_en": "Octavia St", "name_es": "Octavia St", "name_fr": "Octavia St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41336941719055, 37.796084948503236 ], [ -122.41346061229706, 37.79652579761845 ], [ -122.41355180740355, 37.79694121072341 ], [ -122.41355180740355, 37.797034466405485 ], [ -122.41356253623961, 37.797131960856326 ], [ -122.41366982460022, 37.79767029746383 ], [ -122.41371273994446, 37.797844090334074 ], [ -122.41373419761658, 37.797950061395746 ], [ -122.41375029087065, 37.798030599300965 ], [ -122.41390585899352, 37.79887836139735 ], [ -122.41392731666564, 37.798958898290465 ], [ -122.4140292406082, 37.79937005895526 ], [ -122.41412580013274, 37.79983208212613 ], [ -122.41422235965729, 37.80030257981648 ], [ -122.41430282592772, 37.800756119798216 ], [ -122.41439938545227, 37.80122661160268 ], [ -122.4144959449768, 37.801692861785654 ], [ -122.41468906402588, 37.80261687617921 ], [ -122.41484463214873, 37.80337981513064 ], [ -122.41488218307494, 37.80354511753136 ] ] }, "properties": { "class": "street", "len": 1064.328164583362, "name": "Taylor St", "name_de": "Taylor St", "name_en": "Taylor St", "name_es": "Taylor St", "name_fr": "Taylor St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42774069309235, 37.78374434488178 ], [ -122.42778360843658, 37.783926649798154 ], [ -122.42782652378084, 37.78418102799973 ], [ -122.42797136306763, 37.7848848031288 ] ] }, "properties": { "class": "street", "len": 802.3070257550971, "name": "Laguna St", "name_de": "Laguna St", "name_en": "Laguna St", "name_es": "Laguna St", "name_fr": "Laguna St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42365837097168, 37.80528712802926 ], [ -122.42384612560272, 37.80621957418566 ] ] }, "properties": { "class": "street", "len": 133.4269466789773, "name": "Polk St", "name_de": "Polk St", "name_en": "Polk St", "name_es": "Polk St", "name_fr": "Polk St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.431640625, 37.78629657278981 ], [ -122.43143677711487, 37.78535539601231 ], [ -122.43131875991821, 37.784723698570225 ] ] }, "properties": { "class": "main", "len": 224.9170140610984, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43146896362305, 37.786330488846325 ], [ -122.43159770965576, 37.78688586205755 ], [ -122.43171036243439, 37.78716566682716 ], [ -122.43181228637695, 37.78723349812689 ] ] }, "properties": { "class": "main", "len": 135.65564961645413, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40908324718475, 37.7957246371765 ], [ -122.40926027297974, 37.79660633707646 ] ] }, "properties": { "class": "service", "len": 125.64812812003456, "name": "Trenton St", "name_de": "Trenton St", "name_en": "Trenton St", "name_es": "Trenton St", "name_fr": "Trenton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42398023605347, 37.79016290297611 ], [ -122.4225264787674, 37.790315517122764 ], [ -122.42240846157074, 37.790328234954075 ] ] }, "properties": { "class": "street", "len": 175.97746423811265, "name": "California St", "name_de": "California St", "name_en": "California St", "name_es": "California St", "name_fr": "California St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42037534713745, 37.80571520704471 ], [ -122.42028415203094, 37.80523626699121 ], [ -122.42019295692444, 37.80478699296722 ] ] }, "properties": { "class": "street", "len": 132.96272992699332, "name": "Hyde St", "name_de": "Hyde St", "name_en": "Hyde St", "name_es": "Hyde St", "name_fr": "Hyde St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40426063537598, 37.784490520297716 ], [ -122.40418016910553, 37.78452443718309 ] ] }, "properties": { "class": "main", "len": 353.3863057752421, "name": "Mission St", "name_de": "Mission St", "name_en": "Mission St", "name_es": "Mission St", "name_fr": "Mission St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.784596510512785 ], [ -122.40426063537598, 37.784490520297716 ] ] }, "properties": { "class": "main", "len": 351.5767408950287, "name": "Mission St", "name_de": "Mission St", "name_en": "Mission St", "name_es": "Mission St", "name_fr": "Mission St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.789789844846204 ], [ -122.40421235561371, 37.789785605538455 ], [ -122.40459322929382, 37.78973897313711 ], [ -122.40540862083435, 37.7896245116636 ] ] }, "properties": { "class": "street", "len": 548.6476634002003, "name": "Sutter St", "name_de": "Sutter St", "name_en": "Sutter St", "name_es": "Sutter St", "name_fr": "Sutter St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.78787789236924 ], [ -122.40504920482635, 37.78776766743669 ], [ -122.40659952163696, 37.78757689312644 ], [ -122.40706622600555, 37.787521780456224 ], [ -122.40720570087433, 37.787500583264446 ], [ -122.40733444690706, 37.78748786494643 ], [ -122.40749537944795, 37.78746666774491 ], [ -122.40765094757081, 37.78744547053731 ], [ -122.40779042243959, 37.78742851276686 ], [ -122.408219575882, 37.78737763943212 ], [ -122.40823566913606, 37.78737339998598 ] ] }, "properties": { "class": "street", "len": 591.436299421901, "name": "Geary St", "name_de": "Geary St", "name_en": "Geary St", "name_es": "Geary St", "name_fr": "Geary St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40998446941376, 37.79419435419653 ], [ -122.40990400314332, 37.793808599191095 ] ] }, "properties": { "class": "path", "len": 55.41610235241239, "name": "Codman Pl", "name_de": "Codman Pl", "name_en": "Codman Pl", "name_es": "Codman Pl", "name_fr": "Codman Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40872383117676, 37.79395696673922 ], [ -122.40854680538177, 37.79307099610066 ] ] }, "properties": { "class": "service", "len": 126.6093938059111, "name": "Joice St", "name_de": "Joice St", "name_en": "Joice St", "name_es": "Joice St", "name_fr": "Joice St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40823566913605, 37.78737339998601 ], [ -122.40832149982454, 37.78783125876399 ], [ -122.40840196609497, 37.78821280557867 ], [ -122.40841805934906, 37.7882933540988 ], [ -122.40861654281616, 37.78923025411991 ], [ -122.40874528884888, 37.78985767373719 ], [ -122.40880966186525, 37.790175620833686 ], [ -122.40894377231598, 37.79081998941997 ], [ -122.4090027809143, 37.79109130082783 ] ] }, "properties": { "class": "street", "len": 530.5865911314289, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40823566913605, 37.78737339998601 ], [ -122.40826785564423, 37.78736916053963 ], [ -122.40988790988922, 37.78714870899249 ], [ -122.41151869297028, 37.78694097520201 ], [ -122.41235017776489, 37.78684770677962 ], [ -122.41316020488739, 37.78674595927549 ], [ -122.41480708122253, 37.78652126637423 ], [ -122.41645395755768, 37.78631353082002 ], [ -122.41809010505676, 37.78610155516279 ] ] }, "properties": { "class": "street", "len": 1111.452530339568, "name": "Geary St", "name_de": "Geary St", "name_en": "Geary St", "name_es": "Geary St", "name_fr": "Geary St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40862727165222, 37.79763214775467 ], [ -122.40905106067657, 37.79757704258442 ], [ -122.40972697734833, 37.79749226531914 ], [ -122.41025805473328, 37.79741596569723 ] ] }, "properties": { "class": "main", "len": 184.35408965341415, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40663707256317, 37.79787800109037 ], [ -122.40698039531708, 37.79811537594843 ], [ -122.40707695484161, 37.79813233126623 ] ] }, "properties": { "class": "main", "len": 61.65918459179387, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40673899650574, 37.797865284558576 ], [ -122.40630984306335, 37.79756856486228 ], [ -122.40618646144867, 37.79751769850893 ] ] }, "properties": { "class": "main", "len": 78.84169638759144, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40701258182526, 37.797831373796456 ], [ -122.4077957868576, 37.797733880268694 ], [ -122.40862727165222, 37.79763214775467 ] ] }, "properties": { "class": "main", "len": 181.67981259184776, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40644931793213, 37.79888260018339 ], [ -122.40639567375183, 37.79859012337622 ] ] }, "properties": { "class": "service", "len": 41.50369742562071, "name": "Romolo Pl", "name_de": "Romolo Pl", "name_en": "Romolo Pl", "name_es": "Romolo Pl", "name_fr": "Romolo Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4054890871048, 37.798017882795456 ], [ -122.40626156330109, 37.79792886719558 ], [ -122.40663707256317, 37.79787800109037 ] ] }, "properties": { "class": "main", "len": 129.15903882642104, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40596115589142, 37.80662645609157 ], [ -122.40605771541595, 37.806588311008134 ], [ -122.40607917308807, 37.80657983432025 ], [ -122.40609526634216, 37.80657983432025 ], [ -122.40715742111206, 37.80643573047732 ], [ -122.40861117839813, 37.80624076600694 ], [ -122.4095070362091, 37.80613480683977 ], [ -122.41032779216766, 37.80603308589625 ], [ -122.41195321083069, 37.805821166813914 ], [ -122.41360545158385, 37.80561772392273 ], [ -122.41476953029631, 37.805473618202406 ], [ -122.41524159908295, 37.80541851888209 ], [ -122.41688847541809, 37.80521507488168 ] ] }, "properties": { "class": "main", "len": 1233.29485361915, "name": "Bay St", "name_de": "Bay St", "name_en": "Bay St", "name_es": "Bay St", "name_fr": "Bay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40622937679291, 37.78571575790625 ], [ -122.40779042243958, 37.78550802008779 ], [ -122.40785479545593, 37.78549954098075 ], [ -122.40787088871002, 37.78549954098075 ], [ -122.4078869819641, 37.78549530142688 ], [ -122.4079245328903, 37.785491061872726 ], [ -122.40794599056242, 37.78548682231837 ], [ -122.4086809158325, 37.785393552060754 ] ] }, "properties": { "class": "street", "len": 276.3423383783363, "name": "Ellis St", "name_de": "Ellis St", "name_en": "Ellis St", "name_es": "Ellis St", "name_fr": "Ellis St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40594506263733, 37.792460560388086 ], [ -122.40612208843231, 37.79337621206568 ], [ -122.40621328353882, 37.793834033649084 ], [ -122.4062991142273, 37.79426641809515 ], [ -122.4064975976944, 37.79515661339839 ], [ -122.40665316581726, 37.79602984217886 ], [ -122.40683019161224, 37.79691153843622 ], [ -122.40694820880891, 37.79748378758728 ], [ -122.40701258182527, 37.797831373796456 ] ] }, "properties": { "class": "street", "len": 765.8157967799175, "name": "Grant Ave", "name_de": "Grant Ave", "name_en": "Grant Ave", "name_es": "Grant Ave", "name_fr": "Grant Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40594506263733, 37.792460560388086 ], [ -122.40671753883363, 37.79236305977244 ], [ -122.40753829479218, 37.792261319862405 ], [ -122.40809619426727, 37.79219349317789 ], [ -122.40836441516876, 37.79215957981227 ], [ -122.40883111953735, 37.79210023138499 ], [ -122.40919053554533, 37.79205360044444 ] ] }, "properties": { "class": "street", "len": 365.9903944746072, "name": "California St", "name_de": "California St", "name_en": "California St", "name_es": "California St", "name_fr": "California St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4108213186264, 37.791837402062676 ], [ -122.41110563278198, 37.791799249341395 ], [ -122.41171717643738, 37.79172294383976 ], [ -122.41206049919128, 37.79168479105935 ], [ -122.41245210170746, 37.79163815985659 ] ] }, "properties": { "class": "street", "len": 183.65375715351743, "name": "California St", "name_de": "California St", "name_en": "California St", "name_es": "California St", "name_fr": "California St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40479707717896, 37.79445293609456 ], [ -122.40488290786743, 37.794859882822436 ], [ -122.40497410297394, 37.79532617319241 ], [ -122.40515112876892, 37.79622059466506 ], [ -122.40529596805573, 37.79690306063769 ] ] }, "properties": { "class": "main", "len": 349.58069308376486, "name": "Kearny St", "name_de": "Kearny St", "name_en": "Kearny St", "name_es": "Kearny St", "name_fr": "Kearny St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41136848926544, 37.79452923877677 ], [ -122.41128802299501, 37.79453771684771 ], [ -122.41124510765076, 37.79454619491767 ], [ -122.4111968278885, 37.7945589120208 ], [ -122.4111592769623, 37.79456315105469 ], [ -122.4105477333069, 37.79464369265235 ], [ -122.41008639335634, 37.794707278062184 ], [ -122.4098986387253, 37.7947284731866 ], [ -122.4097377061844, 37.79474966830498 ] ] }, "properties": { "class": "street", "len": 184.2016929531114, "name": "Washington St", "name_de": "Washington St", "name_en": "Washington St", "name_es": "Washington St", "name_fr": "Washington St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40973770618439, 37.79474966830498 ], [ -122.40988254547119, 37.79551268851633 ], [ -122.40990400314331, 37.795618662922415 ] ] }, "properties": { "class": "street", "len": 123.9916499108682, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40954458713531, 37.79385522902405 ], [ -122.40973770618439, 37.79474966830498 ] ] }, "properties": { "class": "street", "len": 128.04957243233278, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40954458713531, 37.79385522902405 ], [ -122.4095231294632, 37.79385522902405 ], [ -122.40919589996338, 37.79389761975574 ], [ -122.40872383117674, 37.793956966739245 ], [ -122.40789771080016, 37.794062943376915 ], [ -122.40752220153807, 37.79410957304935 ], [ -122.40730762481688, 37.79413924646194 ], [ -122.4068248271942, 37.79419859325133 ], [ -122.4062991142273, 37.79426641809515 ], [ -122.40566611289978, 37.794346960016284 ], [ -122.40479707717894, 37.79445293609456 ] ] }, "properties": { "class": "street", "len": 534.9310728894536, "name": "Clay St", "name_de": "Clay St", "name_en": "Clay St", "name_es": "Clay St", "name_fr": "Clay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40816593170166, 37.80344339302085 ], [ -122.4082624912262, 37.80392234470129 ], [ -122.40834832191467, 37.804367385514226 ], [ -122.40842878818512, 37.804837854314705 ], [ -122.40853607654572, 37.80529136644753 ] ] }, "properties": { "class": "street", "len": 263.9852347691697, "name": "Grant Ave", "name_de": "Grant Ave", "name_en": "Grant Ave", "name_es": "Grant Ave", "name_fr": "Grant Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40816593170166, 37.80344339302085 ], [ -122.40976452827452, 37.803239943579534 ] ] }, "properties": { "class": "street", "len": 180.34540997713472, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4130368232727, 37.80282880445625 ], [ -122.41294026374817, 37.802332891334544 ], [ -122.41290807723998, 37.802184540608394 ] ] }, "properties": { "class": "street", "len": 91.80682766410945, "name": "Mason St", "name_de": "Mason St", "name_en": "Mason St", "name_es": "Mason St", "name_fr": "Mason St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40529596805573, 37.79690306063769 ], [ -122.40553736686707, 37.79707261642332 ], [ -122.40618646144867, 37.79751769850896 ] ] }, "properties": { "class": "main", "len": 131.24793561602883, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41532742977142, 37.80016694115013 ], [ -122.41478562355042, 37.80023052180601 ] ] }, "properties": { "class": "path", "len": 60.584705165535524, "name": "Redfield Alley", "name_de": "Redfield Alley", "name_en": "Redfield Alley", "name_es": "Redfield Alley", "name_fr": "Redfield Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41245210170746, 37.79163815985659 ], [ -122.41410970687866, 37.791421960259214 ], [ -122.41576731204987, 37.791209999255514 ] ] }, "properties": { "class": "street", "len": 373.990849845489, "name": "California St", "name_de": "California St", "name_en": "California St", "name_es": "California St", "name_fr": "California St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40919053554535, 37.79205360044444 ], [ -122.40936219692232, 37.79296077891455 ], [ -122.40954458713531, 37.79385522902405 ] ] }, "properties": { "class": "street", "len": 256.5839136317273, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4090027809143, 37.79109130082786 ], [ -122.40919053554535, 37.79205360044444 ] ] }, "properties": { "class": "street", "len": 137.04016126681051, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40919053554535, 37.79205360044444 ], [ -122.4108213186264, 37.791837402062676 ] ] }, "properties": { "class": "street", "len": 183.83939784404808, "name": "California St", "name_de": "California St", "name_en": "California St", "name_es": "California St", "name_fr": "California St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40426063537598, 37.784490520297716 ], [ -122.40487217903136, 37.78400296335056 ] ] }, "properties": { "class": "main", "len": 97.00967013617185, "name": "Mission St", "name_de": "Mission St", "name_en": "Mission St", "name_es": "Mission St", "name_fr": "Mission St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40659952163696, 37.78757689312644 ], [ -122.40641176700592, 37.78663997214301 ], [ -122.40625083446503, 37.785821746364185 ], [ -122.40622937679291, 37.78571575790625 ] ] }, "properties": { "class": "street_limited", "len": 265.42301278417017, "name": "Stockton St", "name_de": "Stockton St", "name_en": "Stockton St", "name_es": "Stockton St", "name_fr": "Stockton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40661025047302, 37.78852228099244 ], [ -122.40626692771912, 37.78856467478382 ] ] }, "properties": { "class": "street", "len": 38.5378528189579, "name": "Post St", "name_de": "Post St", "name_en": "Post St", "name_es": "Post St", "name_fr": "Post St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40598261356354, 37.788598589799406 ], [ -122.40565001964569, 37.788640983547005 ] ] }, "properties": { "class": "street", "len": 37.498653310353, "name": "Post St", "name_de": "Post St", "name_en": "Post St", "name_es": "Post St", "name_fr": "Post St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40626692771912, 37.78856467478382 ], [ -122.40598261356354, 37.788598589799406 ] ] }, "properties": { "class": "street", "len": 32.31026152792775, "name": "Post St", "name_de": "Post St", "name_en": "Post St", "name_es": "Post St", "name_fr": "Post St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40565001964569, 37.788640983547005 ], [ -122.40522623062134, 37.78869609538249 ] ] }, "properties": { "class": "street", "len": 47.92525221645662, "name": "Post St", "name_de": "Post St", "name_en": "Post St", "name_es": "Post St", "name_fr": "Post St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41234481334686, 37.807698748708574 ], [ -122.41397559642792, 37.807491072698134 ] ] }, "properties": { "class": "street", "len": 183.75914698432766, "name": "Beach St", "name_de": "Beach St", "name_en": "Beach St", "name_es": "Beach St", "name_fr": "Beach St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41214632987976, 37.80675784456153 ], [ -122.41234481334686, 37.807698748708574 ] ] }, "properties": { "class": "street", "len": 134.73853531996173, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42112100124359, 37.78476609454075 ], [ -122.4195545911789, 37.78496535527636 ], [ -122.41790235042572, 37.78517733419256 ], [ -122.41626620292664, 37.785385072940564 ], [ -122.4159175157547, 37.78542746853168 ], [ -122.41567611694335, 37.78545714543098 ], [ -122.41502702236174, 37.7855419365062 ], [ -122.41461932659148, 37.785592811104635 ], [ -122.4129831790924, 37.78580054868474 ], [ -122.41215169429778, 37.785910776551354 ], [ -122.41133630275725, 37.78601252520537 ], [ -122.409850358963, 37.78620330355411 ], [ -122.4097055196762, 37.78622026160572 ], [ -122.40933537483214, 37.78626689622757 ], [ -122.40895450115204, 37.78631353082002 ], [ -122.40807473659515, 37.78642799742214 ], [ -122.40805327892303, 37.7864322369225 ], [ -122.40802645683289, 37.7864322369225 ], [ -122.40641176700592, 37.78663997214301 ], [ -122.40536570549011, 37.78677139616462 ], [ -122.40485608577728, 37.78683922782627 ] ] }, "properties": { "class": "street", "len": 1833.5782452067062, "name": "O'Farrell St", "name_de": "O'Farrell St", "name_en": "O'Farrell St", "name_es": "O'Farrell St", "name_fr": "O'Farrell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.80106554267365 ], [ -122.40444302558899, 37.80103163338067 ] ] }, "properties": { "class": "street", "len": 58.18082588018759, "name": "Union St", "name_de": "Union St", "name_en": "Union St", "name_es": "Union St", "name_fr": "Union St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40670680999756, 37.804159700135244 ], [ -122.40676581859587, 37.8044394394888 ] ] }, "properties": { "class": "street", "len": 40.44708765741083, "name": "Kearny St", "name_de": "Kearny St", "name_en": "Kearny St", "name_es": "Kearny St", "name_fr": "Kearny St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41145431995392, 37.80112064524151 ], [ -122.41095542907715, 37.80077731318719 ] ] }, "properties": { "class": "main", "len": 73.95789342580765, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41095542907715, 37.80077731318719 ], [ -122.4102795124054, 37.800311057224846 ], [ -122.40913689136505, 37.799518415334305 ], [ -122.40908324718475, 37.79948874408232 ], [ -122.4089652299881, 37.79947178907586 ] ] }, "properties": { "class": "main", "len": 289.87044238473743, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41145431995392, 37.80112064524151 ], [ -122.41232335567474, 37.801010440064665 ], [ -122.41266131401063, 37.80098076941203 ], [ -122.41267740726471, 37.80098076941203 ], [ -122.41269886493683, 37.80098076941203 ], [ -122.41430282592773, 37.800756119798216 ], [ -122.41487681865692, 37.80067982354754 ], [ -122.41596579551697, 37.80053994688325 ], [ -122.41667926311493, 37.80044669562654 ], [ -122.41749465465546, 37.80034496684863 ], [ -122.41762340068817, 37.80032801203869 ] ] }, "properties": { "class": "street", "len": 696.0457391702105, "name": "Filbert St", "name_de": "Filbert St", "name_en": "Filbert St", "name_es": "Filbert St", "name_fr": "Filbert St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41102516651154, 37.80117574776828 ], [ -122.41130948066713, 37.801141838525915 ], [ -122.41145431995393, 37.80112064524151 ] ] }, "properties": { "class": "street", "len": 48.65819507844989, "name": "Filbert St", "name_de": "Filbert St", "name_en": "Filbert St", "name_es": "Filbert St", "name_fr": "Filbert St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40976452827454, 37.803239943579534 ], [ -122.41034924983978, 37.80316364989455 ], [ -122.41138994693756, 37.80303649357777 ], [ -122.41231262683868, 37.8029220527055 ], [ -122.4130368232727, 37.80282880445625 ] ] }, "properties": { "class": "street", "len": 368.9346596825863, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40919053554535, 37.80044669562654 ], [ -122.40920662879944, 37.80052299211805 ], [ -122.4092710018158, 37.80083665464399 ], [ -122.40934610366821, 37.80118422507645 ], [ -122.40938365459442, 37.801379202895646 ], [ -122.4094694852829, 37.80184969073116 ], [ -122.4095767736435, 37.802303221213165 ], [ -122.40976452827454, 37.803239943579534 ] ] }, "properties": { "class": "street", "len": 398.8186351854098, "name": "Stockton St", "name_de": "Stockton St", "name_en": "Stockton St", "name_es": "Stockton St", "name_fr": "Stockton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40919053554535, 37.80044669562654 ], [ -122.40964114665985, 37.8003915925559 ], [ -122.40986108779909, 37.80036192165466 ], [ -122.41015613079072, 37.80032377333558 ] ] }, "properties": { "class": "street", "len": 108.83598004008599, "name": "Union St", "name_de": "Union St", "name_en": "Union St", "name_es": "Union St", "name_fr": "Union St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41015613079071, 37.800323773335606 ], [ -122.41038680076599, 37.80048484388214 ], [ -122.41077303886414, 37.800756119798216 ], [ -122.41096079349518, 37.800883280040885 ] ] }, "properties": { "class": "main", "len": 119.07619620906235, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41096079349518, 37.800883280040885 ], [ -122.41130948066713, 37.801141838525915 ], [ -122.41149723529817, 37.80124780485665 ], [ -122.41243600845338, 37.80190055410142 ], [ -122.41266667842866, 37.80205738260592 ], [ -122.41290807724, 37.80218454060837 ] ] }, "properties": { "class": "main", "len": 284.5610334771084, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40444302558899, 37.80103163338067 ], [ -122.40525841712952, 37.80093414407668 ], [ -122.4059182405472, 37.80085360933718 ], [ -122.40602552890779, 37.80083665464399 ], [ -122.4063688516617, 37.800794267894 ], [ -122.40642786026002, 37.80079002921765 ], [ -122.40681409835817, 37.80073916508263 ], [ -122.40704476833345, 37.80071373300199 ], [ -122.40760266780855, 37.800641675392626 ], [ -122.4079191684723, 37.800603527218016 ], [ -122.40801036357881, 37.800590811155416 ], [ -122.40837514400484, 37.80054842426436 ], [ -122.40885257720949, 37.80048908257599 ], [ -122.40919053554536, 37.80044669562654 ] ] }, "properties": { "class": "street", "len": 534.9702814167264, "name": "Union St", "name_de": "Union St", "name_en": "Union St", "name_es": "Union St", "name_fr": "Union St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41015613079071, 37.800323773335606 ], [ -122.4102795124054, 37.800311057224846 ], [ -122.41084277629852, 37.800251715345794 ] ] }, "properties": { "class": "street", "len": 76.63591281024814, "name": "Union St", "name_de": "Union St", "name_en": "Union St", "name_es": "Union St", "name_fr": "Union St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4371337890625, 37.806461160587695 ], [ -122.4367743730545, 37.80650354408551 ], [ -122.43663489818573, 37.8065162591301 ], [ -122.4365222454071, 37.80652473582528 ], [ -122.43640422821045, 37.80652473582528 ], [ -122.43629693984984, 37.80651202078214 ], [ -122.43617892265318, 37.80648235233963 ], [ -122.43608236312865, 37.80644844553362 ] ] }, "properties": { "class": "main", "len": 1295.5299825214686, "name": "Marina Blvd", "name_de": "Marina Blvd", "name_en": "Marina Blvd", "name_es": "Marina Blvd", "name_fr": "Marina Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43680119514465, 37.80276522603697 ], [ -122.43694603443146, 37.80283728157465 ], [ -122.4371337890625, 37.80293900691998 ] ] }, "properties": { "class": "street", "len": 84.14239889006456, "name": "Cervantes Blvd", "name_de": "Cervantes Blvd", "name_en": "Cervantes Blvd", "name_es": "Cervantes Blvd", "name_fr": "Cervantes Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43657052516937, 37.794062943376915 ], [ -122.4371337890625, 37.79399087927983 ] ] }, "properties": { "class": "street", "len": 1112.992845561897, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43548691272736, 37.79709381086916 ], [ -122.43529915809631, 37.79616124949991 ], [ -122.43511140346527, 37.79522867635839 ], [ -122.4349182844162, 37.794274896196235 ] ] }, "properties": { "class": "street", "len": 401.7067503415705, "name": "Fillmore St", "name_de": "Fillmore St", "name_en": "Fillmore St", "name_es": "Fillmore St", "name_fr": "Fillmore St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43663489818573, 37.80269317042898 ], [ -122.43680655956268, 37.80361717230817 ], [ -122.4369728565216, 37.80436314704291 ], [ -122.43701577186584, 37.804553878009884 ], [ -122.43713378906251, 37.805143021663845 ] ] }, "properties": { "class": "street", "len": 514.0161271942299, "name": "Fillmore St", "name_de": "Fillmore St", "name_en": "Fillmore St", "name_es": "Fillmore St", "name_fr": "Fillmore St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4371337890625, 37.7968606716305 ], [ -122.43694603443146, 37.79594930209237 ], [ -122.43675827980042, 37.795016726275364 ], [ -122.43657052516937, 37.794062943376915 ] ] }, "properties": { "class": "street", "len": 402.15113100734203, "name": "Steiner St", "name_de": "Steiner St", "name_en": "Steiner St", "name_es": "Steiner St", "name_fr": "Steiner St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43548691272736, 37.79709381086916 ], [ -122.4371337890625, 37.79688186613715 ] ] }, "properties": { "class": "street", "len": 185.81727852882707, "name": "Union St", "name_de": "Union St", "name_en": "Union St", "name_es": "Union St", "name_fr": "Union St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42009103298187, 37.795987452670616 ], [ -122.4197906255722, 37.79603408112835 ], [ -122.41968333721161, 37.79604679797535 ], [ -122.4194473028183, 37.796084948503236 ], [ -122.41934537887575, 37.796097665341506 ], [ -122.41930246353151, 37.796097665341506 ], [ -122.41927027702332, 37.79609342639566 ], [ -122.4192649126053, 37.796072231662805 ] ] }, "properties": { "class": "path", "len": 95.58863909056261, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42471516132355, 37.78541898941539 ], [ -122.42468297481537, 37.785279083856395 ], [ -122.4244898557663, 37.78434637336127 ], [ -122.42436647415161, 37.78374434488178 ] ] }, "properties": { "class": "main", "len": 1784.246105662871, "name": "Gough St", "name_de": "Gough St", "name_en": "Gough St", "name_es": "Gough St", "name_fr": "Gough St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42484390735626, 37.803218750897145 ], [ -122.42502093315125, 37.804159700135244 ] ] }, "properties": { "class": "main", "len": 134.30652850837689, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42502093315125, 37.804159700135244 ], [ -122.42520332336426, 37.805096398955996 ] ] }, "properties": { "class": "main", "len": 133.38853698890858, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42480635643005, 37.802269312488406 ], [ -122.42479026317598, 37.802197256396575 ], [ -122.42463469505311, 37.80142158930995 ], [ -122.42461860179903, 37.80134529374666 ] ] }, "properties": { "class": "main", "len": 132.06325543942452, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4249941110611, 37.8031975582087 ], [ -122.42482781410217, 37.80237103861598 ], [ -122.42480635643005, 37.802269312488406 ] ] }, "properties": { "class": "main", "len": 132.1428868028356, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42348670959473, 37.7957246371765 ], [ -122.42505848407745, 37.79552964443152 ], [ -122.42671072483061, 37.79532193420228 ] ] }, "properties": { "class": "street", "len": 363.4559428062918, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42012321949005, 37.79614429372968 ], [ -122.42099225521089, 37.79608070955667 ], [ -122.42163598537446, 37.79600016952563 ], [ -122.42177009582521, 37.79594506313799 ] ] }, "properties": { "class": "main", "len": 186.73849480145344, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42010712623596, 37.79606375376797 ], [ -122.41949558258057, 37.79613157689948 ] ] }, "properties": { "class": "main", "len": 68.68043826231172, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42517650127411, 37.80413850771679 ], [ -122.4249941110611, 37.8031975582087 ] ] }, "properties": { "class": "main", "len": 134.3164163464744, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42183983325958, 37.78755145651453 ], [ -122.42341697216034, 37.787356442199 ], [ -122.4250477552414, 37.78713175115391 ] ] }, "properties": { "class": "street", "len": 361.9390152582063, "name": "Sutter St", "name_de": "Sutter St", "name_en": "Sutter St", "name_es": "Sutter St", "name_fr": "Sutter St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42242455482483, 37.790396063350826 ], [ -122.42254257202148, 37.79037910625748 ], [ -122.42398023605347, 37.79016290297611 ] ] }, "properties": { "class": "street", "len": 175.89302792667098, "name": "California St", "name_de": "California St", "name_en": "California St", "name_es": "California St", "name_fr": "California St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41963505744934, 37.80199804212988 ], [ -122.41961896419525, 37.80192598577343 ], [ -122.41945266723633, 37.80114607718208 ], [ -122.41944193840027, 37.80109521329224 ], [ -122.41943657398224, 37.80106978133419 ], [ -122.41931855678558, 37.80045517301839 ], [ -122.41925418376923, 37.80012455401583 ], [ -122.41913080215454, 37.79951417658475 ], [ -122.41912543773653, 37.79948874408232 ], [ -122.4190664291382, 37.79919626967515 ], [ -122.41900742053987, 37.798916510462924 ], [ -122.41897523403169, 37.79874272011575 ], [ -122.41893768310548, 37.79856892935968 ], [ -122.41887867450718, 37.79826373484735 ], [ -122.41869091987614, 37.797339665996475 ], [ -122.4185031652451, 37.79643254129425 ], [ -122.41849780082707, 37.796398629874425 ] ] }, "properties": { "class": "street", "len": 798.6670949796834, "name": "Hyde St", "name_de": "Hyde St", "name_en": "Hyde St", "name_es": "Hyde St", "name_fr": "Hyde St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42347061634064, 37.804358908571395 ], [ -122.42365837097168, 37.80528712802926 ] ] }, "properties": { "class": "street", "len": 132.99522284668095, "name": "Polk St", "name_de": "Polk St", "name_en": "Polk St", "name_es": "Polk St", "name_fr": "Polk St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41949558258057, 37.79613157689948 ], [ -122.41784870624542, 37.796335045920344 ] ] }, "properties": { "class": "main", "len": 185.68311177870564, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41722643375397, 37.805172690644405 ], [ -122.41855680942535, 37.80500739188654 ] ] }, "properties": { "class": "main", "len": 149.5837056633596, "name": "Bay St", "name_de": "Bay St", "name_en": "Bay St", "name_es": "Bay St", "name_fr": "Bay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41951704025269, 37.796212116787245 ], [ -122.42012321949005, 37.79614429372968 ] ] }, "properties": { "class": "main", "len": 68.21345615050646, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41850316524506, 37.79643254129425 ], [ -122.41861045360565, 37.79641982451364 ], [ -122.41999447345734, 37.79623755041776 ], [ -122.42006957530975, 37.796241789355314 ], [ -122.42013931274414, 37.79625450616659 ] ] }, "properties": { "class": "street", "len": 184.32818978811707, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42013931274414, 37.79625450616659 ], [ -122.42031633853912, 37.797110766421454 ], [ -122.42050409317017, 37.79804755463823 ], [ -122.42063820362091, 37.798696093367674 ], [ -122.42069721221924, 37.79898433097531 ], [ -122.42088496685028, 37.79991261797943 ], [ -122.42107272148132, 37.800832415970085 ], [ -122.42109417915344, 37.800938382744725 ], [ -122.4212658405304, 37.80178187284963 ], [ -122.42145359516144, 37.80271436326215 ] ] }, "properties": { "class": "street", "len": 922.2551334323109, "name": "Larkin St", "name_de": "Larkin St", "name_en": "Larkin St", "name_es": "Larkin St", "name_fr": "Larkin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41685092449188, 37.804977722839574 ], [ -122.41688847541809, 37.80521507488168 ] ] }, "properties": { "class": "street", "len": 33.292385014751915, "name": "Jones St", "name_de": "Jones St", "name_en": "Jones St", "name_es": "Jones St", "name_fr": "Jones St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42019295692444, 37.80478699296722 ], [ -122.42008566856384, 37.804235992791284 ], [ -122.42001593112946, 37.80388843671987 ], [ -122.4198228120804, 37.8029220527055 ], [ -122.41964578628541, 37.8020743370189 ], [ -122.41963505744936, 37.80199804212988 ] ] }, "properties": { "class": "street", "len": 398.17634129276195, "name": "Hyde St", "name_de": "Hyde St", "name_en": "Hyde St", "name_es": "Hyde St", "name_fr": "Hyde St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42243528366089, 37.80354087901289 ], [ -122.42224752902985, 37.80362141082225 ], [ -122.42178618907927, 37.803672272972435 ], [ -122.42174327373503, 37.803684988504514 ], [ -122.4217003583908, 37.80371041956209 ] ] }, "properties": { "class": "street", "len": 86.57526000566389, "name": "Francisco St", "name_de": "Francisco St", "name_en": "Francisco St", "name_es": "Francisco St", "name_fr": "Francisco St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41855680942535, 37.80500739188654 ], [ -122.4187445640564, 37.80592288804934 ], [ -122.41883039474487, 37.80627043454651 ], [ -122.41890549659729, 37.80686380283475 ], [ -122.4190878868103, 37.807800467357744 ], [ -122.41921126842499, 37.80838534687133 ] ] }, "properties": { "class": "street", "len": 482.4912253180585, "name": "Leavenworth St", "name_de": "Leavenworth St", "name_en": "Leavenworth St", "name_es": "Leavenworth St", "name_fr": "Leavenworth St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42174863815308, 37.80423175431249 ], [ -122.42181837558745, 37.80456659339016 ] ] }, "properties": { "class": "street", "len": 48.16414641630078, "name": "Larkin St", "name_de": "Larkin St", "name_en": "Larkin St", "name_es": "Larkin St", "name_fr": "Larkin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41809010505676, 37.78610155516276 ], [ -122.41974234580994, 37.78589381842874 ], [ -122.4213033914566, 37.785694560196426 ] ] }, "properties": { "class": "street", "len": 362.02801077693545, "name": "Geary St", "name_de": "Geary St", "name_en": "Geary St", "name_es": "Geary St", "name_fr": "Geary St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4205631017685, 37.80665188613628 ], [ -122.42103517055511, 37.80659254935171 ], [ -122.42168962955475, 37.80650354408551 ], [ -122.42219924926758, 37.80643573047732 ], [ -122.42244601249695, 37.80640606200415 ], [ -122.42328822612762, 37.80629162635318 ], [ -122.42384612560271, 37.80621957418566 ] ] }, "properties": { "class": "street", "len": 370.54383566678337, "name": "Beach St", "name_de": "Beach St", "name_en": "Beach St", "name_es": "Beach St", "name_fr": "Beach St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42384612560272, 37.80621957418566 ], [ -122.42399632930757, 37.806202620724285 ], [ -122.42511749267578, 37.80605427777103 ] ] }, "properties": { "class": "street", "len": 143.20004374578073, "name": "Beach St", "name_de": "Beach St", "name_en": "Beach St", "name_es": "Beach St", "name_fr": "Beach St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41416871547699, 37.80841925278804 ], [ -122.4158102273941, 37.808215817054325 ], [ -122.41745710372925, 37.80800814249806 ] ] }, "properties": { "class": "street", "len": 370.5655929110899, "name": "Jefferson St", "name_de": "Jefferson St", "name_en": "Jefferson St", "name_es": "Jefferson St", "name_fr": "Jefferson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4130368232727, 37.80282880445625 ], [ -122.41362690925598, 37.8027567489103 ], [ -122.41365909576416, 37.80275251034657 ], [ -122.41372346878052, 37.8027440332184 ], [ -122.41378784179688, 37.80272707895914 ], [ -122.41387367248535, 37.80270588612963 ], [ -122.41457104682922, 37.80262111475069 ], [ -122.41468906402588, 37.80261687617921 ], [ -122.41481781005861, 37.80260839903546 ], [ -122.41623938083649, 37.802430378792366 ], [ -122.41634130477905, 37.80240494729402 ], [ -122.41645395755768, 37.80238375437207 ], [ -122.4178808927536, 37.80220573358751 ], [ -122.4179881811142, 37.80220997218259 ] ] }, "properties": { "class": "street", "len": 558.8266262085464, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41397559642792, 37.807491072698134 ], [ -122.41378784179688, 37.80655440425077 ] ] }, "properties": { "class": "street", "len": 134.02815525115065, "name": "Mason St", "name_de": "Mason St", "name_en": "Mason St", "name_es": "Mason St", "name_fr": "Mason St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41378784179688, 37.80655440425077 ], [ -122.41360545158386, 37.80561772392276 ], [ -122.41351962089539, 37.80515573694268 ], [ -122.41343379020691, 37.80468527016725 ], [ -122.41337478160858, 37.80440977021365 ], [ -122.41322457790375, 37.80376128165094 ], [ -122.4130368232727, 37.80282880445625 ] ] }, "properties": { "class": "street", "len": 531.7786686068795, "name": "Mason St", "name_de": "Mason St", "name_en": "Mason St", "name_es": "Mason St", "name_fr": "Mason St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41576731204987, 37.791209999255514 ], [ -122.4161159992218, 37.79116336775309 ], [ -122.41643249988557, 37.79112097545263 ], [ -122.4171942472458, 37.79102771230599 ], [ -122.41741418838502, 37.79099803764374 ], [ -122.41763412952425, 37.79097260220947 ], [ -122.41907179355623, 37.790798793174275 ], [ -122.42069184780122, 37.79057835185864 ] ] }, "properties": { "class": "street", "len": 555.1665282786608, "name": "California St", "name_de": "California St", "name_en": "California St", "name_es": "California St", "name_fr": "California St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42243528366089, 37.80354087901289 ], [ -122.4232828617096, 37.803426438922145 ] ] }, "properties": { "class": "street", "len": 95.40662712866893, "name": "Francisco St", "name_de": "Francisco St", "name_en": "Francisco St", "name_es": "Francisco St", "name_fr": "Francisco St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42145359516144, 37.802714363262176 ], [ -122.42152333259583, 37.802803373095095 ], [ -122.42160379886627, 37.80321451235996 ] ] }, "properties": { "class": "street", "len": 72.9994683493678, "name": "Larkin St", "name_de": "Larkin St", "name_en": "Larkin St", "name_es": "Larkin St", "name_fr": "Larkin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42145359516144, 37.802714363262176 ], [ -122.42143750190736, 37.80282032733683 ], [ -122.42152333259584, 37.803295044525235 ], [ -122.42157161235811, 37.80340100776679 ], [ -122.42161452770235, 37.80349001677221 ], [ -122.42177009582521, 37.80354511753136 ], [ -122.42183446884157, 37.80354935604959 ] ] }, "properties": { "class": "street", "len": 137.79170216752743, "name": "Larkin St", "name_de": "Larkin St", "name_en": "Larkin St", "name_es": "Larkin St", "name_fr": "Larkin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41845488548279, 37.80405373798221 ], [ -122.41842806339265, 37.804019830061115 ], [ -122.41840660572053, 37.8039732066442 ], [ -122.41829931735992, 37.80347306268421 ], [ -122.41821885108948, 37.8033586224884 ] ] }, "properties": { "class": "street", "len": 102.36354696374765, "name": "Leavenworth St", "name_de": "Leavenworth St", "name_en": "Leavenworth St", "name_es": "Leavenworth St", "name_fr": "Leavenworth St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42170035839081, 37.80371041956209 ], [ -122.42168426513672, 37.80375280463857 ], [ -122.4216789007187, 37.80377823567278 ], [ -122.42168426513672, 37.803871482723345 ], [ -122.42168426513672, 37.8038969137167 ], [ -122.4216789007187, 37.8039350601903 ], [ -122.42167353630067, 37.80396472965615 ], [ -122.42166280746461, 37.80399016061739 ], [ -122.42164671421055, 37.8040155915699 ], [ -122.42162525653843, 37.804036784023616 ] ] }, "properties": { "class": "street", "len": 47.97486496082605, "name": "Larkin St", "name_de": "Larkin St", "name_en": "Larkin St", "name_es": "Larkin St", "name_fr": "Larkin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41773068904877, 37.799874469428296 ], [ -122.41826176643372, 37.799781217331464 ], [ -122.41855680942535, 37.799743068712466 ] ] }, "properties": { "class": "path", "len": 93.91102111592187, "name": "Havens St", "name_de": "Havens St", "name_en": "Havens St", "name_es": "Havens St", "name_fr": "Havens St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42268204689026, 37.78374434488178 ], [ -122.42274641990662, 37.78408775609415 ], [ -122.42283761501312, 37.78454139561992 ], [ -122.42293417453766, 37.7850162302717 ], [ -122.42302536964417, 37.785474103653826 ], [ -122.42321848869324, 37.78640256041474 ], [ -122.42329895496368, 37.78680107252427 ], [ -122.42330968379974, 37.786868904158695 ], [ -122.42341697216034, 37.787356442199 ], [ -122.42350280284882, 37.787805822239655 ], [ -122.42359399795532, 37.78828063591726 ], [ -122.42369055747986, 37.78874696780958 ], [ -122.42378175258636, 37.78920481807711 ], [ -122.42398023605347, 37.790162902976135 ], [ -122.42415189743042, 37.79109130082786 ], [ -122.42433965206148, 37.79197305602324 ], [ -122.42451667785646, 37.79285056156404 ], [ -122.42468833923341, 37.79372805668306 ], [ -122.42486000061037, 37.79460978041143 ], [ -122.42505848407747, 37.79552964443154 ], [ -122.42524087429048, 37.79642406344079 ], [ -122.42525160312654, 37.7964834083948 ], [ -122.42543935775758, 37.79741172682706 ], [ -122.42562711238863, 37.798344272410624 ], [ -122.42579877376558, 37.79920050844297 ], [ -122.42581486701967, 37.799276806221684 ], [ -122.42583096027376, 37.799348865162536 ], [ -122.42599189281465, 37.80015422501243 ], [ -122.42600262165071, 37.80020932826014 ], [ -122.42602407932283, 37.80029834111194 ], [ -122.4261099100113, 37.80074340376193 ], [ -122.42618501186375, 37.801052826690636 ] ] }, "properties": { "class": "main", "len": 3418.3581059088283, "name": "Franklin St", "name_de": "Franklin St", "name_en": "Franklin St", "name_es": "Franklin St", "name_fr": "Franklin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4108749628067, 37.78374434488178 ], [ -122.41095542907715, 37.784151350588004 ], [ -122.41114318370819, 37.785075584388686 ], [ -122.41133630275725, 37.78601252520537 ], [ -122.41151869297026, 37.78694097520201 ], [ -122.41157233715056, 37.78722077976292 ], [ -122.41164207458495, 37.78756841425678 ], [ -122.41170108318327, 37.787873652951795 ], [ -122.41176009178157, 37.78815345398132 ], [ -122.4118191003799, 37.78848412655941 ], [ -122.41188883781429, 37.78881055829413 ], [ -122.41207659244533, 37.78974321244753 ], [ -122.41215705871578, 37.79012474939018 ], [ -122.4122697114944, 37.79067585482935 ] ] }, "properties": { "class": "main", "len": 1220.1934447537033, "name": "Taylor St", "name_de": "Taylor St", "name_en": "Taylor St", "name_es": "Taylor St", "name_fr": "Taylor St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41741418838501, 37.79099803764377 ], [ -122.41720497608185, 37.79004844215926 ], [ -122.4170172214508, 37.789111552511955 ], [ -122.41682946681976, 37.788178890386014 ], [ -122.4167650938034, 37.78786941353413 ], [ -122.41664171218872, 37.787250455942115 ], [ -122.41645395755768, 37.78631353082002 ], [ -122.41633594036102, 37.78573271606973 ], [ -122.41626620292664, 37.785385072940564 ], [ -122.41607308387756, 37.784452363783075 ], [ -122.41593360900879, 37.78374434488178 ] ] }, "properties": { "class": "street", "len": 1758.1372162447021, "name": "Hyde St", "name_de": "Hyde St", "name_en": "Hyde St", "name_es": "Hyde St", "name_fr": "Hyde St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43491291999817, 37.785876860302224 ], [ -122.43655443191528, 37.78566912293662 ], [ -122.4371337890625, 37.78559705065291 ] ] }, "properties": { "class": "street", "len": 1275.7791452826677, "name": "Sutter St", "name_de": "Sutter St", "name_en": "Sutter St", "name_es": "Sutter St", "name_fr": "Sutter St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43491291999817, 37.785876860302224 ], [ -122.43472516536713, 37.7849483969368 ] ] }, "properties": { "class": "street", "len": 132.62396201277474, "name": "Steiner St", "name_de": "Steiner St", "name_en": "Steiner St", "name_es": "Steiner St", "name_fr": "Steiner St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43472516536713, 37.7849483969368 ], [ -122.43460178375244, 37.78430397714999 ] ] }, "properties": { "class": "street", "len": 92.04912275497647, "name": "Steiner St", "name_de": "Steiner St", "name_en": "Steiner St", "name_es": "Steiner St", "name_fr": "Steiner St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41391122341156, 37.79045965241627 ], [ -122.41374492645264, 37.789548203916084 ], [ -122.41355180740356, 37.78860282917525 ], [ -122.41341233253479, 37.78794572301528 ], [ -122.41335868835449, 37.787665921199185 ], [ -122.41329967975616, 37.787386118323695 ], [ -122.41322994232178, 37.787055440832255 ], [ -122.41316020488739, 37.786745959275464 ], [ -122.41298317909241, 37.78580054868476 ], [ -122.41288661956787, 37.78536811469731 ], [ -122.41287589073181, 37.785329958635764 ], [ -122.4127846956253, 37.784867844770744 ], [ -122.41259694099426, 37.78393936872902 ], [ -122.41255939006807, 37.78374434488178 ] ] }, "properties": { "class": "main", "len": 1360.046048576959, "name": "Jones St", "name_de": "Jones St", "name_en": "Jones St", "name_es": "Jones St", "name_fr": "Jones St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41761267185211, 37.78374434488178 ], [ -122.41762340068817, 37.78377826210958 ], [ -122.41770923137666, 37.784236143161344 ], [ -122.41781115531921, 37.78471097977434 ], [ -122.41790235042572, 37.78517733419256 ], [ -122.41799890995026, 37.785643685668035 ], [ -122.41809010505676, 37.78610155516276 ] ] }, "properties": { "class": "street", "len": 799.7411212773527, "name": "Larkin St", "name_de": "Larkin St", "name_en": "Larkin St", "name_es": "Larkin St", "name_fr": "Larkin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42542326450348, 37.78899709006654 ], [ -122.42533206939697, 37.78853923851192 ], [ -122.42524087429047, 37.78807290530868 ], [ -122.42514431476593, 37.787598090296335 ], [ -122.4250477552414, 37.78713175115391 ], [ -122.42486000061035, 37.786199064040595 ], [ -122.42471516132355, 37.78541898941539 ] ] }, "properties": { "class": "main", "len": 509.91428016842895, "name": "Gough St", "name_de": "Gough St", "name_en": "Gough St", "name_es": "Gough St", "name_fr": "Gough St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42561638355255, 37.7899551776589 ], [ -122.4254232645035, 37.78899709006654 ] ] }, "properties": { "class": "street", "len": 136.51211008514636, "name": "Gough St", "name_de": "Gough St", "name_en": "Gough St", "name_es": "Gough St", "name_fr": "Gough St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40868091583252, 37.785393552060754 ], [ -122.40951776504518, 37.78528332342268 ], [ -122.4111431837082, 37.785075584388686 ], [ -122.41189956665039, 37.784982313612026 ], [ -122.41221606731416, 37.78493991776557 ], [ -122.4127846956253, 37.784867844770744 ], [ -122.41443157196046, 37.78466010456887 ], [ -122.4147802591324, 37.78461346893308 ], [ -122.41607308387758, 37.784452363783075 ], [ -122.41770923137666, 37.784236143161344 ], [ -122.4193668365479, 37.78403264082188 ], [ -122.42093324661259, 37.78383337757154 ], [ -122.4210780858994, 37.78381641897224 ], [ -122.4216735363007, 37.78374434488178 ] ] }, "properties": { "class": "street", "len": 1760.9672786629048, "name": "Ellis St", "name_de": "Ellis St", "name_en": "Ellis St", "name_es": "Ellis St", "name_fr": "Ellis St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40668535232544, 37.78803475064363 ], [ -122.40513503551483, 37.788242481359454 ] ] }, "properties": { "class": "street", "len": 174.9995191421173, "name": "Maiden Ln", "name_de": "Maiden Ln", "name_en": "Maiden Ln", "name_es": "Maiden Ln", "name_fr": "Maiden Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40677118301392, 37.78850108408765 ], [ -122.40668535232544, 37.78803475064363 ], [ -122.40659952163695, 37.78757689312644 ] ] }, "properties": { "class": "street", "len": 131.5248338994387, "name": "Stockton St", "name_de": "Stockton St", "name_en": "Stockton St", "name_es": "Stockton St", "name_fr": "Stockton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40540862083435, 37.7896245116636 ], [ -122.40699112415314, 37.78942950281888 ] ] }, "properties": { "class": "street", "len": 178.11152966634953, "name": "Sutter St", "name_de": "Sutter St", "name_en": "Sutter St", "name_es": "Sutter St", "name_fr": "Sutter St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40699112415314, 37.78942950281888 ], [ -122.40775287151337, 37.78933623753729 ], [ -122.40860044956207, 37.78923025411991 ], [ -122.40861654281616, 37.78923025411991 ], [ -122.40863800048828, 37.78922601478005 ], [ -122.41025805473328, 37.78901828682906 ], [ -122.41097152233122, 37.78892502102849 ], [ -122.41188883781433, 37.78881055829413 ], [ -122.41355180740355, 37.78860282917527 ], [ -122.41518795490263, 37.78839086008467 ], [ -122.41682946681975, 37.788178890386014 ], [ -122.41788625717162, 37.78804322945981 ], [ -122.41846561431883, 37.78796692007937 ], [ -122.42011785507198, 37.787759188588936 ], [ -122.4216896295547, 37.787572653691754 ] ] }, "properties": { "class": "street", "len": 1657.262395234056, "name": "Sutter St", "name_de": "Sutter St", "name_en": "Sutter St", "name_es": "Sutter St", "name_fr": "Sutter St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40540862083435, 37.7896245116636 ], [ -122.40551054477692, 37.790112031523854 ], [ -122.40558028221129, 37.79046813095418 ], [ -122.40557491779327, 37.790565634070354 ] ] }, "properties": { "class": "street", "len": 134.6524870185753, "name": "Grant Ave", "name_de": "Grant Ave", "name_en": "Grant Ave", "name_es": "Grant Ave", "name_fr": "Grant Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40699112415314, 37.78942950281888 ], [ -122.40688383579254, 37.78897589329795 ], [ -122.40677118301392, 37.78850108408762 ] ] }, "properties": { "class": "street", "len": 133.25002412547389, "name": "Stockton St", "name_de": "Stockton St", "name_en": "Stockton St", "name_es": "Stockton St", "name_fr": "Stockton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42069184780121, 37.79057835185864 ], [ -122.42080450057983, 37.79061226595001 ], [ -122.42216169834137, 37.79043845606721 ], [ -122.42225289344788, 37.79042573825485 ] ] }, "properties": { "class": "street", "len": 177.0796643801487, "name": "California St", "name_de": "California St", "name_en": "California St", "name_es": "California St", "name_fr": "California St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42486000061035, 37.786199064040595 ], [ -122.42380321025848, 37.786330488846325 ], [ -122.42356181144714, 37.786360165383016 ], [ -122.42321848869324, 37.78640256041474 ], [ -122.42189884185791, 37.78657214029849 ], [ -122.42165744304657, 37.78660605622855 ] ] }, "properties": { "class": "street", "len": 361.0679615924578, "name": "Post St", "name_de": "Post St", "name_en": "Post St", "name_es": "Post St", "name_fr": "Post St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43219316005707, 37.78911579185835 ], [ -122.432000041008, 37.788161932783865 ] ] }, "properties": { "class": "street", "len": 136.3813608966564, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41413116455078, 37.78374434488178 ], [ -122.41329967975616, 37.78385033616694 ], [ -122.41259694099426, 37.78393936872902 ], [ -122.41095542907716, 37.784151350588004 ], [ -122.40933537483217, 37.7843590922199 ], [ -122.40871310234071, 37.78443964494047 ], [ -122.40870237350465, 37.78443964494047 ], [ -122.40853607654573, 37.78446508262344 ] ] }, "properties": { "class": "street", "len": 1015.5915745777658, "name": "Eddy St", "name_de": "Eddy St", "name_en": "Eddy St", "name_es": "Eddy St", "name_fr": "Eddy St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40868091583252, 37.785393552060754 ], [ -122.40869700908661, 37.78548258276376 ], [ -122.40872919559479, 37.7855461760574 ], [ -122.40883111953735, 37.78580478822113 ], [ -122.40884721279143, 37.785851423105164 ], [ -122.40895450115204, 37.78631353082002 ] ] }, "properties": { "class": "street", "len": 133.50390021775553, "name": "Cyril Magnin St", "name_de": "Cyril Magnin St", "name_en": "Cyril Magnin St", "name_es": "Cyril Magnin St", "name_fr": "Cyril Magnin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40853607654572, 37.78446508262347 ], [ -122.40854680538177, 37.78453291640197 ], [ -122.40868091583252, 37.785393552060754 ] ] }, "properties": { "class": "street", "len": 131.98575823906768, "name": "Cyril Magnin St", "name_de": "Cyril Magnin St", "name_en": "Cyril Magnin St", "name_es": "Cyril Magnin St", "name_fr": "Cyril Magnin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40487217903137, 37.78400296335056 ], [ -122.40541934967041, 37.78443964494047 ] ] }, "properties": { "class": "service", "len": 86.69911245112657, "name": "Jessie E", "name_de": "Jessie E", "name_en": "Jessie E", "name_es": "Jessie E", "name_fr": "Jessie E", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42369055747986, 37.78874696780958 ], [ -122.42533206939697, 37.78853923851192 ], [ -122.42696821689606, 37.788331508630314 ] ] }, "properties": { "class": "street", "len": 369.2941182169342, "name": "Austin St", "name_de": "Austin St", "name_en": "Austin St", "name_es": "Austin St", "name_fr": "Austin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40487217903137, 37.78400296335056 ], [ -122.40520477294922, 37.78374434488178 ] ] }, "properties": { "class": "main", "len": 183.31487943400796, "name": "Mission St", "name_de": "Mission St", "name_en": "Mission St", "name_es": "Mission St", "name_fr": "Mission St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40576267242432, 37.80676208289539 ], [ -122.4059933423996, 37.80685532617847 ], [ -122.40612745285034, 37.8069146627519 ], [ -122.40701258182526, 37.80734697063339 ], [ -122.40714132785797, 37.80740206851487 ], [ -122.4073076248169, 37.807457166355256 ] ] }, "properties": { "class": "main", "len": 198.17886927846018, "name": "The Embarcadero", "name_de": "The Embarcadero", "name_en": "The Embarcadero", "name_es": "The Embarcadero", "name_fr": "The Embarcadero", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41015613079071, 37.80838110863068 ], [ -122.41014003753662, 37.8084658733981 ], [ -122.41009712219238, 37.808698976006774 ], [ -122.40997910499573, 37.809279610214595 ] ] }, "properties": { "class": "path", "len": 127.82849278118682, "name": "Pier 39", "name_de": "Pier 39", "name_en": "Pier 39", "name_es": "Pier 39", "name_fr": "Pier 39", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41773068904877, 37.80797423639261 ], [ -122.41791844367981, 37.80895326892251 ], [ -122.41796135902405, 37.808987174578434 ], [ -122.41804718971252, 37.80902955662645 ], [ -122.41977453231812, 37.80907617685116 ] ] }, "properties": { "class": "service", "len": 349.813466182768, "name": "Jones Alley", "name_de": "Jones Alley", "name_en": "Jones Alley", "name_es": "Jones Alley", "name_fr": "Jones Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40853607654572, 37.80529136644753 ], [ -122.40860044956207, 37.80561348552322 ] ] }, "properties": { "class": "street", "len": 46.29339693794459, "name": "Grant Ave", "name_de": "Grant Ave", "name_en": "Grant Ave", "name_es": "Grant Ave", "name_fr": "Grant Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41722643375397, 37.805172690644405 ], [ -122.4183851480484, 37.805973748614505 ] ] }, "properties": { "class": "main", "len": 171.63314044822167, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41488218307495, 37.80354511753136 ], [ -122.41509675979614, 37.80374008911819 ], [ -122.41598725318907, 37.8043673855142 ], [ -122.41685092449187, 37.804977722839574 ], [ -122.41722643375395, 37.805172690644405 ] ] }, "properties": { "class": "main", "len": 348.67300964094204, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41722643375397, 37.805172690644405 ], [ -122.41683483123781, 37.804833615870386 ], [ -122.41614818573, 37.80434619315537 ], [ -122.41555809974672, 37.80395201417224 ], [ -122.41515040397645, 37.803668034461275 ], [ -122.41488218307497, 37.80354511753136 ] ] }, "properties": { "class": "main", "len": 348.88383735093436, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41102516651154, 37.80117574776828 ], [ -122.41120755672455, 37.802095530029646 ], [ -122.41138994693756, 37.80303649357777 ], [ -122.41148114204405, 37.80347306268421 ], [ -122.41158306598662, 37.80396472965615 ], [ -122.41177082061766, 37.80489719250909 ], [ -122.41186201572417, 37.80536341952066 ], [ -122.41195321083067, 37.805821166813914 ], [ -122.41214632987972, 37.80675784456153 ] ] }, "properties": { "class": "street", "len": 796.8073203842616, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40787625312805, 37.80537613476155 ], [ -122.40695893764496, 37.80549057183116 ] ] }, "properties": { "class": "street_limited", "len": 103.14921327965067, "name": "Francisco St", "name_de": "Francisco St", "name_en": "Francisco St", "name_es": "Francisco St", "name_fr": "Francisco St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40911543369293, 37.808135290254896 ], [ -122.4093246459961, 37.80816919628643 ], [ -122.41071939468384, 37.80832601147965 ], [ -122.41083204746246, 37.80833448796713 ], [ -122.41086423397064, 37.80833872621046 ], [ -122.41192102432251, 37.80849554104372 ] ] }, "properties": { "class": "street", "len": 316.6218167752498, "name": "The Embarcadero", "name_de": "The Embarcadero", "name_en": "The Embarcadero", "name_es": "The Embarcadero", "name_fr": "The Embarcadero", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40911543369293, 37.808135290254896 ], [ -122.40984499454498, 37.808050525108015 ], [ -122.4105316400528, 37.80793609200535 ], [ -122.41071403026581, 37.80790642413496 ], [ -122.41081595420836, 37.807893709329726 ], [ -122.41234481334685, 37.807698748708574 ] ] }, "properties": { "class": "street", "len": 364.7876259762513, "name": "Beach St", "name_de": "Beach St", "name_en": "Beach St", "name_es": "Beach St", "name_fr": "Beach St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40944802761078, 37.80471070088035 ], [ -122.40954458713531, 37.80517692906923 ] ] }, "properties": { "class": "service", "len": 66.49836163338345, "name": "Bellair Pl", "name_de": "Bellair Pl", "name_en": "Bellair Pl", "name_es": "Bellair Pl", "name_fr": "Bellair Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4262011051178, 37.80115455449363 ], [ -122.42621719837189, 37.80123932755579 ], [ -122.42637813091278, 37.80207009841604 ], [ -122.42656588554382, 37.80299834664004 ], [ -122.42676973342896, 37.80394353718175 ], [ -122.42682337760925, 37.80419784647312 ] ] }, "properties": { "class": "street", "len": 434.6988194050417, "name": "Franklin St", "name_de": "Franklin St", "name_en": "Franklin St", "name_es": "Franklin St", "name_fr": "Franklin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4053281545639, 37.79709804975758 ], [ -122.40541398525238, 37.797564326000824 ], [ -122.40548372268677, 37.79790343414736 ], [ -122.4054890871048, 37.798017882795456 ] ] }, "properties": { "class": "main", "len": 130.87633459140386, "name": "Kearny St", "name_de": "Kearny St", "name_en": "Kearny St", "name_es": "Kearny St", "name_fr": "Kearny St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41840660572052, 37.801196941036885 ], [ -122.418674826622, 37.80115879314906 ], [ -122.41908252239227, 37.80112064524151 ], [ -122.41931319236755, 37.80109097463317 ], [ -122.41943657398224, 37.801069781334164 ], [ -122.42036461830139, 37.80095109874748 ], [ -122.4204236268997, 37.80094262141255 ] ] }, "properties": { "class": "street", "len": 227.48918920409113, "name": "Greenwich St", "name_de": "Greenwich St", "name_en": "Greenwich St", "name_es": "Greenwich St", "name_fr": "Greenwich St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41780042648315, 37.801256282156544 ], [ -122.41832077503204, 37.80117998642249 ], [ -122.41840660572053, 37.801196941036885 ] ] }, "properties": { "class": "path", "len": 68.85852547182186, "name": "Greenwich St", "name_de": "Greenwich St", "name_en": "Greenwich St", "name_es": "Greenwich St", "name_fr": "Greenwich St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41468906402588, 37.799276806221656 ], [ -122.41402924060822, 37.79937005895526 ] ] }, "properties": { "class": "path", "len": 74.49901811416203, "name": "Macondray Ln", "name_de": "Macondray Ln", "name_en": "Macondray Ln", "name_es": "Macondray Ln", "name_fr": "Macondray Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41283297538757, 37.7980772264691 ], [ -122.41373419761658, 37.797950061395746 ] ] }, "properties": { "class": "path", "len": 101.97202165234128, "name": "Vallejo St", "name_de": "Vallejo St", "name_en": "Vallejo St", "name_es": "Vallejo St", "name_fr": "Vallejo St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41187274456024, 37.79700055526198 ], [ -122.41189420223236, 37.79699631636796 ], [ -122.41260766983032, 37.79691577733512 ] ] }, "properties": { "class": "street", "len": 82.79384328446568, "name": "Broadway", "name_de": "Broadway", "name_en": "Broadway", "name_es": "Broadway", "name_fr": "Broadway", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40990400314331, 37.795618662922415 ], [ -122.41001665592194, 37.795605946001736 ], [ -122.41003274917601, 37.795605946001736 ], [ -122.41108417510985, 37.79547029871132 ], [ -122.41155624389648, 37.79541519192846 ], [ -122.41189956665039, 37.79538128004165 ], [ -122.41234481334685, 37.79532193420228 ], [ -122.41318166255951, 37.795220198366735 ], [ -122.41402387619019, 37.795105745384284 ], [ -122.41483390331267, 37.79499129222454 ], [ -122.41647541522978, 37.79477934146046 ], [ -122.41695821285248, 37.79471999513755 ], [ -122.41753220558167, 37.79464369265235 ], [ -122.41796135902405, 37.79458858525292 ], [ -122.41812765598297, 37.794567390088325 ] ] }, "properties": { "class": "street", "len": 927.1182287578953, "name": "Jackson St", "name_de": "Jackson St", "name_en": "Jackson St", "name_es": "Jackson St", "name_fr": "Jackson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41290807723999, 37.802184540608394 ], [ -122.41288125514986, 37.80202347376832 ], [ -122.41285979747774, 37.801892076875475 ], [ -122.41275787353517, 37.80143006658992 ], [ -122.41267740726472, 37.80098076941203 ], [ -122.41254866123201, 37.80034072814651 ], [ -122.41248428821565, 37.80003977967424 ], [ -122.41243064403534, 37.799764262392124 ], [ -122.41241991519928, 37.79971763628886 ], [ -122.4122965335846, 37.79909453917511 ], [ -122.41210877895355, 37.79816624189021 ], [ -122.41192638874055, 37.797271843974116 ] ] }, "properties": { "class": "street", "len": 700.7930770082895, "name": "Mason St", "name_de": "Mason St", "name_en": "Mason St", "name_es": "Mason St", "name_fr": "Mason St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41290807723999, 37.802184540608394 ], [ -122.41372346878053, 37.8027440332184 ], [ -122.4146729707718, 37.80340100776679 ], [ -122.41488218307497, 37.80354511753136 ] ] }, "properties": { "class": "main", "len": 290.9426140073034, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41290807723999, 37.802184540608394 ], [ -122.41273105144501, 37.80200228073689 ], [ -122.41260766983032, 37.80192174716204 ], [ -122.41245746612549, 37.80182425903287 ], [ -122.41145431995392, 37.80112064524154 ] ] }, "properties": { "class": "main", "len": 221.17499376378402, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40618646144867, 37.79751769850893 ], [ -122.4062132835388, 37.79758128144514 ], [ -122.40663707256316, 37.79787800109037 ] ] }, "properties": { "class": "main", "len": 72.7339903601992, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40913689136505, 37.799518415334305 ], [ -122.40924954414368, 37.79950569908492 ], [ -122.41064965724944, 37.799314955081435 ], [ -122.41145968437193, 37.79920898597781 ], [ -122.41194248199463, 37.799141165671685 ], [ -122.4122804403305, 37.79909877794875 ], [ -122.4122965335846, 37.79909453917511 ], [ -122.41231799125671, 37.79909030040123 ], [ -122.41293489933014, 37.7990097636514 ], [ -122.41390585899353, 37.79887836139735 ] ] }, "properties": { "class": "street", "len": 538.6756063416154, "name": "Green St", "name_de": "Green St", "name_en": "Green St", "name_es": "Green St", "name_fr": "Green St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41096079349518, 37.800883280040885 ], [ -122.41098761558533, 37.801103690609615 ], [ -122.41102516651154, 37.80117574776828 ] ] }, "properties": { "class": "street", "len": 41.7763435467469, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41095542907715, 37.80077731318719 ], [ -122.41084277629852, 37.800251715345794 ] ] }, "properties": { "class": "street", "len": 74.71728715644412, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40990400314331, 37.795618662922415 ], [ -122.41000592708588, 37.79605527587214 ], [ -122.41009712219237, 37.79650036408717 ] ] }, "properties": { "class": "street", "len": 125.73983464232444, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41454422473907, 37.79877663045951 ], [ -122.41459250450133, 37.79881054078769 ], [ -122.41466760635375, 37.798840212312086 ], [ -122.41475343704224, 37.7988359735236 ], [ -122.41512894630432, 37.79879358562553 ], [ -122.41520941257477, 37.79877239166739 ], [ -122.41540253162383, 37.79872152614298 ] ] }, "properties": { "class": "street", "len": 100.51610952832038, "name": "Green St", "name_de": "Green St", "name_en": "Green St", "name_es": "Green St", "name_fr": "Green St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41784870624542, 37.796335045920344 ], [ -122.41178691387177, 37.797110766421454 ], [ -122.41127192974089, 37.7971785885917 ] ] }, "properties": { "class": "main", "len": 741.3485364408103, "name": "Robert C Levy Tunnel", "name_de": "Robert C Levy Tunnel", "name_en": "Robert C Levy Tunnel", "name_es": "Robert C Levy Tunnel", "name_fr": "Robert C Levy Tunnel", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41104662418365, 37.797314232745414 ], [ -122.41127729415895, 37.79735662149236 ], [ -122.41191029548645, 37.797271843974144 ], [ -122.41192638874054, 37.797271843974144 ] ] }, "properties": { "class": "street", "len": 100.0087746540741, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41926491260529, 37.796072231662805 ], [ -122.41918981075287, 37.796089187449574 ], [ -122.41915225982666, 37.796097665341506 ], [ -122.41856217384338, 37.79616972738355 ], [ -122.41854608058931, 37.79617396632503 ], [ -122.41847634315492, 37.79616972738355 ], [ -122.41844952106477, 37.79616972738355 ], [ -122.41833150386812, 37.79618244420722 ], [ -122.41751611232759, 37.796292656587205 ], [ -122.41717278957368, 37.79634352378406 ] ] }, "properties": { "class": "street", "len": 236.16779258848743, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41721034049988, 37.796559708979885 ], [ -122.41731226444244, 37.79656394789897 ], [ -122.41839587688446, 37.79644525807265 ], [ -122.41850316524506, 37.79643254129425 ] ] }, "properties": { "class": "street", "len": 145.44667681611674, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4217700958252, 37.795945063138014 ], [ -122.42162525653839, 37.79593234627349 ], [ -122.42098689079285, 37.79601288637848 ], [ -122.42021441459654, 37.79605951482018 ], [ -122.42010712623595, 37.79606375376797 ] ] }, "properties": { "class": "main", "len": 186.55657763368268, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41785407066345, 37.79641558558629 ], [ -122.41951704025269, 37.79621211678722 ] ] }, "properties": { "class": "main", "len": 186.91554081992845, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41846024990082, 37.79621635572625 ], [ -122.41844952106476, 37.79616972738355 ], [ -122.41835832595825, 37.79571192027404 ], [ -122.41831004619598, 37.79547877667427 ], [ -122.41821885108948, 37.795008248259386 ], [ -122.41812765598299, 37.794567390088325 ], [ -122.41793990135194, 37.79368566585404 ], [ -122.41777360439302, 37.7928124093659 ], [ -122.41774678230287, 37.79267251780427 ], [ -122.41768240928651, 37.792350342291314 ], [ -122.41760194301607, 37.79192642500235 ], [ -122.41741418838502, 37.79099803764374 ] ] }, "properties": { "class": "street", "len": 744.7061876106641, "name": "Hyde St", "name_de": "Hyde St", "name_en": "Hyde St", "name_es": "Hyde St", "name_fr": "Hyde St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42671072483063, 37.79532193420228 ], [ -122.42834150791168, 37.79512270139288 ], [ -122.42999374866486, 37.79489803396326 ], [ -122.43163526058197, 37.79468608293166 ], [ -122.4325257539749, 37.794571629121755 ], [ -122.43327677249907, 37.79448684840749 ] ] }, "properties": { "class": "street", "len": 740.9509396955775, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42580950260162, 37.79087933887559 ], [ -122.42561638355255, 37.7899551776589 ] ] }, "properties": { "class": "street", "len": 132.22028966811465, "name": "Gough St", "name_de": "Gough St", "name_en": "Gough St", "name_es": "Gough St", "name_fr": "Gough St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42872774600983, 37.79699207747368 ], [ -122.43037462234497, 37.79678437135622 ], [ -122.43119001388551, 37.7966826375346 ], [ -122.43201076984406, 37.79657666465477 ], [ -122.43364691734315, 37.796373196299385 ], [ -122.43529915809631, 37.79616124949991 ], [ -122.43694603443147, 37.79594930209237 ], [ -122.43713378906251, 37.79592810731817 ] ] }, "properties": { "class": "street", "len": 2029.4165943164103, "name": "Green St", "name_de": "Green St", "name_en": "Green St", "name_es": "Green St", "name_fr": "Green St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42158770561218, 37.795029443297494 ], [ -122.4217700958252, 37.795945063138014 ] ] }, "properties": { "class": "street", "len": 130.95045780775922, "name": "Polk St", "name_de": "Polk St", "name_en": "Polk St", "name_es": "Polk St", "name_fr": "Polk St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4217700958252, 37.795945063138014 ], [ -122.42332577705383, 37.79574159304304 ] ] }, "properties": { "class": "main", "len": 175.60124145509974, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43327677249908, 37.79448684840749 ], [ -122.4349182844162, 37.794274896196235 ] ] }, "properties": { "class": "street", "len": 184.88645731898455, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43327677249908, 37.79448684840749 ], [ -122.43308365345003, 37.7935584932212 ] ] }, "properties": { "class": "street", "len": 132.2383310540627, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.79542790888202 ], [ -122.40497410297394, 37.79532617319241 ], [ -122.40566611289978, 37.79524563233876 ], [ -122.4058485031128, 37.79522867635839 ], [ -122.40606844425201, 37.79520324238054 ], [ -122.4064975976944, 37.79515661339839 ], [ -122.40701794624329, 37.795088789371825 ], [ -122.40729153156282, 37.79505911634061 ], [ -122.407506108284, 37.795033682304364 ], [ -122.40755438804626, 37.79502520429035 ], [ -122.40808546543121, 37.79496585816495 ], [ -122.40861654281616, 37.79490227297768 ], [ -122.40893304347992, 37.79486412183905 ], [ -122.40919053554535, 37.79482597068072 ], [ -122.40960359573364, 37.79477510243896 ], [ -122.40963041782379, 37.79476662439526 ], [ -122.40973770618439, 37.79474966830496 ] ] }, "properties": { "class": "street", "len": 723.0398905235759, "name": "Washington St", "name_de": "Washington St", "name_en": "Washington St", "name_es": "Washington St", "name_fr": "Washington St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42598116397858, 37.791761096600425 ], [ -122.42433965206148, 37.79197305602319 ], [ -122.42278397083282, 37.792168058155134 ] ] }, "properties": { "class": "street", "len": 360.4966687505905, "name": "Clay St", "name_de": "Clay St", "name_en": "Clay St", "name_es": "Clay St", "name_fr": "Clay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41410970687866, 37.791421960259214 ], [ -122.4140989780426, 37.79141348183073 ], [ -122.41406679153442, 37.79131597983338 ], [ -122.41392195224762, 37.79057835185864 ], [ -122.41391122341156, 37.79045965241627 ] ] }, "properties": { "class": "street", "len": 137.86885931793245, "name": "Jones St", "name_de": "Jones St", "name_en": "Jones St", "name_es": "Jones St", "name_fr": "Jones St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41245210170746, 37.79163815985659 ], [ -122.41245746612547, 37.79165511666101 ], [ -122.4124789237976, 37.79174413982033 ], [ -122.41255939006804, 37.79211718808339 ], [ -122.41265058517455, 37.79254110427786 ], [ -122.41274178028105, 37.79299469191242 ], [ -122.41283297538753, 37.79343555946803 ], [ -122.41300463676451, 37.79433000382966 ], [ -122.4131816625595, 37.79519900338339 ], [ -122.4131816625595, 37.795220198366735 ], [ -122.41336941719054, 37.796084948503236 ] ] }, "properties": { "class": "street", "len": 635.1639726150889, "name": "Taylor St", "name_de": "Taylor St", "name_en": "Taylor St", "name_es": "Taylor St", "name_fr": "Taylor St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41907179355621, 37.7907987931743 ], [ -122.41923272609712, 37.791701747853054 ], [ -122.41932392120363, 37.792185014837926 ], [ -122.41942584514618, 37.79259621320449 ], [ -122.41952240467073, 37.79312186551574 ], [ -122.4195921421051, 37.7934779504405 ], [ -122.41976916790009, 37.79435967715371 ], [ -122.41994082927705, 37.795241393344035 ], [ -122.42009103298189, 37.795987452670616 ], [ -122.42010712623598, 37.79606375376797 ] ] }, "properties": { "class": "street", "len": 750.435322670991, "name": "Larkin St", "name_de": "Larkin St", "name_en": "Larkin St", "name_es": "Larkin St", "name_fr": "Larkin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41226971149445, 37.790675854829374 ], [ -122.41226971149445, 37.790781836173345 ], [ -122.41241991519928, 37.791549136569564 ], [ -122.41244673728943, 37.79162544225071 ], [ -122.41245210170746, 37.79163815985659 ] ] }, "properties": { "class": "street", "len": 137.141967022337, "name": "Taylor St", "name_de": "Taylor St", "name_en": "Taylor St", "name_es": "Taylor St", "name_fr": "Taylor St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42278397083282, 37.792168058155134 ], [ -122.42262303829193, 37.792185014837955 ], [ -122.42106199264526, 37.792396973044646 ], [ -122.41942584514618, 37.79259621320451 ], [ -122.41860508918762, 37.79269371351246 ], [ -122.417773604393, 37.7928124093659 ], [ -122.41644322872162, 37.792973496290564 ], [ -122.4161159992218, 37.79301588752816 ], [ -122.41553127765654, 37.79309219169453 ], [ -122.41526305675507, 37.793126104632066 ], [ -122.41505920886993, 37.79315153932501 ], [ -122.41447448730469, 37.7932236042408 ], [ -122.41283297538757, 37.793435559468 ], [ -122.41211950778961, 37.79352881957535 ], [ -122.41151869297029, 37.79360512321199 ], [ -122.41118609905244, 37.79364751408718 ], [ -122.4106013774872, 37.79371957851917 ], [ -122.41036534309389, 37.7937492520884 ], [ -122.4099361896515, 37.793804360113896 ], [ -122.40990400314332, 37.793808599191095 ], [ -122.40957140922548, 37.793850989949526 ], [ -122.40954458713533, 37.793855229024025 ] ] }, "properties": { "class": "street", "len": 1493.1866562952232, "name": "Clay St", "name_de": "Clay St", "name_en": "Clay St", "name_es": "Clay St", "name_fr": "Clay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43377029895782, 37.79076063991673 ], [ -122.43360936641692, 37.789895827461 ] ] }, "properties": { "class": "path", "len": 123.28674908495023, "name": "Goldberg Alley", "name_de": "Goldberg Alley", "name_en": "Goldberg Alley", "name_es": "Goldberg Alley", "name_fr": "Goldberg Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40712523460388, 37.79038334553119 ], [ -122.40716278553008, 37.790446934607566 ], [ -122.40721642971039, 37.7907012903658 ], [ -122.4073451757431, 37.79130750139274 ], [ -122.40753829479218, 37.792261319862405 ], [ -122.40761339664459, 37.79263860465855 ] ] }, "properties": { "class": "street", "len": 322.60534856994127, "name": "Stockton St", "name_de": "Stockton St", "name_en": "Stockton St", "name_es": "Stockton St", "name_fr": "Stockton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40714132785797, 37.79028584217449 ], [ -122.40763485431673, 37.79274034404906 ] ] }, "properties": { "class": "street", "len": 350.11729263257007, "name": "Stockton Tunnel", "name_de": "Stockton Tunnel", "name_en": "Stockton Tunnel", "name_es": "Stockton Tunnel", "name_fr": "Stockton Tunnel", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40763485431671, 37.79274034404906 ], [ -122.40764558315277, 37.79279545282709 ], [ -122.40771532058716, 37.7931769740092 ], [ -122.40789771080016, 37.794062943376915 ], [ -122.4080854654312, 37.79496585816495 ], [ -122.40825712680817, 37.795826372317386 ], [ -122.40843415260315, 37.79670807100316 ], [ -122.40856289863586, 37.79733118824711 ], [ -122.40862727165222, 37.79763214775467 ] ] }, "properties": { "class": "street", "len": 697.6155503425852, "name": "Stockton St", "name_de": "Stockton St", "name_en": "Stockton St", "name_es": "Stockton St", "name_fr": "Stockton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40557491779327, 37.790565634070354 ], [ -122.40560173988342, 37.790730965147205 ], [ -122.40574657917021, 37.791498266071706 ], [ -122.40580022335052, 37.791778053376625 ], [ -122.40594506263731, 37.792460560388086 ] ] }, "properties": { "class": "street", "len": 269.89783685489533, "name": "Grant Ave", "name_de": "Grant Ave", "name_en": "Grant Ave", "name_es": "Grant Ave", "name_fr": "Grant Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4108213186264, 37.791837402062676 ], [ -122.4110037088394, 37.792765778874795 ] ] }, "properties": { "class": "street", "len": 132.29588240030955, "name": "Mason St", "name_de": "Mason St", "name_en": "Mason St", "name_es": "Mason St", "name_fr": "Mason St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41100370883942, 37.792765778874795 ], [ -122.41108953952791, 37.7931769740092 ], [ -122.41113245487215, 37.79338469026892 ], [ -122.41118609905244, 37.79364751408718 ], [ -122.41127192974092, 37.794062943376915 ], [ -122.41136848926546, 37.79452923877677 ] ] }, "properties": { "class": "street", "len": 251.76727793372726, "name": "Mason St", "name_de": "Mason St", "name_en": "Mason St", "name_es": "Mason St", "name_fr": "Mason St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41793990135193, 37.79368566585406 ], [ -122.41629302501678, 37.793893380683656 ], [ -122.41567611694335, 37.79397392301147 ], [ -122.41522014141083, 37.79402903086939 ], [ -122.41465687751769, 37.7941053339894 ], [ -122.41300463676453, 37.79433000382966 ], [ -122.41184592247008, 37.794465653213706 ], [ -122.41136848926544, 37.79452923877677 ] ] }, "properties": { "class": "street", "len": 741.188908049292, "name": "Washington St", "name_de": "Washington St", "name_en": "Washington St", "name_es": "Washington St", "name_fr": "Washington St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4349182844162, 37.794274896196235 ], [ -122.43657052516937, 37.794062943376915 ] ] }, "properties": { "class": "street", "len": 186.65911094787393, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43156552314758, 37.79104466925053 ], [ -122.4325579404831, 37.790921731314675 ] ] }, "properties": { "class": "street", "len": 112.80448084965425, "name": "Clay St", "name_de": "Clay St", "name_en": "Clay St", "name_es": "Clay St", "name_fr": "Clay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41576731204987, 37.791209999255514 ], [ -122.41578876972198, 37.79131597983335 ], [ -122.41583168506622, 37.791544897362755 ], [ -122.41589605808258, 37.79187555476423 ], [ -122.41594970226288, 37.79212990560461 ], [ -122.4161159992218, 37.79301588752816 ], [ -122.41629302501678, 37.793893380683656 ], [ -122.4164754152298, 37.79477934146046 ], [ -122.41666316986084, 37.795678008523424 ], [ -122.41671681404114, 37.7959238683626 ], [ -122.41674900054932, 37.79611886006703 ], [ -122.41685092449188, 37.796602098159795 ], [ -122.41694211959839, 37.79707261642332 ], [ -122.41703867912292, 37.79755160941504 ], [ -122.41722106933594, 37.79847991442385 ], [ -122.41731226444244, 37.79894618194477 ], [ -122.41739273071288, 37.799319193842436 ], [ -122.4173980951309, 37.7994082077669 ], [ -122.41753220558165, 37.79990837925248 ], [ -122.41762340068816, 37.80032801203869 ], [ -122.41773068904875, 37.80084089331766 ], [ -122.41780042648314, 37.801256282156544 ], [ -122.41780579090114, 37.8012859526985 ], [ -122.41789162158962, 37.801718293529156 ], [ -122.41797745227812, 37.80213791603292 ], [ -122.41798818111418, 37.80220997218259 ], [ -122.41799890995024, 37.80227778967103 ], [ -122.41817593574523, 37.80312974156482 ], [ -122.41821885108946, 37.8033586224884 ], [ -122.41821885108946, 37.80349001677221 ], [ -122.41833150386809, 37.804087645887726 ], [ -122.41839051246639, 37.80421480039474 ], [ -122.41855680942531, 37.80500739188654 ] ] }, "properties": { "class": "street", "len": 1969.0376020959868, "name": "Leavenworth St", "name_de": "Leavenworth St", "name_en": "Leavenworth St", "name_es": "Leavenworth St", "name_fr": "Leavenworth St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40560173988342, 37.79868761577395 ], [ -122.40553200244905, 37.79836546649156 ], [ -122.40548372268678, 37.79811537594843 ], [ -122.4054890871048, 37.798017882795456 ] ] }, "properties": { "class": "street", "len": 95.56138201633803, "name": "Kearny St", "name_de": "Kearny St", "name_en": "Kearny St", "name_es": "Kearny St", "name_fr": "Kearny St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41025805473328, 37.79741596569721 ], [ -122.41039216518402, 37.797445637781784 ], [ -122.41104662418365, 37.797314232745414 ] ] }, "properties": { "class": "main", "len": 90.55466342846469, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43168354034424, 37.80327809039246 ], [ -122.43188202381134, 37.80324842065075 ], [ -122.43333578109741, 37.80306616340459 ], [ -122.43497729301453, 37.80285423580862 ], [ -122.43600726127625, 37.80272284039373 ], [ -122.43647933006287, 37.80267197758973 ], [ -122.43663489818573, 37.80269317042898 ], [ -122.43680119514465, 37.80276522603697 ] ] }, "properties": { "class": "street", "len": 579.2060033285372, "name": "Bay St", "name_de": "Bay St", "name_en": "Bay St", "name_es": "Bay St", "name_fr": "Bay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43150115013123, 37.802379515786946 ], [ -122.43168354034422, 37.80327809039246 ] ] }, "properties": { "class": "street", "len": 128.34968056037326, "name": "Laguna St", "name_de": "Laguna St", "name_en": "Laguna St", "name_es": "Laguna St", "name_fr": "Laguna St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42985963821411, 37.80258296759844 ], [ -122.43150115013123, 37.802379515786946 ] ] }, "properties": { "class": "street", "len": 185.20992306068527, "name": "Francisco St", "name_de": "Francisco St", "name_en": "Francisco St", "name_es": "Francisco St", "name_fr": "Francisco St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42985963821411, 37.80258296759844 ], [ -122.43006348609924, 37.803532401975204 ] ] }, "properties": { "class": "street", "len": 135.2257283210577, "name": "Octavia St", "name_de": "Octavia St", "name_en": "Octavia St", "name_es": "Octavia St", "name_fr": "Octavia St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42215096950531, 37.797831373796456 ], [ -122.42372810840607, 37.797636386612204 ] ] }, "properties": { "class": "street", "len": 177.4162678560832, "name": "Green St", "name_de": "Green St", "name_en": "Green St", "name_es": "Green St", "name_fr": "Green St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42929100990295, 37.7997896947997 ], [ -122.4309378862381, 37.799581996548405 ], [ -122.43250429630281, 37.799382775228004 ], [ -122.43257939815523, 37.79937429771311 ], [ -122.43269741535188, 37.79935734268033 ], [ -122.43422091007237, 37.79916235952403 ], [ -122.43586242198946, 37.7989546595088 ], [ -122.43713378906251, 37.79879358562553 ] ] }, "properties": { "class": "street", "len": 2014.6636423760767, "name": "Greenwich St", "name_de": "Greenwich St", "name_en": "Greenwich St", "name_es": "Greenwich St", "name_fr": "Greenwich St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4217700958252, 37.795945063138014 ], [ -122.42196321487425, 37.79690306063769 ], [ -122.4220597743988, 37.797373576984334 ], [ -122.4221509695053, 37.797831373796456 ], [ -122.42232799530028, 37.798696093367674 ], [ -122.42233872413634, 37.79877239166739 ] ] }, "properties": { "class": "street", "len": 403.1965680885383, "name": "Polk St", "name_de": "Polk St", "name_en": "Polk St", "name_es": "Polk St", "name_fr": "Polk St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42233872413635, 37.79877239166739 ], [ -122.42235481739044, 37.79884445110031 ], [ -122.4224728345871, 37.79941244652253 ], [ -122.4225103855133, 37.79962014525055 ], [ -122.4225264787674, 37.79970068133491 ], [ -122.42254793643951, 37.79978969479964 ], [ -122.42270350456238, 37.800556901644505 ], [ -122.42271423339844, 37.80062895933659 ], [ -122.42273032665251, 37.80070949432101 ], [ -122.42288589477538, 37.801480930249134 ], [ -122.42290198802947, 37.801548748406965 ] ] }, "properties": { "class": "street", "len": 396.1482066469359, "name": "Polk St", "name_de": "Polk St", "name_en": "Polk St", "name_es": "Polk St", "name_fr": "Polk St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42290198802948, 37.80154874840699 ], [ -122.42291808128357, 37.801633521016726 ], [ -122.42307901382446, 37.80241342446109 ], [ -122.42309510707855, 37.802489718921066 ], [ -122.42311120033264, 37.802587206171864 ], [ -122.4232828617096, 37.803426438922145 ], [ -122.42347061634064, 37.804358908571395 ] ] }, "properties": { "class": "street", "len": 400.45783312781555, "name": "Polk St", "name_de": "Polk St", "name_en": "Polk St", "name_es": "Polk St", "name_fr": "Polk St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40565538406372, 37.79898433097531 ], [ -122.40644931793213, 37.79888260018339 ], [ -122.40685164928436, 37.7988317347349 ], [ -122.4071305990219, 37.79878934683441 ], [ -122.4072217941284, 37.79877239166739 ] ] }, "properties": { "class": "street", "len": 177.11230961239798, "name": "Vallejo St", "name_de": "Vallejo St", "name_en": "Vallejo St", "name_es": "Vallejo St", "name_fr": "Vallejo St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40722179412842, 37.79877239166739 ], [ -122.40788161754608, 37.79868761577395 ], [ -122.40796744823457, 37.79867913817926 ], [ -122.40881502628328, 37.79857316816348 ], [ -122.40965723991395, 37.79847143680532 ], [ -122.4098986387253, 37.79844176513279 ], [ -122.41045653820039, 37.79837394412226 ], [ -122.41176009178163, 37.79820863014827 ], [ -122.41208195686342, 37.79817048071708 ], [ -122.41210877895355, 37.79816624189018 ], [ -122.4121356010437, 37.79816200306305 ], [ -122.41283297538757, 37.7980772264691 ] ] }, "properties": { "class": "street", "len": 632.0985495709137, "name": "Vallejo St", "name_de": "Vallejo St", "name_en": "Vallejo St", "name_es": "Vallejo St", "name_fr": "Vallejo St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4062991142273, 37.801786111469056 ], [ -122.40625083446504, 37.80177339561006 ], [ -122.40621864795686, 37.80174796388552 ], [ -122.40619182586671, 37.80169710041017 ], [ -122.40603625774385, 37.800938382744725 ], [ -122.40602552890779, 37.80083665464399 ], [ -122.40584850311281, 37.79991261797943 ], [ -122.40580022335054, 37.799721875026755 ], [ -122.40565538406373, 37.79898433097531 ] ] }, "properties": { "class": "street", "len": 405.5124883164733, "name": "Kearny St", "name_de": "Kearny St", "name_en": "Kearny St", "name_es": "Kearny St", "name_fr": "Kearny St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40721642971039, 37.79822982426816 ], [ -122.40715742111206, 37.798310361868346 ], [ -122.407146692276, 37.79835275004371 ], [ -122.40716814994812, 37.79849263084982 ], [ -122.40722179412842, 37.79877239166739 ], [ -122.40741491317749, 37.7996922038565 ], [ -122.40760266780853, 37.8006416753926 ], [ -122.40766167640685, 37.800938382744725 ], [ -122.40774750709534, 37.801387680180454 ], [ -122.40779042243958, 37.80159537335438 ], [ -122.40792453289032, 37.802218449372056 ], [ -122.40797281265257, 37.8025066732348 ], [ -122.40804255008696, 37.80287119003867 ], [ -122.40809082984923, 37.8031000717635 ], [ -122.40816593170165, 37.80344339302085 ] ] }, "properties": { "class": "street", "len": 745.1912087283594, "name": "Grant Ave", "name_de": "Grant Ave", "name_en": "Grant Ave", "name_es": "Grant Ave", "name_fr": "Grant Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40448594093323, 37.80123085025396 ], [ -122.40444302558899, 37.80131562322855 ], [ -122.40448594093323, 37.80152755523935 ], [ -122.40456104278564, 37.80192598577343 ], [ -122.4045717716217, 37.801989564915125 ], [ -122.40470051765443, 37.80255329757749 ], [ -122.40476489067079, 37.802714363262176 ], [ -122.40481853485109, 37.802773703162714 ] ] }, "properties": { "class": "street", "len": 223.33525500181005, "name": "Montgomery St", "name_de": "Montgomery St", "name_en": "Montgomery St", "name_es": "Montgomery St", "name_fr": "Montgomery St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40481853485107, 37.802773703162714 ], [ -122.4048238992691, 37.802710124696006 ], [ -122.40468978881836, 37.802036189584236 ], [ -122.40467369556427, 37.80196413326501 ], [ -122.4045878648758, 37.80152755523935 ], [ -122.40456104278564, 37.801374964252865 ], [ -122.40453422069551, 37.8012859526985 ], [ -122.40448594093324, 37.80123085025394 ] ] }, "properties": { "class": "street", "len": 221.87358067348777, "name": "Montgomery St", "name_de": "Montgomery St", "name_en": "Montgomery St", "name_es": "Montgomery St", "name_fr": "Montgomery St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4045878648758, 37.80152755523935 ], [ -122.40507066249847, 37.801455498423906 ] ] }, "properties": { "class": "street", "len": 54.66121476955421, "name": "Alta St", "name_de": "Alta St", "name_en": "Alta St", "name_es": "Alta St", "name_fr": "Alta St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40434110164642, 37.80046788910432 ], [ -122.40435719490051, 37.800578095090685 ], [ -122.40444302558899, 37.80103163338067 ], [ -122.40448594093323, 37.80123085025396 ] ] }, "properties": { "class": "street", "len": 108.62619166079068, "name": "Montgomery St", "name_de": "Montgomery St", "name_en": "Montgomery St", "name_es": "Montgomery St", "name_fr": "Montgomery St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40691602230072, 37.80264230760455 ], [ -122.40699112415314, 37.80263383046373 ], [ -122.40743637084961, 37.80257872902474 ], [ -122.40797281265257, 37.8025066732348 ], [ -122.40828931331635, 37.80246852602342 ], [ -122.40872383117674, 37.80241342446109 ], [ -122.40957677364348, 37.80230322121314 ], [ -122.4106067419052, 37.802171824817975 ], [ -122.41120755672453, 37.802095530029646 ], [ -122.41160452365874, 37.80204466679365 ], [ -122.41209268569945, 37.80198108769938 ], [ -122.41238236427306, 37.801947178826744 ], [ -122.41243600845335, 37.80190055410142 ] ] }, "properties": { "class": "street", "len": 625.6124878438, "name": "Greenwich St", "name_de": "Greenwich St", "name_en": "Greenwich St", "name_es": "Greenwich St", "name_fr": "Greenwich St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40862727165222, 37.79763214775467 ], [ -122.40881502628326, 37.79857316816348 ], [ -122.4089115858078, 37.79904791264911 ], [ -122.40897059440613, 37.79932343260318 ] ] }, "properties": { "class": "street", "len": 241.32735316025975, "name": "Stockton St", "name_de": "Stockton St", "name_en": "Stockton St", "name_es": "Stockton St", "name_fr": "Stockton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4168348312378, 37.804833615870386 ], [ -122.41672754287718, 37.80429533146929 ], [ -122.41663098335265, 37.80382062071034 ], [ -122.41653442382811, 37.80334166837023 ], [ -122.41634130477904, 37.80240494729402 ], [ -122.41615891456604, 37.80148940752228 ], [ -122.41605699062347, 37.801010440064665 ], [ -122.41596579551697, 37.80053994688323 ], [ -122.41594970226288, 37.80046365040925 ], [ -122.41577804088593, 37.79962014525055 ], [ -122.41568148136139, 37.79914540444263 ], [ -122.415611743927, 37.79879782441643 ], [ -122.41559028625488, 37.798696093367674 ], [ -122.41556882858276, 37.798598600981116 ], [ -122.41546154022217, 37.79806450997163 ], [ -122.41539716720581, 37.79775931337528 ], [ -122.41533815860748, 37.79746259325332 ], [ -122.41530060768127, 37.79728879948555 ], [ -122.41520404815674, 37.796805565884746 ], [ -122.4151074886322, 37.796326568055655 ], [ -122.4150162935257, 37.79588995670929 ], [ -122.41483390331268, 37.79499129222454 ], [ -122.4146568775177, 37.7941053339894 ], [ -122.4144744873047, 37.79322360424077 ], [ -122.41438865661621, 37.792786974556215 ], [ -122.41429746150972, 37.79233762480803 ], [ -122.4141150712967, 37.791438917113226 ], [ -122.4141097068787, 37.791421960259214 ] ] }, "properties": { "class": "street", "len": 1913.6777925493618, "name": "Jones St", "name_de": "Jones St", "name_en": "Jones St", "name_es": "Jones St", "name_fr": "Jones St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42107272148132, 37.800832415970085 ], [ -122.42262303829193, 37.800637436707525 ], [ -122.42271423339844, 37.80062895933659 ], [ -122.42283225059509, 37.80061200459185 ], [ -122.42289662361145, 37.800603527218016 ], [ -122.42416799068451, 37.80044245693025 ], [ -122.42428600788116, 37.800429740839945 ] ] }, "properties": { "class": "street", "len": 362.03014130639843, "name": "Greenwich St", "name_de": "Greenwich St", "name_en": "Greenwich St", "name_es": "Greenwich St", "name_fr": "Greenwich St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41859436035156, 37.80020932826012 ], [ -122.41925418376923, 37.80012455401583 ], [ -122.41935610771179, 37.800111837870794 ], [ -122.42058455944061, 37.79995076651085 ], [ -122.42080986499786, 37.79992109543255 ], [ -122.42088496685028, 37.79991261797943 ], [ -122.42243528366089, 37.79971339755073 ], [ -122.4225264787674, 37.79970068133491 ], [ -122.42265522480011, 37.7996837263771 ], [ -122.42400169372559, 37.79950993783495 ], [ -122.42409288883209, 37.79949722158409 ] ] }, "properties": { "class": "street", "len": 620.2909232707532, "name": "Filbert St", "name_de": "Filbert St", "name_en": "Filbert St", "name_es": "Filbert St", "name_fr": "Filbert St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41859436035156, 37.80020932826012 ], [ -122.41762340068816, 37.80032801203869 ] ] }, "properties": { "class": "street", "len": 109.42872063447884, "name": "Filbert St", "name_de": "Filbert St", "name_en": "Filbert St", "name_es": "Filbert St", "name_fr": "Filbert St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40676581859589, 37.8044394394888 ], [ -122.40753293037415, 37.804469108752045 ], [ -122.40834832191467, 37.8043673855142 ], [ -122.40935146808626, 37.80424446974821 ], [ -122.40995228290558, 37.804176654065614 ], [ -122.41158306598663, 37.80396472965615 ], [ -122.41285443305969, 37.803807905201644 ], [ -122.41322457790375, 37.80376128165094 ], [ -122.41371810436249, 37.803697704034384 ], [ -122.41472661495209, 37.803566310120054 ], [ -122.4148017168045, 37.80355359456757 ], [ -122.41488218307495, 37.80354511753136 ], [ -122.41506457328796, 37.80352392493655 ], [ -122.41641104221344, 37.80336286101732 ], [ -122.41653442382812, 37.80334166837023 ], [ -122.41663634777069, 37.80332047571705 ], [ -122.41817593574524, 37.803129741564796 ], [ -122.41907715797423, 37.80301530083702 ], [ -122.41982281208037, 37.8029220527055 ], [ -122.42145359516142, 37.80271436326215 ], [ -122.42180764675139, 37.8026635004523 ] ] }, "properties": { "class": "street", "len": 1694.9214307785533, "name": "Chestnut St", "name_de": "Chestnut St", "name_en": "Chestnut St", "name_es": "Chestnut St", "name_fr": "Chestnut St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41285979747772, 37.801892076875475 ], [ -122.41288661956786, 37.801887838262154 ], [ -122.41368055343628, 37.801790350088226 ], [ -122.4144959449768, 37.801692861785654 ], [ -122.41495192050934, 37.80163775964465 ], [ -122.41615891456604, 37.80148940752228 ], [ -122.41780579090118, 37.8012859526985 ] ] }, "properties": { "class": "street", "len": 557.112868666435, "name": "Greenwich St", "name_de": "Greenwich St", "name_en": "Greenwich St", "name_es": "Greenwich St", "name_fr": "Greenwich St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40707695484161, 37.79813233126623 ], [ -122.40721642971039, 37.79822982426816 ], [ -122.40788161754608, 37.79868761577395 ], [ -122.4089652299881, 37.79947178907586 ] ] }, "properties": { "class": "main", "len": 282.30186678989685, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40913152694702, 37.79962438399404 ], [ -122.40907251834871, 37.799687965116924 ], [ -122.40906178951265, 37.799738829975816 ], [ -122.40905642509462, 37.79976850112732 ], [ -122.40911006927492, 37.8000143473528 ], [ -122.40919053554536, 37.80044669562654 ] ] }, "properties": { "class": "street", "len": 119.16979192136742, "name": "Stockton St", "name_de": "Stockton St", "name_en": "Stockton St", "name_es": "Stockton St", "name_fr": "Stockton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4089652299881, 37.79947178907586 ], [ -122.40902423858641, 37.799548086574354 ], [ -122.40913152694702, 37.79962438399404 ], [ -122.41015613079071, 37.80032377333558 ] ] }, "properties": { "class": "main", "len": 179.78758443124872, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40707695484161, 37.79813233126623 ], [ -122.40704476833344, 37.79807298763686 ], [ -122.40673899650574, 37.797865284558576 ] ] }, "properties": { "class": "main", "len": 54.17443315216535, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41517186164856, 37.793770447487695 ], [ -122.41522014141083, 37.79402903086939 ] ] }, "properties": { "class": "path", "len": 36.925126946110616, "name": "Priest St", "name_de": "Priest St", "name_en": "Priest St", "name_es": "Priest St", "name_fr": "Priest St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41562247276306, 37.79369414402182 ], [ -122.41567611694336, 37.79397392301147 ] ] }, "properties": { "class": "street", "len": 39.886972809965414, "name": "Reed St", "name_de": "Reed St", "name_en": "Reed St", "name_es": "Reed St", "name_fr": "Reed St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4073076248169, 37.807457166355256 ], [ -122.4076133966446, 37.80756312362505 ], [ -122.40894377231598, 37.80810138420781 ], [ -122.40898668766023, 37.80810986072104 ], [ -122.40911543369295, 37.808135290254896 ] ] }, "properties": { "class": "street", "len": 223.42726427046517, "name": "The Embarcadero", "name_de": "The Embarcadero", "name_en": "The Embarcadero", "name_es": "The Embarcadero", "name_fr": "The Embarcadero", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41657197475433, 37.809160940820696 ], [ -122.41658806800842, 37.80924146650164 ], [ -122.41661489009857, 37.80932623028144 ], [ -122.41665780544281, 37.809398279417756 ], [ -122.41671681404112, 37.809461852126724 ], [ -122.41720497608183, 37.80977971485056 ] ] }, "properties": { "class": "street", "len": 393.80887031184614, "name": "Pier 45", "name_de": "Pier 45", "name_en": "Pier 45", "name_es": "Pier 45", "name_fr": "Pier 45", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41192102432251, 37.80849554104372 ], [ -122.41240918636322, 37.80856335276034 ], [ -122.41250574588777, 37.80857606745026 ] ] }, "properties": { "class": "street", "len": 65.5771641539864, "name": "The Embarcadero", "name_de": "The Embarcadero", "name_en": "The Embarcadero", "name_es": "The Embarcadero", "name_fr": "The Embarcadero", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41250574588776, 37.80857606745026 ], [ -122.41261839866638, 37.80858878213802 ], [ -122.41265058517456, 37.80859302036677 ], [ -122.41287052631378, 37.80858030567975 ], [ -122.41416871547699, 37.80841925278804 ] ] }, "properties": { "class": "street", "len": 187.38311561829235, "name": "Jefferson St", "name_de": "Jefferson St", "name_en": "Jefferson St", "name_es": "Jefferson St", "name_fr": "Jefferson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41745710372925, 37.80800814249806 ], [ -122.41773068904878, 37.80797423639261 ], [ -122.41908788681032, 37.807800467357744 ], [ -122.41992473602296, 37.807698748708574 ], [ -122.42040216922761, 37.807639412765205 ], [ -122.42075085639958, 37.8075970299193 ] ] }, "properties": { "class": "street", "len": 371.2315392261579, "name": "Jefferson St", "name_de": "Jefferson St", "name_en": "Jefferson St", "name_es": "Jefferson St", "name_fr": "Jefferson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4369728565216, 37.80436314704291 ], [ -122.43712842464447, 37.804341954682855 ], [ -122.4371337890625, 37.804341954682855 ] ] }, "properties": { "class": "street", "len": 555.7103815711608, "name": "Beach St", "name_de": "Beach St", "name_en": "Beach St", "name_es": "Beach St", "name_fr": "Beach St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43173718452454, 37.80362564933614 ], [ -122.4317479133606, 37.80354935604959 ], [ -122.4317479133606, 37.80347306268421 ], [ -122.43173718452454, 37.80339676924006 ], [ -122.43171572685242, 37.803337429840084 ], [ -122.43168354034424, 37.80327809039246 ] ] }, "properties": { "class": "main", "len": 50.68690143418162, "name": "Laguna St", "name_de": "Laguna St", "name_en": "Laguna St", "name_es": "Laguna St", "name_fr": "Laguna St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42520332336426, 37.805096398955996 ], [ -122.42535889148712, 37.805872027449155 ], [ -122.42541253566742, 37.8059483183363 ], [ -122.42546081542967, 37.80618142889205 ], [ -122.42549300193787, 37.806261957822144 ], [ -122.42565929889678, 37.80650354408548 ] ] }, "properties": { "class": "street", "len": 207.25363820920808, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42536962032318, 37.805075206806336 ], [ -122.42517650127411, 37.80413850771679 ] ] }, "properties": { "class": "main", "len": 133.38997900877993, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42075085639954, 37.8075970299193 ], [ -122.42185056209564, 37.80746140464897 ] ] }, "properties": { "class": "street", "len": 123.7840139102762, "name": "Jefferson St", "name_de": "Jefferson St", "name_en": "Jefferson St", "name_es": "Jefferson St", "name_fr": "Jefferson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4205631017685, 37.80665188613628 ], [ -122.42037534713745, 37.80571520704471 ] ] }, "properties": { "class": "street", "len": 133.4972108322927, "name": "Hyde St", "name_de": "Hyde St", "name_en": "Hyde St", "name_es": "Hyde St", "name_fr": "Hyde St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4232828617096, 37.803426438922145 ], [ -122.42484390735626, 37.803218750897145 ] ] }, "properties": { "class": "street", "len": 176.17523804499018, "name": "Francisco St", "name_de": "Francisco St", "name_en": "Francisco St", "name_es": "Francisco St", "name_fr": "Francisco St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43006348609924, 37.803532401975204 ], [ -122.43086814880373, 37.80343067744717 ] ] }, "properties": { "class": "main", "len": 90.86705563669574, "name": "Bay St", "name_de": "Bay St", "name_en": "Bay St", "name_es": "Bay St", "name_fr": "Bay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4183851480484, 37.805973748614505 ], [ -122.41883039474486, 37.80627043454651 ], [ -122.41957068443298, 37.80677903622835 ] ] }, "properties": { "class": "street", "len": 174.1893737884846, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40595579147339, 37.8046640778996 ], [ -122.40517795085908, 37.80476580072879 ] ] }, "properties": { "class": "street", "len": 87.94345569749994, "name": "Chestnut St", "name_de": "Chestnut St", "name_en": "Chestnut St", "name_es": "Chestnut St", "name_fr": "Chestnut St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4172693490982, 37.807071480609274 ], [ -122.41890549659729, 37.80686380283475 ], [ -122.41957068443298, 37.80677903622835 ], [ -122.41972625255585, 37.80675784456153 ], [ -122.42056310176851, 37.80665188613628 ] ] }, "properties": { "class": "street", "len": 371.2924861507288, "name": "Beach St", "name_de": "Beach St", "name_en": "Beach St", "name_es": "Beach St", "name_fr": "Beach St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4172693490982, 37.807071480609274 ], [ -122.41708159446716, 37.806139045209385 ], [ -122.4168884754181, 37.80521507488171 ] ] }, "properties": { "class": "street", "len": 265.79375441053367, "name": "Jones St", "name_de": "Jones St", "name_en": "Jones St", "name_es": "Jones St", "name_fr": "Jones St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41234481334686, 37.807698748708574 ], [ -122.41248965263367, 37.80850401751168 ], [ -122.41250574588776, 37.80857606745026 ] ] }, "properties": { "class": "street", "len": 124.96779065929178, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41397559642792, 37.807491072698134 ], [ -122.41561710834503, 37.80728339610364 ] ] }, "properties": { "class": "street", "len": 184.88805910606186, "name": "Beach St", "name_de": "Beach St", "name_en": "Beach St", "name_es": "Beach St", "name_fr": "Beach St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41561710834503, 37.80728339610364 ], [ -122.41726934909819, 37.807071480609274 ] ] }, "properties": { "class": "street", "len": 186.76535251337125, "name": "Beach St", "name_de": "Beach St", "name_en": "Beach St", "name_es": "Beach St", "name_fr": "Beach St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41561710834503, 37.80728339610364 ], [ -122.41543471813202, 37.80634248666441 ] ] }, "properties": { "class": "street", "len": 134.18097965055713, "name": "Taylor St", "name_de": "Taylor St", "name_en": "Taylor St", "name_es": "Taylor St", "name_fr": "Taylor St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41543471813202, 37.80634248666441 ], [ -122.41524159908295, 37.80541851888209 ] ] }, "properties": { "class": "street", "len": 132.18093357235747, "name": "Taylor St", "name_de": "Taylor St", "name_en": "Taylor St", "name_es": "Taylor St", "name_fr": "Taylor St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43173718452454, 37.80362564933614 ], [ -122.43186593055727, 37.80424446974821 ], [ -122.43190348148346, 37.80441824715063 ], [ -122.43199467658997, 37.804871761860184 ], [ -122.43203222751617, 37.805075206806336 ] ] }, "properties": { "class": "main", "len": 206.72394509717472, "name": "Laguna St", "name_de": "Laguna St", "name_en": "Laguna St", "name_es": "Laguna St", "name_fr": "Laguna St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43086814880371, 37.80343067744717 ], [ -122.4314957857132, 37.80338405365836 ], [ -122.4315494298935, 37.80338829218583 ], [ -122.43159770965576, 37.803405246293295 ], [ -122.43163526058197, 37.80343067744717 ], [ -122.4316620826721, 37.803464585638764 ], [ -122.43173718452452, 37.80362564933614 ] ] }, "properties": { "class": "main", "len": 118.00890140069362, "name": "Laguna St", "name_de": "Laguna St", "name_en": "Laguna St", "name_es": "Laguna St", "name_fr": "Laguna St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42682337760925, 37.80419784647312 ], [ -122.42679655551912, 37.80427837756615 ], [ -122.42679655551912, 37.804337716210114 ], [ -122.42680191993713, 37.80440129327573 ], [ -122.42685556411743, 37.80462593180253 ], [ -122.42691993713379, 37.80482937742587 ], [ -122.42704331874847, 37.80521931330409 ], [ -122.42712914943696, 37.80543123411352 ] ] }, "properties": { "class": "street", "len": 178.68748063928695, "name": "Franklin St", "name_de": "Franklin St", "name_en": "Franklin St", "name_es": "Franklin St", "name_fr": "Franklin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42712914943695, 37.80543123411352 ], [ -122.42715060710907, 37.805321035368515 ], [ -122.42715597152709, 37.80521931330409 ], [ -122.42702186107634, 37.8048081851996 ], [ -122.42696821689604, 37.80460050106022 ], [ -122.42691993713379, 37.80438433939691 ], [ -122.42689311504364, 37.80432500079042 ], [ -122.42685556411743, 37.80426990061314 ], [ -122.42682337760925, 37.80419784647312 ] ] }, "properties": { "class": "street", "len": 178.99029926575605, "name": "Franklin St", "name_de": "Franklin St", "name_en": "Franklin St", "name_es": "Franklin St", "name_fr": "Franklin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40750074386597, 37.802888144264855 ], [ -122.40752220153809, 37.80291781415126 ], [ -122.40761339664459, 37.803324714248184 ] ] }, "properties": { "class": "service", "len": 63.46973529960526, "name": "Child St", "name_de": "Child St", "name_en": "Child St", "name_es": "Child St", "name_fr": "Child St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42112100124359, 37.80888545756394 ], [ -122.42157161235811, 37.809275372025255 ], [ -122.42210805416107, 37.80967799892781 ], [ -122.42224752902986, 37.80977971485056 ] ] }, "properties": { "class": "path", "len": 267.96803623205005, "name": "Hyde St Pier", "name_de": "Hyde St Pier", "name_en": "Hyde St Pier", "name_es": "Hyde St Pier", "name_fr": "Hyde St Pier", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42022514343262, 37.80192174716204 ], [ -122.42062211036682, 37.80187512242067 ] ] }, "properties": { "class": "street", "len": 44.81482455598683, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42062211036682, 37.80187512242067 ], [ -122.42114245891571, 37.80179882732586 ], [ -122.4212658405304, 37.80178187284963 ], [ -122.42198467254639, 37.80168014591061 ], [ -122.42212414741518, 37.801658952780684 ], [ -122.42280542850496, 37.80156570293673 ], [ -122.4229019880295, 37.80154874840699 ], [ -122.42300927639012, 37.80153603250714 ], [ -122.4243557453156, 37.80134529374666 ], [ -122.42446303367619, 37.80132833916636 ] ] }, "properties": { "class": "street", "len": 434.416197668898, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42347061634064, 37.804358908571395 ], [ -122.42502093315125, 37.804159700135244 ] ] }, "properties": { "class": "main", "len": 175.06532952143382, "name": "Bay St", "name_de": "Bay St", "name_en": "Bay St", "name_es": "Bay St", "name_fr": "Bay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41855680942535, 37.80500739188654 ], [ -122.42019295692444, 37.80478699296722 ] ] }, "properties": { "class": "main", "len": 184.97531186607654, "name": "Bay St", "name_de": "Bay St", "name_en": "Bay St", "name_es": "Bay St", "name_fr": "Bay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42019295692444, 37.80478699296722 ], [ -122.42174863815309, 37.80457507030913 ], [ -122.42181837558746, 37.80456659339016 ] ] }, "properties": { "class": "main", "len": 183.3526995127709, "name": "Bay St", "name_de": "Bay St", "name_en": "Bay St", "name_es": "Bay St", "name_fr": "Bay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42181837558746, 37.80456659339016 ], [ -122.42253720760345, 37.804473347217254 ], [ -122.42347061634064, 37.804358908571395 ] ] }, "properties": { "class": "main", "len": 186.21917777270622, "name": "Bay St", "name_de": "Bay St", "name_en": "Bay St", "name_es": "Bay St", "name_fr": "Bay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42181837558746, 37.80456659339016 ], [ -122.42201149463654, 37.80549481023774 ], [ -122.42219924926758, 37.80643573047732 ] ] }, "properties": { "class": "street", "len": 267.4986530187627, "name": "Larkin St", "name_de": "Larkin St", "name_en": "Larkin St", "name_es": "Larkin St", "name_fr": "Larkin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4309754371643, 37.78374434488178 ], [ -122.43107736110687, 37.78427429978763 ], [ -122.43110418319702, 37.78443540532579 ] ] }, "properties": { "class": "main", "len": 1133.1148622789483, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43131875991821, 37.784723698570225 ], [ -122.43130266666412, 37.784634666952996 ], [ -122.43127584457399, 37.784511718352896 ], [ -122.43125438690187, 37.78440996763259 ], [ -122.43118464946748, 37.78406655791737 ], [ -122.4311149120331, 37.78374434488178 ] ] }, "properties": { "class": "main", "len": 1172.3244467932636, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42778360843658, 37.783926649798154 ], [ -122.4288994073868, 37.783812179321814 ], [ -122.42915689945221, 37.78377402245696 ], [ -122.42946267127992, 37.78374434488178 ] ] }, "properties": { "class": "service", "len": 277.4019821826499, "name": "Galilee Ln", "name_de": "Galilee Ln", "name_en": "Galilee Ln", "name_es": "Galilee Ln", "name_fr": "Galilee Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42915689945221, 37.78377402245696 ], [ -122.4291515350342, 37.78374434488178 ] ] }, "properties": { "class": "path", "len": 95.32624059779303, "name": "Inca Ln", "name_de": "Inca Ln", "name_en": "Inca Ln", "name_es": "Inca Ln", "name_fr": "Inca Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41084277629852, 37.800251715345794 ], [ -122.41166353225708, 37.80014574758602 ], [ -122.41246819496155, 37.80004401839364 ], [ -122.41248428821564, 37.80003977967424 ], [ -122.41251647472382, 37.800035540954596 ], [ -122.41412580013274, 37.79983208212613 ], [ -122.41522550582884, 37.799687965116924 ], [ -122.41577804088591, 37.79962014525055 ], [ -122.41649150848387, 37.79952689283269 ], [ -122.4173980951309, 37.7994082077669 ], [ -122.41822957992552, 37.79930223879704 ], [ -122.41905033588408, 37.79919626967515 ], [ -122.41906642913814, 37.79919626967515 ], [ -122.41908252239223, 37.79919203090711 ], [ -122.4200856685638, 37.799064867752875 ], [ -122.42034852504726, 37.799030957541454 ], [ -122.42069721221922, 37.79898433097531 ], [ -122.42226898670195, 37.798780869251374 ], [ -122.42233872413634, 37.79877239166739 ] ] }, "properties": { "class": "street", "len": 1297.141812299604, "name": "Union St", "name_de": "Union St", "name_en": "Union St", "name_es": "Union St", "name_fr": "Union St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41540253162384, 37.798721526143 ], [ -122.41559028625488, 37.798696093367674 ], [ -122.41722106933594, 37.79847991442385 ], [ -122.41783261299133, 37.79839937700852 ], [ -122.41887867450714, 37.79826373484738 ], [ -122.41963505744934, 37.79816200306305 ], [ -122.41989254951476, 37.79812809243717 ], [ -122.42039144039153, 37.79806450997163 ], [ -122.42050409317015, 37.79804755463823 ], [ -122.4221509695053, 37.797831373796456 ] ] }, "properties": { "class": "street", "len": 761.5010491610682, "name": "Green St", "name_de": "Green St", "name_en": "Green St", "name_es": "Green St", "name_fr": "Green St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40566611289978, 37.80268469329402 ], [ -122.40558028221129, 37.80273555608927 ], [ -122.40553200244904, 37.802773703162714 ], [ -122.40548372268677, 37.8028923828208 ], [ -122.40545153617859, 37.80290509848712 ], [ -122.4053281545639, 37.8028076116559 ], [ -122.40504920482635, 37.80286695148153 ], [ -122.40502774715424, 37.80282880445625 ], [ -122.40485608577728, 37.802858474366495 ] ] }, "properties": { "class": "path", "len": 118.02240623006357, "name": "Greenwich St Stairs", "name_de": "Greenwich St Stairs", "name_en": "Greenwich St Stairs", "name_es": "Greenwich St Stairs", "name_fr": "Greenwich St Stairs", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40467369556427, 37.80196413326501 ], [ -122.40508139133453, 37.80191326993851 ], [ -122.4052530527115, 37.8019175085504 ], [ -122.4053978919983, 37.80182849764988 ], [ -122.4054515361786, 37.80182849764988 ], [ -122.4054890871048, 37.80184121349936 ], [ -122.40562319755554, 37.80177763422998 ] ] }, "properties": { "class": "path", "len": 113.49958524683666, "name": "Flibert Steps", "name_de": "Flibert Steps", "name_en": "Flibert Steps", "name_es": "Flibert Steps", "name_fr": "Flibert Steps", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41963505744934, 37.80199804212988 ], [ -122.41953313350677, 37.8020107579502 ], [ -122.41951167583466, 37.80201499655647 ], [ -122.41947948932648, 37.802036189584236 ], [ -122.41942584514618, 37.80207857562153 ], [ -122.41940438747406, 37.802091291428006 ], [ -122.41938292980194, 37.80209553002967 ], [ -122.41935610771179, 37.80209553002967 ], [ -122.41933465003967, 37.802091291428006 ], [ -122.41931855678558, 37.8020743370189 ], [ -122.41926491260529, 37.80201499655647 ], [ -122.41923809051514, 37.80200228073689 ], [ -122.419211268425, 37.80199804212988 ], [ -122.41918444633485, 37.80200228073689 ], [ -122.4191576242447, 37.80201499655647 ], [ -122.41914153099064, 37.80203195097919 ], [ -122.41910934448246, 37.80210400723224 ], [ -122.41909325122838, 37.802125200234485 ], [ -122.41906642913824, 37.80213791603292 ], [ -122.41903424263005, 37.80214215463189 ], [ -122.41900742053991, 37.80213367743367 ], [ -122.4189859628678, 37.80211672303431 ], [ -122.41892695426947, 37.80206162120955 ], [ -122.41890549659735, 37.80204466679365 ], [ -122.4188786745072, 37.80204042818906 ], [ -122.41884648799902, 37.80204466679365 ], [ -122.4188250303269, 37.80205314400207 ], [ -122.41880893707284, 37.8020743370189 ], [ -122.41877675056463, 37.80214639323063 ], [ -122.41876065731057, 37.80216758622069 ], [ -122.41873919963845, 37.80217606341501 ], [ -122.41870701313027, 37.80218030201182 ], [ -122.41868019104012, 37.802171824817975 ], [ -122.418658733368, 37.802159109025396 ], [ -122.41859972476968, 37.80209976863108 ], [ -122.41857826709756, 37.80208705282608 ], [ -122.41855144500742, 37.80207857562153 ], [ -122.4185299873353, 37.80208281422394 ], [ -122.41850316524516, 37.802095530029646 ], [ -122.41848707199107, 37.80211672303431 ], [ -122.41845488548289, 37.80218877920469 ], [ -122.41843879222881, 37.802205733587485 ], [ -122.41841197013866, 37.802218449372056 ], [ -122.41838514804851, 37.80222268796642 ], [ -122.41835296154034, 37.802218449372056 ], [ -122.41833150386822, 37.802205733587485 ], [ -122.41827785968792, 37.80214639323063 ], [ -122.4182564020158, 37.80212943883419 ], [ -122.41823494434368, 37.80212096163453 ], [ -122.41820812225353, 37.80212096163453 ], [ -122.41818130016341, 37.80212943883419 ], [ -122.41816520690932, 37.80214639323063 ], [ -122.41813838481917, 37.80218030201182 ], [ -122.41812765598311, 37.802197256396575 ], [ -122.418106198311, 37.80220997218259 ], [ -122.41808474063888, 37.802214210777436 ], [ -122.41806328296676, 37.802214210777436 ], [ -122.41798818111434, 37.80220997218259 ] ] }, "properties": { "class": "street", "len": 251.13123264977568, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40450203418732, 37.8028923828208 ], [ -122.40418016910553, 37.80292629125948 ] ] }, "properties": { "class": "path", "len": 81.66581926308162, "name": "Greenwich St Stairs", "name_de": "Greenwich St Stairs", "name_en": "Greenwich St Stairs", "name_es": "Greenwich St Stairs", "name_fr": "Greenwich St Stairs", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42667317390442, 37.78692825678771 ], [ -122.42674827575684, 37.78730132936438 ], [ -122.42686629295349, 37.78786517411618 ], [ -122.42696821689606, 37.788331508630314 ], [ -122.4270647764206, 37.788789361472034 ], [ -122.4272632598877, 37.78974321244753 ], [ -122.42745101451874, 37.79066737631527 ] ] }, "properties": { "class": "street", "len": 534.227193931559, "name": "Octavia St", "name_de": "Octavia St", "name_en": "Octavia St", "name_es": "Octavia St", "name_fr": "Octavia St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41488218307495, 37.80354511753136 ], [ -122.41491973400116, 37.80370194254386 ], [ -122.4150162935257, 37.80420632343443 ], [ -122.41505920886993, 37.80441824715063 ], [ -122.415069937706, 37.80448182414693 ] ] }, "properties": { "class": "street", "len": 133.7369592645156, "name": "Taylor St", "name_de": "Taylor St", "name_en": "Taylor St", "name_es": "Taylor St", "name_fr": "Taylor St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42214560508728, 37.790362149160224 ], [ -122.42078840732574, 37.790531719957585 ], [ -122.4206918478012, 37.79057835185864 ] ] }, "properties": { "class": "street", "len": 166.21503958669592, "name": "California St", "name_de": "California St", "name_en": "California St", "name_es": "California St", "name_fr": "California St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40823566913605, 37.80531679695196 ], [ -122.4084609746933, 37.80528712802926 ], [ -122.40853607654572, 37.80529136644753 ], [ -122.40863800048828, 37.80529136644753 ], [ -122.40931928157806, 37.80520659803617 ], [ -122.40954458713531, 37.80517692906923 ], [ -122.41014003753662, 37.805104875814145 ], [ -122.4105155467987, 37.80505401465057 ], [ -122.41177082061768, 37.80489719250912 ], [ -122.41343379020691, 37.80468527016725 ], [ -122.41498410701752, 37.80449030107562 ], [ -122.41505920886993, 37.80448182414693 ], [ -122.415069937706, 37.80448182414693 ], [ -122.41509139537811, 37.80447758568221 ], [ -122.41516649723053, 37.804469108752045 ], [ -122.41598725318909, 37.8043673855142 ], [ -122.41614818573, 37.80434619315537 ], [ -122.4165987968445, 37.8043038084194 ], [ -122.41672754287721, 37.80429533146929 ], [ -122.41684556007387, 37.80428685451822 ], [ -122.41750538349156, 37.8042020849539 ], [ -122.41833150386815, 37.804087645887726 ] ] }, "properties": { "class": "street", "len": 1137.9072314716573, "name": "Francisco St", "name_de": "Francisco St", "name_en": "Francisco St", "name_es": "Francisco St", "name_fr": "Francisco St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4150002002716, 37.80457507030913 ], [ -122.41506457328796, 37.80485056964608 ], [ -122.41512894630434, 37.805248982254014 ] ] }, "properties": { "class": "street_limited", "len": 96.41339793780074, "name": "Taylor St", "name_de": "Taylor St", "name_en": "Taylor St", "name_es": "Taylor St", "name_fr": "Taylor St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40738272666931, 37.80734273233311 ], [ -122.40754902362823, 37.80734697063339 ], [ -122.4089115858078, 37.807168961812216 ], [ -122.41051018238068, 37.80696552263401 ], [ -122.41214632987976, 37.80675784456153 ], [ -122.41378784179688, 37.80655440425074 ], [ -122.4149090051651, 37.806410300358195 ], [ -122.415434718132, 37.806342486664384 ], [ -122.41708159446715, 37.80613904520936 ], [ -122.4183851480484, 37.80597374861448 ], [ -122.41874456405638, 37.80592288804931 ], [ -122.42037534713744, 37.805715207044685 ], [ -122.42201149463652, 37.80549481023774 ], [ -122.42365837097167, 37.80528712802926 ], [ -122.424259185791, 37.80521507488168 ], [ -122.424618601799, 37.80516845221932 ], [ -122.42520332336424, 37.805096398955996 ] ] }, "properties": { "class": "main", "len": 2009.4041363469214, "name": "N Pt St", "name_de": "N Pt St", "name_en": "N Pt St", "name_es": "N Pt St", "name_fr": "N Pt St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.80489719250912 ], [ -122.40476489067078, 37.804820900536086 ], [ -122.40517795085907, 37.80476580072879 ] ] }, "properties": { "class": "street", "len": 197.14333108653207, "name": "Chestnut St", "name_de": "Chestnut St", "name_en": "Chestnut St", "name_es": "Chestnut St", "name_fr": "Chestnut St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41688847541809, 37.80521507488171 ], [ -122.41722643375397, 37.805172690644405 ] ] }, "properties": { "class": "main", "len": 38.091271965153105, "name": "Bay St", "name_de": "Bay St", "name_en": "Bay St", "name_es": "Bay St", "name_fr": "Bay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.80204890539802 ], [ -122.40426063537598, 37.80204042818909 ], [ -122.4045717716217, 37.801989564915125 ] ] }, "properties": { "class": "path", "len": 153.5020236071965, "name": "Filbert Steps", "name_de": "Filbert Steps", "name_en": "Filbert Steps", "name_es": "Filbert Steps", "name_fr": "Filbert Steps", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40525305271149, 37.788878388084036 ], [ -122.40528523921967, 37.78901828682906 ], [ -122.40531206130981, 37.78916242465299 ], [ -122.405344247818, 37.789315040865986 ], [ -122.40540862083435, 37.7896245116636 ] ] }, "properties": { "class": "street", "len": 106.24563811613788, "name": "Grant Ave", "name_de": "Grant Ave", "name_en": "Grant Ave", "name_es": "Grant Ave", "name_fr": "Grant Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40485608577728, 37.78683922782627 ], [ -122.40497410297394, 37.787420033880174 ], [ -122.40504920482635, 37.78776766743669 ] ] }, "properties": { "class": "street", "len": 132.8615561455913, "name": "Grant Ave", "name_de": "Grant Ave", "name_en": "Grant Ave", "name_es": "Grant Ave", "name_fr": "Grant Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40504920482635, 37.78776766743669 ], [ -122.40513503551483, 37.788242481359454 ], [ -122.40522623062134, 37.78869609538249 ] ] }, "properties": { "class": "street", "len": 132.08571808793954, "name": "Grant Ave", "name_de": "Grant Ave", "name_en": "Grant Ave", "name_es": "Grant Ave", "name_fr": "Grant Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41192638874054, 37.797271843974116 ], [ -122.41195321083069, 37.79726760509566 ], [ -122.41301000118254, 37.79711500530889 ], [ -122.41346061229706, 37.797047183080274 ], [ -122.41355180740355, 37.797034466405464 ], [ -122.41366446018218, 37.79701751083568 ], [ -122.4144798517227, 37.79690306063769 ] ] }, "properties": { "class": "street", "len": 288.5829992169997, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41453886032104, 37.796890343938095 ], [ -122.41463005542755, 37.796877627236306 ], [ -122.41520404815674, 37.796805565884775 ], [ -122.41685092449188, 37.796602098159795 ], [ -122.41721034049988, 37.796559708979885 ] ] }, "properties": { "class": "street", "len": 301.33845822277254, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41533815860748, 37.79746259325332 ], [ -122.41526305675507, 37.79749650418472 ], [ -122.415252327919, 37.79752617623693 ], [ -122.4152898788452, 37.79770420829989 ], [ -122.41528451442719, 37.7977381191204 ], [ -122.4152684211731, 37.79778474647316 ], [ -122.41530060768127, 37.79781865725668 ], [ -122.4153220653534, 37.79785680686953 ], [ -122.41535425186157, 37.798013643959806 ], [ -122.41537570953369, 37.79804331580431 ], [ -122.41546154022218, 37.79806450997163 ] ] }, "properties": { "class": "street", "len": 100.08111124573138, "name": "Jones St", "name_de": "Jones St", "name_en": "Jones St", "name_es": "Jones St", "name_fr": "Jones St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4089115858078, 37.807168961812216 ], [ -122.40908861160278, 37.80800814249806 ], [ -122.40911543369293, 37.808135290254896 ] ] }, "properties": { "class": "street", "len": 138.3658536819864, "name": "Grant Ave", "name_de": "Grant Ave", "name_en": "Grant Ave", "name_es": "Grant Ave", "name_fr": "Grant Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40976452827454, 37.803239943579534 ], [ -122.40985572338104, 37.80371041956209 ], [ -122.40995228290558, 37.804176654065614 ], [ -122.41004884243013, 37.80463864717042 ], [ -122.41014003753662, 37.805104875814145 ], [ -122.41027414798737, 37.80575759097065 ], [ -122.41032779216766, 37.80603308589625 ], [ -122.41051018238068, 37.80696552263401 ], [ -122.41068184375763, 37.80782589699816 ], [ -122.41071403026581, 37.80790642413496 ] ] }, "properties": { "class": "street", "len": 666.4099969114848, "name": "Stockton St", "name_de": "Stockton St", "name_en": "Stockton St", "name_es": "Stockton St", "name_fr": "Stockton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43139922618866, 37.784494759909215 ], [ -122.43127584457397, 37.784511718352896 ], [ -122.43112564086914, 37.78453291640197 ], [ -122.43025124073029, 37.78461346893308 ], [ -122.43005812168121, 37.784630427349505 ], [ -122.42980599403381, 37.78465586496683 ], [ -122.4296450614929, 37.78467282337351 ], [ -122.42900133132935, 37.78475337575214 ], [ -122.42874383926392, 37.784787292516874 ], [ -122.42797136306763, 37.7848848031288 ] ] }, "properties": { "class": "main", "len": 385.5448650964588, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43541181087494, 37.783930889442026 ], [ -122.43455350399017, 37.78408775609415 ] ] }, "properties": { "class": "main", "len": 98.14221619599421, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4371337890625, 37.80434619315537 ], [ -122.43712842464447, 37.804341954682855 ], [ -122.43697822093964, 37.80359174121851 ], [ -122.43680119514465, 37.80276522603697 ], [ -122.4364686012268, 37.801048588029104 ], [ -122.4363774061203, 37.80089599605311 ], [ -122.4362701177597, 37.80081546127204 ] ] }, "properties": { "class": "street", "len": 785.0619269658225, "name": "Fillmore St", "name_de": "Fillmore St", "name_en": "Fillmore St", "name_es": "Fillmore St", "name_fr": "Fillmore St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4354600906372, 37.78410047499729 ], [ -122.4371337890625, 37.78388849299241 ] ] }, "properties": { "class": "main", "len": 272.08101361789215, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43019223213196, 37.78476609454075 ], [ -122.4305248260498, 37.784787292516874 ], [ -122.43117392063141, 37.78474065696133 ] ] }, "properties": { "class": "street", "len": 109.66823627003009, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43181228637695, 37.78723349812689 ], [ -122.43182301521301, 37.7871275116937 ], [ -122.43164062500001, 37.78629657278981 ] ] }, "properties": { "class": "main", "len": 133.6726327077986, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4362701177597, 37.80081546127204 ], [ -122.43622183799744, 37.800722210363176 ], [ -122.43607699871063, 37.79997196013091 ], [ -122.43606090545656, 37.79989566307024 ] ] }, "properties": { "class": "street", "len": 132.03542316140036, "name": "Fillmore St", "name_de": "Fillmore St", "name_en": "Fillmore St", "name_es": "Fillmore St", "name_fr": "Fillmore St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4325579404831, 37.790921731314675 ], [ -122.43308365345001, 37.79085390340043 ], [ -122.43377029895782, 37.79076063991673 ], [ -122.43419945240021, 37.790714008130706 ], [ -122.43584632873535, 37.79050204509613 ], [ -122.4371337890625, 37.790340952783204 ] ] }, "properties": { "class": "street", "len": 2761.88945843328, "name": "Clay St", "name_de": "Clay St", "name_en": "Clay St", "name_es": "Clay St", "name_fr": "Clay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4325579404831, 37.790921731314675 ], [ -122.43238091468811, 37.79004420286635 ], [ -122.43219316005707, 37.78911579185835 ] ] }, "properties": { "class": "street", "len": 257.4858164562641, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43308365345001, 37.7935584932212 ], [ -122.43473052978516, 37.79335077745011 ], [ -122.4363774061203, 37.79313882197963 ], [ -122.4371337890625, 37.79304132225904 ] ] }, "properties": { "class": "street", "len": 1834.1338993408526, "name": "Pacific Ave", "name_de": "Pacific Ave", "name_en": "Pacific Ave", "name_es": "Pacific Ave", "name_fr": "Pacific Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42959678173065, 37.80682141954372 ], [ -122.42955923080444, 37.8069146627519 ], [ -122.42952167987823, 37.806990952561925 ], [ -122.42943584918976, 37.80715200856877 ], [ -122.42933392524719, 37.80728339610364 ], [ -122.42923736572266, 37.807389353622796 ], [ -122.42910861968994, 37.807491072698134 ], [ -122.42843270301819, 37.808003904235726 ], [ -122.42837369441986, 37.80804204858794 ], [ -122.42830395698547, 37.80807595466228 ], [ -122.4282342195511, 37.80809714595084 ], [ -122.42815375328065, 37.80810986072104 ], [ -122.42806792259218, 37.80810986072104 ], [ -122.42734909057619, 37.808067478145155 ], [ -122.427134513855, 37.808050525108015 ], [ -122.4270272254944, 37.80804628684809 ], [ -122.42691993713379, 37.808050525108015 ], [ -122.4268126487732, 37.80806323988622 ], [ -122.42660880088808, 37.8081140989773 ] ] }, "properties": { "class": "service", "len": 422.9586987212778, "name": "McDowell Rd SW", "name_de": "McDowell Rd SW", "name_en": "McDowell Rd SW", "name_es": "McDowell Rd SW", "name_fr": "McDowell Rd SW", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41963505744934, 37.80199804212988 ], [ -122.41971552371977, 37.80198532630738 ], [ -122.4202251434326, 37.80192174716204 ] ] }, "properties": { "class": "street", "len": 66.71509629283327, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41993010044098, 37.78683074887198 ], [ -122.42002129554749, 37.78728013210937 ], [ -122.42011785507202, 37.787759188588936 ], [ -122.42021441459656, 37.788225523771885 ], [ -122.4203109741211, 37.78870033475276 ], [ -122.4204021692276, 37.78916666399651 ], [ -122.4204933643341, 37.789620272346355 ], [ -122.42069184780121, 37.79057835185864 ] ] }, "properties": { "class": "street", "len": 534.7932167900761, "name": "Polk St", "name_de": "Polk St", "name_en": "Polk St", "name_es": "Polk St", "name_fr": "Polk St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4065887928009, 37.80364684190173 ], [ -122.40765631198883, 37.80350697085634 ], [ -122.40782260894775, 37.80348577825057 ], [ -122.40816593170166, 37.80344339302085 ] ] }, "properties": { "class": "street", "len": 177.51311341677967, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4065887928009, 37.80364684190173 ], [ -122.40665853023529, 37.80393929868616 ], [ -122.40667998790741, 37.80404102251361 ] ] }, "properties": { "class": "street", "len": 55.86123294875488, "name": "Kearny St", "name_de": "Kearny St", "name_en": "Kearny St", "name_es": "Kearny St", "name_fr": "Kearny St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40499019622803, 37.8038333362169 ], [ -122.40517795085907, 37.80476580072879 ], [ -122.40524232387543, 37.805100637385195 ], [ -122.40534961223602, 37.80561772392276 ], [ -122.40537643432617, 37.80567282309445 ] ] }, "properties": { "class": "street", "len": 263.17872333876244, "name": "Montgomery St", "name_de": "Montgomery St", "name_en": "Montgomery St", "name_es": "Montgomery St", "name_fr": "Montgomery St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4063903093338, 37.804553878009884 ], [ -122.40667462348938, 37.804515731855865 ], [ -122.40671753883363, 37.8044945395396 ], [ -122.40676581859589, 37.8044394394888 ] ] }, "properties": { "class": "service", "len": 47.0867564088635, "name": "Chestnut St", "name_de": "Chestnut St", "name_en": "Chestnut St", "name_es": "Chestnut St", "name_fr": "Chestnut St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42565929889679, 37.80650354408551 ], [ -122.42561638355255, 37.80624924273377 ], [ -122.42554664611816, 37.80593136481263 ], [ -122.4255681037903, 37.80583388197601 ], [ -122.42547154426575, 37.80537613476155 ], [ -122.42541253566743, 37.80515573694268 ], [ -122.42536962032318, 37.805075206806336 ] ] }, "properties": { "class": "street", "len": 205.50846326299737, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40468442440033, 37.79911149426818 ], [ -122.40463614463808, 37.79915812075405 ], [ -122.40459859371187, 37.79917083706328 ], [ -122.40457177162172, 37.79917507583252 ], [ -122.40450203418733, 37.79914540444266 ], [ -122.40442693233491, 37.79917083706328 ], [ -122.40423381328587, 37.79910301672214 ], [ -122.40418016910557, 37.799124210585425 ] ] }, "properties": { "class": "path", "len": 79.03789381238825, "name": "Vallejo St Stairway", "name_de": "Vallejo St Stairway", "name_en": "Vallejo St Stairway", "name_es": "Vallejo St Stairway", "name_fr": "Vallejo St Stairway", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41173326969147, 37.79629689552161 ], [ -122.41176009178162, 37.79628841765255 ], [ -122.41254329681396, 37.79619516102869 ], [ -122.41281688213348, 37.79616124949991 ], [ -122.41336941719057, 37.796084948503236 ], [ -122.41424381732942, 37.79597897476603 ], [ -122.41501629352571, 37.79588995670932 ], [ -122.41666316986085, 37.79567800852345 ], [ -122.41700112819673, 37.79563561881331 ], [ -122.418310046196, 37.79547877667427 ], [ -122.4191200733185, 37.795360085104505 ], [ -122.4198228120804, 37.79527106630204 ], [ -122.41994082927705, 37.79524139334406 ], [ -122.4215877056122, 37.795029443297494 ] ] }, "properties": { "class": "street", "len": 1111.4952360344857, "name": "Pacific Ave", "name_de": "Pacific Ave", "name_en": "Pacific Ave", "name_es": "Pacific Ave", "name_fr": "Pacific Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41173326969147, 37.79629689552161 ], [ -122.41171717643739, 37.79629689552161 ], [ -122.4109071493149, 37.79639862987445 ], [ -122.41052627563478, 37.79644949699833 ], [ -122.4100971221924, 37.79650036408717 ] ] }, "properties": { "class": "street", "len": 184.5252029702847, "name": "Pacific Ave", "name_de": "Pacific Ave", "name_en": "Pacific Ave", "name_es": "Pacific Ave", "name_fr": "Pacific Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41009712219238, 37.79650036408717 ], [ -122.41016685962677, 37.79692001623378 ], [ -122.41022050380707, 37.79721249965347 ], [ -122.41025805473328, 37.79741596569723 ] ] }, "properties": { "class": "street", "len": 130.10096884827317, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41025805473328, 37.79741596569721 ], [ -122.41045653820038, 37.79837394412226 ], [ -122.41064965724944, 37.799314955081435 ], [ -122.41084277629851, 37.800251715345794 ] ] }, "properties": { "class": "street", "len": 405.18576569782863, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40787088871002, 37.78549954098075 ], [ -122.40805327892303, 37.7864322369225 ], [ -122.40823566913605, 37.78737339998601 ] ] }, "properties": { "class": "street", "len": 267.55082448304705, "name": "Powell St", "name_de": "Powell St", "name_en": "Powell St", "name_es": "Powell St", "name_fr": "Powell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42283761501312, 37.78454139561992 ], [ -122.42126047611238, 37.78474913615547 ], [ -122.42112100124359, 37.78476609454075 ] ] }, "properties": { "class": "main", "len": 194.0819786769891, "name": "O'Farrell St", "name_de": "O'Farrell St", "name_en": "O'Farrell St", "name_es": "O'Farrell St", "name_fr": "O'Farrell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42289662361145, 37.800603527218016 ], [ -122.42327749729156, 37.800955337414564 ], [ -122.42340624332428, 37.801023156054995 ] ] }, "properties": { "class": "street", "len": 82.49214824736018, "name": "Grenard Ter", "name_de": "Grenard Ter", "name_en": "Grenard Ter", "name_es": "Grenard Ter", "name_fr": "Grenard Ter", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42149651050568, 37.78663149316584 ], [ -122.41993010044098, 37.78683074887198 ], [ -122.41827249526978, 37.787042722437654 ], [ -122.41699039936066, 37.78720382194092 ], [ -122.4166417121887, 37.787250455942115 ], [ -122.41500020027159, 37.78745818886262 ], [ -122.41335868835449, 37.787665921199185 ], [ -122.41272568702698, 37.787746470315426 ], [ -122.41254329681396, 37.78776766743669 ], [ -122.4123340845108, 37.78779310397418 ], [ -122.41170108318329, 37.787873652951795 ], [ -122.41007566452026, 37.78808138412046 ], [ -122.40844488143921, 37.78828911470517 ], [ -122.40841805934907, 37.78829335409877 ], [ -122.40839660167696, 37.78829335409877 ], [ -122.4083322286606, 37.78830183288525 ], [ -122.40776360034944, 37.78837390253111 ], [ -122.40770459175111, 37.78838238130836 ], [ -122.40752220153813, 37.78840781763425 ], [ -122.40743100643162, 37.788416296407604 ], [ -122.40677118301393, 37.78850108408762 ] ] }, "properties": { "class": "street", "len": 1659.7996155951957, "name": "Post St", "name_de": "Post St", "name_en": "Post St", "name_es": "Post St", "name_fr": "Post St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41809010505676, 37.78610155516276 ], [ -122.41818130016327, 37.78656790080614 ], [ -122.41827249526978, 37.787042722437654 ], [ -122.41836905479431, 37.787487864946456 ], [ -122.41846561431885, 37.78796692007934 ], [ -122.41856217384338, 37.78843325395144 ], [ -122.41865873336793, 37.78891230295566 ], [ -122.41875529289247, 37.78937863086172 ], [ -122.41884648799898, 37.78983223791039 ], [ -122.4190664291382, 37.79078183617337 ], [ -122.41907179355621, 37.7907987931743 ] ] }, "properties": { "class": "street", "len": 670.4535563453252, "name": "Larkin St", "name_de": "Larkin St", "name_en": "Larkin St", "name_es": "Larkin St", "name_fr": "Larkin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40580022335052, 37.791778053376625 ], [ -122.40634739398956, 37.79171022624846 ] ] }, "properties": { "class": "street", "len": 61.44369210900245, "name": "Vinton Ct", "name_de": "Vinton Ct", "name_en": "Vinton Ct", "name_es": "Vinton Ct", "name_fr": "Vinton Ct", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41789162158966, 37.801718293529156 ], [ -122.4185299873352, 37.801633521016726 ] ] }, "properties": { "class": "street", "len": 72.06703823484058, "name": "Lurmont Ter", "name_de": "Lurmont Ter", "name_en": "Lurmont Ter", "name_es": "Lurmont Ter", "name_fr": "Lurmont Ter", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42246747016907, 37.80409612286167 ], [ -122.42253720760345, 37.804473347217254 ] ] }, "properties": { "class": "street_limited", "len": 53.971308117745814, "name": "N View Ct", "name_de": "N View Ct", "name_en": "N View Ct", "name_es": "N View Ct", "name_fr": "N View Ct", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42002665996552, 37.79877239166739 ], [ -122.42063820362091, 37.798696093367674 ] ] }, "properties": { "class": "street", "len": 69.02487957363917, "name": "Rockland St", "name_de": "Rockland St", "name_en": "Rockland St", "name_es": "Rockland St", "name_fr": "Rockland St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40671753883362, 37.79236305977244 ], [ -122.40681946277617, 37.79284208329947 ] ] }, "properties": { "class": "street", "len": 68.70235221567258, "name": "Sabin Pl", "name_de": "Sabin Pl", "name_en": "Sabin Pl", "name_es": "Sabin Pl", "name_fr": "Sabin Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41568148136139, 37.79914540444266 ], [ -122.41468906402588, 37.799276806221656 ] ] }, "properties": { "class": "street", "len": 111.81284586290512, "name": "Macondray Ln", "name_de": "Macondray Ln", "name_en": "Macondray Ln", "name_es": "Macondray Ln", "name_fr": "Macondray Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41337478160858, 37.80440977021365 ], [ -122.4150002002716, 37.80420632343443 ], [ -122.4150162935257, 37.80420632343443 ] ] }, "properties": { "class": "service", "len": 185.1203877367229, "name": "Water St", "name_de": "Water St", "name_en": "Water St", "name_es": "Water St", "name_fr": "Water St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43333578109741, 37.80306616340459 ], [ -122.43352890014648, 37.804032545533346 ], [ -122.43356645107268, 37.8042105619147 ], [ -122.43365764617919, 37.8046640778996 ], [ -122.43371129035948, 37.804922623149274 ], [ -122.43373811244963, 37.804986199711365 ], [ -122.43378639221187, 37.80504129935424 ] ] }, "properties": { "class": "street", "len": 284.20874152874563, "name": "Buchanan St", "name_de": "Buchanan St", "name_en": "Buchanan St", "name_es": "Buchanan St", "name_fr": "Buchanan St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40809082984924, 37.803100071763524 ], [ -122.40889012813567, 37.80298986954011 ] ] }, "properties": { "class": "service", "len": 90.41847709297545, "name": "Edgardo Pl", "name_de": "Edgardo Pl", "name_en": "Edgardo Pl", "name_es": "Edgardo Pl", "name_fr": "Edgardo Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43208587169647, 37.805185405918145 ], [ -122.4321448802948, 37.80520235961308 ], [ -122.43220925331116, 37.80520235961308 ], [ -122.43273496627806, 37.80513878323706 ], [ -122.43359863758086, 37.805028584055684 ], [ -122.43369519710541, 37.805028584055684 ], [ -122.4337863922119, 37.80504129935424 ], [ -122.43387222290039, 37.805075206806336 ], [ -122.43394732475281, 37.805113352671334 ], [ -122.43549764156342, 37.80609666150237 ], [ -122.43593215942381, 37.8063721551631 ], [ -122.4360018968582, 37.806410300358195 ], [ -122.43608236312865, 37.80644844553362 ] ] }, "properties": { "class": "main", "len": 515.8117501844065, "name": "Marina Blvd", "name_de": "Marina Blvd", "name_en": "Marina Blvd", "name_es": "Marina Blvd", "name_fr": "Marina Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4082088470459, 37.80207009841604 ], [ -122.40823030471802, 37.80218030201182 ], [ -122.40828931331635, 37.80246852602342 ] ] }, "properties": { "class": "service", "len": 56.65936077227183, "name": "Kramer Pl", "name_de": "Kramer Pl", "name_en": "Kramer Pl", "name_es": "Kramer Pl", "name_fr": "Kramer Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4160248041153, 37.790692811854626 ], [ -122.4161159992218, 37.79115065006551 ], [ -122.4161159992218, 37.79116336775309 ] ] }, "properties": { "class": "street", "len": 66.88687589334053, "name": "Helen Pl", "name_de": "Helen Pl", "name_en": "Helen Pl", "name_es": "Helen Pl", "name_fr": "Helen Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.79268947437134 ], [ -122.40444302558899, 37.79265556123338 ], [ -122.40566074848175, 37.79249871276787 ], [ -122.40594506263733, 37.792460560388086 ] ] }, "properties": { "class": "street", "len": 1081.7516735653962, "name": "California St", "name_de": "California St", "name_en": "California St", "name_es": "California St", "name_fr": "California St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41417407989502, 37.795618662922415 ], [ -122.4142438173294, 37.79597897476603 ] ] }, "properties": { "class": "path", "len": 51.62398376794005, "name": "Phoenix Ter", "name_de": "Phoenix Ter", "name_en": "Phoenix Ter", "name_es": "Phoenix Ter", "name_fr": "Phoenix Ter", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41897523403168, 37.79874272011575 ], [ -122.41998910903932, 37.798598600981116 ] ] }, "properties": { "class": "street", "len": 114.79721686527758, "name": "Russell St", "name_de": "Russell St", "name_en": "Russell St", "name_es": "Russell St", "name_fr": "Russell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43378639221191, 37.80504129935424 ], [ -122.43386149406433, 37.80499467658216 ], [ -122.43393659591676, 37.80496076909309 ], [ -122.43402242660524, 37.804931100027375 ], [ -122.43536353111269, 37.80476156228035 ], [ -122.43701577186584, 37.804553878009884 ], [ -122.43713378906251, 37.80453268570453 ] ] }, "properties": { "class": "street", "len": 385.39758175987913, "name": "Beach St", "name_de": "Beach St", "name_en": "Beach St", "name_es": "Beach St", "name_fr": "Beach St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41100907325745, 37.795093028375305 ], [ -122.41108417510986, 37.79547029871132 ] ] }, "properties": { "class": "street", "len": 53.50308869518279, "name": "Doric Alley", "name_de": "Doric Alley", "name_en": "Doric Alley", "name_es": "Doric Alley", "name_fr": "Doric Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40743637084961, 37.80257872902474 ], [ -122.40750074386597, 37.802888144264855 ] ] }, "properties": { "class": "street", "len": 44.440342033854215, "name": "Child St", "name_de": "Child St", "name_en": "Child St", "name_es": "Child St", "name_fr": "Child St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41387367248535, 37.80270588612963 ], [ -122.41368055343628, 37.801790350088226 ] ] }, "properties": { "class": "street", "len": 130.50833613184966, "name": "Jansen St", "name_de": "Jansen St", "name_en": "Jansen St", "name_es": "Jansen St", "name_fr": "Jansen St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42828786373138, 37.80700790584237 ], [ -122.42810010910034, 37.80644844553362 ], [ -122.42806792259216, 37.8063891085856 ], [ -122.42777824401855, 37.80601613239205 ], [ -122.42770850658417, 37.805910172902585 ], [ -122.42761194705963, 37.80579149809386 ], [ -122.42755830287933, 37.80573639901071 ], [ -122.427499294281, 37.805689776677475 ], [ -122.42723643779755, 37.80551600226697 ], [ -122.42712914943695, 37.80543123411352 ], [ -122.42689311504364, 37.80544818775199 ], [ -122.42672145366669, 37.80546937979462 ], [ -122.42648541927338, 37.80551176386163 ], [ -122.42632985115051, 37.80552871748163 ], [ -122.42621183395386, 37.80551600226699 ], [ -122.42610991001129, 37.80546514138659 ], [ -122.42592215538025, 37.80530408170084 ], [ -122.42583632469176, 37.80520235961308 ], [ -122.42576122283934, 37.805087922096874 ], [ -122.42569684982298, 37.80493957690451 ], [ -122.42565393447875, 37.80481242364534 ], [ -122.4255734682083, 37.80453268570453 ], [ -122.42573976516722, 37.804312285368546 ], [ -122.42616355419158, 37.80425294670417 ], [ -122.42657661437987, 37.80421480039474 ], [ -122.42666244506835, 37.80435043162762 ], [ -122.4268341064453, 37.80506672994478 ], [ -122.42680728435516, 37.805164213794036 ] ] }, "properties": { "class": "street", "len": 797.129180519644, "name": "Pope Rd", "name_de": "Pope Rd", "name_en": "Pope Rd", "name_es": "Pope Rd", "name_fr": "Pope Rd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41502702236176, 37.791799249341395 ], [ -122.41505920886993, 37.79193914255643 ], [ -122.41511821746826, 37.792235884863004 ], [ -122.41512358188628, 37.79229523318131 ], [ -122.41521477699278, 37.79274458318729 ] ] }, "properties": { "class": "street", "len": 134.59077525889847, "name": "Leroy Pl", "name_de": "Leroy Pl", "name_en": "Leroy Pl", "name_es": "Leroy Pl", "name_fr": "Leroy Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40468442440033, 37.79911149426818 ], [ -122.40565538406372, 37.79898433097531 ] ] }, "properties": { "class": "street", "len": 109.59860218135036, "name": "Vallejo St", "name_de": "Vallejo St", "name_en": "Vallejo St", "name_es": "Vallejo St", "name_fr": "Vallejo St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41441011428833, 37.79789071761994 ], [ -122.41482853889465, 37.797831373796456 ], [ -122.41508603096008, 37.79780170186684 ], [ -122.41526842117308, 37.797784746473134 ] ] }, "properties": { "class": "street", "len": 96.93284389228506, "name": "Vallejo St", "name_de": "Vallejo St", "name_en": "Vallejo St", "name_es": "Vallejo St", "name_fr": "Vallejo St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40541398525238, 37.79962862273726 ], [ -122.40547835826874, 37.79996348268362 ] ] }, "properties": { "class": "path", "len": 48.002705132066666, "name": "Reno Pl", "name_de": "Reno Pl", "name_en": "Reno Pl", "name_es": "Reno Pl", "name_fr": "Reno Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43122220039368, 37.80098500807743 ], [ -122.43286371231079, 37.80077307450988 ], [ -122.43451058864594, 37.80056114033426 ] ] }, "properties": { "class": "street", "len": 371.7554022852868, "name": "Magnolia St", "name_de": "Magnolia St", "name_en": "Magnolia St", "name_es": "Magnolia St", "name_fr": "Magnolia St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41185665130615, 37.799806649733185 ], [ -122.41239309310913, 37.799721875026755 ], [ -122.41241991519928, 37.79971763628886 ] ] }, "properties": { "class": "service", "len": 64.17554773211342, "name": "Winter Pl", "name_de": "Winter Pl", "name_en": "Winter Pl", "name_es": "Winter Pl", "name_fr": "Winter Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40636885166168, 37.800794267894 ], [ -122.4065512418747, 37.80175220250688 ] ] }, "properties": { "class": "service", "len": 136.59835467473067, "name": "Genoa Pl", "name_de": "Genoa Pl", "name_en": "Genoa Pl", "name_es": "Genoa Pl", "name_fr": "Genoa Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41989254951477, 37.79812809243717 ], [ -122.41998910903932, 37.798598600981116 ], [ -122.42002665996552, 37.79877239166739 ], [ -122.42008566856384, 37.799064867752875 ], [ -122.42014467716217, 37.79935310392155 ] ] }, "properties": { "class": "street", "len": 174.46837028767197, "name": "Eastman Pl", "name_de": "Eastman Pl", "name_en": "Eastman Pl", "name_es": "Eastman Pl", "name_fr": "Eastman Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42183446884155, 37.80354935604959 ], [ -122.42193102836609, 37.803557833085314 ], [ -122.42217242717743, 37.80355359456757 ], [ -122.4224352836609, 37.80354087901289 ] ] }, "properties": { "class": "street", "len": 67.40971332002576, "name": "Francisco St", "name_de": "Francisco St", "name_en": "Francisco St", "name_es": "Francisco St", "name_fr": "Francisco St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42001593112946, 37.80388843671987 ], [ -122.41856217384338, 37.80407916891281 ], [ -122.41849780082703, 37.8040706919369 ], [ -122.41845488548279, 37.80405373798221 ] ] }, "properties": { "class": "street", "len": 176.51621827234703, "name": "Francisco St", "name_de": "Francisco St", "name_en": "Francisco St", "name_es": "Francisco St", "name_fr": "Francisco St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40691065788269, 37.80296867678598 ], [ -122.40750074386597, 37.802888144264855 ] ] }, "properties": { "class": "service", "len": 66.72982616574079, "name": "Telegraph Pl", "name_de": "Telegraph Pl", "name_en": "Telegraph Pl", "name_es": "Telegraph Pl", "name_fr": "Telegraph Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41010785102844, 37.801862406576994 ], [ -122.41053700447083, 37.80181578179817 ], [ -122.41060674190521, 37.802171824817975 ] ] }, "properties": { "class": "service", "len": 99.27942201758228, "name": "Brant Alley", "name_de": "Brant Alley", "name_en": "Brant Alley", "name_es": "Brant Alley", "name_fr": "Brant Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40426063537598, 37.80204042818909 ], [ -122.40430355072021, 37.80228626685273 ], [ -122.40440011024475, 37.80265926188326 ] ] }, "properties": { "class": "path", "len": 88.4763645184286, "name": "Darrell Pl", "name_de": "Darrell Pl", "name_en": "Darrell Pl", "name_es": "Darrell Pl", "name_fr": "Darrell Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41000592708588, 37.79605527587214 ], [ -122.41162061691284, 37.79583908920016 ], [ -122.41163671016692, 37.79583908920016 ] ] }, "properties": { "class": "street", "len": 184.2639063803854, "name": "John St", "name_de": "John St", "name_en": "John St", "name_es": "John St", "name_fr": "John St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40630984306335, 37.79756856486228 ], [ -122.40694820880891, 37.79748378758728 ] ] }, "properties": { "class": "street_limited", "len": 72.03799344842889, "name": "Jack Kerouac Alley", "name_de": "Jack Kerouac Alley", "name_en": "Jack Kerouac Alley", "name_es": "Jack Kerouac Alley", "name_fr": "Jack Kerouac Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41903424263, 37.80279489597278 ], [ -122.41892158985138, 37.802269312488406 ], [ -122.41892158985138, 37.802239642341455 ], [ -122.41892695426941, 37.802214210777436 ], [ -122.41894841194153, 37.80218877920469 ], [ -122.41896986961365, 37.802171824817975 ], [ -122.41899669170378, 37.802159109025396 ], [ -122.41900205612181, 37.80214639323063 ], [ -122.41900742053984, 37.80213367743367 ] ] }, "properties": { "class": "street", "len": 97.88653388819017, "name": "Montclair Ter", "name_de": "Montclair Ter", "name_en": "Montclair Ter", "name_es": "Montclair Ter", "name_fr": "Montclair Ter", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41190493106842, 37.79263436551425 ], [ -122.41181910037994, 37.792210449854856 ], [ -122.41171717643738, 37.79172294383976 ] ] }, "properties": { "class": "street", "len": 130.07598720782354, "name": "Cushman St", "name_de": "Cushman St", "name_en": "Cushman St", "name_es": "Cushman St", "name_fr": "Cushman St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40644931793213, 37.79888260018339 ], [ -122.40654587745667, 37.79932767136367 ] ] }, "properties": { "class": "service", "len": 63.568313647284086, "name": "Pollard Pl", "name_de": "Pollard Pl", "name_en": "Pollard Pl", "name_es": "Pollard Pl", "name_fr": "Pollard Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40459859371185, 37.79766181975238 ], [ -122.40469515323639, 37.79811537594843 ] ] }, "properties": { "class": "service", "len": 65.06627390580476, "name": "Rowland St", "name_de": "Rowland St", "name_en": "Rowland St", "name_es": "Rowland St", "name_fr": "Rowland St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41530060768127, 37.79728879948555 ], [ -122.41689383983612, 37.79708957198048 ], [ -122.41694211959839, 37.79707261642332 ] ] }, "properties": { "class": "street", "len": 185.5156224954559, "name": "Glover St", "name_de": "Glover St", "name_en": "Glover St", "name_es": "Glover St", "name_fr": "Glover St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41183519363403, 37.79505911634061 ], [ -122.41189956665039, 37.795381280041674 ] ] }, "properties": { "class": "service", "len": 45.97486487176649, "name": "Marcy Pl", "name_de": "Marcy Pl", "name_en": "Marcy Pl", "name_es": "Marcy Pl", "name_fr": "Marcy Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.79605103692387 ], [ -122.40435719490051, 37.79602984217886 ], [ -122.4045878648758, 37.79600016952563 ] ] }, "properties": { "class": "street", "len": 57.186299473279746, "name": "Gibb St", "name_de": "Gibb St", "name_en": "Gibb St", "name_es": "Gibb St", "name_fr": "Gibb St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40965723991394, 37.79847143680532 ], [ -122.40974843502045, 37.798937704379746 ] ] }, "properties": { "class": "service", "len": 66.39165308980479, "name": "Emery Ln", "name_de": "Emery Ln", "name_en": "Emery Ln", "name_es": "Emery Ln", "name_fr": "Emery Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41000592708588, 37.794313047639136 ], [ -122.41008639335631, 37.794707278062184 ] ] }, "properties": { "class": "street", "len": 55.974480792999394, "name": "Codman Pl", "name_de": "Codman Pl", "name_en": "Codman Pl", "name_es": "Codman Pl", "name_fr": "Codman Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4080640077591, 37.791205760029214 ], [ -122.40796744823456, 37.790730965147205 ], [ -122.40787088871002, 37.79029432073233 ] ] }, "properties": { "class": "street", "len": 130.6125469251196, "name": "Dashiell Hammett St", "name_de": "Dashiell Hammett St", "name_en": "Dashiell Hammett St", "name_es": "Dashiell Hammett St", "name_fr": "Dashiell Hammett St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42676973342896, 37.7996922038565 ], [ -122.42685556411743, 37.80010336043956 ] ] }, "properties": { "class": "street", "len": 58.524717001247815, "name": "Imperial Ave", "name_de": "Imperial Ave", "name_en": "Imperial Ave", "name_es": "Imperial Ave", "name_fr": "Imperial Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4203485250473, 37.799030957541454 ], [ -122.42044508457184, 37.79950569908492 ] ] }, "properties": { "class": "street", "len": 67.78662109921467, "name": "Moore Pl", "name_de": "Moore Pl", "name_en": "Moore Pl", "name_es": "Moore Pl", "name_fr": "Moore Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4155580997467, 37.80395201417224 ], [ -122.41566002368927, 37.803913867707394 ], [ -122.41600334644318, 37.80387148272332 ], [ -122.41630375385284, 37.8038630057236 ] ] }, "properties": { "class": "service", "len": 85.27210630659062, "name": "Houston St", "name_de": "Houston St", "name_en": "Houston St", "name_es": "Houston St", "name_fr": "Houston St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40755438804626, 37.79502520429035 ], [ -122.40764021873474, 37.79558899010402 ] ] }, "properties": { "class": "path", "len": 79.80171739993848, "name": "Old Chinatown Ln", "name_de": "Old Chinatown Ln", "name_en": "Old Chinatown Ln", "name_es": "Old Chinatown Ln", "name_fr": "Old Chinatown Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40869700908661, 37.79540247497274 ], [ -122.408766746521, 37.79576278787075 ] ] }, "properties": { "class": "service", "len": 51.374156927156754, "name": "James Pl", "name_de": "James Pl", "name_en": "James Pl", "name_es": "James Pl", "name_fr": "James Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41783261299133, 37.79839937700852 ], [ -122.41792917251588, 37.79886564503779 ] ] }, "properties": { "class": "path", "len": 66.21619514976571, "name": "Hamlin St", "name_de": "Hamlin St", "name_en": "Hamlin St", "name_es": "Hamlin St", "name_fr": "Hamlin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4220597743988, 37.797373576984334 ], [ -122.42317020893096, 37.79724217181975 ] ] }, "properties": { "class": "street", "len": 124.81293402591506, "name": "Bonita St", "name_de": "Bonita St", "name_en": "Bonita St", "name_es": "Bonita St", "name_fr": "Bonita St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41510212421417, 37.79343132036943 ], [ -122.41517186164856, 37.793770447487695 ] ] }, "properties": { "class": "path", "len": 48.397787139902604, "name": "Priest St", "name_de": "Priest St", "name_en": "Priest St", "name_es": "Priest St", "name_fr": "Priest St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41234481334686, 37.79532193420228 ], [ -122.41251647472383, 37.796152771615276 ], [ -122.41254329681396, 37.79619516102869 ] ] }, "properties": { "class": "service", "len": 125.00729047926681, "name": "Auburn St", "name_de": "Auburn St", "name_en": "Auburn St", "name_es": "Auburn St", "name_fr": "Auburn St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41054773330688, 37.79464369265235 ], [ -122.41046726703644, 37.79427065714581 ], [ -122.4103707075119, 37.793808599191095 ], [ -122.41036534309387, 37.7937492520884 ], [ -122.4102795124054, 37.79330838640464 ] ] }, "properties": { "class": "service", "len": 190.7065453498937, "name": "Wetmore St", "name_de": "Wetmore St", "name_en": "Wetmore St", "name_es": "Wetmore St", "name_fr": "Wetmore St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4171245098114, 37.79609342639566 ], [ -122.41717278957367, 37.79634352378406 ] ] }, "properties": { "class": "street", "len": 35.51528403336682, "name": "Cyrus Pl", "name_de": "Cyrus Pl", "name_en": "Cyrus Pl", "name_es": "Cyrus Pl", "name_fr": "Cyrus Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40577340126038, 37.79568224749312 ], [ -122.40586459636688, 37.79613157689948 ] ] }, "properties": { "class": "street", "len": 63.71686511470373, "name": "Cooper Alley", "name_de": "Cooper Alley", "name_en": "Cooper Alley", "name_es": "Cooper Alley", "name_fr": "Cooper Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42229580879211, 37.80259144474508 ], [ -122.4224352836609, 37.80257449045081 ], [ -122.42300927639009, 37.80250243465672 ], [ -122.42309510707857, 37.802489718921066 ], [ -122.42319703102113, 37.80247700318321 ], [ -122.42455422878267, 37.802303221213165 ], [ -122.42467224597932, 37.8022905054432 ] ] }, "properties": { "class": "street", "len": 267.7905322185892, "name": "Chestnut St", "name_de": "Chestnut St", "name_en": "Chestnut St", "name_es": "Chestnut St", "name_fr": "Chestnut St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.801574180200134 ], [ -122.40448594093323, 37.80152755523935 ] ] }, "properties": { "class": "street", "len": 115.31027630198597, "name": "Alta St", "name_de": "Alta St", "name_en": "Alta St", "name_es": "Alta St", "name_fr": "Alta St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40770995616913, 37.799649816449765 ], [ -122.40791916847229, 37.800603527218016 ] ] }, "properties": { "class": "service", "len": 136.54025963021408, "name": "Bannam Pl", "name_de": "Bannam Pl", "name_en": "Bannam Pl", "name_es": "Bannam Pl", "name_fr": "Bannam Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42712914943695, 37.80543123411352 ], [ -122.4273008108139, 37.805935603193895 ], [ -122.4275529384613, 37.80671122287313 ], [ -122.42753148078918, 37.80676208289539 ], [ -122.42752075195312, 37.80681718121327 ], [ -122.42752075195312, 37.80687227949006 ], [ -122.42753684520721, 37.80692737772573 ], [ -122.4275690317154, 37.80697823759909 ], [ -122.42760121822357, 37.80701214416185 ], [ -122.42765486240387, 37.8070333357557 ], [ -122.42770850658417, 37.807071480609274 ], [ -122.42774605751038, 37.80711386375682 ] ] }, "properties": { "class": "street", "len": 253.93221485712456, "name": "Funston Rd", "name_de": "Funston Rd", "name_en": "Funston Rd", "name_es": "Funston Rd", "name_fr": "Funston Rd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4072915315628, 37.79505911634061 ], [ -122.407329082489, 37.79537280206753 ], [ -122.40744173526762, 37.79593234627349 ] ] }, "properties": { "class": "service", "len": 124.00488861903506, "name": "Ross Alley", "name_de": "Ross Alley", "name_en": "Ross Alley", "name_es": "Ross Alley", "name_fr": "Ross Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42770850658417, 37.805910172902585 ], [ -122.4278211593628, 37.80581692842606 ], [ -122.4279123544693, 37.80577878292446 ], [ -122.42864191532135, 37.80565163111018 ] ] }, "properties": { "class": "street", "len": 113.16274315251536, "name": "Schofield Rd", "name_de": "Schofield Rd", "name_en": "Schofield Rd", "name_es": "Schofield Rd", "name_fr": "Schofield Rd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41902351379395, 37.79490227297768 ], [ -122.41912007331848, 37.795360085104505 ] ] }, "properties": { "class": "street", "len": 65.80607038887653, "name": "McCormick St", "name_de": "McCormick St", "name_en": "McCormick St", "name_es": "McCormick St", "name_fr": "McCormick St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40883111953735, 37.79210023138502 ], [ -122.40892231464386, 37.792562300023754 ] ] }, "properties": { "class": "service", "len": 66.23542405709249, "name": "Miles Ct", "name_de": "Miles Ct", "name_en": "Miles Ct", "name_es": "Miles Ct", "name_fr": "Miles Ct", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41649150848389, 37.79952689283269 ], [ -122.41658806800842, 37.79999739246696 ] ] }, "properties": { "class": "street", "len": 67.1215762632869, "name": "Black Pl", "name_de": "Black Pl", "name_en": "Black Pl", "name_es": "Black Pl", "name_fr": "Black Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41243064403534, 37.799764262392124 ], [ -122.41245210170746, 37.79976002365667 ], [ -122.41256475448608, 37.79976002365667 ], [ -122.41301000118256, 37.7996922038565 ] ] }, "properties": { "class": "path", "len": 65.80191823104533, "name": "Webb Pl", "name_de": "Webb Pl", "name_en": "Webb Pl", "name_es": "Webb Pl", "name_fr": "Webb Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43248283863068, 37.798908032894516 ], [ -122.43412971496582, 37.798696093367674 ], [ -122.43577122688293, 37.79848839204139 ], [ -122.4371337890625, 37.79831460068698 ] ] }, "properties": { "class": "street", "len": 556.1986596304383, "name": "Pixley St", "name_de": "Pixley St", "name_en": "Pixley St", "name_es": "Pixley St", "name_fr": "Pixley St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42028415203094, 37.80523626699121 ], [ -122.42078304290771, 37.805172690644405 ] ] }, "properties": { "class": "street", "len": 56.334731738702594, "name": "Bergen Pl", "name_de": "Bergen Pl", "name_en": "Bergen Pl", "name_es": "Bergen Pl", "name_fr": "Bergen Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41833686828613, 37.798640988991096 ], [ -122.41893768310547, 37.79856892935968 ] ] }, "properties": { "class": "street", "len": 67.95594160899057, "name": "Delgado Pl", "name_de": "Delgado Pl", "name_en": "Delgado Pl", "name_es": "Delgado Pl", "name_fr": "Delgado Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.412548661232, 37.80034072814651 ], [ -122.41257011890411, 37.800336489444156 ], [ -122.41312265396118, 37.800251715345794 ] ] }, "properties": { "class": "street", "len": 65.0941469152847, "name": "Kent St", "name_de": "Kent St", "name_en": "Kent St", "name_es": "Kent St", "name_fr": "Kent St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4058324098587, 37.8027440332184 ], [ -122.40584313869476, 37.802777941725196 ], [ -122.40585923194884, 37.80282032733683 ], [ -122.40588605403899, 37.80286695148153 ], [ -122.40591287612914, 37.80290509848712 ], [ -122.40593969821926, 37.8029262912595 ], [ -122.40596115589138, 37.80293476836673 ], [ -122.40599870681758, 37.802939006920006 ], [ -122.40603625774379, 37.80293052981323 ], [ -122.40606307983393, 37.802917814151286 ], [ -122.40607917308802, 37.80290085993192 ], [ -122.4060952663421, 37.802871190038694 ], [ -122.4060952663421, 37.80284999725051 ], [ -122.40608990192408, 37.802816088776765 ], [ -122.40606307983393, 37.802790657411244 ], [ -122.40602016448969, 37.80276946459998 ], [ -122.40597724914545, 37.8027567489103 ], [ -122.40593969821924, 37.80275251034657 ], [ -122.40590751171106, 37.80274827178258 ], [ -122.40586996078487, 37.80274827178258 ] ] }, "properties": { "class": "street", "len": 86.23294703460996, "name": "Telegraph Hill Blvd", "name_de": "Telegraph Hill Blvd", "name_en": "Telegraph Hill Blvd", "name_es": "Telegraph Hill Blvd", "name_fr": "Telegraph Hill Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4062991142273, 37.801786111469056 ], [ -122.40655124187471, 37.80175220250688 ], [ -122.40700185298921, 37.80169710041017 ], [ -122.40748465061189, 37.801633521016726 ], [ -122.40779042243959, 37.80159537335438 ], [ -122.40815520286561, 37.801548748406965 ], [ -122.40857362747197, 37.80149364615848 ], [ -122.40894913673405, 37.801447021146856 ], [ -122.40938365459444, 37.80137920289562 ], [ -122.41014003753664, 37.80128171405037 ], [ -122.4105477333069, 37.80123085025394 ], [ -122.41102516651155, 37.801175747768255 ] ] }, "properties": { "class": "street", "len": 533.1610983328536, "name": "Filbert St", "name_de": "Filbert St", "name_en": "Filbert St", "name_es": "Filbert St", "name_fr": "Filbert St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41275787353516, 37.80143006658992 ], [ -122.41279006004333, 37.80143006658992 ], [ -122.41439938545227, 37.80122661160265 ] ] }, "properties": { "class": "street", "len": 185.27470093271157, "name": "Valparaiso St", "name_de": "Valparaiso St", "name_en": "Valparaiso St", "name_es": "Valparaiso St", "name_fr": "Valparaiso St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4148553609848, 37.80116727045915 ], [ -122.41605699062349, 37.801010440064665 ] ] }, "properties": { "class": "street", "len": 135.58526800389436, "name": "Valparaiso St", "name_de": "Valparaiso St", "name_en": "Valparaiso St", "name_es": "Valparaiso St", "name_fr": "Valparaiso St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40968406200409, 37.796983599684395 ], [ -122.41016685962677, 37.79692001623378 ] ] }, "properties": { "class": "service", "len": 53.878341660583025, "name": "Fisher Alley", "name_de": "Fisher Alley", "name_en": "Fisher Alley", "name_es": "Fisher Alley", "name_fr": "Fisher Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4089115858078, 37.79904791264911 ], [ -122.40974843502046, 37.79893770437972 ] ] }, "properties": { "class": "service", "len": 94.45877936906446, "name": "Card Alley", "name_de": "Card Alley", "name_en": "Card Alley", "name_es": "Card Alley", "name_fr": "Card Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4297684431076, 37.799149643213354 ], [ -122.43082523345947, 37.7990140024299 ] ] }, "properties": { "class": "street", "len": 119.18739866285387, "name": "Harris Pl", "name_de": "Harris Pl", "name_en": "Harris Pl", "name_es": "Harris Pl", "name_fr": "Harris Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40533351898193, 37.791070104659966 ], [ -122.40541398525237, 37.79146435238699 ], [ -122.40544617176056, 37.7915364189484 ], [ -122.4054729938507, 37.7916084854395 ], [ -122.40566074848174, 37.792498712767845 ] ] }, "properties": { "class": "street", "len": 204.3901159191687, "name": "Quincy St", "name_de": "Quincy St", "name_en": "Quincy St", "name_es": "Quincy St", "name_fr": "Quincy St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.79578822165596 ], [ -122.40464687347412, 37.795737354076756 ] ] }, "properties": { "class": "street", "len": 99.14472497850826, "name": "Ils Ln", "name_de": "Ils Ln", "name_en": "Ils Ln", "name_es": "Ils Ln", "name_fr": "Ils Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41416871547699, 37.80841925278804 ], [ -122.41397559642793, 37.807491072698134 ] ] }, "properties": { "class": "street", "len": 132.50103169390346, "name": "Mason St", "name_de": "Mason St", "name_en": "Mason St", "name_es": "Mason St", "name_fr": "Mason St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40893304347992, 37.79486412183907 ], [ -122.40900814533235, 37.79527954428784 ] ] }, "properties": { "class": "service", "len": 59.40607544642352, "name": "Trenton St", "name_de": "Trenton St", "name_en": "Trenton St", "name_es": "Trenton St", "name_fr": "Trenton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43497729301453, 37.80285423580862 ], [ -122.43517041206358, 37.803824859212796 ], [ -122.43536353111266, 37.804761562280376 ], [ -122.43555665016173, 37.805689776677475 ], [ -122.43559956550597, 37.80591441128507 ], [ -122.43556737899779, 37.806024609144636 ], [ -122.4354976415634, 37.80609666150237 ] ] }, "properties": { "class": "street", "len": 465.9465632152965, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43460178375244, 37.80102739471796 ], [ -122.43451058864595, 37.80056114033423 ], [ -122.43444085121156, 37.80018389599704 ], [ -122.4344301223755, 37.80010336043956 ] ] }, "properties": { "class": "street", "len": 131.42676270340561, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4284166097641, 37.80374008911817 ], [ -122.42821276187898, 37.80279489597278 ], [ -122.42802500724794, 37.801862406576994 ], [ -122.42785871028902, 37.801014678728365 ], [ -122.42784261703493, 37.800942621412574 ] ] }, "properties": { "class": "street", "len": 399.27046569905065, "name": "Gough St", "name_de": "Gough St", "name_en": "Gough St", "name_es": "Gough St", "name_fr": "Gough St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40871846675873, 37.79577126580011 ], [ -122.40879893302917, 37.79618244420722 ] ] }, "properties": { "class": "path", "len": 58.5516882757108, "name": "Bedford Pl", "name_de": "Bedford Pl", "name_en": "Bedford Pl", "name_es": "Bedford Pl", "name_fr": "Bedford Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43134021759033, 37.79710652753374 ], [ -122.4314421415329, 37.797606714604264 ] ] }, "properties": { "class": "street", "len": 71.23167834536395, "name": "Charlton Ct", "name_de": "Charlton Ct", "name_en": "Charlton Ct", "name_es": "Charlton Ct", "name_fr": "Charlton Ct", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41912543773651, 37.79948874408232 ], [ -122.42014467716217, 37.79935310392155 ] ] }, "properties": { "class": "street", "len": 115.28500032497456, "name": "Allen St", "name_de": "Allen St", "name_en": "Allen St", "name_es": "Allen St", "name_fr": "Allen St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41422235965729, 37.80030257981648 ], [ -122.41433501243591, 37.800289863702076 ], [ -122.41478562355042, 37.80023052180601 ] ] }, "properties": { "class": "street", "len": 63.63787942642608, "name": "Redfield Alley", "name_de": "Redfield Alley", "name_en": "Redfield Alley", "name_es": "Redfield Alley", "name_fr": "Redfield Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41522550582886, 37.799687965116924 ], [ -122.41532742977142, 37.80016694115013 ] ] }, "properties": { "class": "path", "len": 67.97571625166456, "name": "Marion Pl", "name_de": "Marion Pl", "name_en": "Marion Pl", "name_es": "Marion Pl", "name_fr": "Marion Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40715205669403, 37.80100196273655 ], [ -122.40766167640686, 37.800938382744725 ] ] }, "properties": { "class": "service", "len": 57.776885517755545, "name": "Nobles Alley", "name_de": "Nobles Alley", "name_en": "Nobles Alley", "name_es": "Nobles Alley", "name_fr": "Nobles Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41583168506622, 37.791544897362755 ], [ -122.41630375385284, 37.791489787651976 ] ] }, "properties": { "class": "street", "len": 53.43485753631922, "name": "Acorn Alley", "name_de": "Acorn Alley", "name_en": "Acorn Alley", "name_es": "Acorn Alley", "name_fr": "Acorn Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40836977958679, 37.790892056609856 ], [ -122.40892231464386, 37.79081998941997 ], [ -122.40894377231598, 37.79081998941997 ] ] }, "properties": { "class": "service", "len": 64.51350943910694, "name": "Fella Pl", "name_de": "Fella Pl", "name_en": "Fella Pl", "name_es": "Fella Pl", "name_fr": "Fella Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43186593055725, 37.80424446974821 ], [ -122.43352890014648, 37.804032545533346 ], [ -122.43517041206358, 37.803824859212796 ], [ -122.43680655956267, 37.80361717230819 ], [ -122.43697822093964, 37.80359174121851 ] ] }, "properties": { "class": "street", "len": 576.3959557001698, "name": "N Pt St", "name_de": "N Pt St", "name_en": "N Pt St", "name_es": "N Pt St", "name_fr": "N Pt St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41470515727997, 37.79036638843492 ], [ -122.41464614868164, 37.79003572427978 ] ] }, "properties": { "class": "street_limited", "len": 46.989364753467534, "name": "Touchard St", "name_de": "Touchard St", "name_en": "Touchard St", "name_es": "Touchard St", "name_fr": "Touchard St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40972697734833, 37.79749226531914 ], [ -122.40989863872528, 37.79844176513279 ] ] }, "properties": { "class": "service", "len": 135.41378659574053, "name": "Turk Murphy Ln", "name_de": "Turk Murphy Ln", "name_en": "Turk Murphy Ln", "name_es": "Turk Murphy Ln", "name_fr": "Turk Murphy Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41187274456024, 37.79700055526198 ], [ -122.41185665130615, 37.79700055526198 ], [ -122.41121828556061, 37.79709381086916 ], [ -122.41106808185577, 37.797140438628595 ], [ -122.41048336029051, 37.79726336621694 ], [ -122.41038680076598, 37.797271843974116 ], [ -122.41034924983978, 37.797271843974116 ], [ -122.41030097007751, 37.797259127338 ], [ -122.41022050380707, 37.79721249965347 ] ] }, "properties": { "class": "street", "len": 191.26148044141763, "name": "Broadway", "name_de": "Broadway", "name_en": "Broadway", "name_es": "Broadway", "name_fr": "Broadway", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40747928619385, 37.802269312488406 ], [ -122.40792453289032, 37.802218449372056 ] ] }, "properties": { "class": "service", "len": 49.94173004607788, "name": "Gerke Alley", "name_de": "Gerke Alley", "name_en": "Gerke Alley", "name_es": "Gerke Alley", "name_fr": "Gerke Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40560173988342, 37.79868761577395 ], [ -122.40566074848175, 37.79868337697672 ], [ -122.40639567375183, 37.79859012337622 ], [ -122.40716814994812, 37.79849263084982 ] ] }, "properties": { "class": "service", "len": 176.83964091802235, "name": "Fresno St", "name_de": "Fresno St", "name_en": "Fresno St", "name_es": "Fresno St", "name_fr": "Fresno St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41190493106842, 37.79263436551425 ], [ -122.41211950778961, 37.79352881957535 ] ] }, "properties": { "class": "street", "len": 127.98478815879075, "name": "Sproule Ln", "name_de": "Sproule Ln", "name_en": "Sproule Ln", "name_es": "Sproule Ln", "name_fr": "Sproule Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40919589996338, 37.79389761975574 ], [ -122.40928173065186, 37.79433848192347 ] ] }, "properties": { "class": "street", "len": 62.784717886173986, "name": "Parkhurst Alley", "name_de": "Parkhurst Alley", "name_en": "Parkhurst Alley", "name_es": "Parkhurst Alley", "name_fr": "Parkhurst Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4105155467987, 37.80505401465057 ], [ -122.41059601306915, 37.80546090297828 ] ] }, "properties": { "class": "service", "len": 58.573718508969975, "name": "Worden St", "name_de": "Worden St", "name_en": "Worden St", "name_es": "Worden St", "name_fr": "Worden St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41583168506622, 37.80908889145281 ], [ -122.41591215133667, 37.80912279704645 ], [ -122.41600334644318, 37.80913974983744 ], [ -122.41657197475432, 37.809160940820696 ], [ -122.4173605442047, 37.80919060818706 ] ] }, "properties": { "class": "street", "len": 171.84078522081418, "name": "Fishermans Wharf", "name_de": "Fishermans Wharf", "name_en": "Fishermans Wharf", "name_es": "Fishermans Wharf", "name_fr": "Fishermans Wharf", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40622937679291, 37.796084948503236 ], [ -122.406068444252, 37.79520324238054 ] ] }, "properties": { "class": "street", "len": 125.21460378065915, "name": "Wentworth Pl", "name_de": "Wentworth Pl", "name_en": "Wentworth Pl", "name_es": "Wentworth Pl", "name_fr": "Wentworth Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40757048130035, 37.79591539045074 ], [ -122.40765631198883, 37.796347762715534 ] ] }, "properties": { "class": "path", "len": 61.46761423790475, "name": "Duncombe Alley", "name_de": "Duncombe Alley", "name_en": "Duncombe Alley", "name_es": "Duncombe Alley", "name_fr": "Duncombe Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42927491664886, 37.79134141514943 ], [ -122.43091642856598, 37.79113369314532 ] ] }, "properties": { "class": "street", "len": 185.36281638960787, "name": "Clay St", "name_de": "Clay St", "name_en": "Clay St", "name_es": "Clay St", "name_fr": "Clay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4073076248169, 37.79413924646194 ], [ -122.40736126899719, 37.79442750184963 ], [ -122.40739345550537, 37.79449108744552 ], [ -122.407506108284, 37.79503368230439 ] ] }, "properties": { "class": "service", "len": 127.89649212945443, "name": "Spofford St", "name_de": "Spofford St", "name_en": "Spofford St", "name_es": "Spofford St", "name_fr": "Spofford St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40990400314331, 37.795618662922415 ], [ -122.40956604480742, 37.79566105264231 ], [ -122.40936756134032, 37.795686486462564 ], [ -122.40908324718474, 37.7957246371765 ], [ -122.40876674652098, 37.79576278787075 ], [ -122.40871846675871, 37.795771265800134 ], [ -122.40825712680815, 37.795826372317386 ], [ -122.40780651569365, 37.79588571775155 ], [ -122.40757048130034, 37.79591539045074 ], [ -122.4074417352676, 37.79593234627351 ], [ -122.407329082489, 37.79594506313804 ], [ -122.40709304809569, 37.79597473581341 ], [ -122.40665316581725, 37.79602984217888 ], [ -122.40635275840758, 37.79606799271553 ], [ -122.4062293767929, 37.796084948503264 ], [ -122.40586459636687, 37.79613157689948 ], [ -122.4051511287689, 37.79622059466508 ], [ -122.4044269323349, 37.796313851256826 ], [ -122.40418016910553, 37.79634352378408 ] ] }, "properties": { "class": "street", "len": 1171.500377114965, "name": "Jackson St", "name_de": "Jackson St", "name_en": "Jackson St", "name_es": "Jackson St", "name_fr": "Jackson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4058485031128, 37.79522867635839 ], [ -122.40566611289978, 37.794346960016284 ] ] }, "properties": { "class": "street", "len": 126.09736079766184, "name": "Walter U Lum Pl", "name_de": "Walter U Lum Pl", "name_en": "Walter U Lum Pl", "name_es": "Walter U Lum Pl", "name_fr": "Walter U Lum Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4063366651535, 37.79048084875924 ], [ -122.40642786026001, 37.79093444904167 ] ] }, "properties": { "class": "service", "len": 64.35427103232769, "name": "Chatham Pl", "name_de": "Chatham Pl", "name_en": "Chatham Pl", "name_es": "Chatham Pl", "name_fr": "Chatham Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4110895395279, 37.7931769740092 ], [ -122.4116849899292, 37.793100669930396 ] ] }, "properties": { "class": "service", "len": 67.0897317041935, "name": "Ewer Pl", "name_de": "Ewer Pl", "name_en": "Ewer Pl", "name_es": "Ewer Pl", "name_fr": "Ewer Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41544544696808, 37.79176533579482 ], [ -122.41552591323853, 37.7921807756676 ] ] }, "properties": { "class": "path", "len": 59.174028931375034, "name": "Golden Ct", "name_de": "Golden Ct", "name_en": "Golden Ct", "name_es": "Golden Ct", "name_fr": "Golden Ct", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4080103635788, 37.800590811155416 ], [ -122.40811228752136, 37.80102739471796 ] ] }, "properties": { "class": "service", "len": 62.390207565970236, "name": "Cadell Pl", "name_de": "Cadell Pl", "name_en": "Cadell Pl", "name_es": "Cadell Pl", "name_fr": "Cadell Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43269205093384, 37.799836320857466 ], [ -122.43432819843292, 37.79963286148024 ], [ -122.43595898151398, 37.79942092403308 ], [ -122.43712306022644, 37.799272567458246 ], [ -122.4371337890625, 37.799272567458246 ] ] }, "properties": { "class": "street", "len": 554.2827921622029, "name": "Moulton St", "name_de": "Moulton St", "name_en": "Moulton St", "name_es": "Moulton St", "name_fr": "Moulton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41555273532867, 37.79338469026892 ], [ -122.41562247276306, 37.79369414402182 ] ] }, "properties": { "class": "path", "len": 43.92977350286755, "name": "Reed St", "name_de": "Reed St", "name_en": "Reed St", "name_es": "Reed St", "name_fr": "Reed St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40743637084961, 37.789891588159335 ], [ -122.40752756595612, 37.79033671350708 ] ] }, "properties": { "class": "service", "len": 63.34362872380736, "name": "Burritt St", "name_de": "Burritt St", "name_en": "Burritt St", "name_es": "Burritt St", "name_fr": "Burritt St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42660880088806, 37.8081140989773 ], [ -122.42651760578156, 37.807698748708574 ], [ -122.42646932601929, 37.807541932183284 ], [ -122.42640495300293, 37.807397830217774 ], [ -122.42632448673248, 37.807262204581576 ], [ -122.426238656044, 37.8071435319456 ], [ -122.42612600326538, 37.80701638248111 ], [ -122.4259489774704, 37.806851087850006 ], [ -122.42587387561798, 37.80678751289335 ], [ -122.4257344007492, 37.806617979408074 ], [ -122.42565929889678, 37.80650354408551 ] ] }, "properties": { "class": "street", "len": 255.3557123662623, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42446303367615, 37.80132833916636 ], [ -122.4244898557663, 37.80144278250799 ], [ -122.42465615272522, 37.80220997218259 ], [ -122.42467224597931, 37.802290505443175 ], [ -122.42468833923338, 37.802379515786924 ], [ -122.42484390735625, 37.803218750897145 ] ] }, "properties": { "class": "main", "len": 269.51529451836717, "name": "Van Ness Ave", "name_de": "Van Ness Ave", "name_en": "Van Ness Ave", "name_es": "Van Ness Ave", "name_fr": "Van Ness Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4112719297409, 37.794062943376915 ], [ -122.41135239601135, 37.794058704314324 ], [ -122.41186201572418, 37.79399087927983 ] ] }, "properties": { "class": "street", "len": 66.67698532956014, "name": "Truett St", "name_de": "Truett St", "name_en": "Truett St", "name_es": "Truett St", "name_fr": "Truett St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40842878818512, 37.80483785431468 ], [ -122.40944802761078, 37.80471070088035 ], [ -122.41004884243011, 37.80463864717042 ] ] }, "properties": { "class": "service", "len": 182.20355575256644, "name": "Pfeiffer St", "name_de": "Pfeiffer St", "name_en": "Pfeiffer St", "name_es": "Pfeiffer St", "name_fr": "Pfeiffer St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41583168506622, 37.80908889145281 ], [ -122.41586923599243, 37.808783740409325 ], [ -122.41587460041045, 37.808652355543906 ], [ -122.41586923599243, 37.80854639983701 ], [ -122.4158102273941, 37.808215817054354 ], [ -122.41561710834505, 37.80728339610364 ] ] }, "properties": { "class": "street", "len": 256.763574292215, "name": "Taylor St", "name_de": "Taylor St", "name_en": "Taylor St", "name_es": "Taylor St", "name_fr": "Taylor St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4081552028656, 37.80154874840699 ], [ -122.40825176239014, 37.80198532630738 ] ] }, "properties": { "class": "service", "len": 62.563965666960364, "name": "Medau Pl", "name_de": "Medau Pl", "name_en": "Medau Pl", "name_es": "Medau Pl", "name_fr": "Medau Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4070018529892, 37.80169710041017 ], [ -122.40696430206299, 37.80149788479444 ], [ -122.40681409835815, 37.80073916508263 ], [ -122.40662634372711, 37.79980241100018 ] ] }, "properties": { "class": "service", "len": 270.15151694698125, "name": "Varennes St", "name_de": "Varennes St", "name_en": "Varennes St", "name_es": "Varennes St", "name_fr": "Varennes St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41160452365875, 37.80204466679365 ], [ -122.41145968437195, 37.801336816456995 ], [ -122.41146504878998, 37.801294429994016 ], [ -122.41149723529816, 37.80124780485665 ] ] }, "properties": { "class": "service", "len": 114.32624227346044, "name": "Via Buffano", "name_de": "Via Buffano", "name_en": "Via Buffano", "name_es": "Via Buffano", "name_fr": "Via Buffano", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40497410297394, 37.798437526321464 ], [ -122.40547835826874, 37.79836970530704 ], [ -122.40553200244905, 37.79836546649156 ] ] }, "properties": { "class": "service", "len": 62.619009463483394, "name": "Dunnes Alley", "name_de": "Dunnes Alley", "name_en": "Dunnes Alley", "name_es": "Dunnes Alley", "name_fr": "Dunnes Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41254329681396, 37.79619516102869 ], [ -122.41257011890411, 37.796233311479945 ], [ -122.41269886493683, 37.79691577733512 ] ] }, "properties": { "class": "service", "len": 103.2925731314861, "name": "Salmon St", "name_de": "Salmon St", "name_en": "Salmon St", "name_es": "Salmon St", "name_fr": "Salmon St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.80014574758602 ], [ -122.404265999794, 37.80013727015868 ], [ -122.4044805765152, 37.80010336043956 ], [ -122.40500092506409, 37.800031302234714 ], [ -122.40506529808044, 37.80002282479424 ], [ -122.40520477294922, 37.80000163118878 ], [ -122.4053817987442, 37.7999761988542 ], [ -122.40547835826874, 37.799963482683594 ], [ -122.4057787656784, 37.79992109543255 ], [ -122.4058485031128, 37.79991261797941 ], [ -122.40591287612915, 37.79990414052532 ], [ -122.40623474121094, 37.79985751451035 ], [ -122.40662634372711, 37.79980241100015 ], [ -122.407329082489, 37.79970068133491 ], [ -122.40741491317749, 37.79969220385647 ], [ -122.4074739217758, 37.7996837263771 ], [ -122.40770995616911, 37.79964981644974 ], [ -122.40791380405425, 37.79962014525055 ], [ -122.40818738937377, 37.799581996548376 ], [ -122.40882039070128, 37.79949298283332 ], [ -122.40886867046355, 37.799484505331066 ], [ -122.40896522998808, 37.79947178907583 ] ] }, "properties": { "class": "street", "len": 586.1387798872114, "name": "Green St", "name_de": "Green St", "name_en": "Green St", "name_es": "Green St", "name_fr": "Green St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41900742053986, 37.798916510462924 ], [ -122.4188894033432, 37.798929226813755 ], [ -122.41848707199097, 37.798963137071866 ] ] }, "properties": { "class": "street", "len": 58.34103522688975, "name": "Warner Pl", "name_de": "Warner Pl", "name_en": "Warner Pl", "name_es": "Warner Pl", "name_fr": "Warner Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40685164928436, 37.7988317347349 ], [ -122.40693747997285, 37.799276806221656 ], [ -122.40697503089905, 37.79947178907586 ] ] }, "properties": { "class": "service", "len": 91.2595127301476, "name": "Margrave Pl", "name_de": "Margrave Pl", "name_en": "Margrave Pl", "name_es": "Margrave Pl", "name_fr": "Margrave Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40818738937378, 37.799581996548405 ], [ -122.40837514400482, 37.80054842426436 ], [ -122.40840196609497, 37.800641675392626 ], [ -122.40857362747192, 37.801493646158505 ] ] }, "properties": { "class": "service", "len": 272.7948162895242, "name": "Jasper Pl", "name_de": "Jasper Pl", "name_en": "Jasper Pl", "name_es": "Jasper Pl", "name_fr": "Jasper Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42682337760925, 37.80419784647312 ], [ -122.4269038438797, 37.80426990061314 ], [ -122.42696821689606, 37.804341954682855 ], [ -122.4272632598877, 37.804876000302286 ], [ -122.42730617523195, 37.804952292218374 ], [ -122.4273544549942, 37.80500739188654 ], [ -122.42741882801056, 37.80505401465057 ], [ -122.427499294281, 37.805096398955996 ], [ -122.42759048938751, 37.805134544810045 ], [ -122.42767095565796, 37.80515149851663 ], [ -122.42778897285461, 37.80515573694268 ], [ -122.42791771888733, 37.80513878323706 ], [ -122.42803037166595, 37.805104875814145 ], [ -122.42821276187897, 37.804998915017194 ], [ -122.42823421955109, 37.80515573694268 ], [ -122.42825031280516, 37.805244743833335 ] ] }, "properties": { "class": "street", "len": 271.8842422810107, "name": "Macarthur Ave", "name_de": "Macarthur Ave", "name_en": "Macarthur Ave", "name_es": "Macarthur Ave", "name_fr": "Macarthur Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42825031280518, 37.805244743833335 ], [ -122.4272632598877, 37.80537189634818 ], [ -122.42719352245332, 37.805388850000256 ], [ -122.42712914943696, 37.80543123411352 ] ] }, "properties": { "class": "street", "len": 128.79204821896596, "name": "Macarthur Ave", "name_de": "Macarthur Ave", "name_en": "Macarthur Ave", "name_es": "Macarthur Ave", "name_fr": "Macarthur Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40894913673401, 37.801447021146885 ], [ -122.40904033184052, 37.801892076875475 ] ] }, "properties": { "class": "service", "len": 63.908950859835066, "name": "Krausgrill Pl", "name_de": "Krausgrill Pl", "name_en": "Krausgrill Pl", "name_es": "Krausgrill Pl", "name_fr": "Krausgrill Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40935146808624, 37.80424446974821 ], [ -122.40944802761078, 37.80471070088038 ] ] }, "properties": { "class": "path", "len": 66.69583495236432, "name": "Bellair Pl", "name_de": "Bellair Pl", "name_en": "Bellair Pl", "name_es": "Bellair Pl", "name_fr": "Bellair Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41357862949371, 37.80038735385647 ], [ -122.41422235965729, 37.80030257981648 ] ] }, "properties": { "class": "street", "len": 72.47540410352268, "name": "Aladdin Ter", "name_de": "Aladdin Ter", "name_en": "Aladdin Ter", "name_es": "Aladdin Ter", "name_fr": "Aladdin Ter", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40665853023529, 37.80393929868616 ], [ -122.40717887878418, 37.80386724422359 ] ] }, "properties": { "class": "service", "len": 58.93459425506088, "name": "La Ferrera Ter", "name_de": "La Ferrera Ter", "name_en": "La Ferrera Ter", "name_es": "La Ferrera Ter", "name_fr": "La Ferrera Ter", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41346061229706, 37.79652579761845 ], [ -122.41510748863222, 37.796326568055655 ], [ -122.41674900054932, 37.79611886006703 ] ] }, "properties": { "class": "street", "len": 369.994656668576, "name": "Bernard St", "name_de": "Bernard St", "name_en": "Bernard St", "name_es": "Bernard St", "name_fr": "Bernard St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4282556772232, 37.803918106204456 ], [ -122.42833077907562, 37.8038969137167 ], [ -122.42840588092804, 37.803884198221105 ], [ -122.42882966995239, 37.80388843671987 ], [ -122.42887258529663, 37.80390115221473 ], [ -122.42889940738678, 37.803930821694195 ], [ -122.42893695831297, 37.804049499492926 ], [ -122.42893159389496, 37.804087645887726 ], [ -122.42891013622284, 37.80412155377767 ], [ -122.42888331413269, 37.80414274620098 ], [ -122.42884576320648, 37.80415546165205 ], [ -122.42865800857544, 37.80418936951085 ], [ -122.42853999137878, 37.80422327735411 ], [ -122.42843806743622, 37.80427837756618 ], [ -122.42835760116579, 37.804358908571395 ], [ -122.42833614349365, 37.804439439488824 ], [ -122.42829859256746, 37.80481242364534 ], [ -122.42827177047731, 37.80489295406824 ], [ -122.42823958396913, 37.80496076909309 ], [ -122.42821276187898, 37.804998915017194 ] ] }, "properties": { "class": "street", "len": 267.7599159825363, "name": "Fort Mason 10", "name_de": "Fort Mason 10", "name_en": "Fort Mason 10", "name_es": "Fort Mason 10", "name_fr": "Fort Mason 10", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4272632598877, 37.804045261003395 ], [ -122.42763876914978, 37.80474460848425 ], [ -122.42768704891205, 37.80479546986092 ], [ -122.4277514219284, 37.8048081851996 ], [ -122.42781579494476, 37.80479970830737 ], [ -122.42786943912508, 37.80476580072879 ], [ -122.42789626121521, 37.80470646242878 ], [ -122.42794990539551, 37.804235992791284 ], [ -122.4279659986496, 37.80415546165205 ], [ -122.4280035495758, 37.804083407400384 ], [ -122.42806792259216, 37.80401559156988 ], [ -122.42814302444458, 37.80396472965615 ], [ -122.4282556772232, 37.803918106204456 ] ] }, "properties": { "class": "street", "len": 273.1256858061551, "name": "Fort Mason 11", "name_de": "Fort Mason 11", "name_en": "Fort Mason 11", "name_es": "Fort Mason 11", "name_fr": "Fort Mason 11", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40804255008698, 37.802871190038694 ], [ -122.40892767906189, 37.80276098747375 ] ] }, "properties": { "class": "service", "len": 99.28843084653585, "name": "Edith St", "name_de": "Edith St", "name_en": "Edith St", "name_es": "Edith St", "name_fr": "Edith St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4282556772232, 37.803918106204456 ], [ -122.42797672748566, 37.80397744513788 ], [ -122.4277514219284, 37.8040155915699 ], [ -122.42751002311707, 37.80404102251361 ], [ -122.4272632598877, 37.804045261003395 ] ] }, "properties": { "class": "street", "len": 112.73141446670768, "name": "Fort Mason 12", "name_de": "Fort Mason 12", "name_en": "Fort Mason 12", "name_es": "Fort Mason 12", "name_fr": "Fort Mason 12", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4048775434494, 37.80051027604161 ], [ -122.40435719490051, 37.800578095090685 ] ] }, "properties": { "class": "service", "len": 58.71020694937184, "name": "Montague Pl", "name_de": "Montague Pl", "name_en": "Montague Pl", "name_es": "Montague Pl", "name_fr": "Montague Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4272632598877, 37.804045261003395 ], [ -122.42712378501892, 37.80405797647123 ], [ -122.42707014083862, 37.80406645344859 ], [ -122.42702186107635, 37.804087645887726 ], [ -122.42698431015016, 37.80411307680662 ], [ -122.42695212364197, 37.80415546165205 ], [ -122.42693066596985, 37.80420632343443 ], [ -122.42690384387971, 37.80426990061314 ] ] }, "properties": { "class": "street", "len": 57.225867374503736, "name": "Fort Mason 13", "name_de": "Fort Mason 13", "name_en": "Fort Mason 13", "name_es": "Fort Mason 13", "name_fr": "Fort Mason 13", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40902423858643, 37.79300317015945 ], [ -122.40911543369293, 37.79345251585992 ] ] }, "properties": { "class": "service", "len": 63.94319744855801, "name": "Miller Pl", "name_de": "Miller Pl", "name_en": "Miller Pl", "name_es": "Miller Pl", "name_fr": "Miller Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41281688213348, 37.79616124949991 ], [ -122.41297245025635, 37.79691577733512 ], [ -122.41301000118254, 37.79711500530891 ] ] }, "properties": { "class": "service", "len": 136.1630268523898, "name": "Himmelmann Pl", "name_de": "Himmelmann Pl", "name_en": "Himmelmann Pl", "name_es": "Himmelmann Pl", "name_fr": "Himmelmann Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41671681404114, 37.7959238683626 ], [ -122.41722106933595, 37.79586028399988 ], [ -122.41834223270416, 37.79571192027404 ], [ -122.41835832595825, 37.79571192027404 ] ] }, "properties": { "class": "service", "len": 185.2098426925577, "name": "Lynch St", "name_de": "Lynch St", "name_en": "Lynch St", "name_es": "Lynch St", "name_fr": "Lynch St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40773141384125, 37.80399439911008 ], [ -122.40793526172638, 37.80396472965615 ], [ -122.4082624912262, 37.80392234470129 ] ] }, "properties": { "class": "service", "len": 59.7132859074724, "name": "Whiting St", "name_de": "Whiting St", "name_en": "Whiting St", "name_es": "Whiting St", "name_fr": "Whiting St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.418133020401, 37.798840212312086 ], [ -122.41822957992555, 37.79930223879704 ] ] }, "properties": { "class": "street", "len": 65.98989165025142, "name": "Sharp Pl", "name_de": "Sharp Pl", "name_en": "Sharp Pl", "name_es": "Sharp Pl", "name_fr": "Sharp Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40956604480743, 37.79566105264231 ], [ -122.40965187549591, 37.796089187449574 ] ] }, "properties": { "class": "service", "len": 61.076484836602674, "name": "Adele Ct", "name_de": "Adele Ct", "name_en": "Adele Ct", "name_es": "Adele Ct", "name_fr": "Adele Ct", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41245746612549, 37.80182425903287 ], [ -122.41245746612549, 37.80170133903446 ], [ -122.41232335567474, 37.801010440064665 ] ] }, "properties": { "class": "service", "len": 115.60519316779043, "name": "Scotland St", "name_de": "Scotland St", "name_en": "Scotland St", "name_es": "Scotland St", "name_fr": "Scotland St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40635275840759, 37.7960679927155 ], [ -122.40652978420258, 37.79694968851756 ] ] }, "properties": { "class": "street", "len": 125.40847180388414, "name": "Beckett St", "name_de": "Beckett St", "name_en": "Beckett St", "name_es": "Beckett St", "name_fr": "Beckett St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4148553609848, 37.80116727045915 ], [ -122.41495192050935, 37.80163775964465 ] ] }, "properties": { "class": "street", "len": 66.9410016357164, "name": "Roach St", "name_de": "Roach St", "name_en": "Roach St", "name_es": "Roach St", "name_fr": "Roach St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4053817987442, 37.7999761988542 ], [ -122.40544617176056, 37.80032801203869 ] ] }, "properties": { "class": "street", "len": 49.61592990094674, "name": "Windsor Pl", "name_de": "Windsor Pl", "name_en": "Windsor Pl", "name_es": "Windsor Pl", "name_fr": "Windsor Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40701794624329, 37.795088789371825 ], [ -122.40682482719423, 37.79419859325133 ], [ -122.40664243698122, 37.79331262551028 ] ] }, "properties": { "class": "street", "len": 254.02764917872267, "name": "Waverly Pl", "name_de": "Waverly Pl", "name_en": "Waverly Pl", "name_es": "Waverly Pl", "name_fr": "Waverly Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4107837677002, 37.794122290227605 ], [ -122.4112719297409, 37.794062943376915 ] ] }, "properties": { "class": "street", "len": 55.13593564924396, "name": "Shephard Pl", "name_de": "Shephard Pl", "name_en": "Shephard Pl", "name_es": "Shephard Pl", "name_fr": "Shephard Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41750538349152, 37.8042020849539 ], [ -122.41760730743408, 37.80476580072879 ], [ -122.41787552833557, 37.80473189313464 ] ] }, "properties": { "class": "street", "len": 110.53686677023703, "name": "Bret Harte Ter", "name_de": "Bret Harte Ter", "name_en": "Bret Harte Ter", "name_es": "Bret Harte Ter", "name_fr": "Bret Harte Ter", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41694211959839, 37.79707261642332 ], [ -122.41699039936066, 37.797051421971396 ], [ -122.41747856140137, 37.79699207747368 ] ] }, "properties": { "class": "service", "len": 60.969960555721045, "name": "Waldo Alley", "name_de": "Waldo Alley", "name_en": "Waldo Alley", "name_es": "Waldo Alley", "name_fr": "Waldo Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41908252239227, 37.80112064524151 ], [ -122.41913616657257, 37.80140887338821 ], [ -122.4191629886627, 37.80154027114065 ] ] }, "properties": { "class": "street", "len": 59.873315952500604, "name": "Southard Pl", "name_de": "Southard Pl", "name_en": "Southard Pl", "name_es": "Southard Pl", "name_fr": "Southard Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40729689598083, 37.79277001801159 ], [ -122.40738809108734, 37.79321936513004 ] ] }, "properties": { "class": "service", "len": 64.1050590824393, "name": "Brooklyn Pl", "name_de": "Brooklyn Pl", "name_en": "Brooklyn Pl", "name_es": "Brooklyn Pl", "name_fr": "Brooklyn Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40623474121094, 37.79985751451035 ], [ -122.40642786026001, 37.80079002921765 ] ] }, "properties": { "class": "service", "len": 132.946347824966, "name": "Sonoma St", "name_de": "Sonoma St", "name_en": "Sonoma St", "name_es": "Sonoma St", "name_fr": "Sonoma St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4320912361145, 37.7932278433513 ], [ -122.43299782276154, 37.79312186551574 ] ] }, "properties": { "class": "street", "len": 102.28569059297114, "name": "Bromley Pl", "name_de": "Bromley Pl", "name_en": "Bromley Pl", "name_es": "Bromley Pl", "name_fr": "Bromley Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41912007331848, 37.795360085104505 ], [ -122.41926491260529, 37.796072231662805 ] ] }, "properties": { "class": "street", "len": 101.54381320398669, "name": "Morrell St", "name_de": "Morrell St", "name_en": "Morrell St", "name_es": "Morrell St", "name_fr": "Morrell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41090714931488, 37.79639862987445 ], [ -122.4110358953476, 37.79703870529732 ] ] }, "properties": { "class": "service", "len": 91.17872833027445, "name": "Wayne Pl", "name_de": "Wayne Pl", "name_en": "Wayne Pl", "name_es": "Wayne Pl", "name_fr": "Wayne Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41070866584778, 37.79344403766446 ], [ -122.41113245487213, 37.79338469026892 ] ] }, "properties": { "class": "service", "len": 47.86974932083227, "name": "Dawson Pl", "name_de": "Dawson Pl", "name_en": "Dawson Pl", "name_es": "Dawson Pl", "name_fr": "Dawson Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41467833518982, 37.79712348308311 ], [ -122.41482853889467, 37.797831373796456 ] ] }, "properties": { "class": "street", "len": 101.16138838568223, "name": "Florence St", "name_de": "Florence St", "name_en": "Florence St", "name_es": "Florence St", "name_fr": "Florence St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40797817707062, 37.7974032490859 ], [ -122.40856289863586, 37.79733118824711 ] ] }, "properties": { "class": "street", "len": 65.92641958955925, "name": "Stark St", "name_de": "Stark St", "name_en": "Stark St", "name_es": "Stark St", "name_fr": "Stark St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41052627563477, 37.79644949699833 ], [ -122.41059064865114, 37.79676317682161 ] ] }, "properties": { "class": "service", "len": 45.04043183644682, "name": "Keyes Alley", "name_de": "Keyes Alley", "name_en": "Keyes Alley", "name_es": "Keyes Alley", "name_fr": "Keyes Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40887403488159, 37.79665296514357 ], [ -122.40905106067657, 37.79757704258442 ] ] }, "properties": { "class": "service", "len": 131.67094478213505, "name": "Cordelia St", "name_de": "Cordelia St", "name_en": "Cordelia St", "name_es": "Cordelia St", "name_fr": "Cordelia St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41250574588776, 37.80857606745026 ], [ -122.41253256797789, 37.80869049956117 ], [ -122.41253793239592, 37.8087074524514 ], [ -122.41256475448607, 37.80877526397345 ], [ -122.41258621215819, 37.808809169711125 ], [ -122.41262912750243, 37.808830360789244 ], [ -122.41270959377287, 37.80884307543321 ], [ -122.4131280183792, 37.808855790074986 ], [ -122.41430282592772, 37.80888969577567 ], [ -122.41446375846861, 37.80889393398715 ], [ -122.41495192050932, 37.80891088683068 ], [ -122.41509675979613, 37.80892360146078 ], [ -122.41523087024687, 37.80895326892251 ], [ -122.41541326045986, 37.808999889195384 ], [ -122.4157458543777, 37.80904650943884 ], [ -122.41583168506621, 37.80908889145283 ] ] }, "properties": { "class": "street", "len": 400.6582806689901, "name": "Embarcadero North St", "name_de": "Embarcadero North St", "name_en": "Embarcadero North St", "name_es": "Embarcadero North St", "name_fr": "Embarcadero North St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41274178028107, 37.79299469191242 ], [ -122.41438865661621, 37.792786974556215 ] ] }, "properties": { "class": "street", "len": 185.48519644484398, "name": "Pleasant St", "name_de": "Pleasant St", "name_en": "Pleasant St", "name_es": "Pleasant St", "name_fr": "Pleasant St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41860508918762, 37.79269371351246 ], [ -122.41868555545807, 37.79304980050072 ] ] }, "properties": { "class": "service", "len": 50.80455294522635, "name": "Torrens Ct", "name_de": "Torrens Ct", "name_en": "Torrens Ct", "name_es": "Torrens Ct", "name_fr": "Torrens Ct", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4046790599823, 37.79021377439333 ], [ -122.40490436553955, 37.7901883386891 ], [ -122.40541934967041, 37.790120510101644 ], [ -122.40551054477692, 37.790112031523826 ], [ -122.40604698657988, 37.79004420286635 ] ] }, "properties": { "class": "service", "len": 154.3215726572478, "name": "Harlan Pl", "name_de": "Harlan Pl", "name_en": "Harlan Pl", "name_es": "Harlan Pl", "name_fr": "Harlan Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42229580879211, 37.80259144474508 ], [ -122.42238700389862, 37.803053447766 ] ] }, "properties": { "class": "street", "len": 65.90774309573109, "name": "Culebra Ter", "name_de": "Culebra Ter", "name_en": "Culebra Ter", "name_es": "Culebra Ter", "name_fr": "Culebra Ter", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42216169834137, 37.80196413326501 ], [ -122.42223143577576, 37.802387992956945 ], [ -122.42239773273468, 37.80248124176272 ], [ -122.42243528366089, 37.80257449045078 ] ] }, "properties": { "class": "street_limited", "len": 95.9749654139774, "name": "Culebra Ter", "name_de": "Culebra Ter", "name_en": "Culebra Ter", "name_es": "Culebra Ter", "name_fr": "Culebra Ter", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41362690925598, 37.80275674891027 ], [ -122.41371810436249, 37.80322298943413 ] ] }, "properties": { "class": "street", "len": 66.45369214742057, "name": "Newell St", "name_de": "Newell St", "name_en": "Newell St", "name_es": "Newell St", "name_fr": "Newell St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40499019622803, 37.8038333362169 ], [ -122.40418016910553, 37.8039350601903 ] ] }, "properties": { "class": "street", "len": 308.5263858310345, "name": "Lombard St", "name_de": "Lombard St", "name_en": "Lombard St", "name_es": "Lombard St", "name_fr": "Lombard St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4112719297409, 37.7971785885917 ], [ -122.41111636161804, 37.7972040218895 ], [ -122.41084277629852, 37.79726336621694 ], [ -122.41038680076599, 37.79736086036572 ], [ -122.41025805473328, 37.79741596569723 ] ] }, "properties": { "class": "main", "len": 118.01690960727322, "name": "Broadway St", "name_de": "Broadway St", "name_en": "Broadway St", "name_es": "Broadway St", "name_fr": "Broadway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.411288022995, 37.797254888458816 ], [ -122.41180300712585, 37.797187066358596 ], [ -122.41785407066345, 37.79641558558629 ] ] }, "properties": { "class": "main", "len": 740.5066576059138, "name": "Robert C Levy Tunnel", "name_de": "Robert C Levy Tunnel", "name_en": "Robert C Levy Tunnel", "name_es": "Robert C Levy Tunnel", "name_fr": "Robert C Levy Tunnel", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41187274456024, 37.798780869251374 ], [ -122.41194248199463, 37.799141165671685 ] ] }, "properties": { "class": "street", "len": 51.4579022108144, "name": "Eaton Pl", "name_de": "Eaton Pl", "name_en": "Eaton Pl", "name_es": "Eaton Pl", "name_fr": "Eaton Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4362701177597, 37.80081546127204 ], [ -122.43625402450562, 37.800942621412574 ], [ -122.43663489818573, 37.80269317042898 ] ] }, "properties": { "class": "street", "len": 268.32391325299756, "name": "Fillmore St", "name_de": "Fillmore St", "name_en": "Fillmore St", "name_es": "Fillmore St", "name_fr": "Fillmore St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43555665016174, 37.805689776677475 ], [ -122.4371337890625, 37.80549057183116 ] ] }, "properties": { "class": "street", "len": 202.57158379076972, "name": "Jefferson St", "name_de": "Jefferson St", "name_en": "Jefferson St", "name_es": "Jefferson St", "name_fr": "Jefferson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40782260894775, 37.80348577825057 ], [ -122.40792989730835, 37.803918106204456 ] ] }, "properties": { "class": "service", "len": 62.152613781697326, "name": "Julius St", "name_de": "Julius St", "name_en": "Julius St", "name_es": "Julius St", "name_fr": "Julius St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40486145019531, 37.79763214775467 ], [ -122.40541398525238, 37.797564326000824 ] ] }, "properties": { "class": "service", "len": 62.35144906106222, "name": "Nottingham Pl", "name_de": "Nottingham Pl", "name_en": "Nottingham Pl", "name_es": "Nottingham Pl", "name_fr": "Nottingham Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41745710372925, 37.80800814249806 ], [ -122.4172693490982, 37.807071480609274 ] ] }, "properties": { "class": "street", "len": 133.60301269040772, "name": "Jones St", "name_de": "Jones St", "name_en": "Jones St", "name_es": "Jones St", "name_fr": "Jones St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40821957588196, 37.79141348183073 ], [ -122.40836441516876, 37.79215110146844 ], [ -122.40836441516876, 37.79215957981227 ], [ -122.40836441516876, 37.79217229732622 ], [ -122.40837514400482, 37.792235884863004 ], [ -122.40854680538177, 37.79307099610069 ] ] }, "properties": { "class": "service", "len": 236.40843532348785, "name": "Joice St", "name_de": "Joice St", "name_en": "Joice St", "name_es": "Joice St", "name_fr": "Joice St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40639567375183, 37.79859012337622 ], [ -122.40626156330109, 37.79792886719558 ] ] }, "properties": { "class": "service", "len": 94.8030025896439, "name": "Romolo Pl", "name_de": "Romolo Pl", "name_en": "Romolo Pl", "name_es": "Romolo Pl", "name_fr": "Romolo Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41318702697754, 37.797742357971856 ], [ -122.41366982460022, 37.79767029746383 ] ] }, "properties": { "class": "path", "len": 55.02610289681695, "name": "Fallon Pl", "name_de": "Fallon Pl", "name_en": "Fallon Pl", "name_es": "Fallon Pl", "name_fr": "Fallon Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40675508975983, 37.79076063991673 ], [ -122.40721642971039, 37.790701290365774 ] ] }, "properties": { "class": "service", "len": 51.8639393036333, "name": "Emma St", "name_de": "Emma St", "name_en": "Emma St", "name_es": "Emma St", "name_fr": "Emma St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40525841712952, 37.80093414407668 ], [ -122.4051457643509, 37.800459411713945 ], [ -122.40512967109682, 37.800374637756676 ], [ -122.40506529808046, 37.80002282479424 ] ] }, "properties": { "class": "service", "len": 130.09973736841954, "name": "Castle St", "name_de": "Castle St", "name_en": "Castle St", "name_es": "Castle St", "name_fr": "Castle St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41076231002808, 37.79153217974085 ], [ -122.41120755672455, 37.791477070020576 ] ] }, "properties": { "class": "service", "len": 50.44993756253119, "name": "Nob Hill Pl", "name_de": "Nob Hill Pl", "name_en": "Nob Hill Pl", "name_es": "Nob Hill Pl", "name_fr": "Nob Hill Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4070018529892, 37.79554660034284 ], [ -122.4070930480957, 37.79597473581339 ] ] }, "properties": { "class": "path", "len": 61.51835254609074, "name": "St Louis Alley", "name_de": "St Louis Alley", "name_en": "St Louis Alley", "name_es": "St Louis Alley", "name_fr": "St Louis Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41620719432831, 37.79165935586148 ], [ -122.41629302501678, 37.79208327468276 ], [ -122.41629302501678, 37.79214262312365 ], [ -122.41637349128723, 37.79252838682742 ] ] }, "properties": { "class": "street", "len": 123.97794369943081, "name": "Kimball Pl", "name_de": "Kimball Pl", "name_en": "Kimball Pl", "name_es": "Kimball Pl", "name_fr": "Kimball Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42610991001129, 37.8007434037619 ], [ -122.42656588554382, 37.80055266295457 ] ] }, "properties": { "class": "street", "len": 57.22394079431952, "name": "Blackstone Ct", "name_de": "Blackstone Ct", "name_en": "Blackstone Ct", "name_es": "Blackstone Ct", "name_fr": "Blackstone Ct", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41099834442139, 37.79083694641218 ], [ -122.41109490394592, 37.79129902295112 ] ] }, "properties": { "class": "service", "len": 66.3126873229572, "name": "Vine Ter", "name_de": "Vine Ter", "name_en": "Vine Ter", "name_es": "Vine Ter", "name_fr": "Vine Ter", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41113245487213, 37.79338469026892 ], [ -122.41172790527344, 37.79331262551028 ] ] }, "properties": { "class": "service", "len": 67.01716944092804, "name": "Malvina Pl", "name_de": "Malvina Pl", "name_en": "Malvina Pl", "name_es": "Malvina Pl", "name_fr": "Malvina Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41276323795319, 37.80334166837025 ], [ -122.41285443305969, 37.803807905201644 ] ] }, "properties": { "class": "street", "len": 66.59202354593167, "name": "Venard Alley", "name_de": "Venard Alley", "name_en": "Venard Alley", "name_es": "Venard Alley", "name_fr": "Venard Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40818202495575, 37.792608930643276 ], [ -122.40809619426727, 37.792210449854856 ], [ -122.40809619426727, 37.79219349317789 ] ] }, "properties": { "class": "service", "len": 59.24181348930285, "name": "Pratt Pl", "name_de": "Pratt Pl", "name_en": "Pratt Pl", "name_es": "Pratt Pl", "name_fr": "Pratt Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40714132785797, 37.79028584217449 ], [ -122.40714132785797, 37.79027736361563 ], [ -122.4070394039154, 37.78970081933231 ], [ -122.40699112415315, 37.78942950281888 ] ] }, "properties": { "class": "street", "len": 121.52660704761954, "name": "Stockton St", "name_de": "Stockton St", "name_en": "Stockton St", "name_es": "Stockton St", "name_fr": "Stockton St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4176824092865, 37.79235034229134 ], [ -122.41856753826141, 37.79224012403017 ] ] }, "properties": { "class": "service", "len": 99.50439688777577, "name": "Troy Alley", "name_de": "Troy Alley", "name_en": "Troy Alley", "name_es": "Troy Alley", "name_fr": "Troy Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41667926311493, 37.80044669562654 ], [ -122.41675436496735, 37.80085784800986 ] ] }, "properties": { "class": "street_limited", "len": 58.39296190498385, "name": "Attridge Alley", "name_de": "Attridge Alley", "name_en": "Attridge Alley", "name_es": "Attridge Alley", "name_fr": "Attridge Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41753220558167, 37.79464369265235 ], [ -122.41761803627014, 37.795093028375305 ] ] }, "properties": { "class": "service", "len": 64.06486478531147, "name": "Wall Pl", "name_de": "Wall Pl", "name_en": "Wall Pl", "name_es": "Wall Pl", "name_fr": "Wall Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.79494890212038 ], [ -122.40488290786742, 37.794859882822436 ] ] }, "properties": { "class": "street", "len": 186.69397124710753, "name": "Merchant St", "name_de": "Merchant St", "name_en": "Merchant St", "name_es": "Merchant St", "name_fr": "Merchant St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.805850835522065 ], [ -122.40454494953156, 37.8061136149881 ], [ -122.40576267242432, 37.80676208289539 ] ] }, "properties": { "class": "main", "len": 529.7255041394043, "name": "The Embarcadero", "name_de": "The Embarcadero", "name_en": "The Embarcadero", "name_es": "The Embarcadero", "name_fr": "The Embarcadero", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4195009469986, 37.79722945517852 ], [ -122.41962432861328, 37.79786104571417 ] ] }, "properties": { "class": "street", "len": 89.86199697281107, "name": "White St", "name_de": "White St", "name_en": "White St", "name_es": "White St", "name_fr": "White St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42494583129883, 37.801209656995105 ], [ -122.42472052574158, 37.801218134299376 ], [ -122.42464542388916, 37.801196941036885 ], [ -122.42459177970886, 37.801141838525915 ] ] }, "properties": { "class": "street", "len": 43.47530177388478, "name": "US 101", "name_de": "US 101", "name_en": "US 101", "name_es": "US 101", "name_fr": "US 101", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40595579147339, 37.8046640778996 ], [ -122.4062615633011, 37.8046979855249 ], [ -122.40639030933382, 37.8047191777828 ], [ -122.40649759769441, 37.804748846933656 ], [ -122.40653514862062, 37.80475732383171 ], [ -122.40666389465333, 37.8048039467536 ], [ -122.4067658185959, 37.80485904653247 ], [ -122.40680873394014, 37.804905669390145 ], [ -122.4068570137024, 37.80497348440335 ], [ -122.40695893764497, 37.80549057183118 ], [ -122.40715742111207, 37.80643573047735 ], [ -122.40730226039888, 37.80721982151919 ], [ -122.40738272666931, 37.80734273233311 ] ] }, "properties": { "class": "street", "len": 454.891979511398, "name": "Kearny St", "name_de": "Kearny St", "name_en": "Kearny St", "name_es": "Kearny St", "name_fr": "Kearny St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41692066192627, 37.795220198366735 ], [ -122.41700112819672, 37.79563561881328 ] ] }, "properties": { "class": "service", "len": 59.0410069355471, "name": "Burgoyne St", "name_de": "Burgoyne St", "name_en": "Burgoyne St", "name_es": "Burgoyne St", "name_fr": "Burgoyne St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.79613157689948 ], [ -122.4044269323349, 37.796313851256826 ], [ -122.40450739860533, 37.796373196299385 ], [ -122.40529596805571, 37.79690306063769 ] ] }, "properties": { "class": "main", "len": 293.0610772737953, "name": "Columbus Ave", "name_de": "Columbus Ave", "name_en": "Columbus Ave", "name_es": "Columbus Ave", "name_fr": "Columbus Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41145968437195, 37.79920898597781 ], [ -122.41166353225708, 37.80014574758602 ] ] }, "properties": { "class": "service", "len": 134.41269954879778, "name": "August Alley", "name_de": "August Alley", "name_en": "August Alley", "name_es": "August Alley", "name_fr": "August Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40732908248901, 37.795945063138014 ], [ -122.40742027759552, 37.796377435229154 ] ] }, "properties": { "class": "path", "len": 61.86181455485705, "name": "Jason Ct", "name_de": "Jason Ct", "name_en": "Jason Ct", "name_es": "Jason Ct", "name_fr": "Jason Ct", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40985572338104, 37.80371041956209 ], [ -122.41029024124146, 37.80365955743819 ] ] }, "properties": { "class": "service", "len": 48.38889128704392, "name": "Fielding St", "name_de": "Fielding St", "name_en": "Fielding St", "name_es": "Fielding St", "name_fr": "Fielding St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40762412548065, 37.79680980478974 ], [ -122.40768849849701, 37.79713619974259 ] ] }, "properties": { "class": "street", "len": 46.16832788890606, "name": "Pelton Pl", "name_de": "Pelton Pl", "name_en": "Pelton Pl", "name_es": "Pelton Pl", "name_fr": "Pelton Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4299830198288, 37.78650430839168 ], [ -122.43017077445984, 37.78744123109506 ], [ -122.43035852909088, 37.78836966314214 ], [ -122.43055164813995, 37.78932775886948 ], [ -122.430739402771, 37.79025616721429 ], [ -122.43091642856598, 37.79113369314532 ], [ -122.43109345436096, 37.79201120865472 ], [ -122.43126511573792, 37.79289295287215 ], [ -122.43138313293457, 37.79344827676231 ], [ -122.43145287036896, 37.793770447487695 ], [ -122.43163526058197, 37.79468608293166 ], [ -122.43182301521301, 37.79564409675727 ], [ -122.43201076984406, 37.79657666465477 ], [ -122.43220388889311, 37.79750922077997 ], [ -122.43239164352416, 37.798441765132765 ], [ -122.43248283863066, 37.798908032894516 ], [ -122.43255794048308, 37.79928528374775 ], [ -122.4325793981552, 37.79937429771308 ], [ -122.43260085582732, 37.79946331157114 ], [ -122.43269205093382, 37.79983632085744 ], [ -122.43275105953215, 37.80014150887248 ], [ -122.43276715278624, 37.800213566969795 ] ] }, "properties": { "class": "street", "len": 1956.0814192906666, "name": "Buchanan St", "name_de": "Buchanan St", "name_en": "Buchanan St", "name_es": "Buchanan St", "name_fr": "Buchanan St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42468297481537, 37.785279083856395 ], [ -122.42453277111052, 37.78527484428987 ], [ -122.42444157600401, 37.785266365156076 ], [ -122.42435038089752, 37.78524940688557 ], [ -122.42424845695496, 37.78521972990284 ], [ -122.42417871952057, 37.78518157376468 ], [ -122.42401242256165, 37.78508830312183 ], [ -122.42386221885681, 37.78497807402849 ], [ -122.42356717586516, 37.78474065696133 ], [ -122.42343306541443, 37.784647385762014 ], [ -122.423357963562, 37.78461346893308 ], [ -122.42327213287352, 37.78457955208857 ], [ -122.42315411567687, 37.78454563522852 ], [ -122.42304146289824, 37.78452867679263 ], [ -122.42293953895567, 37.78453291640197 ], [ -122.42283761501311, 37.78454139561992 ] ] }, "properties": { "class": "main", "len": 240.6820203376815, "name": "Starr King Way", "name_de": "Starr King Way", "name_en": "Starr King Way", "name_es": "Starr King Way", "name_fr": "Starr King Way", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40979135036469, 37.78667388804195 ], [ -122.40943729877472, 37.78671628289371 ], [ -122.40933537483215, 37.78626689622757 ] ] }, "properties": { "class": "service", "len": 104.69671450344367, "name": "Elwood St", "name_de": "Elwood St", "name_en": "Elwood St", "name_es": "Elwood St", "name_fr": "Elwood St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40793526172638, 37.789870391647334 ], [ -122.4080103635788, 37.79027736361563 ] ] }, "properties": { "class": "street", "len": 58.154449528707914, "name": "Chelsea Pl", "name_de": "Chelsea Pl", "name_en": "Chelsea Pl", "name_es": "Chelsea Pl", "name_fr": "Chelsea Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41567611694336, 37.78545714543098 ], [ -122.41574048995972, 37.785787830074185 ], [ -122.4157726764679, 37.78592349514079 ] ] }, "properties": { "class": "street", "len": 66.28318559099694, "name": "Ada Ct", "name_de": "Ada Ct", "name_en": "Ada Ct", "name_es": "Ada Ct", "name_fr": "Ada Ct", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43379175662994, 37.78441844686463 ], [ -122.43390440940857, 37.78505014691581 ] ] }, "properties": { "class": "street", "len": 89.89039214564565, "name": "Avery St", "name_de": "Avery St", "name_en": "Avery St", "name_es": "Avery St", "name_fr": "Avery St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40541934967041, 37.78443964494047 ], [ -122.4047863483429, 37.78493567817956 ] ] }, "properties": { "class": "street", "len": 99.67455843892422, "name": "Jessie St", "name_de": "Jessie St", "name_en": "Jessie St", "name_es": "Jessie St", "name_fr": "Jessie St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40434646606445, 37.78881055829413 ], [ -122.40444302558899, 37.78927688684228 ] ] }, "properties": { "class": "street", "len": 66.6413595301592, "name": "Robert Kirk Ln", "name_de": "Robert Kirk Ln", "name_en": "Robert Kirk Ln", "name_es": "Robert Kirk Ln", "name_fr": "Robert Kirk Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40994155406952, 37.78742851276689 ], [ -122.41003811359407, 37.78741579443648 ], [ -122.4105155467987, 37.787356442199 ] ] }, "properties": { "class": "street", "len": 64.64616384897994, "name": "Derby St", "name_de": "Derby St", "name_en": "Derby St", "name_es": "Derby St", "name_fr": "Derby St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41157233715057, 37.78722077976294 ], [ -122.41098761558533, 37.787297089913864 ] ] }, "properties": { "class": "street", "len": 66.30789168628041, "name": "Derby St", "name_de": "Derby St", "name_en": "Derby St", "name_es": "Derby St", "name_fr": "Derby St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40531206130981, 37.78916242465299 ], [ -122.40688383579254, 37.78897589329795 ] ] }, "properties": { "class": "service", "len": 176.7976000965923, "name": "Campton Pl", "name_de": "Campton Pl", "name_en": "Campton Pl", "name_es": "Campton Pl", "name_fr": "Campton Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4371337890625, 37.78464314615926 ], [ -122.43636667728424, 37.78473641736392 ], [ -122.43472516536713, 37.7849483969368 ] ] }, "properties": { "class": "street", "len": 1272.9898772454203, "name": "Post St", "name_de": "Post St", "name_en": "Post St", "name_es": "Post St", "name_fr": "Post St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40440011024475, 37.790714008130706 ], [ -122.40421235561371, 37.789785605538455 ] ] }, "properties": { "class": "street", "len": 132.73159721801204, "name": "Claude Ln", "name_de": "Claude Ln", "name_en": "Claude Ln", "name_es": "Claude Ln", "name_fr": "Claude Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42782652378082, 37.78418102799973 ], [ -122.42857754230499, 37.78409199572878 ], [ -122.42884039878845, 37.784062318281286 ], [ -122.42954313755035, 37.78399024443063 ], [ -122.43060529232025, 37.78386729475848 ] ] }, "properties": { "class": "street_limited", "len": 311.94538997496045, "name": "Western Shore Ln", "name_de": "Western Shore Ln", "name_en": "Western Shore Ln", "name_es": "Western Shore Ln", "name_fr": "Western Shore Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40474343299866, 37.78568608111079 ], [ -122.4052369594574, 37.7853002816854 ] ] }, "properties": { "class": "street", "len": 77.62201814019302, "name": "Stevenson St", "name_de": "Stevenson St", "name_en": "Stevenson St", "name_es": "Stevenson St", "name_fr": "Stevenson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4128919839859, 37.78744123109508 ], [ -122.41329967975616, 37.787386118323695 ] ] }, "properties": { "class": "service", "len": 46.04519193203097, "name": "Colin Pl", "name_de": "Colin Pl", "name_en": "Colin Pl", "name_es": "Colin Pl", "name_fr": "Colin Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42117464542389, 37.78428701865866 ], [ -122.42274641990662, 37.78408775609415 ] ] }, "properties": { "class": "service", "len": 177.44782134531096, "name": "Olive St", "name_de": "Olive St", "name_en": "Olive St", "name_es": "Olive St", "name_fr": "Olive St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42101907730103, 37.78430397714999 ], [ -122.41946339607237, 37.78450323913154 ], [ -122.4178111553192, 37.78471097977434 ] ] }, "properties": { "class": "service", "len": 362.12530462541554, "name": "Olive St", "name_de": "Olive St", "name_en": "Olive St", "name_es": "Olive St", "name_fr": "Olive St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41287589073181, 37.785329958635764 ], [ -122.41299390792847, 37.7853172399442 ], [ -122.41393804550171, 37.78519853205076 ] ] }, "properties": { "class": "service", "len": 119.63500167919395, "name": "Antonio St", "name_de": "Antonio St", "name_en": "Antonio St", "name_es": "Antonio St", "name_fr": "Antonio St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.405344247818, 37.789315040865986 ], [ -122.40573048591614, 37.78926840816768 ], [ -122.40571439266205, 37.78920481807708 ] ] }, "properties": { "class": "street_limited", "len": 52.307382220634594, "name": "Tillman Pl", "name_de": "Tillman Pl", "name_en": "Tillman Pl", "name_es": "Tillman Pl", "name_fr": "Tillman Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4082088470459, 37.78992550256591 ], [ -122.40874528884888, 37.78985767373719 ] ] }, "properties": { "class": "service", "len": 60.89923809061345, "name": "Anson Pl", "name_de": "Anson Pl", "name_en": "Anson Pl", "name_es": "Anson Pl", "name_fr": "Anson Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41230189800262, 37.785440187204266 ], [ -122.41277396678925, 37.785380833380124 ], [ -122.41288661956787, 37.78536811469731 ] ] }, "properties": { "class": "service", "len": 65.40454476316583, "name": "Steveloe Pl", "name_de": "Steveloe Pl", "name_en": "Steveloe Pl", "name_es": "Steveloe Pl", "name_fr": "Steveloe Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42193639278412, 37.788000835369274 ], [ -122.42350280284882, 37.787805822239655 ], [ -122.42514431476593, 37.78759809029636 ] ] }, "properties": { "class": "service", "len": 361.6678602508423, "name": "Fern St", "name_de": "Fern St", "name_en": "Fern St", "name_es": "Fern St", "name_fr": "Fern St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42177546024323, 37.7880177930084 ], [ -122.42021441459656, 37.788225523771885 ], [ -122.41856217384338, 37.78843325395139 ] ] }, "properties": { "class": "service", "len": 362.80110273447985, "name": "Fern St", "name_de": "Fern St", "name_en": "Fern St", "name_es": "Fern St", "name_fr": "Fern St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42874383926392, 37.784787292516874 ], [ -122.42857754230499, 37.78409199572878 ] ] }, "properties": { "class": "street_limited", "len": 99.77217096920332, "name": "Lottie Bennett Ln", "name_de": "Lottie Bennett Ln", "name_en": "Lottie Bennett Ln", "name_es": "Lottie Bennett Ln", "name_fr": "Lottie Bennett Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4213033914566, 37.785694560196426 ], [ -122.4214643239975, 37.78567760202419 ], [ -122.42171108722687, 37.78564792521341 ], [ -122.42302536964417, 37.785474103653804 ], [ -122.42356717586517, 37.785393552060754 ], [ -122.4238407611847, 37.78536811469731 ], [ -122.4240928888321, 37.785372354258485 ], [ -122.42433428764345, 37.785397791620454 ], [ -122.42452204227449, 37.785406270739166 ], [ -122.42471516132356, 37.78541898941539 ] ] }, "properties": { "class": "main", "len": 384.3998551210367, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43541181087494, 37.783930889442026 ], [ -122.4347198009491, 37.78399448407086 ], [ -122.43453741073608, 37.78401144262929 ] ] }, "properties": { "class": "street", "len": 97.80844382981046, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4314421415329, 37.78461770853756 ], [ -122.43446230888367, 37.784231903535 ] ] }, "properties": { "class": "main", "len": 341.1990518745154, "name": "Geary Blvd", "name_de": "Geary Blvd", "name_en": "Geary Blvd", "name_es": "Geary Blvd", "name_fr": "Geary Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43190884590149, 37.787699836627255 ], [ -122.4335503578186, 37.787487864946456 ], [ -122.43519723415375, 37.78727589265764 ] ] }, "properties": { "class": "street", "len": 370.9240586785205, "name": "Wilmot St", "name_de": "Wilmot St", "name_en": "Wilmot St", "name_es": "Wilmot St", "name_fr": "Wilmot St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41762340068817, 37.78377826210958 ], [ -122.41791844367982, 37.78374434488178 ] ] }, "properties": { "class": "service", "len": 186.21791320864656, "name": "Willow St", "name_de": "Willow St", "name_en": "Willow St", "name_es": "Willow St", "name_fr": "Willow St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42884039878845, 37.784062318281286 ], [ -122.42900133132935, 37.78475337575214 ] ] }, "properties": { "class": "street_limited", "len": 99.27741183229244, "name": "Bertie Minor Ln", "name_de": "Bertie Minor Ln", "name_en": "Bertie Minor Ln", "name_es": "Bertie Minor Ln", "name_fr": "Bertie Minor Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4046790599823, 37.79021377439333 ], [ -122.4047702550888, 37.79066737631527 ] ] }, "properties": { "class": "service", "len": 64.68496115748317, "name": "Mark Ln", "name_de": "Mark Ln", "name_en": "Mark Ln", "name_es": "Mark Ln", "name_fr": "Mark Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4043357372284, 37.79072248663947 ], [ -122.40452885627745, 37.79165511666101 ] ] }, "properties": { "class": "street", "len": 132.7430770321996, "name": "St George Alley", "name_de": "St George Alley", "name_en": "St George Alley", "name_es": "St George Alley", "name_fr": "St George Alley", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.788361184363445 ], [ -122.40513503551483, 37.788242481359454 ] ] }, "properties": { "class": "street", "len": 174.3184663189849, "name": "Maiden Ln", "name_de": "Maiden Ln", "name_en": "Maiden Ln", "name_es": "Maiden Ln", "name_fr": "Maiden Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42174863815308, 37.787080877614905 ], [ -122.42330968379974, 37.786868904158666 ] ] }, "properties": { "class": "service", "len": 176.37711019437333, "name": "Daniel Burnham Ct", "name_de": "Daniel Burnham Ct", "name_en": "Daniel Burnham Ct", "name_es": "Daniel Burnham Ct", "name_fr": "Daniel Burnham Ct", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43282079696655, 37.7880559476822 ], [ -122.43301391601562, 37.78901404747704 ] ] }, "properties": { "class": "street", "len": 136.36240684315945, "name": "Orben Pl", "name_de": "Orben Pl", "name_en": "Orben Pl", "name_es": "Orben Pl", "name_fr": "Orben Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42471516132355, 37.78541898941539 ], [ -122.42454886436462, 37.785520738746506 ], [ -122.42439866065978, 37.785554655159096 ], [ -122.42424309253691, 37.78562248793755 ], [ -122.4241143465042, 37.78571575790625 ], [ -122.42371737957, 37.78614395034285 ], [ -122.42360472679137, 37.78625841720761 ], [ -122.42356181144713, 37.78636016538299 ] ] }, "properties": { "class": "street", "len": 190.34403875146563, "name": "Peter Yorke Way", "name_de": "Peter Yorke Way", "name_en": "Peter Yorke Way", "name_es": "Peter Yorke Way", "name_fr": "Peter Yorke Way", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41176009178162, 37.78815345398132 ], [ -122.41239309310913, 37.78807290530868 ], [ -122.4127846956253, 37.78802627182651 ], [ -122.41341233253479, 37.78794572301525 ] ] }, "properties": { "class": "service", "len": 186.62898058156162, "name": "Cosmo Pl", "name_de": "Cosmo Pl", "name_en": "Cosmo Pl", "name_es": "Cosmo Pl", "name_fr": "Cosmo Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41215169429779, 37.785910776551354 ], [ -122.41235017776489, 37.78684770677962 ], [ -122.41254329681395, 37.78776766743669 ] ] }, "properties": { "class": "service", "len": 265.24167747082606, "name": "Shannon St", "name_de": "Shannon St", "name_en": "Shannon St", "name_es": "Shannon St", "name_fr": "Shannon St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43636667728424, 37.78473641736392 ], [ -122.43655443191528, 37.785669122936596 ], [ -122.43674218654633, 37.786601816738134 ], [ -122.43692994117737, 37.78753449876839 ], [ -122.43712842464447, 37.78848836594184 ], [ -122.4371337890625, 37.78851380223124 ] ] }, "properties": { "class": "street", "len": 793.0822708243238, "name": "Pierce St", "name_de": "Pierce St", "name_en": "Pierce St", "name_es": "Pierce St", "name_fr": "Pierce St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41424918174744, 37.78374434488178 ], [ -122.41443157196045, 37.78466010456885 ], [ -122.41452276706696, 37.78510526142928 ], [ -122.41461932659149, 37.785592811104614 ], [ -122.41480708122253, 37.7865212663742 ], [ -122.41500020027159, 37.78745818886262 ], [ -122.41518795490263, 37.78839086008464 ], [ -122.4153810739517, 37.78934471620411 ], [ -122.41557419300078, 37.79025616721426 ], [ -122.4156868457794, 37.79081151092244 ], [ -122.41575121879576, 37.791116736221234 ], [ -122.41576731204982, 37.791209999255486 ] ] }, "properties": { "class": "street", "len": 1465.902447961873, "name": "Leavenworth St", "name_de": "Leavenworth St", "name_en": "Leavenworth St", "name_es": "Leavenworth St", "name_fr": "Leavenworth St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43557810783386, 37.78917514268277 ], [ -122.43713378906251, 37.78897589329795 ] ] }, "properties": { "class": "street", "len": 185.37523135522827, "name": "Perine Pl", "name_de": "Perine Pl", "name_en": "Perine Pl", "name_es": "Perine Pl", "name_fr": "Perine Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42369055747986, 37.78874696780958 ], [ -122.42212414741516, 37.78894197845551 ] ] }, "properties": { "class": "service", "len": 176.504996529051, "name": "Austin St", "name_de": "Austin St", "name_en": "Austin St", "name_es": "Austin St", "name_fr": "Austin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4219685792923, 37.78896741458879 ], [ -122.42040216922759, 37.78916666399649 ], [ -122.41875529289244, 37.7893786308617 ] ] }, "properties": { "class": "service", "len": 362.7780641879029, "name": "Austin St", "name_de": "Austin St", "name_en": "Austin St", "name_es": "Austin St", "name_fr": "Austin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43222534656525, 37.786224501118014 ], [ -122.43240773677826, 37.78714870899247 ] ] }, "properties": { "class": "path", "len": 131.81254720279276, "name": "Cottage Row", "name_de": "Cottage Row", "name_en": "Cottage Row", "name_es": "Cottage Row", "name_fr": "Cottage Row", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42159843444824, 37.787102074927084 ], [ -122.4200212955475, 37.78728013210937 ], [ -122.41836905479433, 37.787487864946456 ] ] }, "properties": { "class": "service", "len": 363.4626556619211, "name": "Hemlock St", "name_de": "Hemlock St", "name_en": "Hemlock St", "name_es": "Hemlock St", "name_fr": "Hemlock St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42778360843658, 37.783926649798154 ], [ -122.42633521556854, 37.78410895426485 ], [ -122.42627084255219, 37.784138631693594 ], [ -122.4262547492981, 37.784193746886835 ], [ -122.42643177509309, 37.785079823966655 ] ] }, "properties": { "class": "street", "len": 305.94004941331576, "name": "Cleary Ct", "name_de": "Cleary Ct", "name_en": "Cleary Ct", "name_es": "Cleary Ct", "name_fr": "Cleary Ct", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42136240005493, 37.78521549033291 ], [ -122.42293417453766, 37.7850162302717 ] ] }, "properties": { "class": "street", "len": 177.46998985809063, "name": "Myrtle St", "name_de": "Myrtle St", "name_en": "Myrtle St", "name_es": "Myrtle St", "name_fr": "Myrtle St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42121756076813, 37.78523668818016 ], [ -122.41965115070342, 37.78543594764699 ], [ -122.41799890995026, 37.785643685668035 ] ] }, "properties": { "class": "service", "len": 363.0500218133764, "name": "Myrtle St", "name_de": "Myrtle St", "name_en": "Myrtle St", "name_es": "Myrtle St", "name_fr": "Myrtle St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41689920425415, 37.78675867772114 ], [ -122.41697430610657, 37.787110553850255 ], [ -122.41699039936066, 37.78720382194092 ] ] }, "properties": { "class": "street_limited", "len": 63.67390853814074, "name": "Meacham Pl", "name_de": "Meacham Pl", "name_en": "Meacham Pl", "name_es": "Meacham Pl", "name_fr": "Meacham Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41468906402588, 37.78418102799973 ], [ -122.41478025913239, 37.78461346893308 ] ] }, "properties": { "class": "street", "len": 61.940650626457945, "name": "Cohen Pl", "name_de": "Cohen Pl", "name_en": "Cohen Pl", "name_es": "Cohen Pl", "name_fr": "Cohen Pl", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42825031280518, 37.78626265671772 ], [ -122.42896914482117, 37.78618210598413 ] ] }, "properties": { "class": "street", "len": 80.42590689447029, "name": "Hemlock St", "name_de": "Hemlock St", "name_en": "Hemlock St", "name_es": "Hemlock St", "name_fr": "Hemlock St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41186201572418, 37.80536341952066 ], [ -122.41351962089539, 37.80515573694268 ] ] }, "properties": { "class": "street", "len": 186.9047548890102, "name": "Vandewater St", "name_de": "Vandewater St", "name_en": "Vandewater St", "name_es": "Vandewater St", "name_fr": "Vandewater St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40576267242432, 37.80676208289539 ], [ -122.40596115589142, 37.80662645609157 ] ] }, "properties": { "class": "main", "len": 29.420489458901464, "name": "Bay St", "name_de": "Bay St", "name_en": "Bay St", "name_es": "Bay St", "name_fr": "Bay St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40537643432617, 37.80567282309445 ], [ -122.40544617176056, 37.805689776677475 ], [ -122.40610599517822, 37.80560077032319 ], [ -122.40695893764496, 37.80549057183116 ] ] }, "properties": { "class": "street", "len": 178.97101766940898, "name": "Francisco St", "name_de": "Francisco St", "name_en": "Francisco St", "name_es": "Francisco St", "name_fr": "Francisco St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4095070362091, 37.80613480683977 ], [ -122.40931928157806, 37.80520659803617 ] ] }, "properties": { "class": "street", "len": 133.10344435826693, "name": "Midway St", "name_de": "Midway St", "name_en": "Midway St", "name_es": "Midway St", "name_fr": "Midway St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40911543369293, 37.808135290254896 ], [ -122.40899205207825, 37.80805476336766 ], [ -122.40886867046356, 37.808016619022 ], [ -122.40766167640686, 37.807495310989914 ], [ -122.40755438804626, 37.807444451472676 ], [ -122.40738272666931, 37.80734273233311 ] ] }, "properties": { "class": "street", "len": 223.6784018579254, "name": "The Embarcadero", "name_de": "The Embarcadero", "name_en": "The Embarcadero", "name_es": "The Embarcadero", "name_fr": "The Embarcadero", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40738272666931, 37.80734273233311 ], [ -122.40713059902191, 37.807202868287426 ], [ -122.40708231925966, 37.80717743843246 ], [ -122.40614891052248, 37.80671546120967 ], [ -122.40614354610445, 37.80671122287313 ], [ -122.40596115589146, 37.80662645609157 ] ] }, "properties": { "class": "main", "len": 187.63943289268616, "name": "The Embarcadero", "name_de": "The Embarcadero", "name_en": "The Embarcadero", "name_es": "The Embarcadero", "name_fr": "The Embarcadero", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43159770965576, 37.78688586205755 ], [ -122.431640625, 37.78717838520059 ], [ -122.43154406547546, 37.78726741375342 ] ] }, "properties": { "class": "main", "len": 57.58368741715442, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41539716720581, 37.7977593133753 ], [ -122.41703867912292, 37.79755160941504 ], [ -122.4186909198761, 37.797339665996496 ], [ -122.4195009469986, 37.79722945517852 ], [ -122.42031633853912, 37.797110766421454 ], [ -122.42196321487427, 37.79690306063772 ], [ -122.42352962493898, 37.79669959318127 ] ] }, "properties": { "class": "street", "len": 917.3084934182016, "name": "Vallejo St", "name_de": "Vallejo St", "name_en": "Vallejo St", "name_es": "Vallejo St", "name_fr": "Vallejo St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4264532327652, 37.78599980663131 ], [ -122.42649078369139, 37.786194824526845 ], [ -122.42651224136351, 37.78631353082002 ], [ -122.42646932601927, 37.78631777032694 ], [ -122.42657124996184, 37.78684346730307 ], [ -122.42665708065032, 37.78683498834927 ], [ -122.4266731739044, 37.78692825678771 ] ] }, "properties": { "class": "path", "len": 147.8650025763167, "name": "Octavia", "name_de": "Octavia", "name_en": "Octavia", "name_es": "Octavia", "name_fr": "Octavia", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.432000041008, 37.788161932783865 ], [ -122.43190884590149, 37.787699836627255 ], [ -122.43181228637695, 37.78723349812689 ] ] }, "properties": { "class": "main", "len": 132.42041674862776, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42233872413635, 37.79877239166739 ], [ -122.42244601249696, 37.79875967528956 ], [ -122.4237871170044, 37.79857740696702 ], [ -122.42390513420106, 37.79856469055563 ], [ -122.42406070232393, 37.79854349653181 ] ] }, "properties": { "class": "street", "len": 194.08371844381782, "name": "Union St", "name_de": "Union St", "name_en": "Union St", "name_es": "Union St", "name_fr": "Union St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41658806800842, 37.79902671876394 ], [ -122.41731226444244, 37.79894618194477 ] ] }, "properties": { "class": "street", "len": 81.71896352755662, "name": "Macondray Ln", "name_de": "Macondray Ln", "name_en": "Macondray Ln", "name_es": "Macondray Ln", "name_fr": "Macondray Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.793622079565 ], [ -122.40461468696594, 37.79356273231249 ], [ -122.40612208843231, 37.79337621206568 ], [ -122.40664243698119, 37.79331262551028 ], [ -122.407146692276, 37.79324903890016 ], [ -122.40727543830872, 37.79323208246155 ], [ -122.40738809108734, 37.79321936513004 ], [ -122.40771532058716, 37.79317697400918 ], [ -122.40854680538177, 37.79307099610066 ], [ -122.40902423858643, 37.79300317015943 ], [ -122.40934610366821, 37.79296077891453 ], [ -122.4093621969223, 37.79296077891453 ], [ -122.40937829017638, 37.792956539788705 ], [ -122.40971088409422, 37.792922626773326 ], [ -122.4110037088394, 37.792765778874795 ], [ -122.41112172603607, 37.79273610491057 ], [ -122.41190493106842, 37.792634365514225 ], [ -122.4122428894043, 37.79259197405773 ], [ -122.41265058517457, 37.79254110427786 ], [ -122.41429746150972, 37.79233762480803 ], [ -122.41511821746828, 37.79223588486298 ], [ -122.41552591323854, 37.79218077566758 ], [ -122.41594970226288, 37.79212990560456 ], [ -122.41629302501678, 37.79208327468274 ], [ -122.41760194301605, 37.79192642500233 ], [ -122.4192327260971, 37.791701747853054 ], [ -122.42088496685028, 37.79149402686194 ], [ -122.42244064807892, 37.79130750139271 ], [ -122.42259621620178, 37.79129054450852 ], [ -122.42415189743042, 37.79109130082781 ], [ -122.42580950260164, 37.790879338875534 ] ] }, "properties": { "class": "street", "len": 3287.365366319779, "name": "Sacramento St", "name_de": "Sacramento St", "name_en": "Sacramento St", "name_es": "Sacramento St", "name_fr": "Sacramento St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40522623062134, 37.78869609538249 ], [ -122.40434646606447, 37.78881055829413 ], [ -122.40418016910554, 37.78883175511017 ] ] }, "properties": { "class": "street", "len": 173.9752821090882, "name": "Post St", "name_de": "Post St", "name_en": "Post St", "name_es": "Post St", "name_fr": "Post St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.791362611239464 ], [ -122.40424454212189, 37.79168903025815 ], [ -122.40435183048248, 37.792218928191865 ], [ -122.40444302558899, 37.79265556123338 ], [ -122.40461468696594, 37.79356273231249 ], [ -122.40471124649049, 37.794024791804866 ], [ -122.40479707717897, 37.79445293609456 ] ] }, "properties": { "class": "main", "len": 527.1476029032497, "name": "Kearny St", "name_de": "Kearny St", "name_en": "Kearny St", "name_es": "Kearny St", "name_fr": "Kearny St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.79724641069967 ], [ -122.4041962623596, 37.79724217181975 ], [ -122.40477561950682, 37.79717011082383 ], [ -122.40532815456389, 37.79709804975758 ], [ -122.40553736686705, 37.79707261642332 ], [ -122.40652978420258, 37.79694968851756 ], [ -122.40683019161224, 37.79691153843622 ], [ -122.40762412548065, 37.79680980478974 ], [ -122.40843415260315, 37.79670807100316 ], [ -122.40874528884888, 37.796669920797065 ], [ -122.40887403488159, 37.79665296514357 ], [ -122.40926027297974, 37.79660633707646 ], [ -122.41009712219238, 37.79650036408717 ] ] }, "properties": { "class": "street", "len": 907.8464553349108, "name": "Pacific Ave", "name_de": "Pacific Ave", "name_en": "Pacific Ave", "name_es": "Pacific Ave", "name_fr": "Pacific Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.79408413868621 ], [ -122.40471124649048, 37.794024791804866 ], [ -122.40621328353882, 37.793834033649055 ] ] }, "properties": { "class": "service", "len": 541.7946597217881, "name": "Commercial St", "name_de": "Commercial St", "name_en": "Commercial St", "name_es": "Commercial St", "name_fr": "Commercial St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40418016910553, 37.78709359600294 ], [ -122.40460932254791, 37.78675019875761 ], [ -122.40508139133453, 37.786377123398616 ], [ -122.4059182405472, 37.78571575790625 ], [ -122.40736126899719, 37.78457955208857 ], [ -122.4079352617264, 37.78412591279702 ], [ -122.40809082984924, 37.78400296335056 ], [ -122.40840196609497, 37.78375706384402 ], [ -122.40842342376709, 37.78374434488178 ] ] }, "properties": { "class": "main", "len": 891.4288760387328, "name": "Market St", "name_de": "Market St", "name_en": "Market St", "name_es": "Market St", "name_fr": "Market St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40622937679291, 37.78571575790625 ], [ -122.40616500377655, 37.785703039281096 ], [ -122.40612208843231, 37.785698799738874 ], [ -122.40606307983398, 37.785698799738874 ], [ -122.40591824054718, 37.78571575790625 ], [ -122.40586996078491, 37.78571575790625 ], [ -122.40582704544067, 37.78571151836477 ], [ -122.40577340126038, 37.785703039281096 ], [ -122.40573585033417, 37.78568608111079 ], [ -122.40569293498993, 37.78566064384806 ], [ -122.4052369594574, 37.7853002816854 ], [ -122.4047863483429, 37.784935678179586 ], [ -122.40426063537598, 37.784490520297716 ], [ -122.40418016910554, 37.784426926095676 ] ] }, "properties": { "class": "main", "len": 1023.8620893001719, "name": "4th St", "name_de": "4th St", "name_en": "4th St", "name_es": "4th St", "name_fr": "4th St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40508139133453, 37.786377123398616 ], [ -122.40418016910554, 37.78565216475853 ] ] }, "properties": { "class": "street_limited", "len": 247.80509464777072, "name": "Yerba Buena Ln", "name_de": "Yerba Buena Ln", "name_en": "Yerba Buena Ln", "name_es": "Yerba Buena Ln", "name_fr": "Yerba Buena Ln", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42580950260162, 37.79087933887559 ], [ -122.42745101451874, 37.79066737631527 ], [ -122.42754757404327, 37.790658897800206 ], [ -122.42909252643585, 37.79045965241627 ], [ -122.430739402771, 37.79025616721429 ], [ -122.43238091468811, 37.79004420286635 ], [ -122.43348062038422, 37.78991278466528 ], [ -122.43360936641693, 37.789895827461 ], [ -122.43402242660522, 37.78984071652026 ], [ -122.43566930294037, 37.78963299029734 ] ] }, "properties": { "class": "street", "len": 1112.6142921479545, "name": "Sacramento St", "name_de": "Sacramento St", "name_en": "Sacramento St", "name_es": "Sacramento St", "name_fr": "Sacramento St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42782652378082, 37.80084513199106 ], [ -122.42781043052673, 37.80076459715455 ], [ -122.42767095565796, 37.80006521198694 ], [ -122.4276602268219, 37.80000163118878 ], [ -122.42764413356781, 37.79992957288471 ], [ -122.42746710777283, 37.79906910652822 ], [ -122.42727935314178, 37.79813657009509 ], [ -122.42709159851074, 37.7972040218895 ], [ -122.42690920829773, 37.796275700847126 ], [ -122.42671072483063, 37.79532193420228 ], [ -122.42660343647003, 37.79479205852346 ], [ -122.42652833461761, 37.79440206759597 ], [ -122.42636740207672, 37.79362631865265 ], [ -122.42632985115051, 37.79351610229493 ], [ -122.42629766464233, 37.79343132036946 ], [ -122.42616355419159, 37.7927784962844 ], [ -122.42615282535553, 37.79263860465857 ], [ -122.42614209651947, 37.79250719107183 ], [ -122.42600798606873, 37.79188403313971 ], [ -122.42598116397858, 37.79176109660045 ] ] }, "properties": { "class": "street", "len": 1296.954226786087, "name": "Gough St", "name_de": "Gough St", "name_en": "Gough St", "name_es": "Gough St", "name_fr": "Gough St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42398023605347, 37.79016290297611 ], [ -122.42561638355255, 37.7899551776589 ], [ -122.4272632598877, 37.78974321244753 ], [ -122.42891013622285, 37.789535485950495 ], [ -122.43055164813995, 37.78932775886951 ], [ -122.43219316005707, 37.78911579185838 ], [ -122.43301391601562, 37.78901404747707 ], [ -122.43383467197418, 37.78890806359755 ], [ -122.43548154830933, 37.78870033475278 ] ] }, "properties": { "class": "street", "len": 1297.8672409845715, "name": "California St", "name_de": "California St", "name_en": "California St", "name_es": "California St", "name_fr": "California St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42598116397858, 37.791761096600425 ], [ -122.42580950260162, 37.79087933887556 ] ] }, "properties": { "class": "street", "len": 125.24834929052936, "name": "Gough St", "name_de": "Gough St", "name_en": "Gough St", "name_es": "Gough St", "name_fr": "Gough St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43566930294037, 37.78963299029734 ], [ -122.43557810783386, 37.78917514268277 ], [ -122.43548154830933, 37.78870033475276 ] ] }, "properties": { "class": "street", "len": 132.9305839748242, "name": "Steiner St", "name_de": "Steiner St", "name_en": "Steiner St", "name_es": "Steiner St", "name_fr": "Steiner St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43548154830933, 37.78870033475276 ], [ -122.43528842926025, 37.78774223089045 ], [ -122.43519723415376, 37.78727589265761 ], [ -122.43510067462921, 37.78681379096045 ], [ -122.43491291999817, 37.785876860302224 ] ] }, "properties": { "class": "street", "len": 402.3593321339213, "name": "Steiner St", "name_de": "Steiner St", "name_en": "Steiner St", "name_es": "Steiner St", "name_fr": "Steiner St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4250477552414, 37.78713175115391 ], [ -122.42667317390442, 37.78692825678771 ], [ -122.42673218250275, 37.78691977784362 ], [ -122.42786943912506, 37.78677563564531 ], [ -122.42833614349365, 37.78671628289368 ] ] }, "properties": { "class": "street", "len": 370.8120509786245, "name": "Sutter St", "name_de": "Sutter St", "name_en": "Sutter St", "name_es": "Sutter St", "name_fr": "Sutter St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42799818515778, 37.78504590733613 ], [ -122.42814838886261, 37.785787830074185 ] ] }, "properties": { "class": "street", "len": 105.35203082941551, "name": "Laguna St", "name_de": "Laguna St", "name_en": "Laguna St", "name_es": "Laguna St", "name_fr": "Laguna St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43129193782806, 37.785372354258485 ], [ -122.4297845363617, 37.7855673738098 ], [ -122.42902278900146, 37.78566912293662 ], [ -122.42887794971466, 37.78568608111079 ], [ -122.42814838886261, 37.785787830074185 ] ] }, "properties": { "class": "street", "len": 354.766990348488, "name": "Post St", "name_de": "Post St", "name_en": "Post St", "name_es": "Post St", "name_fr": "Post St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43548154830933, 37.78870033475276 ], [ -122.43712842464447, 37.78848836594184 ], [ -122.4371337890625, 37.78848836594184 ] ] }, "properties": { "class": "street", "len": 1274.824330638367, "name": "California St", "name_de": "California St", "name_en": "California St", "name_es": "California St", "name_fr": "California St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42833614349365, 37.78671628289371 ], [ -122.42852926254271, 37.78765320290964 ], [ -122.42871701717375, 37.78857739291647 ], [ -122.42891013622283, 37.789535485950495 ], [ -122.42909252643584, 37.79045965241627 ], [ -122.42927491664882, 37.79134141514943 ], [ -122.4294519424438, 37.792218928191865 ], [ -122.42962896823879, 37.793100669930396 ], [ -122.42980599403377, 37.79397816207892 ], [ -122.42999374866481, 37.79489803396326 ], [ -122.43018686771389, 37.79585604504041 ], [ -122.43037462234493, 37.79678437135622 ], [ -122.43056237697597, 37.797716924859415 ], [ -122.43075013160701, 37.79864946659016 ], [ -122.43082523345943, 37.7990140024299 ], [ -122.43093788623806, 37.799581996548376 ], [ -122.43110954761501, 37.800366160355566 ], [ -122.43112027645107, 37.80042974083997 ] ] }, "properties": { "class": "street", "len": 1956.5208624328263, "name": "Laguna St", "name_de": "Laguna St", "name_en": "Laguna St", "name_es": "Laguna St", "name_fr": "Laguna St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42814838886261, 37.785787830074185 ], [ -122.42825031280518, 37.78626265671772 ], [ -122.42833614349365, 37.78671628289371 ] ] }, "properties": { "class": "street", "len": 132.52717323649773, "name": "Laguna St", "name_de": "Laguna St", "name_en": "Laguna St", "name_es": "Laguna St", "name_fr": "Laguna St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42814838886261, 37.785787830074185 ], [ -122.42750465869905, 37.785868381237506 ], [ -122.42645323276521, 37.78599980663131 ], [ -122.42486000061037, 37.786199064040595 ] ] }, "properties": { "class": "street", "len": 370.8104371989897, "name": "Post St", "name_de": "Post St", "name_en": "Post St", "name_es": "Post St", "name_fr": "Post St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42833614349365, 37.78671628289371 ], [ -122.4299830198288, 37.78650430839168 ], [ -122.43146896362305, 37.786330488846325 ], [ -122.431640625, 37.78629657278981 ] ] }, "properties": { "class": "street", "len": 372.80325169938106, "name": "Sutter St", "name_de": "Sutter St", "name_en": "Sutter St", "name_es": "Sutter St", "name_fr": "Sutter St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4371337890625, 37.78655518232762 ], [ -122.43674218654633, 37.786601816738134 ], [ -122.43510067462921, 37.78681379096047 ], [ -122.43345916271211, 37.78702152510845 ], [ -122.43240773677827, 37.78714870899247 ], [ -122.43181228637695, 37.78723349812689 ], [ -122.43154406547548, 37.78726741375342 ], [ -122.43017077445985, 37.78744123109506 ], [ -122.42852926254274, 37.78765320290964 ], [ -122.4268662929535, 37.78786517411618 ], [ -122.42524087429048, 37.78807290530866 ], [ -122.42359399795534, 37.78828063591721 ], [ -122.42202758789062, 37.7884714084107 ], [ -122.42187738418579, 37.788492605324016 ], [ -122.4203109741211, 37.78870033475276 ], [ -122.41865873336792, 37.78891230295561 ], [ -122.41765022277832, 37.78903524423468 ], [ -122.4170172214508, 37.7891115525119 ], [ -122.41576731204987, 37.78929384418854 ], [ -122.41538107395172, 37.78934471620411 ], [ -122.41450130939484, 37.78945069945733 ], [ -122.41374492645265, 37.789548203916056 ], [ -122.41207659244537, 37.78974321244753 ], [ -122.41044580936433, 37.78995941695688 ], [ -122.40882575511934, 37.79017138154805 ], [ -122.40880966186525, 37.790175620833686 ], [ -122.40879356861119, 37.790175620833686 ], [ -122.40801036357884, 37.79027736361561 ], [ -122.40787088871004, 37.79029432073231 ], [ -122.40752756595613, 37.79033671350706 ], [ -122.40723252296449, 37.790370627709315 ], [ -122.4071252346039, 37.79038334553116 ], [ -122.40700185298921, 37.790396063350826 ], [ -122.40676045417787, 37.790429977525854 ], [ -122.40652441978456, 37.79045965241624 ], [ -122.40633666515352, 37.790480848759216 ], [ -122.40557491779329, 37.790565634070326 ], [ -122.40526914596558, 37.79060802668941 ], [ -122.4047702550888, 37.79066737631525 ], [ -122.40440011024477, 37.790714008130706 ], [ -122.40433573722841, 37.79072248663944 ], [ -122.40418016910554, 37.79074368290703 ] ] }, "properties": { "class": "main", "len": 4777.280544232611, "name": "Bush St", "name_de": "Bush St", "name_en": "Bush St", "name_es": "Bush St", "name_fr": "Bush St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.431640625, 37.78629657278981 ], [ -122.43222534656525, 37.786224501118014 ], [ -122.43327140808107, 37.78608883660399 ] ] }, "properties": { "class": "street", "len": 183.80983219213513, "name": "Sutter St", "name_de": "Sutter St", "name_en": "Sutter St", "name_es": "Sutter St", "name_fr": "Sutter St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4349182844162, 37.794274896196235 ], [ -122.43473052978516, 37.79335077745011 ], [ -122.43455350399017, 37.79247751700376 ] ] }, "properties": { "class": "street", "len": 256.79662568399306, "name": "Fillmore St", "name_de": "Fillmore St", "name_en": "Fillmore St", "name_es": "Fillmore St", "name_fr": "Fillmore St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43327140808105, 37.78608883660399 ], [ -122.43307828903198, 37.785151896754726 ], [ -122.4329549074173, 37.78452019757326 ], [ -122.43294417858124, 37.784473561849175 ] ] }, "properties": { "class": "street", "len": 229.87838887474672, "name": "Fillmore St", "name_de": "Fillmore St", "name_en": "Fillmore St", "name_es": "Fillmore St", "name_fr": "Fillmore St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43327140808105, 37.78608883660399 ], [ -122.43491291999817, 37.785876860302224 ] ] }, "properties": { "class": "street", "len": 185.58002721248843, "name": "Sutter St", "name_de": "Sutter St", "name_en": "Sutter St", "name_es": "Sutter St", "name_fr": "Sutter St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42158770561218, 37.795029443297494 ], [ -122.42314875125885, 37.79483020969929 ] ] }, "properties": { "class": "street", "len": 176.52994335243739, "name": "Pacific Ave", "name_de": "Pacific Ave", "name_en": "Pacific Ave", "name_es": "Pacific Ave", "name_fr": "Pacific Ave", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42615282535553, 37.79263860465855 ], [ -122.42451667785645, 37.792850561564016 ], [ -122.42295563220978, 37.79304980050074 ], [ -122.42280006408691, 37.79306251786141 ] ] }, "properties": { "class": "street", "len": 377.93480740004276, "name": "Washington St", "name_de": "Washington St", "name_en": "Washington St", "name_es": "Washington St", "name_fr": "Washington St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43657052516937, 37.794062943376915 ], [ -122.4363774061203, 37.79313882197963 ], [ -122.43621110916138, 37.792265559028124 ] ] }, "properties": { "class": "street", "len": 256.40505882311743, "name": "Steiner St", "name_de": "Steiner St", "name_en": "Steiner St", "name_es": "Steiner St", "name_fr": "Steiner St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43455350399017, 37.79247751700376 ], [ -122.43621110916138, 37.792265559028124 ] ] }, "properties": { "class": "street", "len": 186.72620812329262, "name": "Jackson St", "name_de": "Jackson St", "name_en": "Jackson St", "name_es": "Jackson St", "name_fr": "Jackson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42314338684082, 37.79392729325345 ], [ -122.4246883392334, 37.79372805668306 ], [ -122.42632985115051, 37.79351610229493 ] ] }, "properties": { "class": "street", "len": 359.5469532934653, "name": "Jackson St", "name_de": "Jackson St", "name_en": "Jackson St", "name_es": "Jackson St", "name_fr": "Jackson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43621110916138, 37.792265559028124 ], [ -122.43602335453033, 37.79138380732341 ] ] }, "properties": { "class": "street", "len": 125.51699526332001, "name": "Steiner St", "name_de": "Steiner St", "name_en": "Steiner St", "name_es": "Steiner St", "name_fr": "Steiner St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42280006408691, 37.79306251786141 ], [ -122.42122828960419, 37.79327023444296 ], [ -122.4195921421051, 37.7934779504405 ], [ -122.41797208786011, 37.79368142676982 ], [ -122.41793990135193, 37.79368566585406 ] ] }, "properties": { "class": "street", "len": 548.5713946050722, "name": "Washington St", "name_de": "Washington St", "name_en": "Washington St", "name_es": "Washington St", "name_fr": "Washington St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42632985115051, 37.79351610229493 ], [ -122.42798745632172, 37.79330838640464 ] ] }, "properties": { "class": "street", "len": 186.64642964750635, "name": "Jackson St", "name_de": "Jackson St", "name_en": "Jackson St", "name_es": "Jackson St", "name_fr": "Jackson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42798745632172, 37.79330838640464 ], [ -122.42815911769867, 37.79419011514147 ], [ -122.42834150791168, 37.79512270139288 ], [ -122.42853999137878, 37.79606375376797 ], [ -122.42872774600983, 37.79699207747368 ] ] }, "properties": { "class": "street", "len": 525.6550689667262, "name": "Octavia St", "name_de": "Octavia St", "name_en": "Octavia St", "name_es": "Octavia St", "name_fr": "Octavia St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42798745632172, 37.79330838640464 ], [ -122.4280196428299, 37.79318121312238 ], [ -122.42793381214142, 37.79274034404906 ], [ -122.42788553237915, 37.7926725178043 ], [ -122.4279123544693, 37.792579256616065 ], [ -122.42789089679718, 37.79248175615706 ], [ -122.42783725261688, 37.792426647145035 ] ] }, "properties": { "class": "street", "len": 129.48535326004438, "name": "Octavia St", "name_de": "Octavia St", "name_en": "Octavia St", "name_es": "Octavia St", "name_fr": "Octavia St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42783725261688, 37.792426647145035 ], [ -122.42781043052673, 37.792490234462946 ], [ -122.42783188819885, 37.79261740893458 ], [ -122.42788553237915, 37.7926725178043 ], [ -122.42785334587097, 37.79274882232528 ], [ -122.42791771888733, 37.79318969134799 ], [ -122.42798745632172, 37.79330838640464 ] ] }, "properties": { "class": "street", "len": 129.13268389338356, "name": "Octavia St", "name_de": "Octavia St", "name_en": "Octavia St", "name_es": "Octavia St", "name_fr": "Octavia St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42140531539917, 37.78618634549861 ], [ -122.41983890533446, 37.78638560240497 ], [ -122.41818130016325, 37.78656790080614 ] ] }, "properties": { "class": "service", "len": 362.69087619878184, "name": "Cedar St", "name_de": "Cedar St", "name_en": "Cedar St", "name_es": "Cedar St", "name_fr": "Cedar St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41930782794952, 37.78374434488178 ], [ -122.41936683654785, 37.78403264082188 ], [ -122.41946339607239, 37.78450323913154 ], [ -122.4195545911789, 37.78496535527636 ], [ -122.41965115070343, 37.78543594764699 ], [ -122.41974234580994, 37.78589381842874 ], [ -122.41983890533447, 37.78638560240497 ], [ -122.41993010044098, 37.78683074887198 ] ] }, "properties": { "class": "street", "len": 935.2773512284809, "name": "Polk St", "name_de": "Polk St", "name_en": "Polk St", "name_es": "Polk St", "name_fr": "Polk St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40809082984924, 37.78400296335056 ], [ -122.4082088470459, 37.78409199572878 ], [ -122.40847706794739, 37.78431669601591 ], [ -122.4084985256195, 37.78433789412096 ], [ -122.40851998329163, 37.78438876954822 ], [ -122.4085360765457, 37.78446508262347 ] ] }, "properties": { "class": "street", "len": 83.84549664431606, "name": "Cyril Magnin St", "name_de": "Cyril Magnin St", "name_en": "Cyril Magnin St", "name_es": "Cyril Magnin St", "name_fr": "Cyril Magnin St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.40809082984924, 37.78400296335056 ], [ -122.40776896476746, 37.78374434488178 ] ] }, "properties": { "class": "street", "len": 252.0510642319494, "name": "5th St", "name_de": "5th St", "name_en": "5th St", "name_es": "5th St", "name_fr": "5th St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4108213186264, 37.791837402062676 ], [ -122.41076231002808, 37.79153217974085 ], [ -122.41062819957733, 37.79088357812059 ], [ -122.4105316400528, 37.79039182407786 ], [ -122.41044580936432, 37.78995941695693 ], [ -122.41025805473328, 37.78901828682906 ], [ -122.41016685962677, 37.78855195664898 ], [ -122.41007566452026, 37.78808138412048 ], [ -122.40994155406952, 37.78742851276689 ], [ -122.40988790988922, 37.78714870899249 ], [ -122.40979135036469, 37.78667388804195 ], [ -122.4097591638565, 37.78651278738342 ], [ -122.40970551967621, 37.78622026160572 ], [ -122.40951776504517, 37.78528332342268 ], [ -122.40933537483215, 37.7843590922199 ], [ -122.40921199321747, 37.78374434488178 ] ] }, "properties": { "class": "street", "len": 1231.0964508373736, "name": "Mason St", "name_de": "Mason St", "name_en": "Mason St", "name_es": "Mason St", "name_fr": "Mason St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43308365345001, 37.7935584932212 ], [ -122.43299782276154, 37.79312186551574 ], [ -122.43291735649109, 37.79268099608831 ] ] }, "properties": { "class": "street", "len": 125.12204412045358, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42615282535553, 37.79263860465855 ], [ -122.42783725261688, 37.79242664714506 ], [ -122.42808938026428, 37.792392733886466 ], [ -122.42945194244385, 37.792218928191865 ], [ -122.43109345436096, 37.79201120865472 ], [ -122.43273496627806, 37.791803488533624 ] ] }, "properties": { "class": "street", "len": 742.7365208672886, "name": "Washington St", "name_de": "Washington St", "name_en": "Washington St", "name_es": "Washington St", "name_fr": "Washington St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43455350399017, 37.79247751700376 ], [ -122.43437647819519, 37.79159576782853 ] ] }, "properties": { "class": "street", "len": 125.77653835198964, "name": "Fillmore St", "name_de": "Fillmore St", "name_en": "Fillmore St", "name_es": "Fillmore St", "name_fr": "Fillmore St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43621110916138, 37.792265559028124 ], [ -122.4371337890625, 37.79215110146844 ] ] }, "properties": { "class": "street", "len": 557.4031872764373, "name": "Jackson St", "name_de": "Jackson St", "name_en": "Jackson St", "name_es": "Jackson St", "name_fr": "Jackson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42798745632172, 37.79330838640464 ], [ -122.42962896823883, 37.793100669930396 ], [ -122.43126511573792, 37.79289295287215 ], [ -122.43291735649109, 37.79268099608831 ] ] }, "properties": { "class": "street", "len": 556.4159854018069, "name": "Jackson St", "name_de": "Jackson St", "name_en": "Jackson St", "name_es": "Jackson St", "name_fr": "Jackson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43437647819519, 37.79159576782853 ], [ -122.43419945240021, 37.790714008130706 ], [ -122.43402242660522, 37.78984071652026 ], [ -122.43383467197418, 37.78890806359753 ], [ -122.43364155292511, 37.78794996242854 ], [ -122.4335503578186, 37.78748786494643 ], [ -122.43345916271211, 37.78702152510845 ], [ -122.43327140808107, 37.78608883660396 ] ] }, "properties": { "class": "street", "len": 785.4742911044511, "name": "Fillmore St", "name_de": "Fillmore St", "name_en": "Fillmore St", "name_es": "Fillmore St", "name_fr": "Fillmore St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43291735649109, 37.79268099608831 ], [ -122.43455350399017, 37.79247751700376 ] ] }, "properties": { "class": "street", "len": 184.64474782644712, "name": "Jackson St", "name_de": "Jackson St", "name_en": "Jackson St", "name_es": "Jackson St", "name_fr": "Jackson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43437647819519, 37.79159576782853 ], [ -122.43602335453033, 37.79138380732341 ] ] }, "properties": { "class": "street", "len": 185.58002721248843, "name": "Washington St", "name_de": "Washington St", "name_en": "Washington St", "name_es": "Washington St", "name_fr": "Washington St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43273496627808, 37.791803488533624 ], [ -122.43437647819519, 37.79159576782853 ] ] }, "properties": { "class": "street", "len": 184.89630499331108, "name": "Washington St", "name_de": "Washington St", "name_en": "Washington St", "name_es": "Washington St", "name_fr": "Washington St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43291735649109, 37.79268099608831 ], [ -122.43273496627808, 37.791803488533624 ] ] }, "properties": { "class": "street", "len": 125.53293472237247, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43273496627808, 37.791803488533624 ], [ -122.4325579404831, 37.790921731314675 ] ] }, "properties": { "class": "street", "len": 125.54438776854212, "name": "Webster St", "name_de": "Webster St", "name_en": "Webster St", "name_es": "Webster St", "name_fr": "Webster St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.41812765598297, 37.794567390088325 ], [ -122.41814911365509, 37.79456315105469 ], [ -122.41892695426941, 37.79446141417424 ], [ -122.41976916790009, 37.79435967715371 ], [ -122.42140531539917, 37.794147724577606 ] ] }, "properties": { "class": "street", "len": 369.9980531145037, "name": "Jackson St", "name_de": "Jackson St", "name_en": "Jackson St", "name_es": "Jackson St", "name_fr": "Jackson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42069184780121, 37.79057835185864 ], [ -122.42088496685028, 37.79149402686194 ], [ -122.42106199264526, 37.792396973044646 ], [ -122.42122828960419, 37.79327023444296 ], [ -122.42140531539917, 37.794147724577606 ] ] }, "properties": { "class": "street", "len": 508.6550928972288, "name": "Polk St", "name_de": "Polk St", "name_en": "Polk St", "name_es": "Polk St", "name_fr": "Polk St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42140531539917, 37.794147724577606 ], [ -122.42296099662781, 37.79394848860165 ], [ -122.42314338684082, 37.79392729325345 ] ] }, "properties": { "class": "street", "len": 195.6111994448167, "name": "Jackson St", "name_de": "Jackson St", "name_en": "Jackson St", "name_es": "Jackson St", "name_fr": "Jackson St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42140531539917, 37.794147724577606 ], [ -122.42158770561217, 37.795029443297494 ] ] }, "properties": { "class": "street", "len": 125.97491218458389, "name": "Polk St", "name_de": "Polk St", "name_en": "Polk St", "name_es": "Polk St", "name_fr": "Polk St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43566930294037, 37.78963299029734 ], [ -122.4371337890625, 37.789446460130144 ] ] }, "properties": { "class": "street", "len": 1274.3404609796792, "name": "Sacramento St", "name_de": "Sacramento St", "name_en": "Sacramento St", "name_es": "Sacramento St", "name_fr": "Sacramento St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.43602335453033, 37.79138380732341 ], [ -122.43588924407959, 37.79070552962101 ], [ -122.43584632873535, 37.79050204509613 ], [ -122.43566930294037, 37.78963299029734 ] ] }, "properties": { "class": "street", "len": 250.18440290311415, "name": "Steiner St", "name_de": "Steiner St", "name_en": "Steiner St", "name_es": "Steiner St", "name_fr": "Steiner St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.42075085639954, 37.8075970299193 ], [ -122.42069721221924, 37.80731306422433 ], [ -122.42064893245697, 37.807071480609274 ], [ -122.4205631017685, 37.80665188613628 ] ] }, "properties": { "class": "street", "len": 134.37310004686768, "name": "Hyde St", "name_de": "Hyde St", "name_en": "Hyde St", "name_es": "Hyde St", "name_fr": "Hyde St", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ -122.4058324098587, 37.8027440332184 ], [ -122.40580022335052, 37.802714363262176 ], [ -122.40577340126038, 37.80268469329402 ], [ -122.4057412147522, 37.80265078474437 ], [ -122.40546762943268, 37.80227778967103 ], [ -122.40541934967041, 37.80219301780076 ], [ -122.40539252758026, 37.80212096163453 ], [ -122.40539252758026, 37.80205738260595 ], [ -122.40541398525238, 37.801989564915125 ], [ -122.40544080734253, 37.80194294021658 ], [ -122.40548372268677, 37.801892076875475 ], [ -122.4055427312851, 37.801858167961946 ], [ -122.40562319755554, 37.80182425903287 ], [ -122.4056339263916, 37.80182002041566 ], [ -122.40581095218658, 37.801794588707146 ], [ -122.405886054039, 37.80181578179817 ], [ -122.40591824054718, 37.80182849764986 ], [ -122.4060308933258, 37.801892076875475 ], [ -122.40612208843231, 37.80198108769938 ], [ -122.40620791912079, 37.80207857562153 ], [ -122.40632593631744, 37.802328652746496 ], [ -122.40643858909607, 37.80256601330221 ], [ -122.4064654111862, 37.802595683318025 ], [ -122.40652978420258, 37.80268469329399 ], [ -122.40668535232544, 37.80283728157465 ], [ -122.40672826766968, 37.80293052981321 ], [ -122.4067336320877, 37.80301106228812 ], [ -122.40672290325163, 37.80307887904102 ], [ -122.40670144557951, 37.803142457190276 ], [ -122.40665316581726, 37.80320179674688 ], [ -122.40657806396483, 37.803252659186015 ], [ -122.40639030933379, 37.80335438395923 ], [ -122.40632593631743, 37.80340948481954 ], [ -122.4062991142273, 37.80346034711567 ], [ -122.40628838539122, 37.803528163456 ], [ -122.40632593631743, 37.8035875027027 ], [ -122.4063742160797, 37.803629887849716 ], [ -122.40643858909606, 37.80365531892627 ], [ -122.4065190553665, 37.80365955743819 ], [ -122.40658879280089, 37.80364684190173 ] ] }, "properties": { "class": "street", "len": 518.0529223368776, "name": "Telegraph Hill Blvd", "name_de": "Telegraph Hill Blvd", "name_en": "Telegraph Hill Blvd", "name_es": "Telegraph Hill Blvd", "name_fr": "Telegraph Hill Blvd", "ref": "", "reflen": 0 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4292802810669, 37.78527484428987 ] }, "properties": { "area": 5516.33349609375, "name": "Miyako Mall", "name_de": "Miyako Mall", "name_en": "Miyako Mall", "name_es": "Miyako Mall", "name_fr": "Miyako Mall" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42416799068451, 37.80113759986951 ] }, "properties": { "area": 1380.7078857421875, "name": "Chase", "name_de": "Chase", "name_en": "Chase", "name_es": "Chase", "name_fr": "Chase" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41160988807678, 37.78994245976337 ] }, "properties": { "area": 230.83670043945312, "name": "Fire Chief's Residence", "name_de": "Fire Chief's Residence", "name_en": "Fire Chief's Residence", "name_es": "Fire Chief's Residence", "name_fr": "Fire Chief's Residence" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43130803108215, 37.78509254269906 ] }, "properties": { "area": 908.6409912109375, "name": "Webster Street Bridge", "name_de": "Webster Street Bridge", "name_en": "Webster Street Bridge", "name_es": "Webster Street Bridge", "name_fr": "Webster Street Bridge" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43186056613922, 37.78496535527636 ] }, "properties": { "area": 5365.01318359375, "name": "Kinokuniya Mall", "name_de": "Kinokuniya Mall", "name_en": "Kinokuniya Mall", "name_es": "Kinokuniya Mall", "name_fr": "Kinokuniya Mall" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4284702539444, 37.785393552060754 ] }, "properties": { "area": 3088.516357421875, "name": "Hotel Kabuki", "name_de": "Hotel Kabuki", "name_en": "Hotel Kabuki", "name_es": "Hotel Kabuki", "name_fr": "Hotel Kabuki" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41934537887573, 37.78665269060695 ] }, "properties": { "area": 520.3375244140625, "name": "San Francisco Fire Station 3", "name_de": "San Francisco Fire Station 3", "name_en": "San Francisco Fire Station 3", "name_es": "San Francisco Fire Station 3", "name_fr": "San Francisco Fire Station 3" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41794526576996, 37.80530408170084 ] }, "properties": { "area": 572.687744140625, "name": "Bayside Inn at the Wharf", "name_de": "Bayside Inn at the Wharf", "name_en": "Bayside Inn at the Wharf", "name_es": "Bayside Inn at the Wharf", "name_fr": "Bayside Inn at the Wharf" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41453349590302, 37.80774960805068 ] }, "properties": { "area": 1862.534912109375, "name": "The Wharf Inn", "name_de": "The Wharf Inn", "name_en": "The Wharf Inn", "name_es": "The Wharf Inn", "name_fr": "The Wharf Inn" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41641640663147, 37.80607123126648 ] }, "properties": { "area": 343.0441589355469, "name": "Knuckles Historic Sports Bar & Grill", "name_de": "Knuckles Historic Sports Bar & Grill", "name_en": "Knuckles Historic Sports Bar & Grill", "name_es": "Knuckles Historic Sports Bar & Grill", "name_fr": "Knuckles Historic Sports Bar & Grill" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4135947227478, 37.80428261604232 ] }, "properties": { "area": 830.158447265625, "name": "San Remo Hotel", "name_de": "San Remo Hotel", "name_en": "San Remo Hotel", "name_es": "San Remo Hotel", "name_fr": "San Remo Hotel" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4206006526947, 37.80551176386163 ] }, "properties": { "area": 1236.4427490234375, "name": "Suites at Fisherman's Wharf", "name_de": "Suites at Fisherman's Wharf", "name_en": "Suites at Fisherman's Wharf", "name_es": "Suites at Fisherman's Wharf", "name_fr": "Suites at Fisherman's Wharf" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41020441055298, 37.795237154349074 ] }, "properties": { "area": 1414.74072265625, "name": "Chinatown Branch Library", "name_de": "Chinatown Branch Library", "name_en": "Chinatown Branch Library", "name_es": "Chinatown Branch Library", "name_fr": "Chinatown Branch Library" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43674218654633, 37.79862827259065 ] }, "properties": { "area": 660.9341430664062, "name": "San Francisco Fire Station 16", "name_de": "San Francisco Fire Station 16", "name_en": "San Francisco Fire Station 16", "name_es": "San Francisco Fire Station 16", "name_fr": "San Francisco Fire Station 16" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40935146808624, 37.802549059002104 ] }, "properties": { "area": 422.4821472167969, "name": "San Francisco Fire Station 28", "name_de": "San Francisco Fire Station 28", "name_en": "San Francisco Fire Station 28", "name_es": "San Francisco Fire Station 28", "name_fr": "San Francisco Fire Station 28" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40993082523346, 37.79875119770314 ] }, "properties": { "area": 2133.2392578125, "name": "Central Police Station", "name_de": "Central Police Station", "name_en": "Central Police Station", "name_es": "Central Police Station", "name_fr": "Central Police Station" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40958750247955, 37.79821286897272 ] }, "properties": { "area": 2808.270751953125, "name": "North Beach Garage", "name_de": "North Beach Garage", "name_en": "North Beach Garage", "name_es": "North Beach Garage", "name_fr": "North Beach Garage" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4277138710022, 37.78465586496683 ] }, "properties": { "area": 1985.4339599609375, "name": "Consulate General of People's Republic of China, San Francisco", "name_de": "Consulate General of People's Republic of China, San Francisco", "name_en": "Consulate General of People's Republic of China, San Francisco", "name_es": "Consulate General of People's Republic of China, San Francisco", "name_fr": "Consulate General of People's Republic of China, San Francisco" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41189420223236, 37.79491499001951 ] }, "properties": { "area": 6071.3720703125, "name": "Cable Car Barn and Museum", "name_de": "Cable Car Barn and Museum", "name_en": "Cable Car Barn and Museum", "name_es": "Cable Car Barn and Museum", "name_fr": "Cable Car Barn and Museum" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40681946277618, 37.79345675495729 ] }, "properties": { "area": 391.3664855957031, "name": "First Chinese Baptist Church", "name_de": "First Chinese Baptist Church", "name_en": "First Chinese Baptist Church", "name_es": "First Chinese Baptist Church", "name_fr": "First Chinese Baptist Church" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42138385772705, 37.791171846210275 ] }, "properties": { "area": 1251.1688232421875, "name": "Old First Garage", "name_de": "Old First Garage", "name_en": "Old First Garage", "name_es": "Old First Garage", "name_fr": "Old First Garage" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43056237697601, 37.78513917803252 ] }, "properties": { "area": 8348.4609375, "name": "Kintetsu Mall", "name_de": "Kintetsu Mall", "name_en": "Kintetsu Mall", "name_es": "Kintetsu Mall", "name_fr": "Kintetsu Mall" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40898668766022, 37.784867844770744 ] }, "properties": { "area": 7335.865234375, "name": "Parc 55 Hotel", "name_de": "Parc 55 Hotel", "name_en": "Parc 55 Hotel", "name_es": "Parc 55 Hotel", "name_fr": "Parc 55 Hotel" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42539644241333, 37.78572423698848 ] }, "properties": { "area": 7462.6748046875, "name": "Cathedral Hill Plaza", "name_de": "Cathedral Hill Plaza", "name_en": "Cathedral Hill Plaza", "name_es": "Cathedral Hill Plaza", "name_fr": "Cathedral Hill Plaza" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42535352706909, 37.78424886203896 ] }, "properties": { "area": 8470.4453125, "name": "Cathedral of Saint Mary of the Assumption", "name_de": "Cathedral of Saint Mary of the Assumption", "name_en": "Cathedral of Saint Mary of the Assumption", "name_es": "Cathedral of Saint Mary of the Assumption", "name_fr": "Cathedral of Saint Mary of the Assumption" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41531133651733, 37.78618634549861 ] }, "properties": { "area": 505.65185546875, "name": "Luz Hotel", "name_de": "Luz Hotel", "name_en": "Luz Hotel", "name_es": "Luz Hotel", "name_fr": "Luz Hotel" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41287589073181, 37.80805476336766 ] }, "properties": { "area": 14876.345703125, "name": "Radisson", "name_de": "Radisson", "name_en": "Radisson", "name_es": "Radisson", "name_fr": "Radisson" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41165280342102, 37.80810562246455 ] }, "properties": { "area": 9020.443359375, "name": "Pier 39 Garage", "name_de": "Pier 39 Garage", "name_en": "Pier 39 Garage", "name_es": "Pier 39 Garage", "name_fr": "Pier 39 Garage" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43238627910614, 37.807872517982794 ] }, "properties": { "area": 3615.182861328125, "name": "Pier 1", "name_de": "Pier 1", "name_en": "Pier 1", "name_es": "Pier 1", "name_fr": "Pier 1" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40513503551483, 37.80599070212845 ] }, "properties": { "area": 1131.0096435546875, "name": "Houston's", "name_de": "Houston's", "name_en": "Houston's", "name_es": "Houston's", "name_fr": "Houston's" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43417799472809, 37.80141735066961 ] }, "properties": { "area": 1237.8514404296875, "name": "Marina Branch San Francisco Public Library", "name_de": "Marina Branch San Francisco Public Library", "name_en": "Marina Branch San Francisco Public Library", "name_es": "Marina Branch San Francisco Public Library", "name_fr": "Marina Branch San Francisco Public Library" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41409361362457, 37.80616447542192 ] }, "properties": { "area": 3546.529296875, "name": "Best Western Tuscan Inn", "name_de": "Best Western Tuscan Inn", "name_en": "Best Western Tuscan Inn", "name_es": "Best Western Tuscan Inn", "name_fr": "Best Western Tuscan Inn" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42490828037262, 37.80092142807103 ] }, "properties": { "area": 1123.26171875, "name": "Comfort Inn", "name_de": "Comfort Inn", "name_en": "Comfort Inn", "name_es": "Comfort Inn", "name_fr": "Comfort Inn" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41276860237122, 37.80238375437207 ] }, "properties": { "area": 755.2568969726562, "name": "North Beach Branch Library", "name_de": "North Beach Branch Library", "name_en": "North Beach Branch Library", "name_es": "North Beach Branch Library", "name_fr": "North Beach Branch Library" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40642786026001, 37.79746259325332 ] }, "properties": { "area": 382.2843933105469, "name": "Vesuvio", "name_de": "Vesuvio", "name_en": "Vesuvio", "name_es": "Vesuvio", "name_fr": "Vesuvio" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41563320159912, 37.808766787536605 ] }, "properties": { "area": 393.5412902832031, "name": "Boudin", "name_de": "Boudin", "name_en": "Boudin", "name_es": "Boudin", "name_fr": "Boudin" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41489827632904, 37.808533685141974 ] }, "properties": { "area": 2283.5849609375, "name": "Boudin", "name_de": "Boudin", "name_en": "Boudin", "name_es": "Boudin", "name_fr": "Boudin" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41548836231232, 37.80798271292044 ] }, "properties": { "area": 2022.918701171875, "name": "Ripley's Believe it or Not", "name_de": "Ripley's Believe it or Not", "name_en": "Ripley's Believe it or Not", "name_es": "Ripley's Believe it or Not", "name_fr": "Ripley's Believe it or Not" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40637421607971, 37.80851673221186 ] }, "properties": { "area": 24874.34375, "name": "Pier 35", "name_de": "Pier 35", "name_en": "Pier 35", "name_es": "Pier 35", "name_fr": "Pier 35" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40471661090851, 37.80765636589674 ] }, "properties": { "area": 15779.9248046875, "name": "Pier 33", "name_de": "Pier 33", "name_en": "Pier 33", "name_es": "Pier 33", "name_fr": "Pier 33" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41289734840393, 37.8071435319456 ] }, "properties": { "area": 12872.4033203125, "name": "Sheraton Fisherman's Wharf", "name_de": "Sheraton Fisherman's Wharf", "name_en": "Sheraton Fisherman's Wharf", "name_es": "Sheraton Fisherman's Wharf", "name_fr": "Sheraton Fisherman's Wharf" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42696285247803, 37.80784708835846 ] }, "properties": { "area": 983.818603515625, "name": "Salt Water Pumping Station #2", "name_de": "Salt Water Pumping Station #2", "name_en": "Salt Water Pumping Station #2", "name_es": "Salt Water Pumping Station #2", "name_fr": "Salt Water Pumping Station #2" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4093246459961, 37.80878797862691 ] }, "properties": { "area": 2921.8076171875, "name": "Aquarium of the Bay", "name_de": "Aquarium of the Bay", "name_en": "Aquarium of the Bay", "name_es": "Aquarium of the Bay", "name_fr": "Aquarium of the Bay" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41211414337158, 37.80909312965286 ] }, "properties": { "area": 1839.5250244140625, "name": "San Francisco Pier 41", "name_de": "San Francisco Pier 41", "name_en": "San Francisco Pier 41", "name_es": "San Francisco Pier 41", "name_fr": "San Francisco Pier 41" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41834759712219, 37.807393591920395 ] }, "properties": { "area": 3765.9267578125, "name": "Courtyard by Marriott", "name_de": "Courtyard by Marriott", "name_en": "Courtyard by Marriott", "name_es": "Courtyard by Marriott", "name_fr": "Courtyard by Marriott" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42360472679138, 37.79928104498482 ] }, "properties": { "area": 3528.04296875, "name": "Heritage Marina Hotel", "name_de": "Heritage Marina Hotel", "name_en": "Heritage Marina Hotel", "name_es": "Heritage Marina Hotel", "name_fr": "Heritage Marina Hotel" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41784334182739, 37.78583870450334 ] }, "properties": { "area": 1468.395751953125, "name": "Motel 6", "name_de": "Motel 6", "name_en": "Motel 6", "name_es": "Motel 6", "name_fr": "Motel 6" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42006957530975, 37.785592811104635 ] }, "properties": { "area": 888.1964111328125, "name": "Monarch Hotel", "name_de": "Monarch Hotel", "name_en": "Monarch Hotel", "name_es": "Monarch Hotel", "name_fr": "Monarch Hotel" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41901814937592, 37.78530452125047 ] }, "properties": { "area": 4581.5654296875, "name": "Trinity Towers", "name_de": "Trinity Towers", "name_en": "Trinity Towers", "name_es": "Trinity Towers", "name_fr": "Trinity Towers" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41949021816254, 37.78951005001279 ] }, "properties": { "area": 2203.13330078125, "name": "Redding Elementary School", "name_de": "Redding Elementary School", "name_en": "Redding Elementary School", "name_es": "Redding Elementary School", "name_fr": "Redding Elementary School" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41796672344208, 37.78779734339625 ] }, "properties": { "area": 1228.1376953125, "name": "Carlton Hotel", "name_de": "Carlton Hotel", "name_en": "Carlton Hotel", "name_es": "Carlton Hotel", "name_fr": "Carlton Hotel" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4329924583435, 37.790234970806864 ] }, "properties": { "area": 4045.7548828125, "name": "Dental School of the University of the Pacific", "name_de": "Dental School of the University of the Pacific", "name_en": "Dental School of the University of the Pacific", "name_es": "Dental School of the University of the Pacific", "name_fr": "Dental School of the University of the Pacific" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4302351474762, 37.80835991742361 ] }, "properties": { "area": 9903.87109375, "name": "Pier 3 — Festival Pavillion", "name_de": "Pier 3 — Festival Pavillion", "name_en": "Pier 3 — Festival Pavillion", "name_es": "Pier 3 — Festival Pavillion", "name_fr": "Pier 3 — Festival Pavillion" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43137240409851, 37.80821157880392 ] }, "properties": { "area": 7855.970703125, "name": "Pier 2 — Herbst Pavillion", "name_de": "Pier 2 — Herbst Pavillion", "name_en": "Pier 2 — Herbst Pavillion", "name_es": "Pier 2 — Herbst Pavillion", "name_fr": "Pier 2 — Herbst Pavillion" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42568075656891, 37.801569941568545 ] }, "properties": { "area": 2369.4833984375, "name": "Travelodge", "name_de": "Travelodge", "name_en": "Travelodge", "name_es": "Travelodge", "name_fr": "Travelodge" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41723716259003, 37.80567706149055 ] }, "properties": { "area": 4797.96875, "name": "Marriott", "name_de": "Marriott", "name_en": "Marriott", "name_es": "Marriott", "name_fr": "Marriott" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41663634777069, 37.8057194454384 ] }, "properties": { "area": 6233.70751953125, "name": "Hilton San Francisco Fisherman's Wharf", "name_de": "Hilton San Francisco Fisherman's Wharf", "name_en": "Hilton San Francisco Fisherman's Wharf", "name_es": "Hilton San Francisco Fisherman's Wharf", "name_fr": "Hilton San Francisco Fisherman's Wharf" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41614282131195, 37.805855073907956 ] }, "properties": { "area": 6987.13134765625, "name": "Hyatt at Fisherman's Wharf", "name_de": "Hyatt at Fisherman's Wharf", "name_en": "Hyatt at Fisherman's Wharf", "name_es": "Hyatt at Fisherman's Wharf", "name_fr": "Hyatt at Fisherman's Wharf" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4202573299408, 37.807198629978885 ] }, "properties": { "area": 7605.28759765625, "name": "Argonaut Hotel", "name_de": "Argonaut Hotel", "name_en": "Argonaut Hotel", "name_es": "Argonaut Hotel", "name_fr": "Argonaut Hotel" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42389440536499, 37.806423015418865 ] }, "properties": { "area": 1902.082275390625, "name": "National Maritime Museum", "name_de": "National Maritime Museum", "name_en": "National Maritime Museum", "name_es": "National Maritime Museum", "name_fr": "National Maritime Museum" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41769313812256, 37.80653745086623 ] }, "properties": { "area": 7447.5517578125, "name": "Holiday Inn", "name_de": "Holiday Inn", "name_en": "Holiday Inn", "name_es": "Holiday Inn", "name_fr": "Holiday Inn" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40583777427673, 37.80237527720156 ] }, "properties": { "area": 638.9163208007812, "name": "Coit Tower", "name_de": "Coit Tower", "name_en": "Coit Tower", "name_es": "Coit Tower", "name_fr": "Coit Tower" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40650832653046, 37.790001809923794 ] }, "properties": { "area": 10718.5927734375, "name": "Sutter-Stockton Garage", "name_de": "Sutter-Stockton Garage", "name_en": "Sutter-Stockton Garage", "name_es": "Sutter-Stockton Garage", "name_fr": "Sutter-Stockton Garage" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4104243516922, 37.7992301798107 ] }, "properties": { "area": 114.67269897460938, "name": "Northstar Cafe", "name_de": "Northstar Cafe", "name_en": "Northstar Cafe", "name_es": "Northstar Cafe", "name_fr": "Northstar Cafe" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41023123264313, 37.8015996119845 ] }, "properties": { "area": 2652.321533203125, "name": "Saint Peter and Paul Church", "name_de": "Saint Peter and Paul Church", "name_en": "Saint Peter and Paul Church", "name_es": "Saint Peter and Paul Church", "name_fr": "Saint Peter and Paul Church" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40573585033417, 37.800060973268764 ] }, "properties": { "area": 265.8677978515625, "name": "Fog Hill Market", "name_de": "Fog Hill Market", "name_en": "Fog Hill Market", "name_es": "Fog Hill Market", "name_fr": "Fog Hill Market" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40774214267731, 37.7990097636514 ] }, "properties": { "area": 1287.492431640625, "name": "The National Shrine of Saint Francis of Assisi", "name_de": "The National Shrine of Saint Francis of Assisi", "name_en": "The National Shrine of Saint Francis of Assisi", "name_es": "The National Shrine of Saint Francis of Assisi", "name_fr": "The National Shrine of Saint Francis of Assisi" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40420162677765, 37.79519052538833 ] }, "properties": { "area": 4514.34716796875, "name": "Hilton San Francisco Financial District", "name_de": "Hilton San Francisco Financial District", "name_en": "Hilton San Francisco Financial District", "name_es": "Hilton San Francisco Financial District", "name_fr": "Hilton San Francisco Financial District" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40862190723419, 37.78778038570655 ] }, "properties": { "area": 5864.0146484375, "name": "The Westin Saint Francis", "name_de": "The Westin Saint Francis", "name_en": "The Westin Saint Francis", "name_es": "The Westin Saint Francis", "name_fr": "The Westin Saint Francis" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40838050842285, 37.788980132652135 ] }, "properties": { "area": 1684.3642578125, "name": "Sir Francis Drake", "name_de": "Sir Francis Drake", "name_en": "Sir Francis Drake", "name_es": "Sir Francis Drake", "name_fr": "Sir Francis Drake" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40719497203827, 37.78702576457477 ] }, "properties": { "area": 13504.876953125, "name": "Macy's", "name_de": "Macy's", "name_en": "Macy's", "name_es": "Macy's", "name_fr": "Macy's" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40811228752136, 37.78861554730136 ] }, "properties": { "area": 3552.616455078125, "name": "Saks Fifth Avenue", "name_de": "Saks Fifth Avenue", "name_en": "Saks Fifth Avenue", "name_es": "Saks Fifth Avenue", "name_fr": "Saks Fifth Avenue" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40732371807098, 37.788751207176915 ] }, "properties": { "area": 1753.3902587890625, "name": "Levi's Strauss", "name_de": "Levi's Strauss", "name_en": "Levi's Strauss", "name_es": "Levi's Strauss", "name_fr": "Levi's Strauss" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4102795124054, 37.79964557770774 ] }, "properties": { "area": 866.610595703125, "name": "Fugazi Hall", "name_de": "Fugazi Hall", "name_en": "Fugazi Hall", "name_es": "Fugazi Hall", "name_fr": "Fugazi Hall" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40660488605499, 37.797636386612204 ] }, "properties": { "area": 256.4836120605469, "name": "City Lights Bookstore", "name_de": "City Lights Bookstore", "name_en": "City Lights Bookstore", "name_es": "City Lights Bookstore", "name_fr": "City Lights Bookstore" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41349816322327, 37.79182892368188 ] }, "properties": { "area": 4078.9423828125, "name": "Grace Cathedral", "name_de": "Grace Cathedral", "name_en": "Grace Cathedral", "name_es": "Grace Cathedral", "name_fr": "Grace Cathedral" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41298317909241, 37.79119728157595 ] }, "properties": { "area": 7263.853515625, "name": "Masonic Memorial Temple", "name_de": "Masonic Memorial Temple", "name_en": "Masonic Memorial Temple", "name_es": "Masonic Memorial Temple", "name_fr": "Masonic Memorial Temple" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41133630275726, 37.792235884863004 ] }, "properties": { "area": 3000.710205078125, "name": "Pacific Union Club", "name_de": "Pacific Union Club", "name_en": "Pacific Union Club", "name_es": "Pacific Union Club", "name_fr": "Pacific Union Club" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40650832653046, 37.790709768875985 ] }, "properties": { "area": 687.8807373046875, "name": "Notre Dame Des Victoires Church", "name_de": "Notre Dame Des Victoires Church", "name_en": "Notre Dame Des Victoires Church", "name_es": "Notre Dame Des Victoires Church", "name_fr": "Notre Dame Des Victoires Church" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41018831729889, 37.79244360376852 ] }, "properties": { "area": 13559.2392578125, "name": "The Fairmont San Francisco Hotel", "name_de": "The Fairmont San Francisco Hotel", "name_en": "The Fairmont San Francisco Hotel", "name_es": "The Fairmont San Francisco Hotel", "name_fr": "The Fairmont San Francisco Hotel" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41032779216766, 37.7864322369225 ] }, "properties": { "area": 5438.31689453125, "name": "Mason O'Farrell Garage", "name_de": "Mason O'Farrell Garage", "name_en": "Mason O'Farrell Garage", "name_es": "Mason O'Farrell Garage", "name_fr": "Mason O'Farrell Garage" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40706622600555, 37.78607187852223 ] }, "properties": { "area": 4905.40234375, "name": "Ellis O'Farrell Garage", "name_de": "Ellis O'Farrell Garage", "name_en": "Ellis O'Farrell Garage", "name_es": "Ellis O'Farrell Garage", "name_fr": "Ellis O'Farrell Garage" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41019904613495, 37.793126104632066 ] }, "properties": { "area": 2254.120849609375, "name": "Brocklebank Garage", "name_de": "Brocklebank Garage", "name_en": "Brocklebank Garage", "name_es": "Brocklebank Garage", "name_fr": "Brocklebank Garage" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41366982460022, 37.78643647642264 ] }, "properties": { "area": 1744.7864990234375, "name": "Geary Courtyard", "name_de": "Geary Courtyard", "name_en": "Geary Courtyard", "name_es": "Geary Courtyard", "name_fr": "Geary Courtyard" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40530133247375, 37.798251018382 ] }, "properties": { "area": 931.8032836914062, "name": "Green Tortoise Hostel", "name_de": "Green Tortoise Hostel", "name_en": "Green Tortoise Hostel", "name_es": "Green Tortoise Hostel", "name_fr": "Green Tortoise Hostel" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41027414798737, 37.791485548441756 ] }, "properties": { "area": 5916.74169921875, "name": "InterContinental Hotel Mark Hopkins", "name_de": "InterContinental Hotel Mark Hopkins", "name_en": "InterContinental Hotel Mark Hopkins", "name_es": "InterContinental Hotel Mark Hopkins", "name_fr": "InterContinental Hotel Mark Hopkins" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40504920482635, 37.796551231141 ] }, "properties": { "area": 203.70689392089844, "name": "Sentinel Building", "name_de": "Sentinel Building", "name_en": "Sentinel Building", "name_es": "Sentinel Building", "name_fr": "Sentinel Building" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4319839477539, 37.78945493878432 ] }, "properties": { "area": 2216.253662109375, "name": "Temple Sherith Israel", "name_de": "Temple Sherith Israel", "name_en": "Temple Sherith Israel", "name_es": "Temple Sherith Israel", "name_fr": "Temple Sherith Israel" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4357658624649, 37.787008806708016 ] }, "properties": { "area": 2847.9228515625, "name": "Saint Dominics Roman Catholic Church", "name_de": "Saint Dominics Roman Catholic Church", "name_en": "Saint Dominics Roman Catholic Church", "name_es": "Saint Dominics Roman Catholic Church", "name_fr": "Saint Dominics Roman Catholic Church" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43255257606506, 37.784914480246 ] }, "properties": { "area": 4337.994140625, "name": "Sundance Kabuki Theater", "name_de": "Sundance Kabuki Theater", "name_en": "Sundance Kabuki Theater", "name_es": "Sundance Kabuki Theater", "name_fr": "Sundance Kabuki Theater" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40720570087433, 37.78508830312183 ] }, "properties": { "area": 4147.34716796875, "name": "Flood Building", "name_de": "Flood Building", "name_en": "Flood Building", "name_es": "Flood Building", "name_fr": "Flood Building" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40446984767914, 37.790056920744384 ] }, "properties": { "area": 2156.785888671875, "name": "W&J Sloane Building", "name_de": "W&J Sloane Building", "name_en": "W&J Sloane Building", "name_es": "W&J Sloane Building", "name_fr": "W&J Sloane Building" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41510212421417, 37.786707803925296 ] }, "properties": { "area": 652.7189331054688, "name": "601 Leavenworth Street", "name_de": "601 Leavenworth Street", "name_en": "601 Leavenworth Street", "name_es": "601 Leavenworth Street", "name_fr": "601 Leavenworth Street" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40691065788269, 37.78492719900686 ] }, "properties": { "area": 15417.0107421875, "name": "Powell Station", "name_de": "Powell Station", "name_en": "Powell Station", "name_es": "Powell Station", "name_fr": "Powell Station" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40546226501465, 37.786398320912674 ] }, "properties": { "area": 3803.703125, "name": "Phelan Building", "name_de": "Phelan Building", "name_en": "Phelan Building", "name_es": "Phelan Building", "name_fr": "Phelan Building" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41386830806732, 37.78686466468337 ] }, "properties": { "area": 368.9371032714844, "name": "Hotel Adante", "name_de": "Hotel Adante", "name_en": "Hotel Adante", "name_es": "Hotel Adante", "name_fr": "Hotel Adante" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40652441978455, 37.78585990217182 ] }, "properties": { "area": 866.3295288085938, "name": "Apple Store", "name_de": "Apple Store", "name_en": "Apple Store", "name_es": "Apple Store", "name_fr": "Apple Store" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.40636885166168, 37.784104714631205 ] }, "properties": { "area": 40016.9453125, "name": "Westfield San Francisco Centre", "name_de": "Westfield San Francisco Centre", "name_en": "Westfield San Francisco Centre", "name_es": "Westfield San Francisco Centre", "name_fr": "Westfield San Francisco Centre" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.41469442844391, 37.809084653252505 ] }, "properties": { "area": 1289.7733154296875, "name": "Franciscan", "name_de": "Franciscan", "name_en": "Franciscan", "name_es": "Franciscan", "name_fr": "Franciscan" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42195248603821, 37.78492719900686 ] }, "properties": { "area": 4642.2548828125, "name": "KRON TV", "name_de": "KRON TV", "name_en": "KRON TV", "name_es": "KRON TV", "name_fr": "KRON TV" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43609845638275, 37.79726760509566 ] }, "properties": { "area": 1231.0413818359375, "name": "Metro Theatre", "name_de": "Metro Theatre", "name_en": "Metro Theatre", "name_es": "Metro Theatre", "name_fr": "Metro Theatre" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42194175720215, 37.79833155595906 ] }, "properties": { "area": 1569.696533203125, "name": "Alhambra Theatre", "name_de": "Alhambra Theatre", "name_en": "Alhambra Theatre", "name_es": "Alhambra Theatre", "name_fr": "Alhambra Theatre" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43282616138458, 37.8044521548888 ] }, "properties": { "area": 6547.6796875, "name": "Safeway 1711", "name_de": "Safeway 1711", "name_en": "Safeway 1711", "name_es": "Safeway 1711", "name_fr": "Safeway 1711" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.43460714817047, 37.79132869749249 ] }, "properties": { "area": 1204.5052490234375, "name": "Pets Unlimited", "name_de": "Pets Unlimited", "name_en": "Pets Unlimited", "name_es": "Pets Unlimited", "name_fr": "Pets Unlimited" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42153406143188, 37.796373196299385 ] }, "properties": { "area": 1438.6531982421875, "name": "Walgreens", "name_de": "Walgreens", "name_en": "Walgreens", "name_es": "Walgreens", "name_fr": "Walgreens" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42484390735626, 37.805388850000256 ] }, "properties": { "area": 1308.3048095703125, "name": "Fontana West", "name_de": "Fontana West", "name_en": "Fontana West", "name_es": "Fontana West", "name_fr": "Fontana West" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42411971092224, 37.80546937979462 ] }, "properties": { "area": 1163.4339599609375, "name": "Fontana East", "name_de": "Fontana East", "name_en": "Fontana East", "name_es": "Fontana East", "name_fr": "Fontana East" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42282688617706, 37.80618990562568 ] }, "properties": { "area": 1523.4742431640625, "name": "Wurster Building", "name_de": "Wurster Building", "name_en": "Wurster Building", "name_es": "Wurster Building", "name_fr": "Wurster Building" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42120146751404, 37.79483020969929 ] }, "properties": { "area": 2583.54833984375, "name": "Pacific Terrace Apts", "name_de": "Pacific Terrace Apts", "name_en": "Pacific Terrace Apts", "name_es": "Pacific Terrace Apts", "name_fr": "Pacific Terrace Apts" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.4330997467041, 37.79711924419614 ] }, "properties": { "area": 1806.2464599609375, "name": "Equinox Gym — Underconstruction", "name_de": "Equinox Gym — Underconstruction", "name_en": "Equinox Gym — Underconstruction", "name_es": "Equinox Gym — Underconstruction", "name_fr": "Equinox Gym — Underconstruction" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -122.42416262626648, 37.802125200234485 ] }, "properties": { "area": 1164.0887451171875, "name": "America's Best Inn", "name_de": "America's Best Inn", "name_en": "America's Best Inn", "name_es": "America's Best Inn", "name_fr": "America's Best Inn" } } ] }mapnik-vector-tile-0.3.2/examples/data/14_2620_6331-landuse.geojson0000644000175000017500000016240712174360626022504 0ustar devdev{ "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4319839477539, 37.80571096865078 ], [ -122.42571830749512, 37.80571096865078 ], [ -122.42565393447876, 37.80551600226697 ], [ -122.42560029029846, 37.80535070427755 ], [ -122.42535352706909, 37.80424023126987 ], [ -122.4299830198288, 37.80362564933611 ], [ -122.43017077445984, 37.80360021824936 ], [ -122.43147432804108, 37.803417961871325 ], [ -122.43156015872955, 37.80343915449654 ], [ -122.43161916732788, 37.8035154478969 ], [ -122.4317479133606, 37.80416393861819 ], [ -122.43196249008179, 37.8051938827661 ], [ -122.4319839477539, 37.805282889610744 ], [ -122.4319839477539, 37.80571096865078 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4319839477539, 37.803095833219515 ], [ -122.43175864219666, 37.803121264479955 ], [ -122.4314421415329, 37.80152331660511 ], [ -122.4319839477539, 37.80145125978552 ], [ -122.4319839477539, 37.803095833219515 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42932319641113, 37.79213414477786 ], [ -122.42628157138824, 37.79252838682742 ], [ -122.42613136768341, 37.79187555476425 ], [ -122.42593824863434, 37.79100651611991 ], [ -122.42747783660889, 37.79081151092244 ], [ -122.4277514219284, 37.79077759692252 ], [ -122.42899596691132, 37.79059954816758 ], [ -122.42932319641113, 37.79213414477786 ], [ -122.42932319641113, 37.79213414477786 ], [ -122.42932319641113, 37.79213414477786 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4319839477539, 37.79090053509816 ], [ -122.43151724338531, 37.79095988448907 ], [ -122.43156015872955, 37.79118032466647 ], [ -122.4319839477539, 37.79112945391467 ], [ -122.4319839477539, 37.79146011317529 ], [ -122.4314421415329, 37.79152794053307 ], [ -122.43145823478699, 37.79161696384559 ], [ -122.43116855621338, 37.79165511666101 ], [ -122.4310827255249, 37.79122271693289 ], [ -122.43091106414794, 37.79033247423068 ], [ -122.43149042129515, 37.790260406495044 ], [ -122.43138849735259, 37.789734733826435 ], [ -122.43198394775389, 37.78966266550779 ], [ -122.4319839477539, 37.79090053509816 ] ] ] }, "properties": { "class": "hospital" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42114245891571, 37.801731009397635 ], [ -122.41970479488373, 37.80191326993853 ], [ -122.41954922676086, 37.80115455449363 ], [ -122.42052555084229, 37.80103163338067 ], [ -122.42050409317017, 37.80094686008017 ], [ -122.42064356803894, 37.800925666739815 ], [ -122.42063820362092, 37.80090871206316 ], [ -122.42096543312074, 37.80086632535451 ], [ -122.42114245891572, 37.801731009397635 ], [ -122.42114245891572, 37.801731009397635 ], [ -122.42114245891571, 37.801731009397635 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41164743900299, 37.804833615870386 ], [ -122.41093397140504, 37.804918384709836 ], [ -122.41104662418365, 37.80546514138657 ], [ -122.4107998609543, 37.80549481023774 ], [ -122.41079449653627, 37.80545666456976 ], [ -122.41031706333162, 37.80551600226697 ], [ -122.41027951240544, 37.805325273784796 ], [ -122.41057455539708, 37.8052913664475 ], [ -122.41051554679875, 37.80496924596682 ], [ -122.41024196147923, 37.80500315345199 ], [ -122.41019368171696, 37.804740370034615 ], [ -122.41017222404484, 37.80464288562588 ], [ -122.41052091121679, 37.80460050106019 ], [ -122.41076231002813, 37.804570831849745 ], [ -122.41068184375769, 37.804176654065614 ], [ -122.41150259971624, 37.804079168912786 ], [ -122.41164743900305, 37.804833615870386 ], [ -122.41164743900305, 37.804833615870386 ], [ -122.41164743900299, 37.804833615870386 ] ] ] }, "properties": { "class": "school" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41290807723999, 37.80272707895914 ], [ -122.41288125514986, 37.802773703162714 ], [ -122.41208195686342, 37.802871190038694 ], [ -122.41151332855226, 37.802939006920006 ], [ -122.4113577604294, 37.802197256396575 ], [ -122.41207122802736, 37.80211248443386 ], [ -122.4125111103058, 37.80204890539802 ], [ -122.41276860237123, 37.80222692656055 ], [ -122.41264522075654, 37.8022438809346 ], [ -122.4127095937729, 37.80253634327446 ], [ -122.4128705263138, 37.80251938896754 ], [ -122.41290807724, 37.80272707895914 ], [ -122.41290807724, 37.80272707895914 ], [ -122.41290807723999, 37.80272707895914 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41090714931488, 37.80109521329224 ], [ -122.4105316400528, 37.80113759986951 ], [ -122.4101185798645, 37.80119270238364 ], [ -122.4094694852829, 37.80126899810456 ], [ -122.40939438343048, 37.80082393862155 ], [ -122.40934610366821, 37.80052723080971 ], [ -122.40978598594666, 37.80047212779914 ], [ -122.41015613079071, 37.80042550214271 ], [ -122.41033852100372, 37.80055266295457 ], [ -122.41070866584776, 37.80081546127204 ], [ -122.41087496280669, 37.800929905408374 ], [ -122.41090714931487, 37.801095213292214 ], [ -122.41090714931487, 37.801095213292214 ], [ -122.41090714931488, 37.80109521329224 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41770923137665, 37.78950157136492 ], [ -122.41699039936066, 37.78959059711889 ], [ -122.41706550121307, 37.78995941695691 ], [ -122.41631984710693, 37.79005268145195 ], [ -122.41624474525452, 37.78968386207941 ], [ -122.41608917713165, 37.78970081933231 ], [ -122.41601943969727, 37.78934895553718 ], [ -122.41763412952423, 37.789149706621 ], [ -122.41770923137666, 37.78950157136492 ], [ -122.41770923137666, 37.78950157136492 ], [ -122.41770923137665, 37.78950157136492 ] ] ] }, "properties": { "class": "hospital" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42665708065033, 37.79811537594843 ], [ -122.42573440074922, 37.79823406309142 ], [ -122.42558419704437, 37.79749650418472 ], [ -122.4265068769455, 37.7973778158567 ], [ -122.42665708065033, 37.79811537594843 ], [ -122.42665708065033, 37.79811537594843 ], [ -122.42665708065033, 37.79811537594843 ] ] ] }, "properties": { "class": "school" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42506384849548, 37.805024345622336 ], [ -122.4237710237503, 37.805185405918145 ], [ -122.42366909980774, 37.8046810317142 ], [ -122.42496728897095, 37.804519970318424 ], [ -122.42506384849548, 37.805024345622336 ], [ -122.42506384849548, 37.805024345622336 ], [ -122.42506384849548, 37.805024345622336 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42171108722687, 37.804494539539625 ], [ -122.42030024528503, 37.80468950862004 ], [ -122.42020905017854, 37.80425718518177 ], [ -122.42161989212036, 37.80406645344859 ], [ -122.42171108722687, 37.804494539539625 ], [ -122.42171108722687, 37.804494539539625 ], [ -122.42171108722687, 37.804494539539625 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42536962032318, 37.80571096865078 ], [ -122.42524087429045, 37.80518116749381 ], [ -122.42541253566742, 37.80515573694268 ], [ -122.42548763751984, 37.80514726009035 ], [ -122.42561638355255, 37.80571096865078 ], [ -122.42536962032318, 37.80571096865078 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41251111030579, 37.79251143022342 ], [ -122.41223216056824, 37.79254110427786 ], [ -122.41194784641266, 37.792579256616065 ], [ -122.41187810897827, 37.79220621068598 ], [ -122.41180300712585, 37.79182892368188 ], [ -122.4120819568634, 37.79179501014891 ], [ -122.41236627101898, 37.791761096600425 ], [ -122.41243600845337, 37.79213414477786 ], [ -122.41251111030579, 37.79251143022342 ], [ -122.41251111030579, 37.79251143022342 ], [ -122.41251111030579, 37.79251143022342 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.43000447750092, 37.80411307680662 ], [ -122.42921054363251, 37.8042105619147 ], [ -122.42927491664886, 37.804541162627416 ], [ -122.42918372154236, 37.80454963954931 ], [ -122.42912471294403, 37.80422327735411 ], [ -122.42895841598511, 37.80423175431249 ], [ -122.42886185646057, 37.80418089254761 ], [ -122.42895305156708, 37.8041681771009 ], [ -122.42897987365723, 37.80411307680662 ], [ -122.42893159389496, 37.80387995972208 ], [ -122.4299293756485, 37.80375704314487 ], [ -122.42999911308287, 37.804087645887726 ], [ -122.4300044775009, 37.80411307680662 ], [ -122.4300044775009, 37.80411307680662 ], [ -122.43000447750092, 37.80411307680662 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42810547351837, 37.79762790889688 ], [ -122.42732763290407, 37.79772964141673 ], [ -122.42723643779756, 37.79729727723981 ], [ -122.42801427841188, 37.797191305241675 ], [ -122.42810547351837, 37.79762790889688 ], [ -122.42810547351837, 37.79762790889688 ], [ -122.42810547351837, 37.79762790889688 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41376101970673, 37.7984671979957 ], [ -122.4132889509201, 37.798530780114596 ], [ -122.41323530673981, 37.798280690131136 ], [ -122.41308510303496, 37.798297645411004 ], [ -122.41305291652678, 37.79814928658016 ], [ -122.41287052631378, 37.79817471954375 ], [ -122.4128383398056, 37.798030599300965 ], [ -122.4136483669281, 37.797924628354835 ], [ -122.41376101970671, 37.7984671979957 ], [ -122.41376101970671, 37.7984671979957 ], [ -122.41376101970673, 37.7984671979957 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42516577243805, 37.805621962322036 ], [ -122.4248331785202, 37.80566858469807 ], [ -122.42484390735626, 37.80571096865078 ], [ -122.42386221885681, 37.80571096865078 ], [ -122.42383003234863, 37.80553295588602 ], [ -122.42401778697968, 37.80557957831826 ], [ -122.42423236370085, 37.80560077032319 ], [ -122.4244576692581, 37.805609247123456 ], [ -122.42462933063507, 37.80558805512094 ], [ -122.42474734783173, 37.80554143269405 ], [ -122.42495656013489, 37.80546514138659 ], [ -122.42511749267578, 37.805359181106546 ], [ -122.42516577243805, 37.805621962322036 ], [ -122.42516577243805, 37.805621962322036 ], [ -122.42516577243805, 37.805621962322036 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42116391658783, 37.79590691253789 ], [ -122.42097079753877, 37.79593234627349 ], [ -122.42092788219453, 37.79594082418341 ], [ -122.42023050785066, 37.79598321371845 ], [ -122.42017149925233, 37.7956737695535 ], [ -122.42109417915346, 37.795550839320036 ], [ -122.42116391658783, 37.79590691253789 ], [ -122.42116391658783, 37.79590691253789 ], [ -122.42116391658783, 37.79590691253789 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41690456867218, 37.802248119527505 ], [ -122.4164217710495, 37.802303221213165 ], [ -122.4163144826889, 37.801743725263904 ], [ -122.41671681404112, 37.80169710041017 ], [ -122.41668462753294, 37.80151060070086 ], [ -122.41676509380339, 37.80149788479444 ], [ -122.41683483123778, 37.80187936103473 ], [ -122.41686701774596, 37.802036189584236 ], [ -122.41690456867217, 37.802248119527505 ], [ -122.41690456867217, 37.802248119527505 ], [ -122.41690456867218, 37.802248119527505 ] ] ] }, "properties": { "class": "school" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41542935371399, 37.801044349367366 ], [ -122.41481244564055, 37.80112488389887 ], [ -122.41481781005858, 37.801141838525915 ], [ -122.41451203823088, 37.80118422507645 ], [ -122.41447448730467, 37.80100196273655 ], [ -122.4146783351898, 37.80097653074639 ], [ -122.41464614868163, 37.80081122259691 ], [ -122.41535961627956, 37.800722210363176 ], [ -122.41539180278774, 37.800883280040885 ], [ -122.41542935371395, 37.801044349367366 ], [ -122.41542935371395, 37.801044349367366 ], [ -122.41542935371399, 37.801044349367366 ] ] ] }, "properties": { "class": "school" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41217851638794, 37.794355438108134 ], [ -122.41147041320801, 37.79444445801387 ], [ -122.41139531135559, 37.794071421501364 ], [ -122.41210341453552, 37.793982401146124 ], [ -122.41217851638794, 37.794355438108134 ], [ -122.41217851638794, 37.794355438108134 ], [ -122.41217851638794, 37.794355438108134 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41142749786377, 37.79774659682308 ], [ -122.41097688674927, 37.79780170186684 ], [ -122.41096079349518, 37.79772540256451 ], [ -122.41090178489686, 37.797733880268694 ], [ -122.41090714931488, 37.79774659682308 ], [ -122.4107301235199, 37.797767791075536 ], [ -122.4106764793396, 37.797488026453344 ], [ -122.41135776042938, 37.7974032490859 ], [ -122.41142749786377, 37.79774659682308 ], [ -122.41142749786377, 37.79774659682308 ], [ -122.41142749786377, 37.79774659682308 ] ] ] }, "properties": { "class": "school" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42046654224396, 37.80168014591058 ], [ -122.4198228120804, 37.80175644112801 ], [ -122.41976380348207, 37.801451259785495 ], [ -122.42040753364564, 37.801374964252865 ], [ -122.42046654224396, 37.80168014591058 ], [ -122.42046654224396, 37.80168014591058 ], [ -122.42046654224396, 37.80168014591058 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41716206073761, 37.80127747540201 ], [ -122.41673290729523, 37.801336816456995 ], [ -122.41665244102478, 37.800955337414585 ], [ -122.41708695888519, 37.80090023472337 ], [ -122.41716206073761, 37.80127747540201 ], [ -122.41716206073761, 37.80127747540201 ], [ -122.41716206073761, 37.80127747540201 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42874920368195, 37.79171446544581 ], [ -122.42868483066559, 37.79178653176325 ], [ -122.42857754230499, 37.79179501014891 ], [ -122.42848098278046, 37.791778053376625 ], [ -122.42838978767395, 37.79172294383974 ], [ -122.42833077907562, 37.79166783426175 ], [ -122.42823421955109, 37.79163815985659 ], [ -122.42821276187897, 37.791438917113226 ], [ -122.42865264415741, 37.791371089673774 ], [ -122.42874920368195, 37.79171446544578 ], [ -122.42874920368195, 37.79171446544578 ], [ -122.42874920368195, 37.79171446544581 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41181910037994, 37.79257077832038 ], [ -122.41115391254425, 37.79265132209003 ], [ -122.41112172603607, 37.79265556123335 ], [ -122.41106271743774, 37.792350342291314 ], [ -122.4112343788147, 37.79232914648466 ], [ -122.41125047206879, 37.792426647145035 ], [ -122.41133630275726, 37.792418168831844 ], [ -122.41134703159332, 37.792490234462925 ], [ -122.41151869297029, 37.79246903869637 ], [ -122.4115025997162, 37.792392733886466 ], [ -122.41177618503572, 37.79236305977241 ], [ -122.41181910037996, 37.79257077832038 ], [ -122.41181910037996, 37.79257077832038 ], [ -122.41181910037994, 37.79257077832038 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41066038608551, 37.795945063138014 ], [ -122.41011321544649, 37.79601712532894 ], [ -122.41006493568422, 37.79579246061932 ], [ -122.41035461425783, 37.79575430994039 ], [ -122.41032779216768, 37.7956483357289 ], [ -122.41043508052827, 37.79563561881328 ], [ -122.41046726703648, 37.7958009385453 ], [ -122.41062819957737, 37.79577974372853 ], [ -122.41066038608555, 37.795945063138014 ], [ -122.41066038608555, 37.795945063138014 ], [ -122.41066038608551, 37.795945063138014 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42185592651367, 37.7912863052869 ], [ -122.42152333259583, 37.79132869749249 ], [ -122.42145895957947, 37.79098108068856 ], [ -122.42178082466125, 37.79094716676645 ], [ -122.42185592651367, 37.7912863052869 ], [ -122.42185592651367, 37.7912863052869 ], [ -122.42185592651367, 37.7912863052869 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4319839477539, 37.80201499655647 ], [ -122.43191957473755, 37.80173948664206 ], [ -122.4319839477539, 37.801735248019966 ], [ -122.4319839477539, 37.80201499655647 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41780042648315, 37.790845424906784 ], [ -122.41750538349152, 37.79087933887559 ], [ -122.41743564605713, 37.79050628436279 ], [ -122.41772532463074, 37.79046813095418 ], [ -122.41780042648315, 37.790845424906784 ], [ -122.41780042648315, 37.790845424906784 ], [ -122.41780042648315, 37.790845424906784 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.43191957473755, 37.8019810876994 ], [ -122.43156552314758, 37.80202771237386 ], [ -122.43150651454926, 37.801735248019966 ], [ -122.43186056613922, 37.801688623160864 ], [ -122.43191957473755, 37.8019810876994 ], [ -122.43191957473755, 37.8019810876994 ], [ -122.43191957473755, 37.8019810876994 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41805255413055, 37.80307464049579 ], [ -122.41778433322906, 37.80310854885083 ], [ -122.41770923137665, 37.80273555608927 ], [ -122.41797745227812, 37.80270164756298 ], [ -122.41805255413055, 37.80307464049579 ], [ -122.41805255413055, 37.80307464049579 ], [ -122.41805255413055, 37.80307464049579 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41275250911713, 37.80222268796642 ], [ -122.41218388080598, 37.8022905054432 ], [ -122.41214096546175, 37.80210400723224 ], [ -122.41251111030579, 37.80205738260592 ], [ -122.41275250911713, 37.80222268796642 ], [ -122.41275250911713, 37.80222268796642 ], [ -122.41275250911713, 37.80222268796642 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40967869758606, 37.79264284380264 ], [ -122.40942656993866, 37.79267675694643 ], [ -122.40935683250427, 37.79232914648466 ], [ -122.40960896015167, 37.79229523318131 ], [ -122.40967869758606, 37.79264284380264 ], [ -122.40967869758606, 37.79264284380264 ], [ -122.40967869758606, 37.79264284380264 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41040825843811, 37.792562300023725 ], [ -122.41016149520874, 37.79259197405775 ], [ -122.41009175777437, 37.7922486023638 ], [ -122.41033852100372, 37.792218928191865 ], [ -122.41040825843811, 37.792562300023725 ], [ -122.41040825843811, 37.792562300023725 ], [ -122.41040825843811, 37.792562300023725 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4209600687027, 37.79590691253789 ], [ -122.42054164409637, 37.79595778000036 ], [ -122.42050409317017, 37.79576278787075 ], [ -122.42092251777649, 37.79571615924177 ], [ -122.4209600687027, 37.79590691253789 ], [ -122.4209600687027, 37.79590691253789 ], [ -122.4209600687027, 37.79590691253789 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42153406143188, 37.795313456221336 ], [ -122.4210673570633, 37.79537280206753 ], [ -122.4210298061371, 37.79520748137745 ], [ -122.42150187492372, 37.79514813539847 ], [ -122.4215340614319, 37.795313456221336 ], [ -122.4215340614319, 37.795313456221336 ], [ -122.42153406143188, 37.795313456221336 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42172718048096, 37.79624178935534 ], [ -122.42129802703856, 37.79629689552161 ], [ -122.42126584053038, 37.796135815843115 ], [ -122.42169499397278, 37.79608070955667 ], [ -122.42172718048096, 37.79624178935534 ], [ -122.42172718048096, 37.79624178935534 ], [ -122.42172718048096, 37.79624178935534 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42262303829193, 37.79298197454004 ], [ -122.42223680019379, 37.79302436577279 ], [ -122.42219924926758, 37.792846322431856 ], [ -122.42258548736572, 37.79279969196215 ], [ -122.42262303829193, 37.79298197454004 ], [ -122.42262303829193, 37.79298197454004 ], [ -122.42262303829193, 37.79298197454004 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41158306598663, 37.789298083524535 ], [ -122.41139531135559, 37.78931928020073 ], [ -122.4113255739212, 37.788954696523255 ], [ -122.41151332855225, 37.78892926038561 ], [ -122.41158306598663, 37.789298083524535 ], [ -122.41158306598663, 37.789298083524535 ], [ -122.41158306598663, 37.789298083524535 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41376101970673, 37.79134989358618 ], [ -122.41350889205933, 37.79138380732341 ], [ -122.41345524787903, 37.79112521468376 ], [ -122.41370737552643, 37.79109130082786 ], [ -122.41376101970673, 37.79134989358618 ], [ -122.41376101970673, 37.79134989358618 ], [ -122.41376101970673, 37.79134989358618 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41763949394226, 37.7965088419319 ], [ -122.41729080677032, 37.796551231141 ], [ -122.41728007793425, 37.79654699222118 ], [ -122.41726934909819, 37.79653851438082 ], [ -122.41723716259001, 37.79639015201707 ], [ -122.417414188385, 37.79636895736935 ], [ -122.4174517393112, 37.796377435229154 ], [ -122.41751074790953, 37.796373196299385 ], [ -122.41754293441771, 37.796373196299385 ], [ -122.41756439208983, 37.79636471843907 ], [ -122.4175590276718, 37.79635624057777 ], [ -122.41754829883574, 37.796347762715534 ], [ -122.41754829883574, 37.79633928485233 ], [ -122.41759657859801, 37.796335045920344 ], [ -122.41763949394225, 37.7965088419319 ], [ -122.41763949394225, 37.7965088419319 ], [ -122.41763949394226, 37.7965088419319 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41129338741302, 37.79200273029387 ], [ -122.41126656532289, 37.79200696947442 ], [ -122.41127729415895, 37.79206207879947 ], [ -122.41118609905244, 37.79207479633018 ], [ -122.41120219230652, 37.79215534064047 ], [ -122.41101980209352, 37.792176536497024 ], [ -122.41097688674928, 37.791943381740616 ], [ -122.41127729415895, 37.7919094682602 ], [ -122.41129338741302, 37.79200273029387 ], [ -122.41129338741302, 37.79200273029387 ], [ -122.41129338741302, 37.79200273029387 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4095606803894, 37.79934462640321 ], [ -122.40938901901244, 37.79937005895526 ], [ -122.40933001041412, 37.7990140024299 ], [ -122.40948557853699, 37.79899280853499 ], [ -122.4095606803894, 37.79934462640321 ], [ -122.4095606803894, 37.79934462640321 ], [ -122.4095606803894, 37.79934462640321 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4204021692276, 37.80135377103535 ], [ -122.42003202438356, 37.80139615746429 ], [ -122.41999983787538, 37.80124356620636 ], [ -122.42037534713747, 37.801196941036885 ], [ -122.4204021692276, 37.80135377103535 ], [ -122.4204021692276, 37.80135377103535 ], [ -122.4204021692276, 37.80135377103535 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41294026374817, 37.79792038951381 ], [ -122.41275787353517, 37.79794158371643 ], [ -122.41269886493684, 37.79762790889688 ], [ -122.41287589073183, 37.79760671460429 ], [ -122.41294026374818, 37.79792038951381 ], [ -122.41294026374818, 37.79792038951381 ], [ -122.41294026374817, 37.79792038951381 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41159915924072, 37.80099772407214 ], [ -122.41147577762604, 37.801010440064665 ], [ -122.41144895553589, 37.801010440064665 ], [ -122.41142749786377, 37.80099772407214 ], [ -122.41119146347046, 37.800828177295934 ], [ -122.41154551506042, 37.80078155186425 ], [ -122.41159915924074, 37.80099772407214 ], [ -122.41159915924074, 37.80099772407214 ], [ -122.41159915924072, 37.80099772407214 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42728471755981, 37.791472830809646 ], [ -122.42710769176483, 37.79150250528121 ], [ -122.42704331874846, 37.791235434608055 ], [ -122.42722570896147, 37.791209999255514 ], [ -122.4272847175598, 37.791472830809646 ], [ -122.4272847175598, 37.791472830809646 ], [ -122.42728471755981, 37.791472830809646 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4319839477539, 37.80223116515443 ], [ -122.43179082870483, 37.802256596712596 ], [ -122.43173718452454, 37.8020107579502 ], [ -122.43193030357361, 37.80198532630738 ], [ -122.4319839477539, 37.80222268796642 ], [ -122.4319839477539, 37.80223116515443 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41171717643738, 37.79201544783479 ], [ -122.41146504878998, 37.792045122088425 ], [ -122.41145431995392, 37.791985773569245 ], [ -122.41140067577362, 37.79199425193203 ], [ -122.4113792181015, 37.791896750701035 ], [ -122.4116849899292, 37.79186283719924 ], [ -122.41171717643738, 37.79201544783479 ], [ -122.41171717643738, 37.79201544783479 ], [ -122.41171717643738, 37.79201544783479 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41252183914185, 37.79150674449044 ], [ -122.41246283054352, 37.79151522290824 ], [ -122.41231799125673, 37.790769118420094 ], [ -122.41237163543703, 37.79076063991673 ], [ -122.41237699985504, 37.790769118420094 ], [ -122.41252183914185, 37.79150674449044 ], [ -122.41252183914185, 37.79150674449044 ], [ -122.41252183914185, 37.79150674449044 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4193400144577, 37.79765334203998 ], [ -122.41887867450714, 37.797708447153305 ], [ -122.41886794567108, 37.79764062546953 ], [ -122.41913080215454, 37.79761095346328 ], [ -122.41912543773653, 37.79756856486228 ], [ -122.41931855678558, 37.79754737055262 ], [ -122.4193400144577, 37.79765334203998 ], [ -122.4193400144577, 37.79765334203998 ], [ -122.4193400144577, 37.79765334203998 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41430819034576, 37.788954696523255 ], [ -122.41419553756714, 37.78896741458879 ], [ -122.41413116455078, 37.788619786676236 ], [ -122.41423845291138, 37.78860706855088 ], [ -122.41430819034576, 37.788954696523255 ], [ -122.41430819034576, 37.788954696523255 ], [ -122.41430819034576, 37.788954696523255 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42697358131409, 37.79151946211675 ], [ -122.42681801319122, 37.7915364189484 ], [ -122.42677509784698, 37.79130750139274 ], [ -122.42693603038788, 37.79129054450855 ], [ -122.42697358131409, 37.79151946211675 ], [ -122.42697358131409, 37.79151946211675 ], [ -122.42697358131409, 37.79151946211675 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41545081138611, 37.80435043162762 ], [ -122.41518259048462, 37.804380100926586 ], [ -122.41515576839447, 37.80424446974821 ], [ -122.41542935371399, 37.80421480039474 ], [ -122.41545081138612, 37.80435043162762 ], [ -122.41545081138612, 37.80435043162762 ], [ -122.41545081138611, 37.80435043162762 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42048799991608, 37.7959196294068 ], [ -122.42023587226866, 37.79594930209237 ], [ -122.42020905017853, 37.79580941647031 ], [ -122.42046117782593, 37.79577974372853 ], [ -122.42048799991608, 37.7959196294068 ], [ -122.42048799991608, 37.7959196294068 ], [ -122.42048799991608, 37.7959196294068 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41200685501099, 37.80282032733683 ], [ -122.41185665130614, 37.802837281574696 ], [ -122.41180837154388, 37.80260839903546 ], [ -122.41196393966675, 37.80258720617189 ], [ -122.41200685501099, 37.80282032733683 ], [ -122.41200685501099, 37.80282032733683 ], [ -122.41200685501099, 37.80282032733683 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42590069770813, 37.80571096865078 ], [ -122.42591142654419, 37.80569401507261 ], [ -122.4259865283966, 37.80571096865078 ], [ -122.42590069770813, 37.80571096865078 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41053700447083, 37.8046979855249 ], [ -122.41019368171692, 37.804740370034615 ], [ -122.4101722240448, 37.80464288562588 ], [ -122.41052091121674, 37.80460050106022 ], [ -122.41053700447083, 37.8046979855249 ], [ -122.41053700447083, 37.8046979855249 ], [ -122.41053700447083, 37.8046979855249 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41080522537231, 37.80058657246742 ], [ -122.41049945354462, 37.800374637756676 ], [ -122.41076231002808, 37.80034072814651 ], [ -122.41080522537231, 37.80058657246742 ], [ -122.41080522537231, 37.80058657246742 ], [ -122.41080522537231, 37.80058657246742 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40996837615967, 37.799874469428296 ], [ -122.40988254547119, 37.799887185614196 ], [ -122.4098128080368, 37.79951417658475 ], [ -122.40989863872528, 37.79950569908492 ], [ -122.40996837615967, 37.799874469428296 ], [ -122.40996837615967, 37.799874469428296 ], [ -122.40996837615967, 37.799874469428296 ] ] ] }, "properties": { "class": "parking" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4247795343399, 37.800222044388384 ], [ -122.42465615272522, 37.80023899922264 ], [ -122.42461323738098, 37.80002282479424 ], [ -122.4247419834137, 37.800010108631696 ], [ -122.4247795343399, 37.800222044388384 ], [ -122.4247795343399, 37.800222044388384 ], [ -122.4247795343399, 37.800222044388384 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41234481334686, 37.80255753615264 ], [ -122.41221606731415, 37.80257449045081 ], [ -122.41217851638794, 37.80236256144402 ], [ -122.41230189800262, 37.80234560709723 ], [ -122.41234481334686, 37.80255753615264 ], [ -122.41234481334686, 37.80255753615264 ], [ -122.41234481334686, 37.80255753615264 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42111027240753, 37.795843328160586 ], [ -122.42098689079285, 37.79585604504041 ], [ -122.42094397544861, 37.7956483357289 ], [ -122.4210673570633, 37.79563137984094 ], [ -122.42111027240753, 37.795843328160586 ], [ -122.42111027240753, 37.795843328160586 ], [ -122.42111027240753, 37.795843328160586 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41250574588776, 37.80253634327446 ], [ -122.41238772869109, 37.80255329757749 ], [ -122.41234481334685, 37.802341368509886 ], [ -122.41246819496153, 37.80232865274652 ], [ -122.41250574588774, 37.80253634327446 ], [ -122.41250574588774, 37.80253634327446 ], [ -122.41250574588776, 37.80253634327446 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41267204284668, 37.8025151503902 ], [ -122.412548661232, 37.80253210469809 ], [ -122.41251111030579, 37.802324414158235 ], [ -122.41262912750244, 37.80230745980266 ], [ -122.4126720428467, 37.8025151503902 ], [ -122.4126720428467, 37.8025151503902 ], [ -122.41267204284668, 37.8025151503902 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41079986095428, 37.80098500807743 ], [ -122.41079449653625, 37.801010440064665 ], [ -122.4107837677002, 37.80103163338067 ], [ -122.41076767444612, 37.801044349367366 ], [ -122.41074085235597, 37.80105706535187 ], [ -122.41070866584779, 37.801061304012876 ], [ -122.41067647933961, 37.80105706535187 ], [ -122.41064429283144, 37.801044349367366 ], [ -122.41062283515932, 37.801023156054995 ], [ -122.41061747074129, 37.80099772407214 ], [ -122.41061747074129, 37.80097229208053 ], [ -122.41062819957735, 37.80095957608142 ], [ -122.41064429283144, 37.800938382744725 ], [ -122.41068720817567, 37.80088751871187 ], [ -122.41076231002809, 37.80093414407668 ], [ -122.41078913211824, 37.80095957608142 ], [ -122.4107998609543, 37.80098500807743 ], [ -122.4107998609543, 37.80098500807743 ], [ -122.41079986095428, 37.80098500807743 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41297245025635, 37.797076855312966 ], [ -122.4128383398056, 37.79709381086916 ], [ -122.41280615329742, 37.796958166310716 ], [ -122.41294026374817, 37.79694121072341 ], [ -122.41297245025635, 37.797076855312966 ], [ -122.41297245025635, 37.797076855312966 ], [ -122.41297245025635, 37.797076855312966 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42043435573578, 37.79577126580011 ], [ -122.42023050785066, 37.795796699582425 ], [ -122.42021441459657, 37.79571615924177 ], [ -122.4204182624817, 37.79569072543175 ], [ -122.42043435573578, 37.79577126580011 ], [ -122.42043435573578, 37.79577126580011 ], [ -122.42043435573578, 37.79577126580011 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41240918636322, 37.792426647145035 ], [ -122.41225898265839, 37.79244360376852 ], [ -122.41224825382233, 37.792380016410455 ], [ -122.41239845752716, 37.79235882061229 ], [ -122.41240918636322, 37.792426647145035 ], [ -122.41240918636322, 37.792426647145035 ], [ -122.41240918636322, 37.792426647145035 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.412189245224, 37.79245208207878 ], [ -122.4120444059372, 37.7924732778502 ], [ -122.41202831268312, 37.79240969051768 ], [ -122.41217851638795, 37.792392733886466 ], [ -122.41218924522401, 37.79245208207878 ], [ -122.41218924522401, 37.79245208207878 ], [ -122.412189245224, 37.79245208207878 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41280615329742, 37.80271860182807 ], [ -122.41275787353516, 37.80272284039373 ], [ -122.41272568702698, 37.80254058185058 ], [ -122.41276860237122, 37.80253634327446 ], [ -122.41280615329742, 37.80271860182807 ], [ -122.41280615329742, 37.80271860182807 ], [ -122.41280615329742, 37.80271860182807 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41285979747772, 37.802710124696034 ], [ -122.41281151771545, 37.80271860182807 ], [ -122.41277933120728, 37.80253634327446 ], [ -122.41282224655151, 37.80253210469809 ], [ -122.41285979747772, 37.802710124696034 ], [ -122.41285979747772, 37.802710124696034 ], [ -122.41285979747772, 37.802710124696034 ] ] ] }, "properties": { "class": "pitch" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41219460964203, 37.791985773569245 ], [ -122.41214632987976, 37.79199425193205 ], [ -122.41214096546175, 37.79197305602321 ], [ -122.412189245224, 37.79196881684073 ], [ -122.41219460964203, 37.791985773569245 ], [ -122.41219460964203, 37.791985773569245 ], [ -122.41219460964203, 37.791985773569245 ] ] ] }, "properties": { "class": "park" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41209805011749, 37.79199849111309 ], [ -122.41204977035524, 37.79200273029387 ], [ -122.41204440593721, 37.791981534387475 ], [ -122.41209268569948, 37.79197729520547 ], [ -122.41209805011749, 37.79199849111309 ], [ -122.41209805011749, 37.79199849111309 ], [ -122.41209805011749, 37.79199849111309 ] ] ] }, "properties": { "class": "park" } } ], "name": "landuse" }mapnik-vector-tile-0.3.2/examples/data/14_2620_6331-building.geojson0000644000175000017500000153666312174360626022660 0ustar devdev{ "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41495728492737, 37.80557533991654 ], [ -122.41495192050935, 37.80556262470994 ], [ -122.41506993770601, 37.805545671097704 ], [ -122.41507530212402, 37.80557533991654 ], [ -122.41495728492737, 37.80557533991654 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42595970630646, 37.80552871748163 ], [ -122.42588996887207, 37.80557533991654 ], [ -122.42585778236389, 37.80557533991654 ], [ -122.42580950260164, 37.805532955885994 ], [ -122.42578804492952, 37.80554990950113 ], [ -122.42575585842134, 37.80552447907698 ], [ -122.42585241794588, 37.80546090297828 ], [ -122.42587924003601, 37.805482095017254 ], [ -122.42590069770813, 37.8054693797946 ], [ -122.42595970630646, 37.80552871748163 ], [ -122.42595970630646, 37.80552871748163 ], [ -122.42595970630646, 37.80552871748163 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41540789604187, 37.80557533991654 ], [ -122.4153918027878, 37.805507525456015 ], [ -122.41583168506624, 37.80544818775196 ], [ -122.41583704948427, 37.80546514138657 ], [ -122.4158638715744, 37.80546090297828 ], [ -122.41589069366455, 37.80557533991654 ], [ -122.41540789604187, 37.80557533991654 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42577195167542, 37.805477856609954 ], [ -122.42573440074922, 37.80550328705019 ], [ -122.42569684982301, 37.80546937979462 ], [ -122.42573440074922, 37.80544394934274 ], [ -122.42577195167542, 37.805477856609954 ], [ -122.42577195167542, 37.805477856609954 ], [ -122.42577195167542, 37.805477856609954 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42244064807892, 37.80557533991654 ], [ -122.42244064807892, 37.80557533991654 ], [ -122.42359399795532, 37.80543971093325 ], [ -122.4236261844635, 37.80557533991654 ], [ -122.42244064807892, 37.80557533991654 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42045044898987, 37.80557533991654 ], [ -122.42041826248169, 37.80541851888209 ], [ -122.42073476314545, 37.80537613476155 ], [ -122.42077767848969, 37.80557533991654 ], [ -122.42045044898987, 37.80557533991654 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42442011833191, 37.805558386307254 ], [ -122.42426455020905, 37.80556686311238 ], [ -122.42410361766815, 37.805558386307254 ], [ -122.42394268512726, 37.80552447907698 ], [ -122.42381930351257, 37.80548633342432 ], [ -122.42388367652893, 37.80537613476155 ], [ -122.42399096488953, 37.80541004205992 ], [ -122.4241304397583, 37.805435472523484 ], [ -122.42426455020905, 37.80544394934274 ], [ -122.42440402507783, 37.805435472523484 ], [ -122.42442011833191, 37.805558386307254 ], [ -122.42442011833191, 37.805558386307254 ], [ -122.42442011833191, 37.805558386307254 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42793917655945, 37.80557533991654 ], [ -122.42793917655945, 37.80557533991654 ], [ -122.42793381214143, 37.80554990950113 ], [ -122.42819130420686, 37.805499048644066 ], [ -122.42815375328065, 37.805397326824874 ], [ -122.42837369441988, 37.805354942692176 ], [ -122.42838442325593, 37.80538461158759 ], [ -122.42850780487062, 37.80535918110652 ], [ -122.428577542305, 37.80557533991654 ], [ -122.42793917655945, 37.80557533991654 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41589069366455, 37.80557533991654 ], [ -122.4158638715744, 37.80546090297828 ], [ -122.4158638715744, 37.80544394934274 ], [ -122.41682410240173, 37.805325273784796 ], [ -122.41687774658205, 37.80557533991654 ], [ -122.41589069366455, 37.80557533991654 ], [ -122.41673827171326, 37.80557533991654 ], [ -122.41673290729524, 37.80554143269405 ], [ -122.41671144962312, 37.80554143269405 ], [ -122.41670608520509, 37.80549481023774 ], [ -122.41668462753297, 37.80549481023774 ], [ -122.41667926311494, 37.8054693797946 ], [ -122.41666853427888, 37.8054693797946 ], [ -122.41667926311494, 37.80553719429016 ], [ -122.41635739803316, 37.80557533991654 ], [ -122.41589069366455, 37.80557533991654 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41711378097534, 37.80557533991654 ], [ -122.41706550121309, 37.80532951220087 ], [ -122.41717278957368, 37.80531679695196 ], [ -122.41756439208986, 37.80557533991654 ], [ -122.41711378097534, 37.80557533991654 ], [ -122.417408823967, 37.80557533991654 ], [ -122.41734981536867, 37.80553719429016 ], [ -122.41732299327852, 37.80556262470994 ], [ -122.41732299327852, 37.80557533991654 ], [ -122.41711378097534, 37.80557533991654 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41147577762604, 37.80557533991654 ], [ -122.41142749786377, 37.805354942692176 ], [ -122.41174936294556, 37.80531255853515 ], [ -122.41180837154388, 37.80557533991654 ], [ -122.41147577762604, 37.80557533991654 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41512358188629, 37.80536341952066 ], [ -122.41372346878053, 37.80553295588602 ], [ -122.41370201110841, 37.80543971093325 ], [ -122.41510212421417, 37.80526593593434 ], [ -122.41512358188629, 37.80536341952066 ], [ -122.41512358188629, 37.80536341952066 ], [ -122.41512358188629, 37.80536341952066 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.43181228637695, 37.80532951220087 ], [ -122.43179082870483, 37.80533375061669 ], [ -122.43177473545076, 37.805278651192026 ], [ -122.43181228637695, 37.805274412773024 ], [ -122.43181228637695, 37.80532951220087 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42512285709381, 37.805325273784796 ], [ -122.42501556873322, 37.80541004205992 ], [ -122.42489218711853, 37.80546514138659 ], [ -122.4247634410858, 37.80551176386163 ], [ -122.42459177970885, 37.80554567109773 ], [ -122.42454886436461, 37.80541428047113 ], [ -122.42469906806944, 37.80537613476155 ], [ -122.42480635643005, 37.80533375061669 ], [ -122.42491900920866, 37.805278651192026 ], [ -122.42500483989716, 37.80522355172624 ], [ -122.42512285709381, 37.805325273784796 ], [ -122.42512285709381, 37.805325273784796 ], [ -122.42512285709381, 37.805325273784796 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42657124996185, 37.80528712802926 ], [ -122.42628693580627, 37.80528712802926 ], [ -122.42628693580627, 37.80521083645907 ], [ -122.42638885974884, 37.80521083645907 ], [ -122.42638885974884, 37.805248982254014 ], [ -122.42645859718321, 37.805248982254014 ], [ -122.42645859718321, 37.80521083645907 ], [ -122.42657124996184, 37.80521083645907 ], [ -122.42657124996184, 37.80528712802926 ], [ -122.42657124996184, 37.80528712802926 ], [ -122.42657124996185, 37.80528712802926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41802036762238, 37.80540156523678 ], [ -122.41782188415527, 37.805422757292796 ], [ -122.41773068904878, 37.80535918110652 ], [ -122.41772532463075, 37.80534222744762 ], [ -122.41781115531923, 37.80532951220087 ], [ -122.41781651973726, 37.80534222744762 ], [ -122.4178969860077, 37.80533375061669 ], [ -122.41786479949951, 37.8051938827661 ], [ -122.41797745227814, 37.80518116749381 ], [ -122.41802036762238, 37.80540156523678 ], [ -122.41802036762238, 37.80540156523678 ], [ -122.41802036762238, 37.80540156523678 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41101443767548, 37.80546514138659 ], [ -122.41084277629852, 37.805482095017275 ], [ -122.4108374118805, 37.80544818775199 ], [ -122.41063356399538, 37.80546937979462 ], [ -122.41057455539705, 37.805164213794036 ], [ -122.4109447002411, 37.80512182952755 ], [ -122.41101443767548, 37.80546514138659 ], [ -122.41101443767548, 37.80546514138659 ], [ -122.41101443767548, 37.80546514138659 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.416512966156, 37.80518116749381 ], [ -122.4153596162796, 37.80532951220087 ], [ -122.41533815860748, 37.805227790148145 ], [ -122.41649150848389, 37.805079445236736 ], [ -122.416512966156, 37.80518116749381 ], [ -122.416512966156, 37.80518116749381 ], [ -122.416512966156, 37.80518116749381 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41412580013275, 37.804935338466066 ], [ -122.41412043571474, 37.80495653065587 ], [ -122.41410434246065, 37.80495653065587 ], [ -122.41409897804262, 37.80506249151361 ], [ -122.4141150712967, 37.80506672994478 ], [ -122.4141150712967, 37.805092160526534 ], [ -122.41409361362459, 37.805092160526534 ], [ -122.41408824920656, 37.80520235961308 ], [ -122.41410434246065, 37.80520235961308 ], [ -122.41410434246065, 37.805261697514624 ], [ -122.41392731666566, 37.805253220674466 ], [ -122.41392731666566, 37.8051938827661 ], [ -122.41394877433778, 37.8051938827661 ], [ -122.41395413875581, 37.80508368366691 ], [ -122.41393804550172, 37.80508368366691 ], [ -122.41393804550172, 37.80505825308222 ], [ -122.41395413875581, 37.80505825308222 ], [ -122.41396486759187, 37.80494805378067 ], [ -122.41394877433778, 37.80494805378067 ], [ -122.41395413875581, 37.804931100027396 ], [ -122.41412580013277, 37.804935338466066 ], [ -122.41412580013277, 37.804935338466066 ], [ -122.41412580013275, 37.804935338466066 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42615282535553, 37.80513878323706 ], [ -122.42606163024902, 37.805164213794036 ], [ -122.42595970630646, 37.8049522922184 ], [ -122.42605090141296, 37.80492686158845 ], [ -122.42608845233917, 37.80500315345199 ], [ -122.42604553699493, 37.80501586875492 ], [ -122.42606699466705, 37.80506672994478 ], [ -122.42610991001129, 37.80505401465057 ], [ -122.42615282535553, 37.80513878323706 ], [ -122.42615282535553, 37.80513878323706 ], [ -122.42615282535553, 37.80513878323706 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41445302963257, 37.80515573694268 ], [ -122.4142813682556, 37.80518116749381 ], [ -122.4142813682556, 37.805164213794036 ], [ -122.41429746150969, 37.805164213794036 ], [ -122.41427600383757, 37.80505401465057 ], [ -122.41425991058348, 37.80505825308222 ], [ -122.41424918174742, 37.805028584055684 ], [ -122.41426527500151, 37.805028584055684 ], [ -122.41424381732939, 37.804918384709865 ], [ -122.4142277240753, 37.804922623149274 ], [ -122.4142277240753, 37.804905669390145 ], [ -122.41439402103423, 37.80488023874414 ], [ -122.41439938545226, 37.80489719250912 ], [ -122.41438329219817, 37.80490143094975 ], [ -122.41441011428832, 37.80500739188654 ], [ -122.41442620754238, 37.80500739188654 ], [ -122.4144315719604, 37.80503282248878 ], [ -122.41441011428829, 37.80503706092163 ], [ -122.41443693637844, 37.805143021663824 ], [ -122.4144476652145, 37.805143021663824 ], [ -122.41445302963251, 37.80515573694268 ], [ -122.41445302963251, 37.80515573694268 ], [ -122.41445302963257, 37.80515573694268 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42669999599457, 37.80506672994478 ], [ -122.42660880088808, 37.805079445236736 ], [ -122.42659270763399, 37.804998915017194 ], [ -122.42664098739625, 37.80499043814688 ], [ -122.4266302585602, 37.804935338466066 ], [ -122.42658197879793, 37.80494381534272 ], [ -122.42656588554384, 37.80485480808938 ], [ -122.42666244506837, 37.804846331202526 ], [ -122.42669999599458, 37.80506672994478 ], [ -122.42669999599458, 37.80506672994478 ], [ -122.42669999599457, 37.80506672994478 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41483390331268, 37.805134544810045 ], [ -122.41467297077179, 37.8051938827661 ], [ -122.41464078426361, 37.80513878323706 ], [ -122.41465687751769, 37.8051303063828 ], [ -122.41459786891937, 37.80503282248878 ], [ -122.41458177566528, 37.80503706092163 ], [ -122.41456568241121, 37.805011630320855 ], [ -122.41458177566528, 37.80500739188654 ], [ -122.41452276706696, 37.804905669390145 ], [ -122.4145120382309, 37.804909907830286 ], [ -122.41450130939484, 37.80489719250912 ], [ -122.41466224193574, 37.80483785431468 ], [ -122.41466760635376, 37.80485480808938 ], [ -122.41465151309968, 37.80485904653245 ], [ -122.414710521698, 37.80496076909309 ], [ -122.41472661495209, 37.80495653065585 ], [ -122.41474270820618, 37.804977722839574 ], [ -122.41472661495209, 37.804986199711365 ], [ -122.41478025913239, 37.80508368366691 ], [ -122.41479635238647, 37.805079445236736 ], [ -122.41483390331267, 37.805134544810045 ], [ -122.41483390331267, 37.805134544810045 ], [ -122.41483390331268, 37.805134544810045 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42763340473175, 37.80491414627021 ], [ -122.42753148078918, 37.804977722839574 ], [ -122.42744565010071, 37.80489295406824 ], [ -122.42747247219086, 37.804876000302286 ], [ -122.42745101451874, 37.80485480808938 ], [ -122.42749929428099, 37.804825138981116 ], [ -122.42752075195311, 37.804846331202526 ], [ -122.42754757404326, 37.804833615870386 ], [ -122.42763340473174, 37.80491414627021 ], [ -122.42763340473174, 37.80491414627021 ], [ -122.42763340473175, 37.80491414627021 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41603553295135, 37.80507096837568 ], [ -122.41586923599243, 37.805092160526534 ], [ -122.4158638715744, 37.805079445236736 ], [ -122.41587996482849, 37.805075206806336 ], [ -122.41585850715637, 37.80496924596682 ], [ -122.41584241390228, 37.80496924596682 ], [ -122.41583704948427, 37.80494381534272 ], [ -122.41585314273834, 37.80494381534272 ], [ -122.41582632064821, 37.804833615870386 ], [ -122.41581559181215, 37.804833615870386 ], [ -122.41581022739412, 37.80481666209083 ], [ -122.41598188877107, 37.80479546986092 ], [ -122.4159872531891, 37.80481242364534 ], [ -122.41597115993501, 37.80481666209083 ], [ -122.41599261760713, 37.804922623149274 ], [ -122.41600871086122, 37.804918384709865 ], [ -122.41601407527925, 37.80494805378067 ], [ -122.41599798202516, 37.80494805378067 ], [ -122.41601943969728, 37.80505825308222 ], [ -122.41603553295137, 37.80505401465057 ], [ -122.41603553295137, 37.80507096837568 ], [ -122.41603553295137, 37.80507096837568 ], [ -122.41603553295135, 37.80507096837568 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41382002830505, 37.80537189634818 ], [ -122.41369664669037, 37.80538461158762 ], [ -122.41357326507568, 37.80478699296722 ], [ -122.41370201110841, 37.80477003917697 ], [ -122.41382002830507, 37.80537189634818 ], [ -122.41382002830507, 37.80537189634818 ], [ -122.41382002830505, 37.80537189634818 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42814838886261, 37.80481666209083 ], [ -122.42808401584625, 37.80491414627021 ], [ -122.42797136306763, 37.804867523417855 ], [ -122.428035736084, 37.80477003917697 ], [ -122.42806255817413, 37.804782754520026 ], [ -122.42808401584625, 37.80475732383171 ], [ -122.42813766002655, 37.80477851607258 ], [ -122.42812156677248, 37.8048081851996 ], [ -122.42814838886261, 37.80481666209083 ], [ -122.42814838886261, 37.80481666209083 ], [ -122.42814838886261, 37.80481666209083 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41572976112366, 37.80472341623366 ], [ -122.41572976112366, 37.804740370034615 ], [ -122.41571366786958, 37.804740370034615 ], [ -122.41570830345155, 37.80485056964608 ], [ -122.41572439670564, 37.80485056964608 ], [ -122.41571903228761, 37.80488023874414 ], [ -122.41570293903355, 37.804876000302286 ], [ -122.41569757461552, 37.804986199711365 ], [ -122.41571366786961, 37.804986199711365 ], [ -122.41570830345158, 37.80504977621872 ], [ -122.4155312776566, 37.80504129935424 ], [ -122.41553664207463, 37.804981961275594 ], [ -122.41555273532869, 37.804981961275594 ], [ -122.41556346416475, 37.804871761860184 ], [ -122.41554737091069, 37.804871761860184 ], [ -122.41554737091069, 37.804846331202526 ], [ -122.41556346416475, 37.804846331202526 ], [ -122.41556882858278, 37.804736131584754 ], [ -122.41555809974672, 37.804736131584754 ], [ -122.41555809974672, 37.8047191777828 ], [ -122.41572976112367, 37.80472341623366 ], [ -122.41572976112367, 37.80472341623366 ], [ -122.41572976112366, 37.80472341623366 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4148178100586, 37.804748846933656 ], [ -122.41377711296082, 37.80488023874414 ], [ -122.4137556552887, 37.80476580072879 ], [ -122.41479635238647, 37.80463864717042 ], [ -122.4148178100586, 37.804748846933656 ], [ -122.4148178100586, 37.804748846933656 ], [ -122.4148178100586, 37.804748846933656 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42747247219086, 37.80474460848425 ], [ -122.42735445499419, 37.80477851607258 ], [ -122.42730617523193, 37.804676793260924 ], [ -122.42733836174011, 37.80466831635362 ], [ -122.42732226848602, 37.80463864717042 ], [ -122.42738127708435, 37.80462169334611 ], [ -122.42739737033843, 37.80465136253612 ], [ -122.42742419242857, 37.80464288562588 ], [ -122.42747247219084, 37.80474460848425 ], [ -122.42747247219084, 37.80474460848425 ], [ -122.42747247219086, 37.80474460848425 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41508066654205, 37.80521507488171 ], [ -122.41495728492737, 37.805227790148145 ], [ -122.41483390331268, 37.80462593180253 ], [ -122.41496264934541, 37.804613216432486 ], [ -122.41508066654207, 37.80521507488171 ], [ -122.41508066654207, 37.80521507488171 ], [ -122.41508066654205, 37.80521507488171 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42959678173065, 37.8046937470726 ], [ -122.42938220500946, 37.8047191777828 ], [ -122.42936074733734, 37.804613216432486 ], [ -122.42957532405853, 37.80458778568577 ], [ -122.42959678173065, 37.8046937470726 ], [ -122.42959678173065, 37.8046937470726 ], [ -122.42959678173065, 37.8046937470726 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41545617580414, 37.805164213794036 ], [ -122.41533279418945, 37.80518116749381 ], [ -122.4152147769928, 37.804579308768254 ], [ -122.41533815860748, 37.8045623549303 ], [ -122.41545617580414, 37.805164213794036 ], [ -122.41545617580414, 37.805164213794036 ], [ -122.41545617580414, 37.805164213794036 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42601335048676, 37.80477851607258 ], [ -122.42591679096222, 37.80479970830737 ], [ -122.42584705352783, 37.804579308768254 ], [ -122.42593824863434, 37.8045623549303 ], [ -122.42596507072449, 37.80464288562588 ], [ -122.42592215538025, 37.80465136253612 ], [ -122.42593824863432, 37.80470222397696 ], [ -122.42598652839659, 37.8046937470726 ], [ -122.42601335048674, 37.80477851607258 ], [ -122.42601335048674, 37.80477851607258 ], [ -122.42601335048676, 37.80477851607258 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41653442382812, 37.804909907830286 ], [ -122.4164754152298, 37.80491414627021 ], [ -122.41649150848389, 37.804998915017194 ], [ -122.41643249988556, 37.80500739188654 ], [ -122.41599261760712, 37.80470222397696 ], [ -122.41599261760712, 37.80465136253609 ], [ -122.41609454154968, 37.804545401088475 ], [ -122.41652905941008, 37.804846331202526 ], [ -122.41653442382811, 37.804909907830286 ], [ -122.41653442382811, 37.804909907830286 ], [ -122.41653442382812, 37.804909907830286 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42819130420685, 37.804558116470204 ], [ -122.42818593978882, 37.8046640778996 ], [ -122.42806255817413, 37.804659839445335 ], [ -122.42806792259216, 37.804553878009884 ], [ -122.42810010910034, 37.804553878009884 ], [ -122.42810010910034, 37.804524208780705 ], [ -122.4281644821167, 37.80452844724274 ], [ -122.42815911769867, 37.804558116470204 ], [ -122.42819130420686, 37.804558116470204 ], [ -122.42819130420686, 37.804558116470204 ], [ -122.42819130420685, 37.804558116470204 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42912471294403, 37.80474460848425 ], [ -122.4290120601654, 37.804753085382806 ], [ -122.42900669574739, 37.804736131584754 ], [ -122.42884039878847, 37.804753085382806 ], [ -122.42884039878847, 37.80477427762491 ], [ -122.42871165275575, 37.80478699296722 ], [ -122.42869019508362, 37.804659839445335 ], [ -122.42867410182954, 37.804659839445335 ], [ -122.42866337299348, 37.80458778568577 ], [ -122.42867946624756, 37.80458778568577 ], [ -122.42867410182954, 37.804553878009884 ], [ -122.42879748344423, 37.804541162627416 ], [ -122.42880821228029, 37.804634408714705 ], [ -122.42898523807527, 37.804617454889396 ], [ -122.42897450923921, 37.804519970318424 ], [ -122.42908716201784, 37.80450725493011 ], [ -122.42912471294403, 37.80474460848425 ], [ -122.42912471294403, 37.80474460848425 ], [ -122.42912471294403, 37.80474460848425 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4160248041153, 37.804583547227125 ], [ -122.4154132604599, 37.804659839445335 ], [ -122.41539180278778, 37.8045623549303 ], [ -122.41600334644318, 37.8044860626114 ], [ -122.4160248041153, 37.804583547227125 ], [ -122.4160248041153, 37.804583547227125 ], [ -122.4160248041153, 37.804583547227125 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42662489414215, 37.80470646242878 ], [ -122.42653369903564, 37.8047191777828 ], [ -122.42651760578157, 37.80463864717042 ], [ -122.42656588554382, 37.80463017025873 ], [ -122.42655515670776, 37.80457507030913 ], [ -122.42650687694551, 37.804583547227125 ], [ -122.42649078369142, 37.804494539539625 ], [ -122.42658734321596, 37.8044860626114 ], [ -122.42662489414217, 37.80470646242878 ], [ -122.42662489414217, 37.80470646242878 ], [ -122.42662489414215, 37.80470646242878 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42736518383026, 37.80453268570453 ], [ -122.4272471666336, 37.80456659339016 ], [ -122.42719888687134, 37.804469108752045 ], [ -122.42722570896149, 37.804460631820916 ], [ -122.42721498012543, 37.804430962554264 ], [ -122.42727398872375, 37.80441400868229 ], [ -122.42728471755981, 37.80444367795571 ], [ -122.427316904068, 37.80443520102166 ], [ -122.42736518383025, 37.80453268570453 ], [ -122.42736518383025, 37.80453268570453 ], [ -122.42736518383026, 37.80453268570453 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42609918117523, 37.804414008682265 ], [ -122.42599725723267, 37.80442672408664 ], [ -122.42599189281464, 37.80438857786698 ], [ -122.42592215538026, 37.80439705480637 ], [ -122.42592751979828, 37.804430962554264 ], [ -122.42581486701965, 37.80444367795571 ], [ -122.4258041381836, 37.8043673855142 ], [ -122.42608845233919, 37.804341954682855 ], [ -122.42609918117525, 37.804414008682265 ], [ -122.42609918117525, 37.804414008682265 ], [ -122.42609918117523, 37.804414008682265 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42822349071503, 37.804341954682855 ], [ -122.42820739746094, 37.80444791642237 ], [ -122.42808401584625, 37.80443520102166 ], [ -122.42809474468231, 37.8043292392639 ], [ -122.42812693119049, 37.804333477737124 ], [ -122.42813229560852, 37.8043038084194 ], [ -122.42819130420685, 37.8043080468941 ], [ -122.42819130420685, 37.804337716210114 ], [ -122.42822349071503, 37.804341954682855 ], [ -122.42822349071503, 37.804341954682855 ], [ -122.42822349071503, 37.804341954682855 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42655515670776, 37.804358908571395 ], [ -122.42644786834717, 37.8043673855142 ], [ -122.42644250392915, 37.804333477737124 ], [ -122.42637276649477, 37.804337716210114 ], [ -122.42637813091278, 37.80437586245604 ], [ -122.42627084255219, 37.80438433939691 ], [ -122.42626011371613, 37.804312285368546 ], [ -122.4265444278717, 37.80428261604232 ], [ -122.42655515670776, 37.804358908571395 ], [ -122.42655515670776, 37.804358908571395 ], [ -122.42655515670776, 37.804358908571395 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42496192455292, 37.80451149339313 ], [ -122.42472589015962, 37.804541162627416 ], [ -122.42472052574159, 37.804519970318424 ], [ -122.4245971441269, 37.80453268570453 ], [ -122.42460250854494, 37.804553878009884 ], [ -122.42366373538972, 37.8046725548074 ], [ -122.42362082004547, 37.804469108752045 ], [ -122.4246883392334, 37.804333477737124 ], [ -122.42468297481537, 37.804312285368546 ], [ -122.42491900920868, 37.80428261604232 ], [ -122.42496192455292, 37.8045114933931 ], [ -122.42496192455292, 37.8045114933931 ], [ -122.42496192455292, 37.80451149339313 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42991328239441, 37.8043038084194 ], [ -122.42983281612396, 37.804333477737124 ], [ -122.42980062961578, 37.80427837756615 ], [ -122.42988646030426, 37.80424870822632 ], [ -122.42991328239441, 37.8043038084194 ], [ -122.42991328239441, 37.8043038084194 ], [ -122.42991328239441, 37.8043038084194 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42721498012543, 37.80427413908977 ], [ -122.42713451385498, 37.8043504316276 ], [ -122.42702722549438, 37.80427837756615 ], [ -122.4270486831665, 37.80426142365914 ], [ -122.42702186107635, 37.80424023126987 ], [ -122.42705941200256, 37.80420208495388 ], [ -122.42709159851074, 37.80422327735408 ], [ -122.42711305618286, 37.8042063234344 ], [ -122.42721498012543, 37.80427413908977 ], [ -122.42721498012543, 37.80427413908977 ], [ -122.42721498012543, 37.80427413908977 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4137932062149, 37.80434619315537 ], [ -122.41347670555115, 37.80438857786698 ], [ -122.41344451904297, 37.80421903887453 ], [ -122.41376101970673, 37.804176654065614 ], [ -122.41377711296082, 37.804235992791284 ], [ -122.41372346878052, 37.80424446974821 ], [ -122.41373419761658, 37.80428685451822 ], [ -122.41378247737883, 37.80428261604232 ], [ -122.41379320621489, 37.80434619315537 ], [ -122.41379320621489, 37.80434619315537 ], [ -122.4137932062149, 37.80434619315537 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4112343788147, 37.80451149339313 ], [ -122.41116464138031, 37.804519970318424 ], [ -122.41116464138031, 37.80450301646686 ], [ -122.41090714931488, 37.80453268570453 ], [ -122.4108749628067, 37.80437162398523 ], [ -122.4107676744461, 37.80438433939691 ], [ -122.41074085235596, 37.80422327735411 ], [ -122.41095542907715, 37.80419784647312 ], [ -122.41095006465912, 37.804151223168596 ], [ -122.41105198860168, 37.80413850771679 ], [ -122.41105735301971, 37.80417241558338 ], [ -122.4110895395279, 37.8041681771009 ], [ -122.41109490394591, 37.80418089254761 ], [ -122.41113245487212, 37.804176654065614 ], [ -122.41114318370818, 37.80425294670417 ], [ -122.41118073463439, 37.80424870822632 ], [ -122.41123437881468, 37.8045114933931 ], [ -122.41123437881468, 37.8045114933931 ], [ -122.4112343788147, 37.80451149339313 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41164207458496, 37.80482937742587 ], [ -122.41132557392119, 37.804867523417855 ], [ -122.41129338741301, 37.80471070088035 ], [ -122.41135776042938, 37.80470222397696 ], [ -122.41126120090483, 37.80422751583339 ], [ -122.41124510765076, 37.80422751583339 ], [ -122.4112343788147, 37.80415546165205 ], [ -122.41129338741301, 37.80414698468492 ], [ -122.411288022995, 37.80412155377767 ], [ -122.41138994693756, 37.80410883832076 ], [ -122.41139531135558, 37.80413426923238 ], [ -122.4115079641342, 37.80412155377767 ], [ -122.41164207458495, 37.80482937742587 ], [ -122.41164207458495, 37.80482937742587 ], [ -122.41164207458496, 37.80482937742587 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42841124534607, 37.80413850771679 ], [ -122.42837905883789, 37.804159700135244 ], [ -122.42840051651001, 37.804176654065614 ], [ -122.42829322814941, 37.8042402312699 ], [ -122.42821812629698, 37.804159700135244 ], [ -122.42832541465759, 37.80409612286167 ], [ -122.42834687232971, 37.80411731529226 ], [ -122.42837905883789, 37.80410036134828 ], [ -122.42841124534607, 37.80413850771679 ], [ -122.42841124534607, 37.80413850771679 ], [ -122.42841124534607, 37.80413850771679 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4288672208786, 37.8040706919369 ], [ -122.42876529693604, 37.804087645887726 ], [ -122.42875456809998, 37.80405373798221 ], [ -122.42868483066559, 37.80406645344859 ], [ -122.42869555950165, 37.80410459983463 ], [ -122.42858827114105, 37.80412579226283 ], [ -122.42856681346893, 37.804049499492926 ], [ -122.42884576320648, 37.80399863760254 ], [ -122.4288672208786, 37.8040706919369 ], [ -122.4288672208786, 37.8040706919369 ], [ -122.4288672208786, 37.8040706919369 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41524696350098, 37.80394353718175 ], [ -122.41509139537811, 37.80396472965615 ], [ -122.41505920886993, 37.803824859212796 ], [ -122.41506457328796, 37.80382062071037 ], [ -122.41524696350096, 37.80394353718175 ], [ -122.41524696350096, 37.80394353718175 ], [ -122.41524696350098, 37.80394353718175 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42488145828247, 37.804087645887726 ], [ -122.42469370365143, 37.80410883832076 ], [ -122.4246883392334, 37.80407916891281 ], [ -122.42464005947113, 37.804087645887726 ], [ -122.42463469505311, 37.80405797647123 ], [ -122.42442011833192, 37.804087645887726 ], [ -122.42443084716798, 37.80411731529226 ], [ -122.4243611097336, 37.80412579226283 ], [ -122.42436647415163, 37.80416817710093 ], [ -122.42421627044679, 37.804185131029364 ], [ -122.42420554161073, 37.80412579226283 ], [ -122.42411971092224, 37.80413850771679 ], [ -122.42412507534027, 37.80416393861821 ], [ -122.42408215999603, 37.80416817710093 ], [ -122.42408752441405, 37.80419784647312 ], [ -122.42359936237335, 37.80426142365914 ], [ -122.4234491586685, 37.80351968641686 ], [ -122.42394268512726, 37.80345610859232 ], [ -122.42395877838133, 37.803532401975204 ], [ -122.42409288883208, 37.80351544789693 ], [ -122.42407679557799, 37.80344763154491 ], [ -122.42421627044678, 37.80343067744717 ], [ -122.42423236370085, 37.80350273233566 ], [ -122.42451667785645, 37.803464585638736 ], [ -122.42451131343842, 37.80343915449654 ], [ -122.42455422878265, 37.80343491597197 ], [ -122.4245434999466, 37.80338829218581 ], [ -122.42473125457764, 37.80336286101732 ], [ -122.42488145828248, 37.8040876458877 ], [ -122.42488145828248, 37.8040876458877 ], [ -122.42488145828247, 37.804087645887726 ], [ -122.42418944835663, 37.804049499492905 ], [ -122.42415189743042, 37.8038630057236 ], [ -122.42403924465181, 37.80387572122283 ], [ -122.42401242256166, 37.80375704314487 ], [ -122.42413043975831, 37.80374432762521 ], [ -122.4241089820862, 37.80362564933611 ], [ -122.42407143116002, 37.803629887849716 ], [ -122.42406606674199, 37.80358326418665 ], [ -122.42371737957005, 37.80362564933611 ], [ -122.42380857467653, 37.80409612286165 ], [ -122.42418944835664, 37.804049499492905 ], [ -122.42418944835664, 37.804049499492905 ], [ -122.42488145828247, 37.804087645887726 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41450667381287, 37.80306616340459 ], [ -122.41439938545227, 37.80307887904102 ], [ -122.41402924060822, 37.802824565896664 ], [ -122.41402924060822, 37.80279913453407 ], [ -122.41444766521454, 37.802752510346544 ], [ -122.41450667381287, 37.80306616340459 ], [ -122.41450667381287, 37.80306616340459 ], [ -122.41450667381287, 37.80306616340459 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4122428894043, 37.80284999725051 ], [ -122.41211414337158, 37.80286271292414 ], [ -122.41206049919128, 37.80259144474508 ], [ -122.412189245224, 37.80257449045081 ], [ -122.4122428894043, 37.80284999725051 ], [ -122.4122428894043, 37.80284999725051 ], [ -122.4122428894043, 37.80284999725051 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41266131401062, 37.80279913453407 ], [ -122.41226434707642, 37.80284999725051 ], [ -122.41221606731415, 37.80261687617921 ], [ -122.41261303424835, 37.80256601330221 ], [ -122.41266131401062, 37.80279913453407 ], [ -122.41266131401062, 37.80279913453407 ], [ -122.41266131401062, 37.80279913453407 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40950167179108, 37.80257872902474 ], [ -122.40950167179108, 37.80257872902474 ], [ -122.40950167179108, 37.80256601330221 ], [ -122.40950167179108, 37.80257872902474 ], [ -122.40950167179108, 37.80257872902474 ], [ -122.40950167179108, 37.80257872902474 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41288125514984, 37.802510911812625 ], [ -122.41270959377287, 37.80253210469809 ], [ -122.41265594959258, 37.802248119527505 ], [ -122.41276323795319, 37.80223540374806 ], [ -122.4127686023712, 37.802256596712596 ], [ -122.41282761096953, 37.802248119527505 ], [ -122.41288125514983, 37.802510911812625 ], [ -122.41288125514983, 37.802510911812625 ], [ -122.41288125514984, 37.802510911812625 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42451667785645, 37.802239642341455 ], [ -122.42414653301239, 37.802282028262006 ], [ -122.42409288883209, 37.80200651934365 ], [ -122.42445766925812, 37.80196413326501 ], [ -122.4244737625122, 37.80204466679365 ], [ -122.42420017719267, 37.80207857562153 ], [ -122.4242216348648, 37.80218454060837 ], [ -122.42450058460234, 37.802150631829136 ], [ -122.42451667785643, 37.802239642341426 ], [ -122.42451667785643, 37.802239642341426 ], [ -122.42451667785645, 37.802239642341455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41694748401642, 37.80202771237386 ], [ -122.41686701774599, 37.802036189584236 ], [ -122.41683483123781, 37.80187936103475 ], [ -122.41692066192628, 37.80187088380636 ], [ -122.41694748401642, 37.80202771237386 ], [ -122.41694748401642, 37.80202771237386 ], [ -122.41694748401642, 37.80202771237386 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4168348312378, 37.80200651934365 ], [ -122.4164056777954, 37.802053144002095 ], [ -122.41636276245116, 37.80180306594429 ], [ -122.41679191589355, 37.80175644112801 ], [ -122.4168348312378, 37.80200651934365 ], [ -122.4168348312378, 37.80200651934365 ], [ -122.4168348312378, 37.80200651934365 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40966260433197, 37.80162080513147 ], [ -122.40954995155334, 37.801633521016726 ], [ -122.40951240062714, 37.80143006658992 ], [ -122.40962505340576, 37.80141735066961 ], [ -122.40966260433197, 37.80162080513147 ], [ -122.40966260433197, 37.80162080513147 ], [ -122.40966260433197, 37.80162080513147 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41055309772491, 37.801786111469056 ], [ -122.41009712219238, 37.80183697488311 ], [ -122.4100112915039, 37.80140463474716 ], [ -122.41036534309387, 37.80135800967936 ], [ -122.41043508052826, 37.80170133903446 ], [ -122.4105316400528, 37.801688623160885 ], [ -122.41055309772491, 37.801786111469056 ], [ -122.41055309772491, 37.801786111469056 ], [ -122.41055309772491, 37.801786111469056 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42583096027374, 37.801603850614384 ], [ -122.4257504940033, 37.80161656650256 ], [ -122.42576122283936, 37.80168014591061 ], [ -122.42563247680664, 37.801692861785654 ], [ -122.42564857006072, 37.80179882732586 ], [ -122.42538571357726, 37.80182849764988 ], [ -122.42529988288878, 37.80140039610585 ], [ -122.42538571357726, 37.801391918822475 ], [ -122.42545545101164, 37.80173948664206 ], [ -122.42556810379027, 37.801726770775055 ], [ -122.42548763751982, 37.80131986187471 ], [ -122.42558956146239, 37.80130714593547 ], [ -122.42559492588039, 37.80134953239114 ], [ -122.4257773160934, 37.80132833916636 ], [ -122.4258309602737, 37.801603850614384 ], [ -122.4258309602737, 37.801603850614384 ], [ -122.42583096027374, 37.801603850614384 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41143822669983, 37.80144278250799 ], [ -122.41119682788849, 37.80147245297504 ], [ -122.41115391254425, 37.80123932755579 ], [ -122.41132020950317, 37.801218134299376 ], [ -122.41141140460968, 37.8012859526985 ], [ -122.41143822669981, 37.80144278250799 ], [ -122.41143822669981, 37.80144278250799 ], [ -122.41143822669983, 37.80144278250799 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41479098796844, 37.80110792926797 ], [ -122.41452276706696, 37.801141838525915 ], [ -122.41450130939484, 37.801035872043144 ], [ -122.41476953029633, 37.80100196273655 ], [ -122.41479098796844, 37.80110792926797 ], [ -122.41479098796844, 37.80110792926797 ], [ -122.41479098796844, 37.80110792926797 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42432355880737, 37.801294429994016 ], [ -122.424076795578, 37.80132833916636 ], [ -122.42400705814363, 37.80098076941203 ], [ -122.42425382137299, 37.80095109874748 ], [ -122.42432355880737, 37.801294429994016 ], [ -122.42432355880737, 37.801294429994016 ], [ -122.42432355880737, 37.801294429994016 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41539180278778, 37.80103163338067 ], [ -122.4149090051651, 37.80109521329224 ], [ -122.41486608982086, 37.800879041369654 ], [ -122.41534888744354, 37.80081546127204 ], [ -122.41539180278778, 37.80103163338067 ], [ -122.41539180278778, 37.80103163338067 ], [ -122.41539180278778, 37.80103163338067 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42514431476593, 37.80097653074639 ], [ -122.42471516132355, 37.80103163338067 ], [ -122.42467761039734, 37.80087056402646 ], [ -122.42510676383972, 37.80081122259691 ], [ -122.42514431476593, 37.80097653074639 ], [ -122.42514431476593, 37.80097653074639 ], [ -122.42514431476593, 37.80097653074639 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4251389503479, 37.80080698392156 ], [ -122.42467224597931, 37.800862086682315 ], [ -122.42465078830719, 37.8007434037619 ], [ -122.42511212825777, 37.8006883009126 ], [ -122.4251389503479, 37.80080698392156 ], [ -122.4251389503479, 37.80080698392156 ], [ -122.4251389503479, 37.80080698392156 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4114865064621, 37.80076459715455 ], [ -122.41117000579833, 37.80080274524595 ], [ -122.41105198860167, 37.8007434037619 ], [ -122.41102516651154, 37.80061200459185 ], [ -122.41144895553587, 37.80056114033423 ], [ -122.41148650646208, 37.80076459715455 ], [ -122.41148650646208, 37.80076459715455 ], [ -122.4114865064621, 37.80076459715455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41134703159332, 37.80056537902371 ], [ -122.41102516651154, 37.800603527218016 ], [ -122.41100907325746, 37.80051451473398 ], [ -122.41133093833925, 37.800476366493726 ], [ -122.41134703159332, 37.80056537902371 ], [ -122.41134703159332, 37.80056537902371 ], [ -122.41134703159332, 37.80056537902371 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42507457733154, 37.80067982354754 ], [ -122.42490291595459, 37.8007010169584 ], [ -122.4248868227005, 37.80061624327842 ], [ -122.42479026317596, 37.80062895933662 ], [ -122.42480635643005, 37.800717971682715 ], [ -122.42464542388915, 37.80073492640316 ], [ -122.42459714412688, 37.80048908257599 ], [ -122.42502629756927, 37.800433979536976 ], [ -122.42507457733153, 37.80067982354754 ], [ -122.42507457733153, 37.80067982354754 ], [ -122.42507457733154, 37.80067982354754 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41126120090485, 37.80048060518806 ], [ -122.41100907325745, 37.80051027604161 ], [ -122.41097152233124, 37.800319534632266 ], [ -122.41122901439667, 37.800289863702076 ], [ -122.41126120090485, 37.80048060518806 ], [ -122.41126120090485, 37.80048060518806 ], [ -122.41126120090485, 37.80048060518806 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40994691848755, 37.80026867017326 ], [ -122.40976452827454, 37.800289863702105 ], [ -122.4097377061844, 37.80014574758602 ], [ -122.40994691848756, 37.80026867017326 ], [ -122.40994691848756, 37.80026867017326 ], [ -122.40994691848755, 37.80026867017326 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40976452827454, 37.800289863702076 ], [ -122.40950167179108, 37.800323773335606 ], [ -122.40950167179108, 37.80013727015868 ], [ -122.40970015525818, 37.800111837870794 ], [ -122.40973770618439, 37.80014574758602 ], [ -122.40976452827452, 37.800289863702076 ], [ -122.40976452827452, 37.800289863702076 ], [ -122.40976452827454, 37.800289863702076 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41071403026581, 37.80017541857407 ], [ -122.41029024124146, 37.80023052180601 ], [ -122.41024196147919, 37.800192373419065 ], [ -122.41021513938905, 37.80006945070486 ], [ -122.41068184375763, 37.800010108631696 ], [ -122.41071403026581, 37.80017541857407 ], [ -122.41071403026581, 37.80017541857407 ], [ -122.41071403026581, 37.80017541857407 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40970015525818, 37.800111837870794 ], [ -122.40950167179108, 37.80013727015868 ], [ -122.40950167179108, 37.800010108631696 ], [ -122.40954458713531, 37.800005869910365 ], [ -122.40970015525818, 37.800111837870794 ], [ -122.40970015525818, 37.800111837870794 ], [ -122.40970015525818, 37.800111837870794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40954458713531, 37.800005869910365 ], [ -122.40950167179108, 37.800010108631696 ], [ -122.40950167179108, 37.79997196013091 ], [ -122.40954458713531, 37.800005869910365 ], [ -122.40954458713531, 37.800005869910365 ], [ -122.40954458713531, 37.800005869910365 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41009712219238, 37.80009064429088 ], [ -122.40989327430727, 37.79994652778611 ], [ -122.4098825454712, 37.799887185614196 ], [ -122.40995764732362, 37.799874469428296 ], [ -122.40996301174164, 37.79989566307024 ], [ -122.41005420684814, 37.79988294688579 ], [ -122.41009712219238, 37.800090644290854 ], [ -122.41009712219238, 37.800090644290854 ], [ -122.41009712219238, 37.80009064429088 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41024196147919, 37.800192373419065 ], [ -122.41009712219238, 37.80009064429088 ], [ -122.41005420684814, 37.79988294688579 ], [ -122.4101722240448, 37.7998659919698 ], [ -122.41021513938905, 37.80006945070486 ], [ -122.41024196147919, 37.800192373419065 ], [ -122.41024196147919, 37.800192373419065 ], [ -122.41024196147919, 37.800192373419065 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40989327430725, 37.79994652778611 ], [ -122.40950167179108, 37.799654055191525 ], [ -122.40950167179108, 37.79956080281643 ], [ -122.4098128080368, 37.79951417658475 ], [ -122.40989327430725, 37.79994652778611 ], [ -122.40989327430725, 37.79994652778611 ], [ -122.40989327430725, 37.79994652778611 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41004347801208, 37.79967101015616 ], [ -122.41003274917603, 37.7996837263771 ], [ -122.41003811359406, 37.79971763628886 ], [ -122.40995228290556, 37.79972611376437 ], [ -122.40994691848755, 37.7996922038565 ], [ -122.40993618965149, 37.7996922038565 ], [ -122.4099200963974, 37.79962014525055 ], [ -122.40993618965149, 37.79961590650686 ], [ -122.40993082523346, 37.79959471278463 ], [ -122.40991473197938, 37.79959471278463 ], [ -122.40990400314332, 37.79951417658475 ], [ -122.40991473197938, 37.79950569908492 ], [ -122.40999519824982, 37.79949722158412 ], [ -122.41000592708588, 37.79950146033463 ], [ -122.41004347801208, 37.79967101015618 ], [ -122.41004347801208, 37.79967101015618 ], [ -122.41004347801208, 37.79967101015616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41012394428253, 37.79967101015616 ], [ -122.41004347801208, 37.799679487637015 ], [ -122.4100112915039, 37.79950146033463 ], [ -122.41002202033997, 37.79949298283334 ], [ -122.41004347801208, 37.79948874408232 ], [ -122.41005420684814, 37.79949722158412 ], [ -122.41005957126617, 37.79948874408232 ], [ -122.4100810289383, 37.79948874408232 ], [ -122.41009175777435, 37.79949298283334 ], [ -122.41012394428253, 37.79967101015616 ], [ -122.41012394428253, 37.79967101015616 ], [ -122.41012394428253, 37.79967101015616 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41038680076599, 37.79981512719847 ], [ -122.41024196147919, 37.799836320857466 ], [ -122.41016685962677, 37.799480266579586 ], [ -122.41032242774963, 37.79945907281843 ], [ -122.41038680076599, 37.79981512719847 ], [ -122.41038680076599, 37.79981512719847 ], [ -122.41038680076599, 37.79981512719847 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41057991981506, 37.79951417658475 ], [ -122.41034388542175, 37.799543847826506 ], [ -122.41032242774963, 37.79945907281843 ], [ -122.41056382656097, 37.79942940154263 ], [ -122.41057991981506, 37.79951417658475 ], [ -122.41057991981506, 37.79951417658475 ], [ -122.41057991981506, 37.79951417658475 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41052627563477, 37.79923865734216 ], [ -122.41033315658571, 37.799259851166546 ], [ -122.41032242774965, 37.79922170227827 ], [ -122.41052091121675, 37.799200508442944 ], [ -122.41052627563477, 37.79923865734216 ], [ -122.41052627563477, 37.79923865734216 ], [ -122.41052627563477, 37.79923865734216 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42392659187317, 37.79942940154263 ], [ -122.42335259914398, 37.79950569908492 ], [ -122.42327213287354, 37.79911997181326 ], [ -122.42385685443878, 37.799056390201464 ], [ -122.42392659187317, 37.79942940154263 ], [ -122.42392659187317, 37.79942940154263 ], [ -122.42392659187317, 37.79942940154263 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42119610309601, 37.79886564503779 ], [ -122.42080450057983, 37.798912271678844 ], [ -122.42078304290771, 37.798785108043006 ], [ -122.42117464542389, 37.7987384813217 ], [ -122.42119610309601, 37.79886564503779 ], [ -122.42119610309601, 37.79886564503779 ], [ -122.42119610309601, 37.79886564503779 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42172181606293, 37.7988020632071 ], [ -122.42163062095642, 37.79881054078769 ], [ -122.42159843444824, 37.798657944188264 ], [ -122.42168962955475, 37.79864522779074 ], [ -122.42172181606293, 37.7988020632071 ], [ -122.42172181606293, 37.7988020632071 ], [ -122.42172181606293, 37.7988020632071 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42197394371033, 37.79876815287502 ], [ -122.42188274860382, 37.798780869251374 ], [ -122.42185056209564, 37.798619794989136 ], [ -122.42194175720215, 37.79860707858504 ], [ -122.42197394371033, 37.79876815287502 ], [ -122.42197394371033, 37.79876815287502 ], [ -122.42197394371033, 37.79876815287502 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42117464542389, 37.7987384813217 ], [ -122.42078304290771, 37.798785108043006 ], [ -122.42075622081757, 37.79865370538933 ], [ -122.42114782333374, 37.79860707858507 ], [ -122.42117464542389, 37.7987384813217 ], [ -122.42117464542389, 37.7987384813217 ], [ -122.42117464542389, 37.7987384813217 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40952849388123, 37.79875967528956 ], [ -122.40950167179108, 37.798763914082414 ], [ -122.40950167179108, 37.79860283978321 ], [ -122.40950167179108, 37.79860283978321 ], [ -122.40952849388123, 37.79875967528956 ], [ -122.40952849388123, 37.79875967528956 ], [ -122.40952849388123, 37.79875967528956 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42188274860382, 37.798780869251374 ], [ -122.42180228233337, 37.79878934683441 ], [ -122.42176473140717, 37.79861131738665 ], [ -122.42185056209564, 37.798598600981116 ], [ -122.42188274860382, 37.798780869251374 ], [ -122.42188274860382, 37.798780869251374 ], [ -122.42188274860382, 37.798780869251374 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42180228233337, 37.79878934683441 ], [ -122.42172181606293, 37.7988020632071 ], [ -122.42168962955475, 37.79864522779074 ], [ -122.42167890071869, 37.798598600981116 ], [ -122.42176473140717, 37.79859012337622 ], [ -122.42180228233337, 37.79878934683441 ], [ -122.42180228233337, 37.79878934683441 ], [ -122.42180228233337, 37.79878934683441 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40967869758606, 37.79877663045951 ], [ -122.40957140922546, 37.79878934683441 ], [ -122.40952849388123, 37.798763914082414 ], [ -122.40950167179108, 37.79860283978321 ], [ -122.40963578224182, 37.79858588457339 ], [ -122.40967869758606, 37.79877663045951 ], [ -122.40967869758606, 37.79877663045951 ], [ -122.40967869758606, 37.79877663045951 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42223143577576, 37.7987384813217 ], [ -122.42200076580048, 37.798763914082414 ], [ -122.4219685792923, 37.79861131738668 ], [ -122.4220222234726, 37.798602839783236 ], [ -122.42219924926758, 37.798581645770334 ], [ -122.42223143577576, 37.7987384813217 ], [ -122.42223143577576, 37.7987384813217 ], [ -122.42223143577576, 37.7987384813217 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42145895957947, 37.7988317347349 ], [ -122.4212872982025, 37.79885292867605 ], [ -122.4212336540222, 37.798598600981116 ], [ -122.42141067981719, 37.79857740696702 ], [ -122.42145895957945, 37.7988317347349 ], [ -122.42145895957945, 37.7988317347349 ], [ -122.42145895957947, 37.7988317347349 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42163062095642, 37.79881054078769 ], [ -122.42145895957947, 37.7988317347349 ], [ -122.4214106798172, 37.79857740696702 ], [ -122.42157697677612, 37.79855621294684 ], [ -122.42159843444824, 37.798657944188264 ], [ -122.42163062095642, 37.79881054078769 ], [ -122.42163062095642, 37.79881054078769 ], [ -122.42163062095642, 37.79881054078769 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41014540195465, 37.79892074924677 ], [ -122.40979135036469, 37.79896737585307 ], [ -122.40972697734833, 37.79864522779074 ], [ -122.40978062152863, 37.79863675019119 ], [ -122.40976452827454, 37.79857316816348 ], [ -122.4100649356842, 37.79853501892056 ], [ -122.41014540195465, 37.79892074924677 ], [ -122.41014540195465, 37.79892074924677 ], [ -122.41014540195465, 37.79892074924677 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42219924926758, 37.798581645770334 ], [ -122.4220222234726, 37.798602839783236 ], [ -122.4220061302185, 37.798522302501894 ], [ -122.42218315601349, 37.79850110846591 ], [ -122.42219924926758, 37.798581645770334 ], [ -122.42219924926758, 37.798581645770334 ], [ -122.42219924926758, 37.798581645770334 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41041362285614, 37.79868761577395 ], [ -122.41025805473328, 37.79870457096041 ], [ -122.41021513938904, 37.798513824888246 ], [ -122.41037607192993, 37.79849686965797 ], [ -122.41041362285614, 37.79868761577395 ], [ -122.41041362285614, 37.79868761577395 ], [ -122.41041362285614, 37.79868761577395 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42114782333374, 37.79860707858507 ], [ -122.42075622081757, 37.79865370538933 ], [ -122.42072939872743, 37.79853501892058 ], [ -122.42106735706331, 37.798496869657995 ], [ -122.4211210012436, 37.79848839204139 ], [ -122.42114782333375, 37.79860707858507 ], [ -122.42114782333375, 37.79860707858507 ], [ -122.42114782333374, 37.79860707858507 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42218315601349, 37.79850110846591 ], [ -122.4220061302185, 37.798522302501894 ], [ -122.42194175720215, 37.798530780114596 ], [ -122.42193102836609, 37.79847567561469 ], [ -122.42217242717743, 37.798446003943866 ], [ -122.42218315601349, 37.79850110846591 ], [ -122.42218315601349, 37.79850110846591 ], [ -122.42218315601349, 37.79850110846591 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42302536964417, 37.7985943621788 ], [ -122.42292881011963, 37.79860707858507 ], [ -122.42289662361145, 37.798437526321464 ], [ -122.42299318313599, 37.79842904869807 ], [ -122.42302536964417, 37.7985943621788 ], [ -122.42302536964417, 37.7985943621788 ], [ -122.42302536964417, 37.7985943621788 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42292881011963, 37.79860707858507 ], [ -122.42278933525085, 37.79862403379003 ], [ -122.42275178432465, 37.798437526321464 ], [ -122.42289125919342, 37.798420571073684 ], [ -122.42289662361145, 37.798437526321464 ], [ -122.42292881011963, 37.79860707858507 ], [ -122.42292881011963, 37.79860707858507 ], [ -122.42292881011963, 37.79860707858507 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42278933525085, 37.798624033790006 ], [ -122.4224406480789, 37.79866642178537 ], [ -122.42240309715271, 37.798458720375685 ], [ -122.42274641990662, 37.798416332261134 ], [ -122.42275178432463, 37.798437526321464 ], [ -122.42278933525084, 37.79862403379003 ], [ -122.42278933525084, 37.79862403379003 ], [ -122.42278933525085, 37.798624033790006 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4210673570633, 37.79849686965797 ], [ -122.42072939872742, 37.79853501892058 ], [ -122.42071330547333, 37.798458720375685 ], [ -122.42105662822723, 37.798416332261134 ], [ -122.4210673570633, 37.79849686965797 ], [ -122.4210673570633, 37.79849686965797 ], [ -122.4210673570633, 37.79849686965797 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4231219291687, 37.798581645770334 ], [ -122.42302536964415, 37.7985943621788 ], [ -122.42299318313597, 37.79842904869807 ], [ -122.42308974266052, 37.798416332261134 ], [ -122.4231219291687, 37.798581645770334 ], [ -122.4231219291687, 37.798581645770334 ], [ -122.4231219291687, 37.798581645770334 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42376565933228, 37.798505347273604 ], [ -122.42350280284882, 37.79853501892058 ], [ -122.4234813451767, 37.798424809886 ], [ -122.42374420166016, 37.79839513819475 ], [ -122.42376565933228, 37.798505347273604 ], [ -122.42376565933228, 37.798505347273604 ], [ -122.42376565933228, 37.798505347273604 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42374420166016, 37.79839513819475 ], [ -122.4234813451767, 37.798424809886 ], [ -122.42346525192262, 37.79835275004371 ], [ -122.42372810840608, 37.79832307832353 ], [ -122.42374420166016, 37.79839513819475 ], [ -122.42374420166016, 37.79839513819475 ], [ -122.42374420166016, 37.79839513819475 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42274641990662, 37.798416332261134 ], [ -122.42240309715271, 37.798458720375685 ], [ -122.42238163948059, 37.79835275004371 ], [ -122.4227249622345, 37.798310361868346 ], [ -122.42274641990662, 37.798416332261134 ], [ -122.42274641990662, 37.798416332261134 ], [ -122.42274641990662, 37.798416332261134 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42333114147186, 37.79855621294684 ], [ -122.4231219291687, 37.798581645770334 ], [ -122.42308974266052, 37.798416332261134 ], [ -122.42307364940643, 37.79833155595906 ], [ -122.4232828617096, 37.798306123049485 ], [ -122.42333114147186, 37.79855621294684 ], [ -122.42333114147186, 37.79855621294684 ], [ -122.42333114147186, 37.79855621294684 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42372810840607, 37.79832307832353 ], [ -122.42346525192261, 37.79835275004371 ], [ -122.42334723472594, 37.79836970530704 ], [ -122.42333114147186, 37.79826797366868 ], [ -122.42370665073395, 37.79822134662093 ], [ -122.42372810840607, 37.79832307832353 ], [ -122.42372810840607, 37.79832307832353 ], [ -122.42372810840607, 37.79832307832353 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42091715335846, 37.79843328750988 ], [ -122.42071330547333, 37.798458720375685 ], [ -122.42067039012909, 37.79823830191443 ], [ -122.42087423801422, 37.79821286897272 ], [ -122.42091715335846, 37.79843328750988 ], [ -122.42091715335846, 37.79843328750988 ], [ -122.42091715335846, 37.79843328750988 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42217242717743, 37.79844600394389 ], [ -122.42193102836609, 37.79847567561469 ], [ -122.42188274860382, 37.79847991442385 ], [ -122.4217540025711, 37.798437526321464 ], [ -122.42172718048097, 37.798310361868346 ], [ -122.42183446884157, 37.79825525720401 ], [ -122.42182910442354, 37.79821710779695 ], [ -122.42190420627595, 37.79820863014827 ], [ -122.42211878299715, 37.798178958370166 ], [ -122.42217242717744, 37.798446003943866 ], [ -122.42217242717744, 37.798446003943866 ], [ -122.42217242717743, 37.79844600394389 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4227249622345, 37.798310361868346 ], [ -122.42238163948059, 37.79835275004371 ], [ -122.42235481739046, 37.79821710779695 ], [ -122.42259085178375, 37.79818743602226 ], [ -122.42269814014436, 37.79817471954375 ], [ -122.4227249622345, 37.798310361868346 ], [ -122.4227249622345, 37.798310361868346 ], [ -122.4227249622345, 37.798310361868346 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4108213186264, 37.79824254073718 ], [ -122.4107301235199, 37.798251018382 ], [ -122.410569190979, 37.79827221248973 ], [ -122.41054773330688, 37.79817471954375 ], [ -122.41079986095428, 37.798145047752044 ], [ -122.4108213186264, 37.79824254073718 ], [ -122.4108213186264, 37.79824254073718 ], [ -122.4108213186264, 37.79824254073718 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42117464542389, 37.79833155595906 ], [ -122.42105662822722, 37.798344272410596 ], [ -122.42105662822722, 37.798344272410596 ], [ -122.42101907730103, 37.79814080892369 ], [ -122.42113709449768, 37.79812385360782 ], [ -122.42117464542389, 37.79833155595906 ], [ -122.42117464542389, 37.79833155595906 ], [ -122.42117464542389, 37.79833155595906 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42127656936646, 37.7983569888599 ], [ -122.42118537425995, 37.79836970530704 ], [ -122.4211370944977, 37.79812385360782 ], [ -122.4212282896042, 37.79811537594843 ], [ -122.42127656936646, 37.7983569888599 ], [ -122.42127656936646, 37.7983569888599 ], [ -122.42127656936646, 37.7983569888599 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42259085178375, 37.79818743602226 ], [ -122.42235481739044, 37.79821710779695 ], [ -122.42233872413635, 37.79814080892369 ], [ -122.42257475852966, 37.79811113711837 ], [ -122.42258012294769, 37.798145047752044 ], [ -122.42259085178375, 37.79818743602226 ], [ -122.42259085178375, 37.79818743602226 ], [ -122.42259085178375, 37.79818743602226 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42211878299713, 37.798178958370166 ], [ -122.42190420627595, 37.79820863014827 ], [ -122.42189884185792, 37.798170480717104 ], [ -122.42188811302186, 37.79813657009509 ], [ -122.42210805416109, 37.79811113711837 ], [ -122.42211878299715, 37.798178958370166 ], [ -122.42211878299715, 37.798178958370166 ], [ -122.42211878299713, 37.798178958370166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42089569568634, 37.79821286897272 ], [ -122.42087423801422, 37.79821286897272 ], [ -122.42067039012909, 37.79823830191443 ], [ -122.42064893245697, 37.79812809243717 ], [ -122.42087423801422, 37.7981026594575 ], [ -122.42089569568634, 37.79821286897272 ], [ -122.42089569568634, 37.79821286897272 ], [ -122.42089569568634, 37.79821286897272 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42138385772705, 37.798344272410596 ], [ -122.42129802703856, 37.79835275004371 ], [ -122.42124438285826, 37.79811113711837 ], [ -122.42133557796477, 37.7980984206267 ], [ -122.42138385772704, 37.798344272410596 ], [ -122.42138385772704, 37.798344272410596 ], [ -122.42138385772705, 37.798344272410596 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42370665073395, 37.79822134662093 ], [ -122.42333114147186, 37.79826797366868 ], [ -122.42328822612762, 37.79827221248973 ], [ -122.4232667684555, 37.798145047752044 ], [ -122.42336332798004, 37.79813233126623 ], [ -122.42368519306183, 37.79809418179568 ], [ -122.42370665073395, 37.79822134662093 ], [ -122.42370665073395, 37.79822134662093 ], [ -122.42370665073395, 37.79822134662093 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42146968841553, 37.79834003359367 ], [ -122.42138922214508, 37.79834851122727 ], [ -122.42133557796478, 37.79809842062673 ], [ -122.42142140865326, 37.7980899429644 ], [ -122.42145895957947, 37.79828916777156 ], [ -122.42146968841553, 37.79834003359367 ], [ -122.42146968841553, 37.79834003359367 ], [ -122.42146968841553, 37.79834003359367 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42105662822723, 37.798344272410596 ], [ -122.42094397544861, 37.7983569888599 ], [ -122.42089569568635, 37.7980984206267 ], [ -122.42100834846497, 37.79808570413287 ], [ -122.42101907730103, 37.79814080892369 ], [ -122.42105662822723, 37.798344272410596 ], [ -122.42105662822723, 37.798344272410596 ], [ -122.42105662822723, 37.798344272410596 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42155015468597, 37.79827645131055 ], [ -122.42145895957947, 37.79828916777156 ], [ -122.42142140865326, 37.7980899429644 ], [ -122.42141604423524, 37.7980772264691 ], [ -122.42150723934174, 37.79806874880436 ], [ -122.42155015468599, 37.79827645131055 ], [ -122.42155015468599, 37.79827645131055 ], [ -122.42155015468597, 37.79827645131055 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41094470024109, 37.79822558544467 ], [ -122.4108374118805, 37.79823830191443 ], [ -122.4108052253723, 37.79806450997163 ], [ -122.41091251373291, 37.79805179347195 ], [ -122.41094470024109, 37.79822558544467 ], [ -122.41094470024109, 37.79822558544467 ], [ -122.41094470024109, 37.79822558544467 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42166817188263, 37.79831883950538 ], [ -122.42156088352203, 37.79833579477649 ], [ -122.42155015468597, 37.79827645131055 ], [ -122.42150723934174, 37.79806874880436 ], [ -122.42150723934174, 37.79805603230542 ], [ -122.42161452770233, 37.798043315804286 ], [ -122.42166817188263, 37.798310361868346 ], [ -122.42166817188263, 37.79831883950538 ], [ -122.42166817188263, 37.79831883950538 ], [ -122.42166817188263, 37.79831883950538 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41130411624908, 37.79818319719633 ], [ -122.41122364997864, 37.79819167484794 ], [ -122.4111968278885, 37.79805179347195 ], [ -122.41127192974092, 37.798039076970106 ], [ -122.4113041162491, 37.79818319719633 ], [ -122.4113041162491, 37.79818319719633 ], [ -122.41130411624908, 37.79818319719633 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41104125976562, 37.79821286897272 ], [ -122.41094470024109, 37.79822558544467 ], [ -122.41091251373291, 37.79805179347195 ], [ -122.4110037088394, 37.798039076970085 ], [ -122.41104125976561, 37.79821286897272 ], [ -122.41104125976561, 37.79821286897272 ], [ -122.41104125976562, 37.79821286897272 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42210805416107, 37.79811113711837 ], [ -122.42188811302185, 37.79813657009509 ], [ -122.42187738418579, 37.79806027113865 ], [ -122.42209196090698, 37.79803483813565 ], [ -122.42210805416106, 37.79811113711837 ], [ -122.42210805416106, 37.79811113711837 ], [ -122.42210805416107, 37.79811113711837 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41139531135559, 37.798170480717104 ], [ -122.41130411624908, 37.79818319719633 ], [ -122.4112719297409, 37.798043315804286 ], [ -122.41136848926544, 37.798030599300965 ], [ -122.41139531135559, 37.798170480717104 ], [ -122.41139531135559, 37.798170480717104 ], [ -122.41139531135559, 37.798170480717104 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4111270904541, 37.79820439132355 ], [ -122.41104125976562, 37.79821286897272 ], [ -122.41100370883942, 37.798039076970106 ], [ -122.41108953952791, 37.798030599300965 ], [ -122.4111270904541, 37.79820439132355 ], [ -122.4111270904541, 37.79820439132355 ], [ -122.4111270904541, 37.79820439132355 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41079986095428, 37.798145047752044 ], [ -122.41054773330688, 37.79817471954375 ], [ -122.41052627563477, 37.79806027113865 ], [ -122.41077840328217, 37.798026360466025 ], [ -122.41079986095428, 37.798145047752044 ], [ -122.41079986095428, 37.798145047752044 ], [ -122.41079986095428, 37.798145047752044 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42174863815308, 37.79830188423037 ], [ -122.42166817188263, 37.798310361868346 ], [ -122.42161452770233, 37.798043315804286 ], [ -122.4216091632843, 37.798039076970106 ], [ -122.42169499397278, 37.798026360466025 ], [ -122.42173790931703, 37.79825525720401 ], [ -122.42174863815309, 37.79830188423037 ], [ -122.42174863815309, 37.79830188423037 ], [ -122.42174863815308, 37.79830188423037 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42368519306183, 37.79809418179568 ], [ -122.42336332798004, 37.79813233126623 ], [ -122.42334723472595, 37.79806450997163 ], [ -122.42366909980774, 37.79802212163085 ], [ -122.42368519306183, 37.798094181795655 ], [ -122.42368519306183, 37.798094181795655 ], [ -122.42368519306183, 37.79809418179568 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41122364997864, 37.79819167484794 ], [ -122.4111270904541, 37.79820439132355 ], [ -122.41108953952791, 37.798030599300965 ], [ -122.41119146347046, 37.798017882795456 ], [ -122.41119682788849, 37.79805179347195 ], [ -122.41122364997864, 37.79819167484794 ], [ -122.41122364997864, 37.79819167484794 ], [ -122.41122364997864, 37.79819167484794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4218237400055, 37.79824254073718 ], [ -122.42173790931702, 37.79825525720401 ], [ -122.42169499397278, 37.798026360466025 ], [ -122.42168962955475, 37.79802212163088 ], [ -122.42178082466125, 37.798013643959806 ], [ -122.42181301116943, 37.79818319719633 ], [ -122.4218237400055, 37.798242540737206 ], [ -122.4218237400055, 37.798242540737206 ], [ -122.4218237400055, 37.79824254073718 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41199612617493, 37.79809418179568 ], [ -122.41175472736359, 37.79812385360782 ], [ -122.4117386341095, 37.798026360466025 ], [ -122.41183519363403, 37.798013643959806 ], [ -122.41198003292084, 37.797996688614745 ], [ -122.41199612617493, 37.79809418179568 ], [ -122.41199612617493, 37.79809418179568 ], [ -122.41199612617493, 37.79809418179568 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40985572338104, 37.79836970530704 ], [ -122.40963041782379, 37.79839513819475 ], [ -122.40950167179108, 37.798412093448356 ], [ -122.40950167179108, 37.798030599300965 ], [ -122.40954458713531, 37.798026360466025 ], [ -122.40955531597137, 37.79802212163088 ], [ -122.40978062152863, 37.797996688614745 ], [ -122.40985572338104, 37.79836970530704 ], [ -122.40985572338104, 37.79836970530704 ], [ -122.40985572338104, 37.79836970530704 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42189884185791, 37.798170480717104 ], [ -122.42181301116943, 37.79818319719633 ], [ -122.42178082466125, 37.798013643959806 ], [ -122.42177546024323, 37.79798397210339 ], [ -122.42185592651367, 37.79797125558984 ], [ -122.42187738418579, 37.79806027113865 ], [ -122.42188811302185, 37.79813657009509 ], [ -122.42189884185791, 37.79817048071708 ], [ -122.42189884185791, 37.79817048071708 ], [ -122.42189884185791, 37.798170480717104 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42366909980774, 37.79802212163088 ], [ -122.42334723472595, 37.79806450997163 ], [ -122.42327213287354, 37.79807298763686 ], [ -122.42326140403748, 37.79800516628776 ], [ -122.42365837097168, 37.79795853907413 ], [ -122.42366909980774, 37.79802212163088 ], [ -122.42366909980774, 37.79802212163088 ], [ -122.42366909980774, 37.79802212163088 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42209196090698, 37.79803483813565 ], [ -122.42187738418579, 37.79806027113865 ], [ -122.42185592651367, 37.797971255589864 ], [ -122.4220758676529, 37.7979458225562 ], [ -122.42209196090698, 37.79803483813565 ], [ -122.42209196090698, 37.79803483813565 ], [ -122.42209196090698, 37.79803483813565 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41198003292084, 37.797996688614745 ], [ -122.41183519363403, 37.798013643959806 ], [ -122.41181910037996, 37.797950061395746 ], [ -122.41196393966676, 37.79793310603611 ], [ -122.41198003292084, 37.797996688614745 ], [ -122.41198003292084, 37.797996688614745 ], [ -122.41198003292084, 37.797996688614745 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41097688674927, 37.798017882795456 ], [ -122.41079986095428, 37.798039076970106 ], [ -122.41079449653625, 37.798026360466025 ], [ -122.41077840328218, 37.798026360466025 ], [ -122.41052627563477, 37.79806027113865 ], [ -122.41051018238069, 37.797979733265805 ], [ -122.4109447002411, 37.79792462835481 ], [ -122.41096079349518, 37.79792462835481 ], [ -122.41097688674927, 37.798017882795456 ], [ -122.41097688674927, 37.798017882795456 ], [ -122.41097688674927, 37.798017882795456 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42254257202148, 37.79808146530112 ], [ -122.42233335971832, 37.79810689828806 ], [ -122.42229044437408, 37.797911911831086 ], [ -122.42249965667725, 37.79788647877699 ], [ -122.42254257202148, 37.79808146530112 ], [ -122.42254257202148, 37.79808146530112 ], [ -122.42254257202148, 37.79808146530112 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42365837097168, 37.79795853907413 ], [ -122.42326140403748, 37.79800516628776 ], [ -122.42324531078339, 37.79792886719558 ], [ -122.4236422777176, 37.79787800109037 ], [ -122.42365837097168, 37.79795853907413 ], [ -122.42365837097168, 37.79795853907413 ], [ -122.42365837097168, 37.79795853907413 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40954458713531, 37.79798397210339 ], [ -122.40950167179108, 37.797988210940744 ], [ -122.40950167179108, 37.797873762246674 ], [ -122.40951776504517, 37.797873762246674 ], [ -122.4095445871353, 37.79798397210339 ], [ -122.4095445871353, 37.79798397210339 ], [ -122.40954458713531, 37.79798397210339 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42269814014435, 37.79813233126623 ], [ -122.42258012294769, 37.798145047752044 ], [ -122.42257475852966, 37.79811113711837 ], [ -122.42253184318542, 37.797882239933806 ], [ -122.42264986038208, 37.79786952340275 ], [ -122.42269814014435, 37.79813233126623 ], [ -122.42269814014435, 37.79813233126623 ], [ -122.42269814014435, 37.79813233126623 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41151869297028, 37.79815352540803 ], [ -122.41139531135559, 37.798170480717104 ], [ -122.41136848926544, 37.798030599300965 ], [ -122.41133630275726, 37.79787800109037 ], [ -122.41145968437195, 37.797865284558576 ], [ -122.41151869297028, 37.79815352540803 ], [ -122.41151869297028, 37.79815352540803 ], [ -122.41151869297028, 37.79815352540803 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41196393966675, 37.79793310603611 ], [ -122.41181910037994, 37.797950061395746 ], [ -122.41176545619965, 37.79795853907413 ], [ -122.41174399852753, 37.79785256802462 ], [ -122.41194784641264, 37.79782713495009 ], [ -122.41196393966673, 37.79793310603611 ], [ -122.41196393966673, 37.79793310603611 ], [ -122.41196393966675, 37.79793310603611 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42323458194733, 37.79809418179568 ], [ -122.42314875125885, 37.79810689828806 ], [ -122.42314875125885, 37.79811537594843 ], [ -122.42302536964417, 37.79813233126623 ], [ -122.42305755615234, 37.798284928951475 ], [ -122.42277324199677, 37.79831883950538 ], [ -122.42268204689026, 37.797865284558576 ], [ -122.42295026779175, 37.797831373796456 ], [ -122.42296636104584, 37.79792038951381 ], [ -122.42299318313597, 37.79791615067256 ], [ -122.4229770898819, 37.79782713495009 ], [ -122.423175573349, 37.79780170186684 ], [ -122.42320239543913, 37.79793310603611 ], [ -122.42323458194733, 37.79809418179568 ], [ -122.42323458194733, 37.79809418179568 ], [ -122.42323458194733, 37.79809418179568 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41194784641266, 37.79782713495009 ], [ -122.41174399852753, 37.79785256802462 ], [ -122.41173326969147, 37.79779322417047 ], [ -122.41193175315857, 37.79777202992529 ], [ -122.41194784641266, 37.79782713495009 ], [ -122.41194784641266, 37.79782713495009 ], [ -122.41194784641266, 37.79782713495009 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4116313457489, 37.79814080892369 ], [ -122.41152405738829, 37.79815352540803 ], [ -122.41146504878998, 37.797865284558576 ], [ -122.41144895553589, 37.79777202992531 ], [ -122.41155624389648, 37.7977593133753 ], [ -122.41163134574892, 37.79814080892369 ], [ -122.41163134574892, 37.79814080892369 ], [ -122.4116313457489, 37.79814080892369 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41175472736359, 37.79812385360782 ], [ -122.41164207458496, 37.79814080892369 ], [ -122.41156697273254, 37.797767791075536 ], [ -122.41167962551116, 37.79775083567405 ], [ -122.41173863410948, 37.798026360466025 ], [ -122.41175472736357, 37.79812385360782 ], [ -122.41175472736357, 37.79812385360782 ], [ -122.41175472736359, 37.79812385360782 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42364227771759, 37.79787800109037 ], [ -122.42324531078339, 37.79792886719558 ], [ -122.42320239543913, 37.79793310603611 ], [ -122.423175573349, 37.79780170186684 ], [ -122.42361545562744, 37.79774659682308 ], [ -122.42364227771759, 37.79787800109037 ], [ -122.42364227771759, 37.79787800109037 ], [ -122.42364227771759, 37.79787800109037 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41094470024109, 37.79792462835481 ], [ -122.41051018238068, 37.797979733265805 ], [ -122.41046726703644, 37.79777626877483 ], [ -122.41064965724944, 37.79775083567405 ], [ -122.41068184375763, 37.79774659682308 ], [ -122.4106979370117, 37.7978228961035 ], [ -122.41092324256896, 37.797797463018796 ], [ -122.41094470024107, 37.79792462835481 ], [ -122.41094470024107, 37.79792462835481 ], [ -122.41094470024109, 37.79792462835481 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41193175315857, 37.79777202992531 ], [ -122.41173326969147, 37.79779322417047 ], [ -122.41172254085541, 37.797742357971856 ], [ -122.41192102432251, 37.797716924859415 ], [ -122.41193175315857, 37.79777202992531 ], [ -122.41193175315857, 37.79777202992531 ], [ -122.41193175315857, 37.79777202992531 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42134094238281, 37.79786952340275 ], [ -122.4212282896042, 37.797882239933806 ], [ -122.42119073867799, 37.797708447153305 ], [ -122.42130875587465, 37.797695730592324 ], [ -122.42134094238283, 37.79786952340275 ], [ -122.42134094238283, 37.79786952340275 ], [ -122.42134094238281, 37.79786952340275 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42091715335846, 37.79792462835481 ], [ -122.42062211036682, 37.79795853907413 ], [ -122.42058455944061, 37.7977593133753 ], [ -122.42057383060455, 37.79772540256451 ], [ -122.42083668708801, 37.7976914917382 ], [ -122.42084205150604, 37.79772964141673 ], [ -122.42086350917816, 37.797831373796456 ], [ -122.42090106010436, 37.79782713495009 ], [ -122.42091715335845, 37.79792462835481 ], [ -122.42091715335845, 37.79792462835481 ], [ -122.42091715335846, 37.79792462835481 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41064965724945, 37.79775083567405 ], [ -122.41046726703645, 37.79777626877483 ], [ -122.41045653820039, 37.797712686006484 ], [ -122.41063892841339, 37.7976914917382 ], [ -122.41064965724945, 37.79775083567405 ], [ -122.41064965724945, 37.79775083567405 ], [ -122.41064965724945, 37.79775083567405 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42103517055511, 37.797907672989325 ], [ -122.42091715335846, 37.79792462835481 ], [ -122.42090106010437, 37.79782713495009 ], [ -122.42087423801424, 37.79770420829989 ], [ -122.42099225521089, 37.79768725288382 ], [ -122.42103517055513, 37.797907672989325 ], [ -122.42103517055513, 37.797907672989325 ], [ -122.42103517055511, 37.797907672989325 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42143213748932, 37.79785680686951 ], [ -122.42134094238281, 37.79786952340275 ], [ -122.42130875587463, 37.797695730592324 ], [ -122.42130339145662, 37.79768301402918 ], [ -122.42139458656312, 37.79767453631921 ], [ -122.42143213748932, 37.79785680686951 ], [ -122.42143213748932, 37.79785680686951 ], [ -122.42143213748932, 37.79785680686951 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41192102432251, 37.797716924859415 ], [ -122.41172254085541, 37.797742357971856 ], [ -122.41171181201935, 37.79768301402918 ], [ -122.41191029548645, 37.79765758089631 ], [ -122.41192102432251, 37.797716924859415 ], [ -122.41192102432251, 37.797716924859415 ], [ -122.41192102432251, 37.797716924859415 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40951240062714, 37.79781865725665 ], [ -122.40950167179108, 37.79781865725665 ], [ -122.40950167179108, 37.79775931337528 ], [ -122.40951240062714, 37.79781865725665 ], [ -122.40951240062714, 37.79781865725665 ], [ -122.40951240062714, 37.79781865725665 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42122828960419, 37.797882239933806 ], [ -122.42111563682556, 37.79789919530514 ], [ -122.42108881473541, 37.79776355222553 ], [ -122.4210673570633, 37.7976618197524 ], [ -122.42118000984192, 37.79764910318341 ], [ -122.42119073867798, 37.797708447153305 ], [ -122.42122828960419, 37.797882239933806 ], [ -122.42122828960419, 37.797882239933806 ], [ -122.42122828960419, 37.797882239933806 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42255330085754, 37.797716924859415 ], [ -122.42225289344788, 37.797755074524794 ], [ -122.42223680019379, 37.79767453631921 ], [ -122.42248356342316, 37.79764062546953 ], [ -122.42253720760345, 37.797636386612204 ], [ -122.42255330085754, 37.797716924859415 ], [ -122.42255330085754, 37.797716924859415 ], [ -122.42255330085754, 37.797716924859415 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41066575050354, 37.79768725288382 ], [ -122.41063892841339, 37.7976914917382 ], [ -122.41045653820039, 37.797712686006484 ], [ -122.41044580936433, 37.79765758089631 ], [ -122.41061747074129, 37.797636386612204 ], [ -122.4106550216675, 37.79763214775467 ], [ -122.41066575050355, 37.79768725288382 ], [ -122.41066575050355, 37.79768725288382 ], [ -122.41066575050354, 37.79768725288382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4095767736435, 37.797788985321915 ], [ -122.40953385829926, 37.797797463018796 ], [ -122.40953385829926, 37.79778474647316 ], [ -122.40950703620912, 37.797788985321915 ], [ -122.40950167179109, 37.797755074524794 ], [ -122.40950167179109, 37.797636386612204 ], [ -122.40954458713533, 37.79763214775467 ], [ -122.40957677364351, 37.797788985321915 ], [ -122.40957677364351, 37.797788985321915 ], [ -122.4095767736435, 37.797788985321915 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40976989269257, 37.79789919530514 ], [ -122.40955531597137, 37.79792886719558 ], [ -122.40954995155336, 37.797886478777016 ], [ -122.4095928668976, 37.797882239933806 ], [ -122.4095392227173, 37.79762367003883 ], [ -122.40971088409425, 37.79760247574503 ], [ -122.40976989269258, 37.79789919530514 ], [ -122.40976989269258, 37.79789919530514 ], [ -122.40976989269257, 37.79789919530514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42160379886627, 37.79783561264257 ], [ -122.4214321374893, 37.79785680686951 ], [ -122.42139458656311, 37.79767453631921 ], [ -122.42138385772705, 37.797619431180564 ], [ -122.421555519104, 37.797598236885534 ], [ -122.42160379886627, 37.79783561264257 ], [ -122.42160379886627, 37.79783561264257 ], [ -122.42160379886627, 37.79783561264257 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42248356342316, 37.79764062546953 ], [ -122.42223680019379, 37.79767453631921 ], [ -122.42222607135773, 37.797615192322034 ], [ -122.4224728345871, 37.7975855203056 ], [ -122.42248356342316, 37.79764062546953 ], [ -122.42248356342316, 37.79764062546953 ], [ -122.42248356342316, 37.79764062546953 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42083668708801, 37.7976914917382 ], [ -122.42057383060455, 37.79772540256451 ], [ -122.42055237293243, 37.79760671460429 ], [ -122.42080986499786, 37.797572803723476 ], [ -122.420836687088, 37.7976914917382 ], [ -122.420836687088, 37.7976914917382 ], [ -122.42083668708801, 37.7976914917382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42111563682556, 37.79789919530514 ], [ -122.4210512638092, 37.79790343414736 ], [ -122.42098152637482, 37.797564326000824 ], [ -122.42104589939117, 37.797555848277206 ], [ -122.42108881473541, 37.79776355222553 ], [ -122.42111563682556, 37.79789919530512 ], [ -122.42111563682556, 37.79789919530512 ], [ -122.42111563682556, 37.79789919530514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42174327373505, 37.79781865725665 ], [ -122.42160379886627, 37.79783561264257 ], [ -122.421555519104, 37.797598236885534 ], [ -122.42155015468599, 37.797572803723476 ], [ -122.42168962955476, 37.79755160941504 ], [ -122.42174327373506, 37.79781865725665 ], [ -122.42174327373506, 37.79781865725665 ], [ -122.42174327373505, 37.79781865725665 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41191029548645, 37.79765758089631 ], [ -122.41171181201935, 37.79768301402918 ], [ -122.41169571876527, 37.79768725288382 ], [ -122.41167426109315, 37.79757704258442 ], [ -122.41188883781433, 37.79755160941504 ], [ -122.41191029548645, 37.79765758089631 ], [ -122.41191029548645, 37.79765758089631 ], [ -122.41191029548645, 37.79765758089631 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42280542850494, 37.79768301402918 ], [ -122.4227249622345, 37.797695730592324 ], [ -122.42269814014436, 37.797560087139146 ], [ -122.42277860641481, 37.79755160941504 ], [ -122.42280542850494, 37.79768301402918 ], [ -122.42280542850494, 37.79768301402918 ], [ -122.42280542850494, 37.79768301402918 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42252111434937, 37.79758128144514 ], [ -122.4224728345871, 37.7975855203056 ], [ -122.42222607135773, 37.797615192322034 ], [ -122.42221534252167, 37.797555848277206 ], [ -122.42251038551332, 37.79751769850893 ], [ -122.42252111434938, 37.79758128144514 ], [ -122.42252111434938, 37.79758128144514 ], [ -122.42252111434937, 37.79758128144514 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4227249622345, 37.797695730592324 ], [ -122.422633767128, 37.797708447153305 ], [ -122.42260158061983, 37.79752617623693 ], [ -122.4226874113083, 37.79751345964458 ], [ -122.42269814014436, 37.797560087139146 ], [ -122.4227249622345, 37.797695730592324 ], [ -122.4227249622345, 37.797695730592324 ], [ -122.4227249622345, 37.797695730592324 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42289125919342, 37.79767453631921 ], [ -122.42280542850494, 37.79768301402918 ], [ -122.42277860641481, 37.79755160941504 ], [ -122.42277324199678, 37.79752193737306 ], [ -122.42285907268526, 37.79750922077997 ], [ -122.42289125919343, 37.79767453631921 ], [ -122.42289125919343, 37.79767453631921 ], [ -122.42289125919342, 37.79767453631921 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4230682849884, 37.79765334203998 ], [ -122.42298245429993, 37.7976618197524 ], [ -122.42295563220979, 37.79751769850896 ], [ -122.42303609848022, 37.79750498191513 ], [ -122.4230682849884, 37.79765334203998 ], [ -122.4230682849884, 37.79765334203998 ], [ -122.4230682849884, 37.79765334203998 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41061747074127, 37.797636386612204 ], [ -122.41044580936432, 37.79765758089631 ], [ -122.41041898727417, 37.79752193737306 ], [ -122.41059064865114, 37.797500743050065 ], [ -122.41061747074127, 37.797636386612204 ], [ -122.41061747074127, 37.797636386612204 ], [ -122.41061747074127, 37.797636386612204 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42298245429993, 37.79766181975238 ], [ -122.42289125919342, 37.79767453631921 ], [ -122.42285907268524, 37.79750922077997 ], [ -122.42295026779175, 37.79749650418472 ], [ -122.42295563220978, 37.79751769850893 ], [ -122.42298245429991, 37.79766181975238 ], [ -122.42298245429991, 37.79766181975238 ], [ -122.42298245429993, 37.79766181975238 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4207991361618, 37.797572803723476 ], [ -122.42055237293245, 37.79760671460429 ], [ -122.42053627967836, 37.79752617623693 ], [ -122.42078304290773, 37.79749650418472 ], [ -122.4207991361618, 37.797572803723476 ], [ -122.4207991361618, 37.797572803723476 ], [ -122.4207991361618, 37.797572803723476 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42314875125885, 37.79764062546953 ], [ -122.4230682849884, 37.79765334203998 ], [ -122.42303609848022, 37.79750498191513 ], [ -122.42303609848022, 37.79749650418472 ], [ -122.42311656475067, 37.797488026453316 ], [ -122.42314875125885, 37.79764062546953 ], [ -122.42314875125885, 37.79764062546953 ], [ -122.42314875125885, 37.79764062546953 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4225103855133, 37.79751769850893 ], [ -122.42221534252167, 37.797555848277206 ], [ -122.42219924926758, 37.797488026453316 ], [ -122.42249965667725, 37.79745411551802 ], [ -122.4225103855133, 37.79751769850893 ], [ -122.4225103855133, 37.79751769850893 ], [ -122.4225103855133, 37.79751769850893 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42357790470123, 37.79758975916583 ], [ -122.42328822612762, 37.79762367003883 ], [ -122.42325603961945, 37.79746259325332 ], [ -122.42354571819305, 37.797428682306354 ], [ -122.42357790470123, 37.79758975916583 ], [ -122.42357790470123, 37.79758975916583 ], [ -122.42357790470123, 37.79758975916583 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42082059383392, 37.79749226531914 ], [ -122.42078304290773, 37.79749650418472 ], [ -122.42053627967836, 37.79752617623693 ], [ -122.42052018642427, 37.79745411551802 ], [ -122.42080450057988, 37.79742020456719 ], [ -122.42082059383394, 37.79749226531914 ], [ -122.42082059383394, 37.79749226531914 ], [ -122.42082059383392, 37.79749226531914 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41142749786377, 37.79774659682308 ], [ -122.41097688674927, 37.79780170186684 ], [ -122.41096079349518, 37.79772540256451 ], [ -122.41090178489686, 37.797733880268694 ], [ -122.41090714931488, 37.79774659682308 ], [ -122.4107301235199, 37.797767791075536 ], [ -122.4106764793396, 37.797488026453344 ], [ -122.41085350513458, 37.797466832120605 ], [ -122.41085886955261, 37.79749226531914 ], [ -122.41092324256897, 37.79748378758728 ], [ -122.41095542907715, 37.79763214775467 ], [ -122.41130948066711, 37.79758975916583 ], [ -122.41129338741302, 37.797513459644605 ], [ -122.41124510765076, 37.79751769850896 ], [ -122.41122364997864, 37.79742020456719 ], [ -122.41135776042938, 37.7974032490859 ], [ -122.41142749786377, 37.79774659682308 ], [ -122.41142749786377, 37.79774659682308 ], [ -122.41142749786377, 37.79774659682308 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4115240573883, 37.79756856486228 ], [ -122.41140067577362, 37.7975855203056 ], [ -122.41136312484743, 37.7974032490859 ], [ -122.41148650646211, 37.797390532472384 ], [ -122.4115240573883, 37.79756856486228 ], [ -122.4115240573883, 37.79756856486228 ], [ -122.4115240573883, 37.79756856486228 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42249965667725, 37.79745411551802 ], [ -122.42219924926758, 37.797488026453316 ], [ -122.42218315601349, 37.79741596569723 ], [ -122.42248356342316, 37.7973778158567 ], [ -122.42249965667725, 37.79745411551802 ], [ -122.42249965667725, 37.79745411551802 ], [ -122.42249965667725, 37.79745411551802 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41164207458496, 37.797555848277206 ], [ -122.41152405738829, 37.79756856486228 ], [ -122.4114865064621, 37.797390532472384 ], [ -122.41160452365875, 37.797373576984334 ], [ -122.41164207458496, 37.79753889282706 ], [ -122.41164207458496, 37.797555848277206 ], [ -122.41164207458496, 37.797555848277206 ], [ -122.41164207458496, 37.797555848277206 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42259085178375, 37.79749226531914 ], [ -122.42250502109526, 37.797500743050065 ], [ -122.42248356342314, 37.7973778158567 ], [ -122.42256939411163, 37.79736933811171 ], [ -122.42259085178375, 37.79749226531914 ], [ -122.42259085178375, 37.79749226531914 ], [ -122.42259085178375, 37.79749226531914 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41174936294556, 37.79752193737306 ], [ -122.41164207458496, 37.79753889282706 ], [ -122.41160452365875, 37.797373576984334 ], [ -122.41171717643738, 37.7973608603657 ], [ -122.41174936294556, 37.79752193737306 ], [ -122.41174936294556, 37.79752193737306 ], [ -122.41174936294556, 37.79752193737306 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42267668247223, 37.79747954872097 ], [ -122.42259085178375, 37.79749226531914 ], [ -122.42256939411163, 37.79736933811171 ], [ -122.42265522480011, 37.79735662149236 ], [ -122.42267668247223, 37.79747954872097 ], [ -122.42267668247223, 37.79747954872097 ], [ -122.42267668247223, 37.79747954872097 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42086350917816, 37.79741172682703 ], [ -122.42080450057983, 37.79742020456719 ], [ -122.42052018642426, 37.79745411551802 ], [ -122.4205094575882, 37.79739477134381 ], [ -122.4208527803421, 37.79735238261875 ], [ -122.42086350917816, 37.79741172682703 ], [ -122.42086350917816, 37.79741172682703 ], [ -122.42086350917816, 37.79741172682703 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4227625131607, 37.79747530985443 ], [ -122.42268204689026, 37.797488026453316 ], [ -122.42267668247224, 37.79747954872097 ], [ -122.42265522480012, 37.79735662149236 ], [ -122.42273569107056, 37.7973481437449 ], [ -122.42275714874268, 37.797449876650035 ], [ -122.4227625131607, 37.79747530985443 ], [ -122.4227625131607, 37.79747530985443 ], [ -122.4227625131607, 37.79747530985443 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4118834733963, 37.79750922078 ], [ -122.41174936294556, 37.79752193737306 ], [ -122.41171717643738, 37.79736086036572 ], [ -122.41185128688812, 37.7973439048708 ], [ -122.4118834733963, 37.79750922078 ], [ -122.4118834733963, 37.79750922078 ], [ -122.4118834733963, 37.79750922078 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42354571819305, 37.79741172682703 ], [ -122.42325603961945, 37.797449876650035 ], [ -122.42324531078339, 37.79740748795659 ], [ -122.42323994636537, 37.7973778158567 ], [ -122.42352962493898, 37.797339665996475 ], [ -122.42354571819305, 37.79741172682703 ], [ -122.42354571819305, 37.79741172682703 ], [ -122.42354571819305, 37.79741172682703 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42284297943115, 37.79743716004455 ], [ -122.42275714874268, 37.797449876650035 ], [ -122.42273569107056, 37.7973481437449 ], [ -122.42282152175903, 37.797335427121915 ], [ -122.42284297943115, 37.79743716004455 ], [ -122.42284297943115, 37.79743716004455 ], [ -122.42284297943115, 37.79743716004455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42293953895569, 37.79746259325332 ], [ -122.42284834384918, 37.79747530985443 ], [ -122.42284297943117, 37.79743716004455 ], [ -122.42282152175905, 37.797335427121915 ], [ -122.42291271686554, 37.797326949372035 ], [ -122.42293417453766, 37.79742020456719 ], [ -122.42293953895569, 37.79746259325332 ], [ -122.42293953895569, 37.79746259325332 ], [ -122.42293953895569, 37.79746259325332 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42328822612762, 37.79762367003883 ], [ -122.42314875125884, 37.79764062546953 ], [ -122.42311656475066, 37.797488026453316 ], [ -122.4231058359146, 37.79742444343689 ], [ -122.42313802242278, 37.79742020456719 ], [ -122.42312729358672, 37.79738205472884 ], [ -122.42308974266052, 37.79738629360075 ], [ -122.42307901382446, 37.79733118824708 ], [ -122.42319166660307, 37.79731847162117 ], [ -122.42320239543913, 37.797373576984334 ], [ -122.42320775985716, 37.79741172682703 ], [ -122.42324531078337, 37.79740748795659 ], [ -122.42325603961943, 37.797449876650035 ], [ -122.42325603961943, 37.79746259325332 ], [ -122.42328822612761, 37.79762367003883 ], [ -122.42328822612761, 37.79762367003883 ], [ -122.42328822612762, 37.79762367003883 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42302000522614, 37.79741172682703 ], [ -122.42293417453766, 37.79742020456719 ], [ -122.42291271686554, 37.797326949372035 ], [ -122.42300391197203, 37.797314232745414 ], [ -122.42302000522612, 37.79741172682703 ], [ -122.42302000522612, 37.79741172682703 ], [ -122.42302000522614, 37.79741172682703 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42204904556274, 37.7977805076241 ], [ -122.42180764675139, 37.79781017956224 ], [ -122.42170572280884, 37.79732271049674 ], [ -122.4219524860382, 37.7972930383628 ], [ -122.42204904556274, 37.7977805076241 ], [ -122.42204904556274, 37.7977805076241 ], [ -122.42204904556274, 37.7977805076241 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4208527803421, 37.7973481437449 ], [ -122.4205094575882, 37.79739053247241 ], [ -122.4204933643341, 37.797318471621196 ], [ -122.42083668708801, 37.797276082852335 ], [ -122.4208527803421, 37.7973481437449 ], [ -122.4208527803421, 37.7973481437449 ], [ -122.4208527803421, 37.7973481437449 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42352962493896, 37.797339665996496 ], [ -122.42323994636536, 37.7973778158567 ], [ -122.42321848869324, 37.797276082852335 ], [ -122.42326140403748, 37.797271843974144 ], [ -122.42350816726685, 37.79724217181975 ], [ -122.42352962493896, 37.797339665996496 ], [ -122.42352962493896, 37.797339665996496 ], [ -122.42352962493896, 37.797339665996496 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42195248603821, 37.7972930383628 ], [ -122.42170572280884, 37.79732271049674 ], [ -122.42163062095642, 37.797335427121915 ], [ -122.42161452770235, 37.797259127338 ], [ -122.42168962955476, 37.79725064957937 ], [ -122.42193639278413, 37.79722097741648 ], [ -122.42195248603821, 37.7972930383628 ], [ -122.42195248603821, 37.7972930383628 ], [ -122.42195248603821, 37.7972930383628 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42083668708801, 37.797276082852335 ], [ -122.4204933643341, 37.797318471621196 ], [ -122.42048263549805, 37.797254888458816 ], [ -122.42082059383392, 37.79721249965347 ], [ -122.42083668708801, 37.797276082852335 ], [ -122.42083668708801, 37.797276082852335 ], [ -122.42083668708801, 37.797276082852335 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42246747016907, 37.7972930383628 ], [ -122.42217242717741, 37.797326949372035 ], [ -122.4221509695053, 37.79724217181975 ], [ -122.42242991924284, 37.79720826077158 ], [ -122.42245137691496, 37.79720826077158 ], [ -122.42246747016905, 37.7972930383628 ], [ -122.42246747016905, 37.7972930383628 ], [ -122.42246747016907, 37.7972930383628 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42263376712799, 37.797271843974116 ], [ -122.42254793643951, 37.797280321730305 ], [ -122.4225264787674, 37.79718282747526 ], [ -122.42261767387389, 37.79717434970787 ], [ -122.42263376712798, 37.797271843974116 ], [ -122.42263376712798, 37.797271843974116 ], [ -122.42263376712799, 37.797271843974116 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4227249622345, 37.797259127338 ], [ -122.422633767128, 37.797271843974116 ], [ -122.42261767387392, 37.79717434970787 ], [ -122.42261230945589, 37.797157394170185 ], [ -122.42270350456239, 37.797144677514346 ], [ -122.42272496223451, 37.797259127338 ], [ -122.42272496223451, 37.797259127338 ], [ -122.4227249622345, 37.797259127338 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42082059383392, 37.79721249965347 ], [ -122.42048263549805, 37.797254888458816 ], [ -122.42046654224396, 37.7971785885917 ], [ -122.42080986499786, 37.797140438628595 ], [ -122.42082059383392, 37.79721249965347 ], [ -122.42082059383392, 37.79721249965347 ], [ -122.42082059383392, 37.79721249965347 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42254793643951, 37.797280321730305 ], [ -122.42246747016908, 37.7972930383628 ], [ -122.42245137691499, 37.79720826077158 ], [ -122.4224352836609, 37.797144677514346 ], [ -122.42251574993135, 37.797131960856326 ], [ -122.42252111434938, 37.797153155285145 ], [ -122.4225264787674, 37.79718282747526 ], [ -122.42254793643951, 37.797280321730305 ], [ -122.42254793643951, 37.797280321730305 ], [ -122.42254793643951, 37.797280321730305 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42280542850494, 37.79725064957937 ], [ -122.4227249622345, 37.797259127338 ], [ -122.42270350456238, 37.797144677514346 ], [ -122.42270350456238, 37.79713619974259 ], [ -122.42278397083282, 37.79712772196984 ], [ -122.42280542850494, 37.79725064957937 ], [ -122.42280542850494, 37.79725064957937 ], [ -122.42280542850494, 37.79725064957937 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42093324661255, 37.797339665996496 ], [ -122.42085278034212, 37.7973481437449 ], [ -122.42083668708803, 37.797276082852335 ], [ -122.42082059383394, 37.79721249965347 ], [ -122.42080986499788, 37.797140438628595 ], [ -122.42089569568635, 37.79712772196984 ], [ -122.42093324661256, 37.797339665996496 ], [ -122.42093324661256, 37.797339665996496 ], [ -122.42093324661255, 37.797339665996496 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42242991924286, 37.79720826077158 ], [ -122.42215096950531, 37.79724217181975 ], [ -122.42213487625123, 37.79716163305497 ], [ -122.42241382598877, 37.79712772196984 ], [ -122.42242991924286, 37.79720826077158 ], [ -122.42242991924286, 37.79720826077158 ], [ -122.42242991924286, 37.79720826077158 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42103517055511, 37.79739901021499 ], [ -122.42094933986664, 37.79740748795659 ], [ -122.42093324661255, 37.797339665996475 ], [ -122.42089569568635, 37.79712772196984 ], [ -122.42098152637483, 37.79711924419614 ], [ -122.42103517055513, 37.79739901021499 ], [ -122.42103517055513, 37.79739901021499 ], [ -122.42103517055511, 37.79739901021499 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42289125919342, 37.79725064957937 ], [ -122.42281079292299, 37.79726336621694 ], [ -122.42278397083284, 37.79712772196984 ], [ -122.42277860641481, 37.79711924419614 ], [ -122.42286443710331, 37.79710652753374 ], [ -122.42287516593937, 37.79717011082383 ], [ -122.42289125919343, 37.79725064957937 ], [ -122.42289125919343, 37.79725064957937 ], [ -122.42289125919342, 37.79725064957937 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42114782333374, 37.79743292117557 ], [ -122.42104589939117, 37.797445637781784 ], [ -122.42103517055511, 37.79739901021499 ], [ -122.42098152637482, 37.79711924419614 ], [ -122.42107808589935, 37.79710652753374 ], [ -122.42113173007965, 37.797369338111686 ], [ -122.42114782333374, 37.79743292117557 ], [ -122.42114782333374, 37.79743292117557 ], [ -122.42114782333374, 37.79743292117557 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42350816726685, 37.79724217181975 ], [ -122.42326140403748, 37.797271843974116 ], [ -122.42323458194733, 37.79712348308311 ], [ -122.4234813451767, 37.79709381086916 ], [ -122.42350816726685, 37.79724217181975 ], [ -122.42350816726685, 37.79724217181975 ], [ -122.42350816726685, 37.79724217181975 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42123365402222, 37.79735662149236 ], [ -122.42113173007965, 37.79736933811171 ], [ -122.42107808589935, 37.79710652753374 ], [ -122.42118000984192, 37.79709381086916 ], [ -122.42123365402222, 37.79735662149236 ], [ -122.42123365402222, 37.79735662149236 ], [ -122.42123365402222, 37.79735662149236 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42193639278412, 37.79722097741648 ], [ -122.42168962955475, 37.79725064957937 ], [ -122.4216628074646, 37.79711500530891 ], [ -122.42190957069397, 37.797085333091545 ], [ -122.42193639278412, 37.79722097741648 ], [ -122.42193639278412, 37.79722097741648 ], [ -122.42193639278412, 37.79722097741648 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42139458656311, 37.79736933811171 ], [ -122.42127120494843, 37.79738629360075 ], [ -122.42128193378448, 37.79743716004455 ], [ -122.42134630680084, 37.797428682306354 ], [ -122.42136240005493, 37.79750922078 ], [ -122.42129802703856, 37.79751769850896 ], [ -122.42130339145659, 37.797530415100546 ], [ -122.42127120494841, 37.797530415100546 ], [ -122.42126584053038, 37.79752193737306 ], [ -122.42122292518614, 37.79752617623693 ], [ -122.42120683193207, 37.797445637781784 ], [ -122.4212497472763, 37.797441398913286 ], [ -122.42123365402222, 37.79735662149236 ], [ -122.42118000984192, 37.79709381086916 ], [ -122.42133557796478, 37.79707261642332 ], [ -122.42139458656311, 37.79735238261875 ], [ -122.42139458656311, 37.79736933811171 ], [ -122.42139458656311, 37.79736933811171 ], [ -122.42139458656311, 37.79736933811171 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41181373596191, 37.797259127338 ], [ -122.41130411624908, 37.79732271049674 ], [ -122.41128802299501, 37.797254888458816 ], [ -122.41127192974092, 37.7971785885917 ], [ -122.41126120090486, 37.79712772196984 ], [ -122.41177618503572, 37.797064138643265 ], [ -122.41178691387178, 37.797110766421454 ], [ -122.41179764270784, 37.79717434970787 ], [ -122.41180300712587, 37.797187066358596 ], [ -122.41181373596193, 37.797259127338 ], [ -122.41181373596193, 37.797259127338 ], [ -122.41181373596191, 37.797259127338 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42151260375977, 37.797339665996496 ], [ -122.42139458656311, 37.79735238261875 ], [ -122.42133557796478, 37.79707261642332 ], [ -122.42145359516144, 37.7970598997529 ], [ -122.42151260375977, 37.797339665996496 ], [ -122.42151260375977, 37.797339665996496 ], [ -122.42151260375977, 37.797339665996496 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42241382598877, 37.79712772196984 ], [ -122.42213487625122, 37.79716163305497 ], [ -122.42211878299713, 37.79708109420238 ], [ -122.42239773273468, 37.797047183080274 ], [ -122.42241382598877, 37.79712772196984 ], [ -122.42241382598877, 37.79712772196984 ], [ -122.42241382598877, 37.79712772196984 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42317020893097, 37.7972040218895 ], [ -122.4230682849884, 37.7972167385351 ], [ -122.42305219173433, 37.797140438628595 ], [ -122.42303609848024, 37.7970598997529 ], [ -122.4231380224228, 37.7970471830803 ], [ -122.42317020893098, 37.7972040218895 ], [ -122.42317020893098, 37.7972040218895 ], [ -122.42317020893097, 37.7972040218895 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42165207862854, 37.79743716004455 ], [ -122.42153406143188, 37.79745411551802 ], [ -122.42151260375977, 37.797339665996496 ], [ -122.42145359516144, 37.7970598997529 ], [ -122.42158234119417, 37.797042944188924 ], [ -122.42159307003023, 37.79710652753374 ], [ -122.42158234119417, 37.797110766421454 ], [ -122.42161452770235, 37.797259127338 ], [ -122.42163062095642, 37.797335427121915 ], [ -122.42165207862854, 37.79743716004455 ], [ -122.42165207862854, 37.79743716004455 ], [ -122.42165207862854, 37.79743716004455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42305219173431, 37.797140438628595 ], [ -122.42296099662781, 37.797153155285145 ], [ -122.42293953895569, 37.797051421971396 ], [ -122.4230307340622, 37.79703870529732 ], [ -122.42303609848021, 37.7970598997529 ], [ -122.4230521917343, 37.797140438628595 ], [ -122.4230521917343, 37.797140438628595 ], [ -122.42305219173431, 37.797140438628595 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42190957069397, 37.797085333091545 ], [ -122.4216628074646, 37.79711500530891 ], [ -122.42159843444824, 37.79712348308311 ], [ -122.42158234119417, 37.797042944188924 ], [ -122.4218934774399, 37.797004794155775 ], [ -122.42190957069397, 37.797085333091545 ], [ -122.42190957069397, 37.797085333091545 ], [ -122.42190957069397, 37.797085333091545 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42239773273468, 37.797047183080274 ], [ -122.42211878299713, 37.79708109420238 ], [ -122.42210268974306, 37.79699207747368 ], [ -122.42238163948059, 37.796958166310716 ], [ -122.42239773273468, 37.797047183080274 ], [ -122.42239773273468, 37.797047183080274 ], [ -122.42239773273468, 37.797047183080274 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42251574993134, 37.797131960856326 ], [ -122.4224352836609, 37.797144677514346 ], [ -122.4223977327347, 37.79695392741425 ], [ -122.42247819900514, 37.79694544962059 ], [ -122.42251574993134, 37.797131960856326 ], [ -122.42251574993134, 37.797131960856326 ], [ -122.42251574993134, 37.797131960856326 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42260694503784, 37.797140438628595 ], [ -122.42252111434937, 37.797153155285145 ], [ -122.42251574993134, 37.797131960856326 ], [ -122.42247819900514, 37.79694544962059 ], [ -122.42256402969362, 37.79693273292826 ], [ -122.42260694503786, 37.797140438628595 ], [ -122.42260694503786, 37.797140438628595 ], [ -122.42260694503784, 37.797140438628595 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42270350456238, 37.79713619974259 ], [ -122.42260694503784, 37.79714891639987 ], [ -122.42260694503784, 37.797140438628595 ], [ -122.4225640296936, 37.79693273292829 ], [ -122.42266058921814, 37.796924255132176 ], [ -122.42270350456238, 37.79713619974259 ], [ -122.42270350456238, 37.79713619974259 ], [ -122.42270350456238, 37.79713619974259 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42278397083282, 37.79712772196984 ], [ -122.42270350456238, 37.79713619974259 ], [ -122.42266058921814, 37.796924255132176 ], [ -122.42274105548859, 37.79691153843622 ], [ -122.42276787757874, 37.797047183080274 ], [ -122.4227786064148, 37.79711924419614 ], [ -122.42278397083281, 37.79712772196984 ], [ -122.42278397083281, 37.79712772196984 ], [ -122.42278397083282, 37.79712772196984 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42284834384918, 37.79703870529732 ], [ -122.42276787757875, 37.797047183080274 ], [ -122.4227410554886, 37.79691153843622 ], [ -122.42282152175905, 37.79690306063769 ], [ -122.42284834384918, 37.79703870529732 ], [ -122.42284834384918, 37.79703870529732 ], [ -122.42284834384918, 37.79703870529732 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42296099662781, 37.79716163305497 ], [ -122.42287516593933, 37.79717011082383 ], [ -122.42286443710327, 37.79710652753374 ], [ -122.42284834384918, 37.79703870529732 ], [ -122.42282152175905, 37.79690306063769 ], [ -122.42291271686554, 37.79689034393807 ], [ -122.42293953895569, 37.797051421971375 ], [ -122.42296099662781, 37.797153155285145 ], [ -122.42296099662781, 37.79716163305497 ], [ -122.42296099662781, 37.79716163305497 ], [ -122.42296099662781, 37.79716163305497 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4230307340622, 37.79703870529732 ], [ -122.42293953895569, 37.797051421971396 ], [ -122.42291271686554, 37.796890343938095 ], [ -122.42299854755403, 37.79688186613715 ], [ -122.42303073406221, 37.79703870529732 ], [ -122.42303073406221, 37.79703870529732 ], [ -122.4230307340622, 37.79703870529732 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42313802242279, 37.797047183080274 ], [ -122.42303609848022, 37.7970598997529 ], [ -122.42303073406221, 37.79703870529732 ], [ -122.42299854755403, 37.79688186613715 ], [ -122.42310583591463, 37.79686914943388 ], [ -122.4231380224228, 37.797047183080274 ], [ -122.4231380224228, 37.797047183080274 ], [ -122.42313802242279, 37.797047183080274 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4234813451767, 37.79709381086916 ], [ -122.42323458194733, 37.79712348308311 ], [ -122.42318630218507, 37.79712772196984 ], [ -122.4231380224228, 37.79686491053231 ], [ -122.42342770099641, 37.79682676040723 ], [ -122.42348134517671, 37.79709381086916 ], [ -122.42348134517671, 37.79709381086916 ], [ -122.4234813451767, 37.79709381086916 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42184519767761, 37.796843716020796 ], [ -122.42153942584991, 37.79688186613715 ], [ -122.42151260375977, 37.79675893791397 ], [ -122.42161452770233, 37.79674622118954 ], [ -122.42161989212035, 37.79677165463619 ], [ -122.42172718048096, 37.79675469900605 ], [ -122.42172181606293, 37.796733504462914 ], [ -122.42181837558746, 37.79672078773413 ], [ -122.42184519767761, 37.796843716020796 ], [ -122.42184519767761, 37.796843716020796 ], [ -122.42184519767761, 37.796843716020796 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42239773273468, 37.79676317682161 ], [ -122.42206513881683, 37.796805565884775 ], [ -122.42204904556274, 37.79672502664398 ], [ -122.42219388484955, 37.79670807100316 ], [ -122.42238163948059, 37.7966826375346 ], [ -122.42239773273468, 37.79676317682161 ], [ -122.42239773273468, 37.79676317682161 ], [ -122.42239773273468, 37.79676317682161 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42181837558746, 37.79672078773413 ], [ -122.42172181606293, 37.796733504462914 ], [ -122.42161452770233, 37.79674622118954 ], [ -122.42151260375977, 37.79675893791397 ], [ -122.42147505283356, 37.79676317682161 ], [ -122.4214643239975, 37.79669535426995 ], [ -122.4218076467514, 37.79665296514357 ], [ -122.42181837558746, 37.79672078773413 ], [ -122.42181837558746, 37.79672078773413 ], [ -122.42181837558746, 37.79672078773413 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42219388484955, 37.79670807100314 ], [ -122.42204904556274, 37.79672502664398 ], [ -122.42203295230867, 37.79664024840093 ], [ -122.42217779159547, 37.79661905382496 ], [ -122.42219388484955, 37.79670807100314 ], [ -122.42219388484955, 37.79670807100314 ], [ -122.42219388484955, 37.79670807100314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4218076467514, 37.79665296514357 ], [ -122.4214643239975, 37.79669535426995 ], [ -122.42144823074342, 37.796627531656064 ], [ -122.42179155349733, 37.796585142490756 ], [ -122.4218076467514, 37.79665296514357 ], [ -122.4218076467514, 37.79665296514357 ], [ -122.4218076467514, 37.79665296514357 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42339551448822, 37.796636009486214 ], [ -122.42302536964417, 37.79668687644664 ], [ -122.42302000522615, 37.79662329274064 ], [ -122.42305755615234, 37.79661905382496 ], [ -122.42338478565217, 37.796580903572895 ], [ -122.42339551448823, 37.796636009486214 ], [ -122.42339551448823, 37.796636009486214 ], [ -122.42339551448822, 37.796636009486214 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42338478565216, 37.796580903572895 ], [ -122.42305755615234, 37.79661905382496 ], [ -122.42303609848021, 37.79652579761845 ], [ -122.42336869239806, 37.79648764731826 ], [ -122.42338478565215, 37.796580903572895 ], [ -122.42338478565215, 37.796580903572895 ], [ -122.42338478565216, 37.796580903572895 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42179155349731, 37.796585142490756 ], [ -122.42144823074341, 37.796627531656064 ], [ -122.42142140865326, 37.796496125164445 ], [ -122.42176473140717, 37.79644949699833 ], [ -122.42179155349731, 37.796585142490756 ], [ -122.42179155349731, 37.796585142490756 ], [ -122.42179155349731, 37.796585142490756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42237627506256, 37.79657242573643 ], [ -122.42203831672668, 37.796614814909034 ], [ -122.42200076580048, 37.79643678022064 ], [ -122.42233872413635, 37.79639015201705 ], [ -122.42237627506256, 37.79657242573643 ], [ -122.42237627506256, 37.79657242573643 ], [ -122.42237627506256, 37.79657242573643 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41783797740936, 37.79647493054711 ], [ -122.41766095161438, 37.79650036408717 ], [ -122.41762340068817, 37.796326568055655 ], [ -122.41780579090118, 37.79630113445578 ], [ -122.41783797740936, 37.79647493054711 ], [ -122.41783797740936, 37.79647493054711 ], [ -122.41783797740936, 37.79647493054711 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42176473140717, 37.79644949699833 ], [ -122.42142140865326, 37.796496125164445 ], [ -122.42134094238281, 37.796504603009666 ], [ -122.42129802703857, 37.79629689552161 ], [ -122.42172718048097, 37.79624178935534 ], [ -122.42176473140717, 37.79644949699833 ], [ -122.42176473140717, 37.79644949699833 ], [ -122.42176473140717, 37.79644949699833 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42233872413635, 37.79639015201707 ], [ -122.42200076580048, 37.79643678022064 ], [ -122.42195785045624, 37.79624602829267 ], [ -122.42230117321014, 37.79620363890844 ], [ -122.42233872413634, 37.79639015201707 ], [ -122.42233872413634, 37.79639015201707 ], [ -122.42233872413635, 37.79639015201707 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42230117321014, 37.79620363890844 ], [ -122.42195785045624, 37.79624602829267 ], [ -122.42192029953003, 37.79605527587214 ], [ -122.42226362228394, 37.79601288637848 ], [ -122.42230117321014, 37.79620363890844 ], [ -122.42230117321014, 37.79620363890844 ], [ -122.42230117321014, 37.79620363890844 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42202758789062, 37.795813655432426 ], [ -122.42187201976776, 37.795830611278554 ], [ -122.42184519767763, 37.795703442337825 ], [ -122.42200076580049, 37.79568224749312 ], [ -122.42202758789062, 37.795813655432426 ], [ -122.42202758789062, 37.795813655432426 ], [ -122.42202758789062, 37.795813655432426 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41046726703644, 37.7958009385453 ], [ -122.41036534309387, 37.795813655432426 ], [ -122.41035461425781, 37.79575430994039 ], [ -122.41032779216766, 37.7956483357289 ], [ -122.41043508052827, 37.79563561881328 ], [ -122.41046726703645, 37.7958009385453 ], [ -122.41046726703645, 37.7958009385453 ], [ -122.41046726703644, 37.7958009385453 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42079377174377, 37.79568224749312 ], [ -122.42061674594879, 37.795703442337825 ], [ -122.42062211036682, 37.795737354076756 ], [ -122.42050409317015, 37.79575430994039 ], [ -122.42048263549803, 37.79564409675727 ], [ -122.42077767848967, 37.79561018497552 ], [ -122.42079377174376, 37.79568224749312 ], [ -122.42079377174376, 37.79568224749312 ], [ -122.42079377174377, 37.79568224749312 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42215633392334, 37.79566529161295 ], [ -122.42200076580048, 37.79568224749312 ], [ -122.42184519767761, 37.795703442337825 ], [ -122.42183446884155, 37.7956483357289 ], [ -122.42214560508728, 37.795605946001736 ], [ -122.42215633392334, 37.79566529161295 ], [ -122.42215633392334, 37.79566529161295 ], [ -122.42215633392334, 37.79566529161295 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42214560508728, 37.795605946001736 ], [ -122.42183446884155, 37.7956483357289 ], [ -122.42181837558746, 37.795555078297006 ], [ -122.422091960907, 37.79551692749549 ], [ -122.42212414741518, 37.79551268851633 ], [ -122.4221456050873, 37.795605946001736 ], [ -122.4221456050873, 37.795605946001736 ], [ -122.42214560508728, 37.795605946001736 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42209196090698, 37.79551692749549 ], [ -122.42181837558745, 37.795555078297006 ], [ -122.42179691791533, 37.79545758176509 ], [ -122.42206513881682, 37.79542366989775 ], [ -122.42207586765288, 37.79541943091325 ], [ -122.42209196090697, 37.79551692749549 ], [ -122.42209196090697, 37.79551692749549 ], [ -122.42209196090698, 37.79551692749549 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42206513881683, 37.79542366989775 ], [ -122.42179691791534, 37.79545758176509 ], [ -122.42178082466127, 37.795381280041674 ], [ -122.42194712162019, 37.795360085104505 ], [ -122.42204904556274, 37.795347368139296 ], [ -122.42206513881683, 37.79542366989775 ], [ -122.42206513881683, 37.79542366989775 ], [ -122.42206513881683, 37.79542366989775 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42194712162018, 37.795360085104505 ], [ -122.42178082466125, 37.795381280041674 ], [ -122.4217540025711, 37.795262588315275 ], [ -122.42192029953003, 37.79524139334406 ], [ -122.42194712162018, 37.795360085104505 ], [ -122.42194712162018, 37.795360085104505 ], [ -122.42194712162018, 37.795360085104505 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41045653820038, 37.79530073924811 ], [ -122.40998446941376, 37.795360085104505 ], [ -122.40994691848755, 37.79517780839393 ], [ -122.41041898727417, 37.79511422338909 ], [ -122.41045653820038, 37.79530073924811 ], [ -122.41045653820038, 37.79530073924811 ], [ -122.41045653820038, 37.79530073924811 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42193102836609, 37.79524139334406 ], [ -122.42192029953003, 37.79524139334406 ], [ -122.4217540025711, 37.795262588315275 ], [ -122.42172181606293, 37.795109984386826 ], [ -122.42189884185791, 37.795088789371825 ], [ -122.42193102836609, 37.79524139334406 ], [ -122.42193102836609, 37.79524139334406 ], [ -122.42193102836609, 37.79524139334406 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4214643239975, 37.79497433618579 ], [ -122.42100834846497, 37.79503368230439 ], [ -122.42093324661255, 37.79468608293166 ], [ -122.42139458656312, 37.794626736533836 ], [ -122.4214643239975, 37.79497433618579 ], [ -122.4214643239975, 37.79497433618579 ], [ -122.4214643239975, 37.79497433618579 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41237163543701, 37.795262588315275 ], [ -122.41227507591248, 37.795275305295064 ], [ -122.41227507591248, 37.79529226126473 ], [ -122.41221606731415, 37.79530073924811 ], [ -122.41221070289612, 37.79529650025653 ], [ -122.41217315196992, 37.79530073924811 ], [ -122.41213023662569, 37.795304978239436 ], [ -122.41208195686342, 37.7950506383295 ], [ -122.41163671016695, 37.7951184623911 ], [ -122.4116098880768, 37.79499553123362 ], [ -122.41158306598668, 37.79499977024245 ], [ -122.41151332855229, 37.7946182584731 ], [ -122.41198003292088, 37.7945504339523 ], [ -122.41213560104374, 37.79452499974094 ], [ -122.41221606731419, 37.79491922903299 ], [ -122.41227507591249, 37.794910751005816 ], [ -122.41237163543705, 37.795262588315275 ], [ -122.41237163543705, 37.795262588315275 ], [ -122.41237163543701, 37.795262588315275 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40958750247955, 37.79468608293166 ], [ -122.40950167179108, 37.79469456098458 ], [ -122.40950167179108, 37.794516521668534 ], [ -122.40955531597137, 37.79450804359518 ], [ -122.40958750247955, 37.79468608293166 ], [ -122.40958750247955, 37.79468608293166 ], [ -122.40958750247955, 37.79468608293166 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42296099662781, 37.794232505681 ], [ -122.42254257202148, 37.794283374296356 ], [ -122.4225103855133, 37.794122290227605 ], [ -122.42292881011963, 37.794071421501364 ], [ -122.42296099662781, 37.794232505681 ], [ -122.42296099662781, 37.794232505681 ], [ -122.42296099662781, 37.794232505681 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41999983787537, 37.79424522283814 ], [ -122.41987645626068, 37.79426641809515 ], [ -122.41984963417053, 37.794257939993045 ], [ -122.41983890533447, 37.79424522283814 ], [ -122.41981208324434, 37.79408413868621 ], [ -122.41996228694917, 37.79406718243925 ], [ -122.41999983787538, 37.79424522283814 ], [ -122.41999983787538, 37.79424522283814 ], [ -122.41999983787537, 37.79424522283814 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41181373596191, 37.79424098378598 ], [ -122.41148114204407, 37.794283374296356 ], [ -122.41147041320801, 37.79424522283814 ], [ -122.41143822669983, 37.79424946189002 ], [ -122.41140067577362, 37.794071421501364 ], [ -122.41176545619965, 37.794024791804866 ], [ -122.41181373596191, 37.79424098378598 ], [ -122.41181373596191, 37.79424098378598 ], [ -122.41181373596191, 37.79424098378598 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41907715797424, 37.794313047639136 ], [ -122.41881966590881, 37.79434272097 ], [ -122.41874992847443, 37.79399511834632 ], [ -122.41900205612184, 37.79396120580767 ], [ -122.41907715797426, 37.794313047639136 ], [ -122.41907715797426, 37.794313047639136 ], [ -122.41907715797424, 37.794313047639136 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4189966917038, 37.79395696673922 ], [ -122.41876602172852, 37.793982401146124 ], [ -122.41871237754822, 37.793770447487695 ], [ -122.41894841194153, 37.793740773926984 ], [ -122.41899669170378, 37.79395696673922 ], [ -122.41899669170378, 37.79395696673922 ], [ -122.4189966917038, 37.79395696673922 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41986572742462, 37.7938001210365 ], [ -122.41976916790009, 37.793808599191095 ], [ -122.41971552371977, 37.793554254129674 ], [ -122.41981208324432, 37.793545775945866 ], [ -122.41986572742462, 37.7938001210365 ], [ -122.41986572742462, 37.7938001210365 ], [ -122.41986572742462, 37.7938001210365 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41993546485901, 37.79375773024885 ], [ -122.41985499858858, 37.793766208408336 ], [ -122.41981208324434, 37.793545775945866 ], [ -122.41988718509675, 37.79353729776109 ], [ -122.41993546485901, 37.79375773024885 ], [ -122.41993546485901, 37.79375773024885 ], [ -122.41993546485901, 37.79375773024885 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42002129554749, 37.7937492520884 ], [ -122.41993546485901, 37.79375773024885 ], [ -122.41988718509674, 37.79353729776109 ], [ -122.41997301578522, 37.79352458048213 ], [ -122.42002129554749, 37.7937492520884 ], [ -122.42002129554749, 37.7937492520884 ], [ -122.42002129554749, 37.7937492520884 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42013394832611, 37.793723817601254 ], [ -122.42012321949005, 37.79373653484592 ], [ -122.4200963973999, 37.793740773926984 ], [ -122.42008566856384, 37.793732295764606 ], [ -122.42007493972778, 37.793740773926984 ], [ -122.42002129554749, 37.7937492520884 ], [ -122.41997301578522, 37.79352458048213 ], [ -122.41999983787537, 37.79351186320097 ], [ -122.4200266599655, 37.79351610229493 ], [ -122.42004811763762, 37.79350762410675 ], [ -122.42008566856383, 37.79351610229493 ], [ -122.4201339483261, 37.793723817601254 ], [ -122.4201339483261, 37.793723817601254 ], [ -122.42013394832611, 37.793723817601254 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4202412366867, 37.79374501300782 ], [ -122.4202036857605, 37.7937492520884 ], [ -122.4202036857605, 37.79372805668306 ], [ -122.4201500415802, 37.793732295764606 ], [ -122.42013394832611, 37.793723817601254 ], [ -122.42008566856386, 37.79352034138864 ], [ -122.42010176181793, 37.79351610229493 ], [ -122.42011249065399, 37.7935033850123 ], [ -122.4201500415802, 37.79350762410675 ], [ -122.42016613483429, 37.793494906822666 ], [ -122.42019295692442, 37.7935033850123 ], [ -122.42021441459654, 37.79359664503403 ], [ -122.42018222808836, 37.79360088412314 ], [ -122.42018222808836, 37.79361360138898 ], [ -122.42020905017851, 37.79361360138898 ], [ -122.42024123668669, 37.79374501300782 ], [ -122.42024123668669, 37.79374501300782 ], [ -122.4202412366867, 37.79374501300782 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4204021692276, 37.793732295764606 ], [ -122.42024660110474, 37.79375349116876 ], [ -122.42022514343262, 37.793668709515686 ], [ -122.42025196552277, 37.79366023134501 ], [ -122.42023587226868, 37.79357968867522 ], [ -122.42020905017854, 37.79358392776529 ], [ -122.42019295692445, 37.79349914591762 ], [ -122.42034852504732, 37.7934779504405 ], [ -122.4203646183014, 37.7935584932212 ], [ -122.42033779621126, 37.79356273231249 ], [ -122.42035925388338, 37.79365599225931 ], [ -122.42038607597352, 37.793651753173364 ], [ -122.42039680480958, 37.793689904938056 ], [ -122.4204021692276, 37.793732295764606 ], [ -122.4204021692276, 37.793732295764606 ], [ -122.4204021692276, 37.793732295764606 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4205631017685, 37.793723817601254 ], [ -122.42040753364563, 37.79374501300782 ], [ -122.42039680480957, 37.793689904938056 ], [ -122.42041289806365, 37.79368566585406 ], [ -122.42038071155547, 37.79352881957535 ], [ -122.42035925388335, 37.79353305866835 ], [ -122.42034852504729, 37.79347371134435 ], [ -122.42049872875214, 37.79345251585992 ], [ -122.4205631017685, 37.793723817601226 ], [ -122.4205631017685, 37.793723817601226 ], [ -122.4205631017685, 37.793723817601254 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42123901844025, 37.79360936230061 ], [ -122.42101907730103, 37.79363903591409 ], [ -122.42097079753876, 37.793393168471205 ], [ -122.42119073867798, 37.793367733861466 ], [ -122.42123901844025, 37.79360936230061 ], [ -122.42123901844025, 37.79360936230061 ], [ -122.42123901844025, 37.79360936230061 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41855144500732, 37.7935500150379 ], [ -122.41840124130249, 37.79356697140353 ], [ -122.4183851480484, 37.7934991459176 ], [ -122.41835832595827, 37.7935033850123 ], [ -122.41837441921234, 37.79357121049434 ], [ -122.41826176643373, 37.79358392776529 ], [ -122.41823494434358, 37.793469472247935 ], [ -122.41821348667146, 37.79347371134435 ], [ -122.41823494434358, 37.79358816685511 ], [ -122.41807401180269, 37.79360936230061 ], [ -122.4180418252945, 37.793469472247935 ], [ -122.41812229156494, 37.793460994054406 ], [ -122.41812229156494, 37.79344827676231 ], [ -122.4180418252945, 37.79345675495729 ], [ -122.41802036762238, 37.793359255656256 ], [ -122.41810619831087, 37.79335077745011 ], [ -122.41810619831087, 37.79333806013901 ], [ -122.41801500320436, 37.79335077745011 ], [ -122.41799354553224, 37.7932236042408 ], [ -122.4180954694748, 37.79321088690781 ], [ -122.41810083389282, 37.7932278433513 ], [ -122.41817057132721, 37.79321936513004 ], [ -122.41817057132721, 37.79320664779634 ], [ -122.41826713085175, 37.793193930460454 ], [ -122.4182939529419, 37.79331262551028 ], [ -122.41820275783539, 37.79332534282574 ], [ -122.41820275783539, 37.79335077745011 ], [ -122.41829931735992, 37.79333806013901 ], [ -122.41831541061401, 37.79343132036943 ], [ -122.41836905479431, 37.79342708127058 ], [ -122.41832077503204, 37.79318545223532 ], [ -122.41847634315491, 37.7931642566682 ], [ -122.41855144500732, 37.7935500150379 ], [ -122.41855144500732, 37.7935500150379 ], [ -122.41855144500732, 37.7935500150379 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41042971611023, 37.79328295176571 ], [ -122.41004884243013, 37.793333821034835 ], [ -122.4099737405777, 37.79296501804014 ], [ -122.41035461425781, 37.79291414851708 ], [ -122.41042971611023, 37.79328295176571 ], [ -122.41042971611023, 37.79328295176571 ], [ -122.41042971611023, 37.79328295176571 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41097688674927, 37.79319816957266 ], [ -122.41043508052826, 37.79326599533489 ], [ -122.41036534309387, 37.79290990938859 ], [ -122.41055309772491, 37.792888713742435 ], [ -122.41060137748718, 37.79310914816524 ], [ -122.41095006465912, 37.79306251786141 ], [ -122.41097688674927, 37.79319816957266 ], [ -122.41097688674927, 37.79319816957266 ], [ -122.41097688674927, 37.79319816957266 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41998374462128, 37.79282088763388 ], [ -122.41963505744934, 37.79286327895901 ], [ -122.41959750652313, 37.79266403951932 ], [ -122.41994619369507, 37.792621648079844 ], [ -122.41998374462128, 37.79282088763388 ], [ -122.41998374462128, 37.79282088763388 ], [ -122.41998374462128, 37.79282088763388 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42254793643951, 37.79240969051771 ], [ -122.42218315601349, 37.792460560388086 ], [ -122.42215633392335, 37.79235882061232 ], [ -122.42252111434938, 37.792303711508595 ], [ -122.42254793643951, 37.79240969051771 ], [ -122.42254793643951, 37.79240969051771 ], [ -122.42254793643951, 37.79240969051771 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4135571718216, 37.792337624808056 ], [ -122.41298854351044, 37.7924139296749 ], [ -122.41296172142029, 37.792303711508595 ], [ -122.41353571414949, 37.792227406527935 ], [ -122.41355717182161, 37.792337624808056 ], [ -122.41355717182161, 37.792337624808056 ], [ -122.4135571718216, 37.792337624808056 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41290271282196, 37.792426647145035 ], [ -122.41276860237122, 37.79244360376852 ], [ -122.41273105144501, 37.7922782765238 ], [ -122.41275250911713, 37.7922782765238 ], [ -122.41274178028107, 37.79223588486298 ], [ -122.41282761096956, 37.79222316736003 ], [ -122.41283833980562, 37.792265559028095 ], [ -122.41286516189575, 37.792265559028095 ], [ -122.41290271282196, 37.792426647145035 ], [ -122.41290271282196, 37.792426647145035 ], [ -122.41290271282196, 37.792426647145035 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41371810436249, 37.79225284153023 ], [ -122.41366446018219, 37.792261319862405 ], [ -122.41368591785431, 37.79235034229134 ], [ -122.41357862949371, 37.79236305977244 ], [ -122.41351962089539, 37.79212566643111 ], [ -122.41362154483795, 37.79211294890917 ], [ -122.41364300251007, 37.792210449854856 ], [ -122.41370737552643, 37.792197732347496 ], [ -122.41371810436249, 37.79225284153023 ], [ -122.41371810436249, 37.79225284153023 ], [ -122.41371810436249, 37.79225284153023 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42094397544861, 37.79230795067187 ], [ -122.42060601711273, 37.79235034229134 ], [ -122.4205631017685, 37.79211718808339 ], [ -122.42089569568634, 37.79207479633018 ], [ -122.4209439754486, 37.79230795067187 ], [ -122.4209439754486, 37.79230795067187 ], [ -122.42094397544861, 37.79230795067187 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4140989780426, 37.792168058155134 ], [ -122.41401851177216, 37.7921807756676 ], [ -122.41403996944427, 37.792265559028095 ], [ -122.41385221481323, 37.79229099401729 ], [ -122.41386294364929, 37.79232914648466 ], [ -122.41371273994446, 37.79235034229134 ], [ -122.4137020111084, 37.79229523318131 ], [ -122.41373956203459, 37.79229099401729 ], [ -122.4137020111084, 37.79212142725738 ], [ -122.41407752037048, 37.792070557153494 ], [ -122.4140989780426, 37.792168058155134 ], [ -122.4140989780426, 37.792168058155134 ], [ -122.4140989780426, 37.792168058155134 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41232335567474, 37.79207903550658 ], [ -122.41231262683868, 37.79209175303438 ], [ -122.41225898265839, 37.79209599220981 ], [ -122.4122428894043, 37.79208751385868 ], [ -122.4122428894043, 37.79207055715352 ], [ -122.41225898265839, 37.79205783962207 ], [ -122.41230189800262, 37.792049361266564 ], [ -122.41232335567474, 37.79205783962207 ], [ -122.41232335567474, 37.79207903550658 ], [ -122.41232335567474, 37.79207903550658 ], [ -122.41232335567474, 37.79207903550658 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4107301235199, 37.792460560388086 ], [ -122.41064965724945, 37.79246903869639 ], [ -122.41070866584778, 37.79274034404906 ], [ -122.40950167179108, 37.79289295287215 ], [ -122.40950167179108, 37.79268099608831 ], [ -122.40969479084015, 37.79265556123338 ], [ -122.40961968898773, 37.79228675485305 ], [ -122.40950167179106, 37.792299472345086 ], [ -122.40950167179106, 37.79212142725738 ], [ -122.41054236888884, 37.791990012750766 ], [ -122.41060137748717, 37.792282515688555 ], [ -122.41068720817564, 37.79226979819359 ], [ -122.41073012351988, 37.792460560388086 ], [ -122.41073012351988, 37.792460560388086 ], [ -122.4107301235199, 37.792460560388086 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4117386341095, 37.792146862296164 ], [ -122.4117386341095, 37.7921807756676 ], [ -122.41172254085541, 37.7922146890235 ], [ -122.41159915924074, 37.792227406527935 ], [ -122.41163671016693, 37.79237577725132 ], [ -122.41150259971619, 37.792392733886466 ], [ -122.41151332855225, 37.79246479954235 ], [ -122.41135239601135, 37.79248599531013 ], [ -122.41133630275726, 37.7924139296749 ], [ -122.41125583648683, 37.792422407988575 ], [ -122.41122364997864, 37.792282515688555 ], [ -122.4111270904541, 37.79229523318131 ], [ -122.41110026836397, 37.792282515688555 ], [ -122.41107881069185, 37.792261319862405 ], [ -122.41106808185577, 37.79223164569559 ], [ -122.41106808185577, 37.79220621068598 ], [ -122.41108417510986, 37.792185014837955 ], [ -122.41110563278198, 37.792168058155134 ], [ -122.41120755672455, 37.79215534064047 ], [ -122.41118609905243, 37.79207479633018 ], [ -122.41128265857697, 37.792066317976605 ], [ -122.41126656532289, 37.79200696947442 ], [ -122.41145431995393, 37.791985773569245 ], [ -122.41146504878999, 37.792045122088425 ], [ -122.41157233715059, 37.79203240455262 ], [ -122.41158843040466, 37.79210447055998 ], [ -122.41167962551117, 37.79209175303435 ], [ -122.41171181201935, 37.79211294890915 ], [ -122.4117386341095, 37.792146862296164 ], [ -122.4117386341095, 37.792146862296164 ], [ -122.4117386341095, 37.792146862296164 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4281644821167, 37.79176533579482 ], [ -122.42810010910034, 37.79176957498901 ], [ -122.42808938026428, 37.79165935586148 ], [ -122.42815911769867, 37.79165935586148 ], [ -122.42816448211669, 37.79176533579482 ], [ -122.42816448211669, 37.79176533579482 ], [ -122.4281644821167, 37.79176533579482 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42084205150604, 37.79183316287237 ], [ -122.42054700851439, 37.791871315576145 ], [ -122.4205094575882, 37.791672073461534 ], [ -122.42080450057983, 37.79163392065487 ], [ -122.42084205150604, 37.79183316287237 ], [ -122.42084205150604, 37.79183316287237 ], [ -122.42084205150604, 37.79183316287237 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41403996944427, 37.791782292570055 ], [ -122.41403996944427, 37.791807727725605 ], [ -122.41401851177216, 37.791837402062676 ], [ -122.41399705410004, 37.79185435882137 ], [ -122.41397023200989, 37.79186707638783 ], [ -122.41393804550171, 37.79187555476425 ], [ -122.41374492645265, 37.79190098988767 ], [ -122.41377174854279, 37.79201968701463 ], [ -122.41360008716583, 37.79203664373147 ], [ -122.41358399391174, 37.79195609929177 ], [ -122.4130153656006, 37.792028165373544 ], [ -122.41295635700227, 37.79178653176325 ], [ -122.41354107856752, 37.79171446544581 ], [ -122.41353034973146, 37.791642399058084 ], [ -122.41369128227235, 37.7916212030483 ], [ -122.41371273994447, 37.79173142223272 ], [ -122.41389513015748, 37.79171022624848 ], [ -122.41393804550172, 37.79171022624848 ], [ -122.41398096084596, 37.791718704642896 ], [ -122.41400778293611, 37.79173142223272 ], [ -122.41402924060823, 37.79175261821087 ], [ -122.41403996944429, 37.791782292570076 ], [ -122.41403996944429, 37.791782292570076 ], [ -122.41403996944427, 37.791782292570055 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41118609905243, 37.79168903025815 ], [ -122.41090714931488, 37.79172294383976 ], [ -122.4108749628067, 37.791553375776175 ], [ -122.41115391254425, 37.79151946211675 ], [ -122.41118609905243, 37.79168903025815 ], [ -122.41118609905243, 37.79168903025815 ], [ -122.41118609905243, 37.79168903025815 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41126120090485, 37.791680551860324 ], [ -122.41118609905243, 37.79168903025815 ], [ -122.41115391254425, 37.79151946211675 ], [ -122.41122901439667, 37.79150674449044 ], [ -122.41126120090485, 37.791680551860324 ], [ -122.41126120090485, 37.791680551860324 ], [ -122.41126120090485, 37.791680551860324 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42244064807892, 37.791748379015715 ], [ -122.42193102836609, 37.79181196691732 ], [ -122.42186665534973, 37.791485548441756 ], [ -122.42237627506256, 37.791421960259214 ], [ -122.42244064807892, 37.791748379015715 ], [ -122.42244064807892, 37.791748379015715 ], [ -122.42244064807892, 37.791748379015715 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42651224136353, 37.791591528624394 ], [ -122.42607772350311, 37.791646638259294 ], [ -122.42603480815887, 37.79139652497087 ], [ -122.4263995885849, 37.79135413280419 ], [ -122.42643713951111, 37.791553375776175 ], [ -122.42650151252747, 37.791544897362755 ], [ -122.42651224136353, 37.791591528624394 ], [ -122.42651224136353, 37.791591528624394 ], [ -122.42651224136353, 37.791591528624394 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42077231407166, 37.7914261994731 ], [ -122.42050409317017, 37.79146435238699 ], [ -122.42048263549805, 37.79137956810714 ], [ -122.42049872875214, 37.79137956810714 ], [ -122.42048263549805, 37.79129902295115 ], [ -122.42073476314545, 37.791269348397854 ], [ -122.42077231407166, 37.7914261994731 ], [ -122.42077231407166, 37.7914261994731 ], [ -122.42077231407166, 37.7914261994731 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41186738014221, 37.7916042462361 ], [ -122.41162598133087, 37.79163392065487 ], [ -122.4116098880768, 37.791553375776175 ], [ -122.41165816783905, 37.79154913656959 ], [ -122.41163671016693, 37.79144315632614 ], [ -122.41158843040466, 37.79145163475121 ], [ -122.41155624389648, 37.79129054450855 ], [ -122.41179764270784, 37.79126086995186 ], [ -122.41182982921602, 37.791421960259214 ], [ -122.41177618503572, 37.7914261994731 ], [ -122.41179764270784, 37.79153217974085 ], [ -122.41185128688814, 37.79152370132501 ], [ -122.41186738014221, 37.7916042462361 ], [ -122.41186738014221, 37.7916042462361 ], [ -122.41186738014221, 37.7916042462361 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41162598133087, 37.79163392065487 ], [ -122.41126120090485, 37.791680551860324 ], [ -122.41122901439667, 37.79150674449044 ], [ -122.4111807346344, 37.7912863052869 ], [ -122.41154551506042, 37.79123967383262 ], [ -122.41155624389648, 37.79129054450855 ], [ -122.41158843040466, 37.79145163475121 ], [ -122.4116098880768, 37.791553375776175 ], [ -122.41162598133087, 37.79163392065487 ], [ -122.41162598133087, 37.79163392065487 ], [ -122.41162598133087, 37.79163392065487 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41235017776489, 37.79154065815572 ], [ -122.4118673801422, 37.7916042462361 ], [ -122.41185128688812, 37.79152370132501 ], [ -122.411829829216, 37.791421960259214 ], [ -122.41179764270782, 37.79126086995186 ], [ -122.4117922782898, 37.7912269561582 ], [ -122.41227507591248, 37.79116760698179 ], [ -122.4123501777649, 37.79154065815572 ], [ -122.4123501777649, 37.79154065815572 ], [ -122.41235017776489, 37.79154065815572 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41739273071289, 37.79150250528121 ], [ -122.41730153560638, 37.79151522290824 ], [ -122.41729617118837, 37.79146859159843 ], [ -122.41728007793428, 37.791472830809646 ], [ -122.41728544235231, 37.791489787651976 ], [ -122.41703331470491, 37.79152370132501 ], [ -122.41702795028688, 37.791485548441756 ], [ -122.41700649261476, 37.791489787651976 ], [ -122.41701722145082, 37.79152370132501 ], [ -122.41692066192628, 37.7915364189484 ], [ -122.41690993309022, 37.791472830809646 ], [ -122.41694748401642, 37.79146859159843 ], [ -122.41690456867218, 37.791265109174965 ], [ -122.41686701774599, 37.791269348397826 ], [ -122.4168509244919, 37.79118880312169 ], [ -122.41705477237703, 37.79116336775309 ], [ -122.4170708656311, 37.79124391305694 ], [ -122.41700649261475, 37.791252391504884 ], [ -122.41700649261475, 37.791265109174965 ], [ -122.41703867912292, 37.79126086995184 ], [ -122.41707623004913, 37.791455873963365 ], [ -122.41711378097533, 37.79145163475121 ], [ -122.41710841655731, 37.79140500340129 ], [ -122.4172693490982, 37.79138380732341 ], [ -122.4172693490982, 37.791362611239464 ], [ -122.41736590862276, 37.79134989358616 ], [ -122.41739273071289, 37.79150250528119 ], [ -122.41739273071289, 37.79150250528119 ], [ -122.41739273071289, 37.79150250528121 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41064429283142, 37.791553375776175 ], [ -122.41057991981506, 37.79156185418857 ], [ -122.41041898727416, 37.79173566142882 ], [ -122.41042435169219, 37.791778053376625 ], [ -122.41009175777434, 37.79182468449112 ], [ -122.4100488424301, 37.79162968145292 ], [ -122.40995228290556, 37.791642399058055 ], [ -122.40986108779906, 37.791231195383254 ], [ -122.41056382656093, 37.79114217160591 ], [ -122.41064429283138, 37.791553375776175 ], [ -122.41064429283138, 37.791553375776175 ], [ -122.41064429283142, 37.791553375776175 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41736590862274, 37.79134989358618 ], [ -122.41726934909819, 37.791362611239464 ], [ -122.41725862026213, 37.791362611239464 ], [ -122.41725325584412, 37.79134989358618 ], [ -122.4171781539917, 37.791362611239464 ], [ -122.4171781539917, 37.791371089673774 ], [ -122.41709768772125, 37.79138380732341 ], [ -122.41709232330322, 37.791337175930686 ], [ -122.41710305213928, 37.791337175930686 ], [ -122.4170869588852, 37.79124391305697 ], [ -122.41707086563112, 37.79124391305697 ], [ -122.41705477237703, 37.79116336775309 ], [ -122.41731762886052, 37.79112945391467 ], [ -122.41736590862276, 37.79134989358618 ], [ -122.41736590862276, 37.79134989358618 ], [ -122.41736590862274, 37.79134989358618 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42073476314545, 37.79126510917499 ], [ -122.42048263549805, 37.79129902295112 ], [ -122.42045044898987, 37.79113793237575 ], [ -122.4207079410553, 37.79110825775774 ], [ -122.42073476314543, 37.79126510917499 ], [ -122.42073476314543, 37.79126510917499 ], [ -122.42073476314545, 37.79126510917499 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42130875587463, 37.79135413280419 ], [ -122.42100834846497, 37.79139228575531 ], [ -122.42096006870271, 37.79114217160591 ], [ -122.42126047611238, 37.791104018525644 ], [ -122.42130875587463, 37.79135413280419 ], [ -122.42130875587463, 37.79135413280419 ], [ -122.42130875587463, 37.79135413280419 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42231726646423, 37.791231195383254 ], [ -122.4218612909317, 37.79129478372996 ], [ -122.42182910442352, 37.79113369314532 ], [ -122.42228507995605, 37.791070104659966 ], [ -122.42231726646423, 37.791231195383254 ], [ -122.42231726646423, 37.791231195383254 ], [ -122.42231726646423, 37.791231195383254 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41788625717163, 37.79123967383262 ], [ -122.41783797740936, 37.79124815228106 ], [ -122.41783261299133, 37.791231195383254 ], [ -122.41775751113892, 37.79123967383262 ], [ -122.41776287555695, 37.79129054450855 ], [ -122.41759657859802, 37.79131174061318 ], [ -122.41755902767181, 37.791095540060674 ], [ -122.41785407066345, 37.79106162619113 ], [ -122.41787016391754, 37.79114641083583 ], [ -122.41784870624542, 37.79115065006551 ], [ -122.41785407066345, 37.79118032466647 ], [ -122.41787552833557, 37.79117608543849 ], [ -122.41788625717163, 37.79123967383262 ], [ -122.41788625717163, 37.79123967383262 ], [ -122.41788625717163, 37.79123967383262 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42152333259583, 37.79132869749249 ], [ -122.4213033914566, 37.79135413280419 ], [ -122.42126047611237, 37.79110825775774 ], [ -122.4212121963501, 37.79111249698962 ], [ -122.42119610309602, 37.791019233832294 ], [ -122.42145895957948, 37.79098955916663 ], [ -122.42152333259584, 37.79132869749249 ], [ -122.42152333259584, 37.79132869749249 ], [ -122.42152333259583, 37.79132869749249 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42070257663727, 37.79110825775774 ], [ -122.42037534713745, 37.79115065006551 ], [ -122.42033779621124, 37.79096412372947 ], [ -122.42066502571106, 37.790921731314675 ], [ -122.42070257663727, 37.79110825775774 ], [ -122.42070257663727, 37.79110825775774 ], [ -122.42070257663727, 37.79110825775774 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42228507995605, 37.791070104659966 ], [ -122.42182910442352, 37.79112945391467 ], [ -122.42179155349733, 37.79096412372947 ], [ -122.42224752902986, 37.79090053509816 ], [ -122.42228507995605, 37.791070104659966 ], [ -122.42228507995605, 37.791070104659966 ], [ -122.42228507995605, 37.791070104659966 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41350889205933, 37.79138380732341 ], [ -122.41255939006805, 37.79150674449044 ], [ -122.41244673728943, 37.79096412372947 ], [ -122.41302073001862, 37.79088781736534 ], [ -122.41305828094482, 37.79106162619113 ], [ -122.41342842578887, 37.79101499459507 ], [ -122.41345524787901, 37.79112521468376 ], [ -122.41350889205931, 37.79138380732341 ], [ -122.41350889205931, 37.79138380732341 ], [ -122.41350889205933, 37.79138380732341 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42310047149658, 37.79115065006551 ], [ -122.42277324199675, 37.79119304234894 ], [ -122.42271959781645, 37.790921731314675 ], [ -122.42304146289824, 37.79087933887559 ], [ -122.42310047149657, 37.79115065006551 ], [ -122.42310047149657, 37.79115065006551 ], [ -122.42310047149658, 37.79115065006551 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41398632526398, 37.79132021905332 ], [ -122.41376101970673, 37.79134989358618 ], [ -122.41370737552643, 37.79109130082786 ], [ -122.41345524787903, 37.79112521468376 ], [ -122.41342842578888, 37.79101499459507 ], [ -122.41340160369874, 37.79087086038484 ], [ -122.41387367248537, 37.79080727167329 ], [ -122.41398632526399, 37.79132021905332 ], [ -122.41398632526399, 37.79132021905332 ], [ -122.41398632526398, 37.79132021905332 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4172693490982, 37.79090477434197 ], [ -122.41713523864746, 37.79092597055724 ], [ -122.41711378097534, 37.79080303242391 ], [ -122.41724789142609, 37.790786075423945 ], [ -122.4172693490982, 37.79090477434197 ], [ -122.4172693490982, 37.79090477434197 ], [ -122.4172693490982, 37.79090477434197 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42065966129303, 37.790917492071834 ], [ -122.42043972015381, 37.79094716676645 ], [ -122.4204021692276, 37.79074792215982 ], [ -122.42057383060457, 37.79072248663944 ], [ -122.42062211036682, 37.7907182473852 ], [ -122.420654296875, 37.79087933887556 ], [ -122.42065966129303, 37.790917492071834 ], [ -122.42065966129303, 37.790917492071834 ], [ -122.42065966129303, 37.790917492071834 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42116928100586, 37.79094292752511 ], [ -122.42092788219452, 37.7909726022095 ], [ -122.42086350917816, 37.79066737631527 ], [ -122.42103517055511, 37.79064618002581 ], [ -122.42108345031738, 37.79088357812059 ], [ -122.42115318775177, 37.790875099630334 ], [ -122.42116928100585, 37.79094292752511 ], [ -122.42116928100585, 37.79094292752511 ], [ -122.42116928100586, 37.79094292752511 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42123365402222, 37.7908666211391 ], [ -122.42108881473541, 37.79088357812059 ], [ -122.42103517055511, 37.79064618002581 ], [ -122.42119073867798, 37.79062922298984 ], [ -122.42123365402222, 37.7908666211391 ], [ -122.42123365402222, 37.7908666211391 ], [ -122.42123365402222, 37.7908666211391 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42172718048096, 37.790917492071834 ], [ -122.4215179681778, 37.79094292752511 ], [ -122.42145359516142, 37.79059530890626 ], [ -122.42166817188262, 37.790569873333375 ], [ -122.42172718048094, 37.790917492071834 ], [ -122.42172718048094, 37.790917492071834 ], [ -122.42172718048096, 37.790917492071834 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4222582578659, 37.79089629585415 ], [ -122.42192566394806, 37.79094292752511 ], [ -122.42183983325958, 37.7905529162799 ], [ -122.42217242717741, 37.79050628436279 ], [ -122.4222582578659, 37.79089629585415 ], [ -122.4222582578659, 37.79089629585415 ], [ -122.4222582578659, 37.79089629585415 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41121292114258, 37.7907012903658 ], [ -122.41073548793794, 37.790769118420094 ], [ -122.41071403026581, 37.79076063991673 ], [ -122.41066575050355, 37.790510523629194 ], [ -122.4109071493149, 37.79048084875924 ], [ -122.41114854812623, 37.790446934607566 ], [ -122.41121292114259, 37.7907012903658 ], [ -122.41121292114259, 37.7907012903658 ], [ -122.41121292114258, 37.7907012903658 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41825103759766, 37.79079031467432 ], [ -122.41780042648314, 37.790845424906784 ], [ -122.41772532463072, 37.79046813095418 ], [ -122.41817593574524, 37.7904130204403 ], [ -122.41825103759766, 37.79079031467432 ], [ -122.41825103759766, 37.79079031467432 ], [ -122.41825103759766, 37.79079031467432 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41133093833923, 37.79068857259868 ], [ -122.41121292114258, 37.7907012903658 ], [ -122.4111485481262, 37.790446934607566 ], [ -122.41114318370819, 37.790404541896045 ], [ -122.41126656532288, 37.79038758480464 ], [ -122.41133093833923, 37.79068857259868 ], [ -122.41133093833923, 37.79068857259868 ], [ -122.41133093833923, 37.79068857259868 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41196930408478, 37.79059954816758 ], [ -122.41187274456024, 37.79061226595001 ], [ -122.41182446479797, 37.79040030262357 ], [ -122.41192638874054, 37.79038758480466 ], [ -122.41196930408478, 37.79059954816758 ], [ -122.41196930408478, 37.79059954816758 ], [ -122.41196930408478, 37.79059954816758 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41144895553589, 37.790671615572435 ], [ -122.41133093833923, 37.79068857259868 ], [ -122.41126656532288, 37.79038758480464 ], [ -122.4113792181015, 37.790370627709365 ], [ -122.41144895553587, 37.790671615572435 ], [ -122.41144895553587, 37.790671615572435 ], [ -122.41144895553589, 37.790671615572435 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41215705871582, 37.790569873333375 ], [ -122.41196930408478, 37.79059954816758 ], [ -122.41192638874054, 37.79038758480466 ], [ -122.41210877895355, 37.79035790988532 ], [ -122.4121570587158, 37.790569873333375 ], [ -122.4121570587158, 37.790569873333375 ], [ -122.41215705871582, 37.790569873333375 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41090714931488, 37.79048084875924 ], [ -122.41066575050354, 37.790510523629194 ], [ -122.41063892841339, 37.79038334553119 ], [ -122.41088032722473, 37.79035367061017 ], [ -122.41090714931488, 37.79048084875924 ], [ -122.41090714931488, 37.79048084875924 ], [ -122.41090714931488, 37.79048084875924 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41156160831451, 37.79065465854232 ], [ -122.41144895553589, 37.790671615572435 ], [ -122.4113792181015, 37.790370627709365 ], [ -122.41137385368349, 37.790353670610145 ], [ -122.41149187088014, 37.790340952783204 ], [ -122.41156160831453, 37.79065465854232 ], [ -122.41156160831453, 37.79065465854232 ], [ -122.41156160831451, 37.79065465854232 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41114854812622, 37.790446934607566 ], [ -122.41090714931488, 37.79048084875924 ], [ -122.41088032722473, 37.79035367061017 ], [ -122.41091787815094, 37.79034943133476 ], [ -122.41112172603607, 37.79032399567722 ], [ -122.41114318370819, 37.790404541896045 ], [ -122.4111485481262, 37.790446934607566 ], [ -122.4111485481262, 37.790446934607566 ], [ -122.41114854812622, 37.790446934607566 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41187274456024, 37.79061226595001 ], [ -122.4117761850357, 37.79062498373026 ], [ -122.41170644760132, 37.79032399567722 ], [ -122.41180837154388, 37.79031127784516 ], [ -122.41182446479796, 37.79040030262357 ], [ -122.41187274456023, 37.79061226595001 ], [ -122.41187274456023, 37.79061226595001 ], [ -122.41187274456024, 37.79061226595001 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4209600687027, 37.79043421679666 ], [ -122.42079377174377, 37.79045117387736 ], [ -122.42076694965363, 37.79031127784516 ], [ -122.42083668708801, 37.79030279928923 ], [ -122.42094397544861, 37.790370627709365 ], [ -122.4209600687027, 37.79043421679666 ], [ -122.4209600687027, 37.79043421679666 ], [ -122.4209600687027, 37.79043421679666 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4117761850357, 37.79062498373026 ], [ -122.41167962551116, 37.790637701508324 ], [ -122.41160988807678, 37.790315517122735 ], [ -122.41170108318327, 37.79030279928923 ], [ -122.4117064476013, 37.79032399567719 ], [ -122.41177618503569, 37.79062498373026 ], [ -122.41177618503569, 37.79062498373026 ], [ -122.4117761850357, 37.79062498373026 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41167962551117, 37.790637701508324 ], [ -122.41156160831451, 37.79065465854232 ], [ -122.41149187088013, 37.790340952783204 ], [ -122.41151869297028, 37.79033671350706 ], [ -122.41151332855225, 37.79030279928923 ], [ -122.41159915924074, 37.79029008145351 ], [ -122.4116098880768, 37.790315517122735 ], [ -122.41167962551117, 37.790637701508324 ], [ -122.41167962551117, 37.790637701508324 ], [ -122.41167962551117, 37.790637701508324 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41091787815094, 37.79034943133474 ], [ -122.41088032722473, 37.790353670610145 ], [ -122.41063892841339, 37.79038334553119 ], [ -122.41062283515932, 37.790298560010896 ], [ -122.41090178489686, 37.790264645775565 ], [ -122.41091787815094, 37.79034943133474 ], [ -122.41091787815094, 37.79034943133474 ], [ -122.41091787815094, 37.79034943133474 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41211414337158, 37.79033247423071 ], [ -122.41186738014221, 37.79036638843492 ], [ -122.41185665130615, 37.790298560010896 ], [ -122.41181910037996, 37.79030279928923 ], [ -122.41180300712587, 37.79022649224218 ], [ -122.41208195686342, 37.7901883386891 ], [ -122.4121141433716, 37.79033247423071 ], [ -122.4121141433716, 37.79033247423071 ], [ -122.41211414337158, 37.79033247423071 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42111563682556, 37.7904087811683 ], [ -122.42077231407166, 37.79018409940419 ], [ -122.42105662822723, 37.79014594582926 ], [ -122.42111563682556, 37.7904087811683 ], [ -122.42111563682556, 37.7904087811683 ], [ -122.42111563682556, 37.7904087811683 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42128729820251, 37.79040030262357 ], [ -122.42111563682556, 37.79042573825485 ], [ -122.4210512638092, 37.79012898867849 ], [ -122.42122292518616, 37.79010779223458 ], [ -122.42128729820251, 37.79040030262357 ], [ -122.42128729820251, 37.79040030262357 ], [ -122.42128729820251, 37.79040030262357 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42154479026794, 37.79037910625748 ], [ -122.42128729820251, 37.7904130204403 ], [ -122.42122292518616, 37.79010779223458 ], [ -122.42148578166962, 37.790078117202874 ], [ -122.42154479026794, 37.79037910625748 ], [ -122.42154479026794, 37.79037910625748 ], [ -122.42154479026794, 37.79037910625748 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42104053497314, 37.79014594582926 ], [ -122.42077231407166, 37.79018409940419 ], [ -122.42075085639954, 37.790082356493855 ], [ -122.42101907730103, 37.79005268145195 ], [ -122.42104053497314, 37.79014594582926 ], [ -122.42104053497314, 37.79014594582926 ], [ -122.42104053497314, 37.79014594582926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42214024066925, 37.79029432073236 ], [ -122.42154479026794, 37.790374866983555 ], [ -122.42147505283356, 37.79003572427978 ], [ -122.42157161235811, 37.79002300639811 ], [ -122.42159843444824, 37.79016290297611 ], [ -122.42210805416107, 37.79009931365531 ], [ -122.42214024066925, 37.79029432073233 ], [ -122.42214024066925, 37.79029432073233 ], [ -122.42214024066925, 37.79029432073236 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41086959838867, 37.79022225295947 ], [ -122.41062283515932, 37.790251927933284 ], [ -122.41057991981508, 37.79001452780913 ], [ -122.41081595420837, 37.78998485273997 ], [ -122.41086959838867, 37.79022225295947 ], [ -122.41086959838867, 37.79022225295947 ], [ -122.41086959838867, 37.79022225295947 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41094470024109, 37.79021377439333 ], [ -122.41086959838867, 37.79022225295947 ], [ -122.41081595420836, 37.78998485273997 ], [ -122.41089105606079, 37.78997213484955 ], [ -122.41091787815093, 37.790078117202874 ], [ -122.41093933582304, 37.7901883386891 ], [ -122.41094470024107, 37.79021377439333 ], [ -122.41094470024107, 37.79021377439333 ], [ -122.41094470024109, 37.79021377439333 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41111099720001, 37.79028160289519 ], [ -122.41096615791321, 37.790298560010896 ], [ -122.41094470024109, 37.79021377439336 ], [ -122.41093933582306, 37.7901883386891 ], [ -122.41098761558533, 37.79017986011907 ], [ -122.41096615791321, 37.79007387791167 ], [ -122.41091787815094, 37.790078117202874 ], [ -122.41089105606079, 37.78997213484955 ], [ -122.41104662418365, 37.78995093836062 ], [ -122.41110563278198, 37.790264645775565 ], [ -122.41111099720001, 37.79028160289519 ], [ -122.41111099720001, 37.79028160289519 ], [ -122.41111099720001, 37.79028160289519 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41121828556061, 37.790251927933284 ], [ -122.41110563278198, 37.790264645775565 ], [ -122.41104662418365, 37.78995093836062 ], [ -122.41115391254426, 37.78993822046437 ], [ -122.41121828556062, 37.790251927933284 ], [ -122.41121828556062, 37.790251927933284 ], [ -122.41121828556061, 37.790251927933284 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41135239601135, 37.790234970806864 ], [ -122.41121828556061, 37.790251927933284 ], [ -122.41115391254425, 37.78993822046437 ], [ -122.411288022995, 37.78992550256591 ], [ -122.41131484508513, 37.79004420286635 ], [ -122.41129338741301, 37.79004420286635 ], [ -122.4113094806671, 37.790120510101644 ], [ -122.41133093833922, 37.790120510101644 ], [ -122.41135239601134, 37.790234970806836 ], [ -122.41135239601134, 37.790234970806836 ], [ -122.41135239601135, 37.790234970806864 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41142213344574, 37.790027245692244 ], [ -122.41131484508513, 37.79004420286635 ], [ -122.411288022995, 37.78992550256591 ], [ -122.41139531135559, 37.789908545364554 ], [ -122.41142213344574, 37.790027245692244 ], [ -122.41142213344574, 37.790027245692244 ], [ -122.41142213344574, 37.790027245692244 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41158306598663, 37.79023073152464 ], [ -122.41147041320801, 37.79024344937056 ], [ -122.41142213344574, 37.790027245692244 ], [ -122.4113953113556, 37.789908545364554 ], [ -122.41150796413423, 37.789895827461 ], [ -122.41151332855225, 37.78991278466528 ], [ -122.41152942180634, 37.7899975706282 ], [ -122.41158306598663, 37.79023073152464 ], [ -122.41158306598663, 37.79023073152464 ], [ -122.41158306598663, 37.79023073152464 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41170108318329, 37.78997637414658 ], [ -122.41152942180634, 37.7899975706282 ], [ -122.41151332855225, 37.78991278466528 ], [ -122.41168498992921, 37.789891588159335 ], [ -122.41170108318329, 37.78997637414658 ], [ -122.41170108318329, 37.78997637414658 ], [ -122.41170108318329, 37.78997637414658 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41189420223236, 37.790090835075056 ], [ -122.41173326969147, 37.790112031523854 ], [ -122.41171181201935, 37.790018767103746 ], [ -122.41173326969147, 37.79001452780913 ], [ -122.41172254085541, 37.78997213484955 ], [ -122.41170108318327, 37.78997637414658 ], [ -122.4116849899292, 37.789891588159335 ], [ -122.41167962551117, 37.78986615234419 ], [ -122.41184055805208, 37.789844955824854 ], [ -122.41189420223238, 37.790090835075056 ], [ -122.41189420223238, 37.790090835075056 ], [ -122.41189420223236, 37.790090835075056 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41206586360931, 37.790090835075056 ], [ -122.41190493106842, 37.790116270812874 ], [ -122.41189420223236, 37.790090835075056 ], [ -122.41184055805206, 37.789844955824854 ], [ -122.41200149059296, 37.78981951999368 ], [ -122.41206586360931, 37.790090835075056 ], [ -122.41206586360931, 37.790090835075056 ], [ -122.41206586360931, 37.790090835075056 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42102980613708, 37.79004844215926 ], [ -122.42074012756348, 37.79008659578458 ], [ -122.42069184780121, 37.789823759299495 ], [ -122.42098152637482, 37.789785605538455 ], [ -122.42102980613708, 37.79004844215926 ], [ -122.42102980613708, 37.79004844215926 ], [ -122.42102980613708, 37.79004844215926 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42098152637482, 37.789785605538455 ], [ -122.42069184780121, 37.789823759299495 ], [ -122.42066502571106, 37.78971777658132 ], [ -122.42096006870271, 37.789679622765576 ], [ -122.42098152637483, 37.789785605538455 ], [ -122.42098152637483, 37.789785605538455 ], [ -122.42098152637482, 37.789785605538455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41371810436249, 37.78999333133236 ], [ -122.41341233253479, 37.79003148498613 ], [ -122.41338551044464, 37.789878870252856 ], [ -122.41353571414949, 37.789861913040816 ], [ -122.41352498531343, 37.78981104138134 ], [ -122.41338014602663, 37.789827998605055 ], [ -122.41335332393648, 37.789696580019445 ], [ -122.41364836692811, 37.78965842619276 ], [ -122.4137181043625, 37.78999333133236 ], [ -122.4137181043625, 37.78999333133236 ], [ -122.41371810436249, 37.78999333133236 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42137312889099, 37.79000604921915 ], [ -122.4210351705551, 37.79004844215926 ], [ -122.42096006870268, 37.789679622765576 ], [ -122.42129802703856, 37.78963722961387 ], [ -122.42137312889099, 37.79000604921915 ], [ -122.42137312889099, 37.79000604921915 ], [ -122.42137312889099, 37.79000604921915 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42156624794006, 37.78998061344342 ], [ -122.421373128891, 37.79000604921915 ], [ -122.42129802703857, 37.78963722961387 ], [ -122.42149114608765, 37.78961179371117 ], [ -122.42156624794006, 37.78998061344342 ], [ -122.42156624794006, 37.78998061344342 ], [ -122.42156624794006, 37.78998061344342 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41076231002808, 37.789802562768 ], [ -122.41054773330688, 37.78983223791036 ], [ -122.41049945354463, 37.789616033028864 ], [ -122.41071939468385, 37.789586357799685 ], [ -122.41076231002809, 37.789802562768 ], [ -122.41076231002809, 37.789802562768 ], [ -122.41076231002808, 37.789802562768 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41084814071655, 37.789794084153726 ], [ -122.41076231002808, 37.78980256276803 ], [ -122.41071939468384, 37.789586357799685 ], [ -122.41079986095428, 37.78957363984067 ], [ -122.41082668304442, 37.789696580019445 ], [ -122.41084814071655, 37.789794084153726 ], [ -122.41084814071655, 37.789794084153726 ], [ -122.41084814071655, 37.789794084153726 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42210268974304, 37.79010355294507 ], [ -122.42159843444823, 37.79016290297611 ], [ -122.42149114608763, 37.78961179371117 ], [ -122.42200076580046, 37.78955244323747 ], [ -122.42210268974303, 37.79010355294507 ], [ -122.42210268974303, 37.79010355294507 ], [ -122.42210268974304, 37.79010355294507 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41118609905243, 37.789751691067664 ], [ -122.4110198020935, 37.789772887613736 ], [ -122.41096615791321, 37.789522767982724 ], [ -122.41113781929016, 37.78950157136492 ], [ -122.41118609905243, 37.789751691067664 ], [ -122.41118609905243, 37.789751691067664 ], [ -122.41118609905243, 37.789751691067664 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41142213344574, 37.78972625520438 ], [ -122.4113416671753, 37.789734733826435 ], [ -122.41129338741302, 37.78951005001279 ], [ -122.41137385368347, 37.78950157136492 ], [ -122.41142213344574, 37.78972625520438 ], [ -122.41142213344574, 37.78972625520438 ], [ -122.41142213344574, 37.78972625520438 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41076231002808, 37.789556682558576 ], [ -122.41048872470856, 37.78959059711889 ], [ -122.4104779958725, 37.78952700730556 ], [ -122.41075158119202, 37.78949309271609 ], [ -122.41076231002808, 37.789556682558576 ], [ -122.41076231002808, 37.789556682558576 ], [ -122.41076231002808, 37.789556682558576 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42271959781647, 37.78971777658132 ], [ -122.42255866527557, 37.78973897313711 ], [ -122.4225103855133, 37.78951428933633 ], [ -122.4226713180542, 37.78948885339132 ], [ -122.42271959781647, 37.78971777658132 ], [ -122.42271959781647, 37.78971777658132 ], [ -122.42271959781647, 37.78971777658132 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4113416671753, 37.789734733826435 ], [ -122.41118609905243, 37.789751691067664 ], [ -122.41113781929016, 37.78950157136492 ], [ -122.4111270904541, 37.789467656763776 ], [ -122.41128265857697, 37.789446460130144 ], [ -122.41129338741302, 37.78951005001279 ], [ -122.4113416671753, 37.789734733826435 ], [ -122.4113416671753, 37.789734733826435 ], [ -122.4113416671753, 37.789734733826435 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41165816783905, 37.78966266550779 ], [ -122.41164207458498, 37.78966690482261 ], [ -122.41165280342103, 37.78970081933231 ], [ -122.41150796413423, 37.78971777658132 ], [ -122.41145431995393, 37.789463417437524 ], [ -122.41161525249483, 37.789442220802705 ], [ -122.41162061691286, 37.789484614066296 ], [ -122.41165816783905, 37.78966266550779 ], [ -122.41165816783905, 37.78966266550779 ], [ -122.41165816783905, 37.78966266550779 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41198003292084, 37.789654186877456 ], [ -122.41165280342102, 37.78970081933231 ], [ -122.41164207458496, 37.78966690482261 ], [ -122.41165816783904, 37.78966266550779 ], [ -122.41162061691284, 37.789484614066296 ], [ -122.4119371175766, 37.789442220802705 ], [ -122.41198003292084, 37.789654186877456 ], [ -122.41198003292084, 37.789654186877456 ], [ -122.41198003292084, 37.789654186877456 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4110198020935, 37.789772887613736 ], [ -122.41084814071655, 37.789794084153726 ], [ -122.41082668304442, 37.789696580019445 ], [ -122.41084814071655, 37.78969234070635 ], [ -122.41081058979034, 37.78951005001279 ], [ -122.4107837677002, 37.78951428933633 ], [ -122.41077840328218, 37.78948885339132 ], [ -122.41077303886415, 37.789446460130144 ], [ -122.4109447002411, 37.789425263490436 ], [ -122.41096615791322, 37.789522767982724 ], [ -122.41101980209355, 37.789772887613736 ], [ -122.41101980209355, 37.789772887613736 ], [ -122.4110198020935, 37.789772887613736 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41240382194519, 37.78961179371117 ], [ -122.41215705871582, 37.789641468930114 ], [ -122.41211950778961, 37.78945069945736 ], [ -122.41236090660097, 37.78941678483285 ], [ -122.4124038219452, 37.78961179371117 ], [ -122.4124038219452, 37.78961179371117 ], [ -122.41240382194519, 37.78961179371117 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41077840328217, 37.78948885339132 ], [ -122.41075158119202, 37.78949309271609 ], [ -122.4104779958725, 37.78952700730556 ], [ -122.41046726703644, 37.78945069945736 ], [ -122.41048336029051, 37.789446460130144 ], [ -122.41054773330688, 37.789437981475004 ], [ -122.41064429283142, 37.789425263490465 ], [ -122.41076231002808, 37.78940830617431 ], [ -122.41077303886414, 37.789446460130144 ], [ -122.41077840328217, 37.78948885339132 ], [ -122.41077840328217, 37.78948885339132 ], [ -122.41077840328217, 37.78948885339132 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4126398563385, 37.7895778791606 ], [ -122.41255939006805, 37.78959059711889 ], [ -122.41252183914185, 37.78941678483285 ], [ -122.41260230541229, 37.78940406684465 ], [ -122.4126398563385, 37.7895778791606 ], [ -122.4126398563385, 37.7895778791606 ], [ -122.4126398563385, 37.7895778791606 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41247355937958, 37.78959907575652 ], [ -122.41240382194519, 37.78961179371117 ], [ -122.41236090660095, 37.789404066844675 ], [ -122.41243064403534, 37.78939558818465 ], [ -122.41247355937958, 37.78959907575652 ], [ -122.41247355937958, 37.78959907575652 ], [ -122.41247355937958, 37.78959907575652 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41255939006805, 37.78959059711889 ], [ -122.41247355937958, 37.78959907575652 ], [ -122.41243064403534, 37.78939558818465 ], [ -122.41251647472382, 37.78938710952366 ], [ -122.41255939006805, 37.78959059711889 ], [ -122.41255939006805, 37.78959059711889 ], [ -122.41255939006805, 37.78959059711889 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41150796413422, 37.78971777658132 ], [ -122.41142213344574, 37.78972625520438 ], [ -122.41137385368347, 37.78950157136492 ], [ -122.41134703159332, 37.7893786308617 ], [ -122.41143286228181, 37.78936591286693 ], [ -122.41145431995393, 37.789463417437524 ], [ -122.41150796413423, 37.78971777658132 ], [ -122.41150796413423, 37.78971777658132 ], [ -122.41150796413422, 37.78971777658132 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4129992723465, 37.789531246628144 ], [ -122.41281151771545, 37.789556682558576 ], [ -122.41277933120728, 37.78938710952366 ], [ -122.41296172142029, 37.78936591286693 ], [ -122.41299927234648, 37.789531246628144 ], [ -122.41299927234648, 37.789531246628144 ], [ -122.4129992723465, 37.789531246628144 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41061210632324, 37.78941254550371 ], [ -122.41054236888885, 37.789421024161776 ], [ -122.41054773330688, 37.789437981475004 ], [ -122.41048336029051, 37.789446460130144 ], [ -122.41046726703644, 37.78945069945736 ], [ -122.41044580936432, 37.78936167353485 ], [ -122.41059601306915, 37.78934047687082 ], [ -122.41061210632324, 37.78941254550371 ], [ -122.41061210632324, 37.78941254550371 ], [ -122.41061210632324, 37.78941254550371 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4195921421051, 37.78963299029734 ], [ -122.41893768310548, 37.78971353726942 ], [ -122.41887867450716, 37.789399827514764 ], [ -122.41901814937593, 37.7893828701928 ], [ -122.41905570030214, 37.78957363984067 ], [ -122.41941511631012, 37.789531246628144 ], [ -122.41937756538393, 37.78932775886948 ], [ -122.41952776908876, 37.78931080153099 ], [ -122.41959214210512, 37.78963299029734 ], [ -122.41959214210512, 37.78963299029734 ], [ -122.4195921421051, 37.78963299029734 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.412548661232, 37.7893786308617 ], [ -122.41211414337158, 37.789433742147054 ], [ -122.41209805011749, 37.78935319486999 ], [ -122.4125325679779, 37.789298083524535 ], [ -122.412548661232, 37.7893786308617 ], [ -122.412548661232, 37.7893786308617 ], [ -122.412548661232, 37.7893786308617 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4119371175766, 37.789425263490436 ], [ -122.41174936294556, 37.789446460130144 ], [ -122.41171717643738, 37.789298083524535 ], [ -122.41188883781433, 37.78927688684228 ], [ -122.41190493106842, 37.78935319486999 ], [ -122.41192102432251, 37.78934895553716 ], [ -122.41193711757658, 37.789425263490436 ], [ -122.41193711757658, 37.789425263490436 ], [ -122.4119371175766, 37.789425263490436 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41318702697754, 37.78950581068898 ], [ -122.4129992723465, 37.789531246628165 ], [ -122.4129456281662, 37.78928536551592 ], [ -122.41313338279724, 37.789259929492104 ], [ -122.41318702697754, 37.78950581068898 ], [ -122.41318702697754, 37.78950581068898 ], [ -122.41318702697754, 37.78950581068898 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42153406143188, 37.78941254550371 ], [ -122.42136240005493, 37.789433742147054 ], [ -122.42133021354675, 37.78927264750509 ], [ -122.4215018749237, 37.78925145081554 ], [ -122.42153406143188, 37.78941254550371 ], [ -122.42153406143188, 37.78941254550371 ], [ -122.42153406143188, 37.78941254550371 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.43181228637695, 37.789535485950495 ], [ -122.43175864219666, 37.78929384418857 ], [ -122.43181228637695, 37.78928960485237 ], [ -122.43181228637695, 37.789535485950495 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41410434246063, 37.78940406684465 ], [ -122.41383612155914, 37.789437981475004 ], [ -122.41379857063295, 37.78924297213801 ], [ -122.413991689682, 37.78921753609959 ], [ -122.413991689682, 37.78922601478002 ], [ -122.41406679153444, 37.789213296758994 ], [ -122.4140775203705, 37.78928112617922 ], [ -122.41406142711641, 37.78928536551592 ], [ -122.41406679153444, 37.789315040865986 ], [ -122.41408824920656, 37.78931080153099 ], [ -122.41410434246063, 37.78940406684465 ], [ -122.41410434246063, 37.78940406684465 ], [ -122.41410434246063, 37.78940406684465 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41188883781433, 37.78927688684228 ], [ -122.41171717643738, 37.789298083524535 ], [ -122.41164743900299, 37.789306562195755 ], [ -122.41163134574892, 37.78924297213801 ], [ -122.41187810897827, 37.78920905741816 ], [ -122.41188883781433, 37.78927688684228 ], [ -122.41188883781433, 37.78927688684228 ], [ -122.41188883781433, 37.78927688684228 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4125325679779, 37.789298083524535 ], [ -122.41209805011749, 37.78935319486999 ], [ -122.41207659244537, 37.78925145081554 ], [ -122.41251111030579, 37.78919210005242 ], [ -122.4125325679779, 37.789298083524535 ], [ -122.4125325679779, 37.789298083524535 ], [ -122.4125325679779, 37.789298083524535 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41281151771545, 37.789556682558576 ], [ -122.4126398563385, 37.7895778791606 ], [ -122.41256475448607, 37.78920057873577 ], [ -122.41273641586304, 37.78917938202556 ], [ -122.41281151771545, 37.789556682558576 ], [ -122.41281151771545, 37.789556682558576 ], [ -122.41281151771545, 37.789556682558576 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4135947227478, 37.78945069945736 ], [ -122.41343379020691, 37.789471896089765 ], [ -122.41336941719055, 37.78919210005242 ], [ -122.41353571414948, 37.78917090333976 ], [ -122.41359472274779, 37.78945069945736 ], [ -122.41359472274779, 37.78945069945736 ], [ -122.4135947227478, 37.78945069945736 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4142062664032, 37.78939134885428 ], [ -122.41410434246063, 37.78940406684465 ], [ -122.4140614271164, 37.78918362136809 ], [ -122.41416871547699, 37.78917090333976 ], [ -122.4142062664032, 37.78939134885428 ], [ -122.4142062664032, 37.78939134885428 ], [ -122.4142062664032, 37.78939134885428 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41089642047882, 37.78926840816768 ], [ -122.41076231002808, 37.78928536551592 ], [ -122.41074085235596, 37.78917090333976 ], [ -122.4108749628067, 37.78915394596523 ], [ -122.41089642047882, 37.78926840816768 ], [ -122.41089642047882, 37.78926840816768 ], [ -122.41089642047882, 37.78926840816768 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41187810897827, 37.78920905741816 ], [ -122.41163134574892, 37.78924297213801 ], [ -122.41161525249483, 37.78917938202556 ], [ -122.4118620157242, 37.789149706621 ], [ -122.41187810897827, 37.78920905741816 ], [ -122.41187810897827, 37.78920905741816 ], [ -122.41187810897827, 37.78920905741816 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41092324256897, 37.78939134885428 ], [ -122.41076231002806, 37.78940830617431 ], [ -122.4106442928314, 37.789425263490436 ], [ -122.41059601306914, 37.78915818530923 ], [ -122.41073548793793, 37.78914122793181 ], [ -122.41074085235594, 37.78917090333976 ], [ -122.41076231002806, 37.78928536551592 ], [ -122.4108964204788, 37.78926840816768 ], [ -122.41092324256896, 37.78939134885428 ], [ -122.41092324256896, 37.78939134885428 ], [ -122.41092324256897, 37.78939134885428 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41450667381287, 37.78935319486999 ], [ -122.41439938545227, 37.78936591286693 ], [ -122.41435110569, 37.78913274924163 ], [ -122.41446375846863, 37.78911579185838 ], [ -122.41450667381287, 37.78935319486999 ], [ -122.41450667381287, 37.78935319486999 ], [ -122.41450667381287, 37.78935319486999 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41342842578888, 37.789476135415526 ], [ -122.41318702697754, 37.78950581068898 ], [ -122.41317093372346, 37.789421024161776 ], [ -122.41319239139558, 37.78941678483285 ], [ -122.41314947605133, 37.789213296758994 ], [ -122.41312801837921, 37.78921753609959 ], [ -122.41311192512514, 37.78914122793181 ], [ -122.41331577301025, 37.78911579185838 ], [ -122.41333186626434, 37.78919633939423 ], [ -122.41336941719055, 37.78919210005242 ], [ -122.41342842578887, 37.789476135415526 ], [ -122.41342842578887, 37.789476135415526 ], [ -122.41342842578888, 37.789476135415526 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4140453338623, 37.78919210005242 ], [ -122.41379857063293, 37.78922601478005 ], [ -122.41378247737885, 37.789145467276526 ], [ -122.41402387619019, 37.78911579185838 ], [ -122.41404533386232, 37.78919210005242 ], [ -122.41404533386232, 37.78919210005242 ], [ -122.4140453338623, 37.78919210005242 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42136240005493, 37.789433742147054 ], [ -122.42119610309601, 37.78945069945736 ], [ -122.42113173007965, 37.78912850989617 ], [ -122.42129266262054, 37.789107313165275 ], [ -122.42136240005493, 37.789433742147054 ], [ -122.42136240005493, 37.789433742147054 ], [ -122.42136240005493, 37.789433742147054 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41439938545227, 37.78936591286693 ], [ -122.4142062664032, 37.78939134885428 ], [ -122.41416335105896, 37.78912427055049 ], [ -122.41434037685394, 37.789094595123814 ], [ -122.41439938545227, 37.78936591286693 ], [ -122.41439938545227, 37.78936591286693 ], [ -122.41439938545227, 37.78936591286693 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41491973400116, 37.789298083524535 ], [ -122.41481244564055, 37.78931080153099 ], [ -122.41476953029631, 37.78910307381837 ], [ -122.41482853889464, 37.789094595123814 ], [ -122.41488218307494, 37.789213296758994 ], [ -122.41490364074706, 37.789213296758994 ], [ -122.41491973400115, 37.789298083524535 ], [ -122.41491973400115, 37.789298083524535 ], [ -122.41491973400116, 37.789298083524535 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41464078426361, 37.78933623753729 ], [ -122.41450667381287, 37.78935319486999 ], [ -122.41449058055878, 37.789259929492104 ], [ -122.4144583940506, 37.78910307381837 ], [ -122.41459250450134, 37.78909035577617 ], [ -122.41462469100952, 37.78926416883001 ], [ -122.41464078426361, 37.78933623753729 ], [ -122.41464078426361, 37.78933623753729 ], [ -122.41464078426361, 37.78933623753729 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4135410785675, 37.78917090333976 ], [ -122.41335332393646, 37.78919633939423 ], [ -122.41333186626434, 37.789098834471204 ], [ -122.41351962089539, 37.78907339838317 ], [ -122.4135410785675, 37.78917090333976 ], [ -122.4135410785675, 37.78917090333976 ], [ -122.4135410785675, 37.78917090333976 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42161452770233, 37.78940406684465 ], [ -122.42153406143188, 37.78941254550371 ], [ -122.4214643239975, 37.78908187708016 ], [ -122.42154479026794, 37.78907339838317 ], [ -122.42161452770233, 37.78940406684465 ], [ -122.42161452770233, 37.78940406684465 ], [ -122.42161452770233, 37.78940406684465 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41481244564056, 37.789315040865986 ], [ -122.41464078426361, 37.78933623753729 ], [ -122.41459250450134, 37.78909035577617 ], [ -122.41475880146027, 37.78906915903432 ], [ -122.41481244564056, 37.789315040865986 ], [ -122.41481244564056, 37.789315040865986 ], [ -122.41481244564056, 37.789315040865986 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41059601306915, 37.78934047687082 ], [ -122.41044580936432, 37.78936167353485 ], [ -122.41039216518402, 37.78908187708016 ], [ -122.41054773330688, 37.789064919685224 ], [ -122.41056382656096, 37.78916242465299 ], [ -122.41059601306914, 37.78934047687082 ], [ -122.41059601306914, 37.78934047687082 ], [ -122.41059601306915, 37.78934047687082 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42194175720215, 37.78936167353485 ], [ -122.42161452770233, 37.789404066844675 ], [ -122.42154479026794, 37.78907339838317 ], [ -122.42187201976776, 37.789031004883654 ], [ -122.42194175720215, 37.78936167353485 ], [ -122.42194175720215, 37.78936167353485 ], [ -122.42194175720215, 37.78936167353485 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4108749628067, 37.78915394596523 ], [ -122.41074085235596, 37.78917090333976 ], [ -122.41073548793794, 37.78914122793181 ], [ -122.41059601306915, 37.78915818530923 ], [ -122.41056382656097, 37.78916242465299 ], [ -122.41054773330688, 37.789064919685224 ], [ -122.4108535051346, 37.78902676553237 ], [ -122.41087496280672, 37.78915394596523 ], [ -122.41087496280672, 37.78915394596523 ], [ -122.4108749628067, 37.78915394596523 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41407215595245, 37.789107313165275 ], [ -122.41378247737885, 37.789145467276526 ], [ -122.41376101970673, 37.789064919685224 ], [ -122.41405069828033, 37.78902252618086 ], [ -122.41407215595245, 37.789107313165275 ], [ -122.41407215595245, 37.789107313165275 ], [ -122.41407215595245, 37.789107313165275 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41572976112366, 37.78919210005242 ], [ -122.41549372673036, 37.78921753609959 ], [ -122.41546154022218, 37.78903524423471 ], [ -122.41569221019746, 37.78900980812477 ], [ -122.41572976112366, 37.78919210005242 ], [ -122.41572976112366, 37.78919210005242 ], [ -122.41572976112366, 37.78919210005242 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4158638715744, 37.78917514268277 ], [ -122.41576194763184, 37.78918362136809 ], [ -122.4157351255417, 37.788980132652135 ], [ -122.41582632064821, 37.788971653943484 ], [ -122.4158638715744, 37.78917514268277 ], [ -122.4158638715744, 37.78917514268277 ], [ -122.4158638715744, 37.78917514268277 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41351962089539, 37.78907339838317 ], [ -122.41332113742828, 37.78910307381837 ], [ -122.41329431533813, 37.78898437200612 ], [ -122.41349279880524, 37.78895893587867 ], [ -122.41351962089539, 37.78907339838317 ], [ -122.41351962089539, 37.78907339838317 ], [ -122.41351962089539, 37.78907339838317 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41138458251953, 37.78930232286027 ], [ -122.41119682788849, 37.78932775886951 ], [ -122.41115927696228, 37.78912003120455 ], [ -122.41108953952791, 37.7891285098962 ], [ -122.41113781929016, 37.78937015219877 ], [ -122.41096615791321, 37.78939134885428 ], [ -122.41088569164276, 37.78900980812479 ], [ -122.41131484508514, 37.788954696523255 ], [ -122.41138458251953, 37.78930232286027 ], [ -122.41138458251953, 37.78930232286027 ], [ -122.41138458251953, 37.78930232286027 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4140077829361, 37.78902676553237 ], [ -122.41376101970673, 37.78906068033588 ], [ -122.4137395620346, 37.78896741458879 ], [ -122.41398632526398, 37.788933499742484 ], [ -122.4140077829361, 37.78902676553237 ], [ -122.4140077829361, 37.78902676553237 ], [ -122.4140077829361, 37.78902676553237 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4152684211731, 37.78925569015392 ], [ -122.41494655609131, 37.789298083524535 ], [ -122.41491436958313, 37.789149706621 ], [ -122.41505920886993, 37.78912850989617 ], [ -122.41504848003387, 37.78907339838317 ], [ -122.41491436958313, 37.78909035577617 ], [ -122.41488218307495, 37.78895045716757 ], [ -122.41519331932068, 37.78891230295563 ], [ -122.4152684211731, 37.78925569015392 ], [ -122.4152684211731, 37.78925569015392 ], [ -122.4152684211731, 37.78925569015392 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41627156734467, 37.78898861135982 ], [ -122.41624474525453, 37.78898861135982 ], [ -122.41626620292665, 37.78913274924163 ], [ -122.41615355014802, 37.789145467276526 ], [ -122.41611599922182, 37.78892502102847 ], [ -122.41626083850862, 37.78891230295563 ], [ -122.41627156734468, 37.78898861135982 ], [ -122.41627156734468, 37.78898861135982 ], [ -122.41627156734467, 37.78898861135982 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41170644760132, 37.78913274924163 ], [ -122.41155624389648, 37.789149706621 ], [ -122.4115401506424, 37.78907339838317 ], [ -122.4115777015686, 37.78906915903432 ], [ -122.41156697273254, 37.78900132941952 ], [ -122.41154551506042, 37.78900556877228 ], [ -122.41152942180634, 37.78892502102847 ], [ -122.41166889667511, 37.78890806359755 ], [ -122.4116849899292, 37.78902252618086 ], [ -122.41170644760132, 37.78913274924163 ], [ -122.41170644760132, 37.78913274924163 ], [ -122.41170644760132, 37.78913274924163 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4160623550415, 37.78915394596523 ], [ -122.41597115993501, 37.78916242465299 ], [ -122.41592824459076, 37.78891654231348 ], [ -122.41601943969727, 37.7889038242392 ], [ -122.4160623550415, 37.78915394596523 ], [ -122.4160623550415, 37.78915394596523 ], [ -122.4160623550415, 37.78915394596523 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41175472736359, 37.78901404747704 ], [ -122.4116849899292, 37.78902252618086 ], [ -122.41166889667511, 37.78890806359755 ], [ -122.41173326969147, 37.7889038242392 ], [ -122.41175472736359, 37.78901404747704 ], [ -122.41175472736359, 37.78901404747704 ], [ -122.41175472736359, 37.78901404747704 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41186201572418, 37.78912003120455 ], [ -122.4117761850357, 37.78912850989617 ], [ -122.41176009178162, 37.78906068033585 ], [ -122.41175472736359, 37.78901404747704 ], [ -122.41173326969147, 37.7889038242392 ], [ -122.4117922782898, 37.788895345521766 ], [ -122.41181373596191, 37.78889958488058 ], [ -122.41182446479797, 37.78891230295563 ], [ -122.41186201572418, 37.78912003120455 ], [ -122.41186201572418, 37.78912003120455 ], [ -122.41186201572418, 37.78912003120455 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41976380348206, 37.78919633939423 ], [ -122.41940975189209, 37.78923449345951 ], [ -122.41934537887573, 37.7889207816711 ], [ -122.4196994304657, 37.78888262744385 ], [ -122.41976380348206, 37.78919633939423 ], [ -122.41976380348206, 37.78919633939423 ], [ -122.41976380348206, 37.78919633939423 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41615355014801, 37.789145467276526 ], [ -122.4160623550415, 37.78915394596523 ], [ -122.41601943969727, 37.7889038242392 ], [ -122.41601407527925, 37.78886567000316 ], [ -122.41610527038574, 37.78885719128138 ], [ -122.4161159992218, 37.78892502102847 ], [ -122.41615355014801, 37.789145467276526 ], [ -122.41615355014801, 37.789145467276526 ], [ -122.41615355014801, 37.789145467276526 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4123340845108, 37.78908611642829 ], [ -122.41205513477325, 37.78912427055049 ], [ -122.41200149059296, 37.7888911061627 ], [ -122.41228580474854, 37.78885295192013 ], [ -122.4123340845108, 37.78908611642829 ], [ -122.4123340845108, 37.78908611642829 ], [ -122.4123340845108, 37.78908611642829 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41349279880524, 37.788954696523255 ], [ -122.41328895092012, 37.78898437200612 ], [ -122.413267493248, 37.788878388084036 ], [ -122.41347134113312, 37.78885295192013 ], [ -122.41349279880524, 37.788954696523255 ], [ -122.41349279880524, 37.788954696523255 ], [ -122.41349279880524, 37.788954696523255 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.415971159935, 37.78916242465299 ], [ -122.41586387157439, 37.78917514268277 ], [ -122.4158263206482, 37.788971653943484 ], [ -122.41580486297607, 37.7888529519201 ], [ -122.41591215133667, 37.788840233834875 ], [ -122.41592824459076, 37.78891654231348 ], [ -122.415971159935, 37.78916242465299 ], [ -122.415971159935, 37.78916242465299 ], [ -122.415971159935, 37.78916242465299 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41736054420471, 37.788963175233846 ], [ -122.41720497608185, 37.78898437200612 ], [ -122.41719424724579, 37.78893773909911 ], [ -122.41721034049988, 37.78893773909911 ], [ -122.41719961166382, 37.7888868668034 ], [ -122.41718888282776, 37.7888911061627 ], [ -122.4171781539917, 37.78885719128138 ], [ -122.41733372211456, 37.78883599447265 ], [ -122.41734445095062, 37.788878388084036 ], [ -122.41732835769653, 37.788878388084036 ], [ -122.41733372211456, 37.7889207816711 ], [ -122.41734981536864, 37.7889207816711 ], [ -122.4173605442047, 37.788963175233846 ], [ -122.4173605442047, 37.788963175233846 ], [ -122.41736054420471, 37.788963175233846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41720497608185, 37.78898437200612 ], [ -122.41711914539337, 37.78899285071331 ], [ -122.41708695888519, 37.78884871255861 ], [ -122.4171781539917, 37.78883599447265 ], [ -122.4171781539917, 37.78885719128138 ], [ -122.41718888282776, 37.7888911061627 ], [ -122.41719424724577, 37.78893773909911 ], [ -122.41720497608183, 37.78898437200612 ], [ -122.41720497608183, 37.78898437200612 ], [ -122.41720497608185, 37.78898437200612 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41254329681396, 37.789145467276526 ], [ -122.41235554218292, 37.78917090333976 ], [ -122.41228580474854, 37.7888529519201 ], [ -122.41247892379761, 37.78882751574746 ], [ -122.41254329681396, 37.789145467276526 ], [ -122.41254329681396, 37.789145467276526 ], [ -122.41254329681396, 37.789145467276526 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41569757461548, 37.78899285071331 ], [ -122.41545617580414, 37.78901828682906 ], [ -122.41542398929596, 37.78884871255861 ], [ -122.4156653881073, 37.78882327638447 ], [ -122.41569757461548, 37.78899285071331 ], [ -122.41569757461548, 37.78899285071331 ], [ -122.41569757461548, 37.78899285071331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41263449192047, 37.78903524423471 ], [ -122.41252720355988, 37.789047962286396 ], [ -122.41247892379761, 37.78882751574746 ], [ -122.4125862121582, 37.78881055829413 ], [ -122.41263449192047, 37.78903524423471 ], [ -122.41263449192047, 37.78903524423471 ], [ -122.41263449192047, 37.78903524423471 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41691529750824, 37.78903524423471 ], [ -122.41660416126251, 37.78906915903432 ], [ -122.4165987968445, 37.789031004883654 ], [ -122.41652369499208, 37.78903948358551 ], [ -122.4164915084839, 37.7888529519201 ], [ -122.416689991951, 37.78883175511017 ], [ -122.416872382164, 37.7888063189302 ], [ -122.41691529750824, 37.78903524423471 ], [ -122.41691529750824, 37.78903524423471 ], [ -122.41691529750824, 37.78903524423471 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41758048534393, 37.78893773909911 ], [ -122.41736054420471, 37.788963175233846 ], [ -122.41734445095062, 37.788878388084036 ], [ -122.41733372211456, 37.78883599447265 ], [ -122.41733372211456, 37.78883175511017 ], [ -122.41755902767181, 37.7888063189302 ], [ -122.41756975650787, 37.78885719128138 ], [ -122.41758048534393, 37.78893773909911 ], [ -122.41758048534393, 37.78893773909911 ], [ -122.41758048534393, 37.78893773909911 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4165290594101, 37.78909035577617 ], [ -122.41630911827087, 37.78911579185838 ], [ -122.41628766059875, 37.78900132941952 ], [ -122.41631984710693, 37.78900132941952 ], [ -122.41630375385284, 37.7889038242392 ], [ -122.4162608385086, 37.78891230295563 ], [ -122.41624474525453, 37.78881055829413 ], [ -122.41638958454134, 37.7887978402016 ], [ -122.4164003133774, 37.78886143064241 ], [ -122.4164915084839, 37.78885295192013 ], [ -122.41652369499208, 37.78903948358551 ], [ -122.4165290594101, 37.78909035577619 ], [ -122.4165290594101, 37.78909035577619 ], [ -122.4165290594101, 37.78909035577617 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41288125514984, 37.78913274924163 ], [ -122.41266131401062, 37.78915818530923 ], [ -122.4125862121582, 37.78881055829413 ], [ -122.41280615329742, 37.78878512210689 ], [ -122.41288125514984, 37.78913274924163 ], [ -122.41288125514984, 37.78913274924163 ], [ -122.41288125514984, 37.78913274924163 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4101185798645, 37.7889207816711 ], [ -122.40987181663515, 37.788954696523255 ], [ -122.40983963012695, 37.78880207956601 ], [ -122.41008639335632, 37.788768164643834 ], [ -122.4101185798645, 37.7889207816711 ], [ -122.4101185798645, 37.7889207816711 ], [ -122.4101185798645, 37.7889207816711 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41301536560059, 37.78913274924163 ], [ -122.41288661956786, 37.78915394596523 ], [ -122.41280615329742, 37.78878512210689 ], [ -122.41294026374817, 37.788763925277465 ], [ -122.41301536560059, 37.78913274924163 ], [ -122.41301536560059, 37.78913274924163 ], [ -122.41301536560059, 37.78913274924163 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4156653881073, 37.7888232763845 ], [ -122.41542398929596, 37.78884871255861 ], [ -122.4154132604599, 37.78878512210689 ], [ -122.41551518440247, 37.788772404009954 ], [ -122.41552054882048, 37.78878512210689 ], [ -122.41554737091063, 37.78878088274148 ], [ -122.41554737091063, 37.788768164643834 ], [ -122.41565465927123, 37.788751207176915 ], [ -122.41566538810729, 37.78882327638447 ], [ -122.41566538810729, 37.78882327638447 ], [ -122.4156653881073, 37.7888232763845 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41324067115784, 37.78908187708016 ], [ -122.4130153656006, 37.78911579185838 ], [ -122.41298854351045, 37.78899709006656 ], [ -122.41303145885469, 37.78899285071331 ], [ -122.41301000118257, 37.788878388084036 ], [ -122.41296708583833, 37.7888868668034 ], [ -122.41294026374818, 37.788763925277465 ], [ -122.41316556930543, 37.78873424970608 ], [ -122.41319239139558, 37.78885295192013 ], [ -122.41314411163331, 37.78886143064241 ], [ -122.41316556930543, 37.78897589329795 ], [ -122.4132138490677, 37.78896741458879 ], [ -122.41324067115784, 37.78908187708016 ], [ -122.41324067115784, 37.78908187708016 ], [ -122.41324067115784, 37.78908187708016 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40950167179108, 37.78900980812477 ], [ -122.40950167179108, 37.78900980812477 ], [ -122.40950167179108, 37.78899709006654 ], [ -122.40950167179108, 37.78900980812477 ], [ -122.40950167179108, 37.78900980812477 ], [ -122.40950167179108, 37.78900980812477 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41347134113312, 37.7888529519201 ], [ -122.4131977558136, 37.7888868668034 ], [ -122.41316556930542, 37.78873424970608 ], [ -122.41343915462494, 37.78870033475276 ], [ -122.41347134113312, 37.7888529519201 ], [ -122.41347134113312, 37.7888529519201 ], [ -122.41347134113312, 37.7888529519201 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41781651973724, 37.78891230295563 ], [ -122.41769313812256, 37.78892502102847 ], [ -122.4176824092865, 37.78885295192013 ], [ -122.41769313812256, 37.78885295192013 ], [ -122.41766631603241, 37.78870457412277 ], [ -122.41775751113892, 37.788691856012 ], [ -122.4177896976471, 37.78884447319687 ], [ -122.41780579090118, 37.788840233834875 ], [ -122.41781651973724, 37.78891230295563 ], [ -122.41781651973724, 37.78891230295563 ], [ -122.41781651973724, 37.78891230295563 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42262840270996, 37.78884447319687 ], [ -122.42228507995605, 37.7888911061627 ], [ -122.42225289344788, 37.78873424970608 ], [ -122.42259085178375, 37.78868761664125 ], [ -122.42262840270996, 37.78884447319687 ], [ -122.42262840270996, 37.78884447319687 ], [ -122.42262840270996, 37.78884447319687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40964651107788, 37.78899285071331 ], [ -122.40950167179108, 37.78900980812477 ], [ -122.40950167179108, 37.78899709006654 ], [ -122.40950167179108, 37.78869609538249 ], [ -122.40958213806152, 37.788683377270274 ], [ -122.40964651107788, 37.78899285071331 ], [ -122.40964651107788, 37.78899285071331 ], [ -122.40964651107788, 37.78899285071331 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41735517978668, 37.78880207956601 ], [ -122.41726934909819, 37.78881055829413 ], [ -122.41726398468018, 37.78879360083693 ], [ -122.41718351840973, 37.78880207956601 ], [ -122.41718351840973, 37.78881479765783 ], [ -122.41708695888519, 37.78882751574746 ], [ -122.41706013679504, 37.788708813492555 ], [ -122.4171245098114, 37.78870033475276 ], [ -122.41715133190155, 37.78869609538249 ], [ -122.41716742515564, 37.78869609538249 ], [ -122.41716742515564, 37.78871305286208 ], [ -122.41724252700806, 37.78870457412277 ], [ -122.41724252700806, 37.788691856012 ], [ -122.41733372211456, 37.78867913789904 ], [ -122.41735517978668, 37.78880207956601 ], [ -122.41735517978668, 37.78880207956601 ], [ -122.41735517978668, 37.78880207956601 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41518259048462, 37.788878388084036 ], [ -122.41471588611603, 37.78892926038561 ], [ -122.41467833518982, 37.78873001033775 ], [ -122.41514503955841, 37.78867489852755 ], [ -122.41518259048462, 37.788878388084036 ], [ -122.41518259048462, 37.788878388084036 ], [ -122.41518259048462, 37.788878388084036 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41009712219238, 37.788768164643834 ], [ -122.40983963012695, 37.78880207956601 ], [ -122.40981817245483, 37.78870033475276 ], [ -122.41007566452026, 37.788666419783866 ], [ -122.41009712219238, 37.788768164643834 ], [ -122.41009712219238, 37.788768164643834 ], [ -122.41009712219238, 37.788768164643834 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41568148136139, 37.788751207176915 ], [ -122.41565465927124, 37.788751207176915 ], [ -122.41554737091064, 37.788768164643834 ], [ -122.41551518440247, 37.788772404009954 ], [ -122.4154132604599, 37.78878512210689 ], [ -122.41539180278778, 37.78868761664125 ], [ -122.41547763347626, 37.78867489852755 ], [ -122.41548299789429, 37.788691856012 ], [ -122.4155741930008, 37.78867913789904 ], [ -122.4155741930008, 37.788666419783866 ], [ -122.41566002368927, 37.788653701666526 ], [ -122.41568148136139, 37.788751207176915 ], [ -122.41568148136139, 37.788751207176915 ], [ -122.41568148136139, 37.788751207176915 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41834223270416, 37.78884447319687 ], [ -122.41825103759767, 37.78885719128138 ], [ -122.41823494434358, 37.78878512210689 ], [ -122.41825103759767, 37.78878512210689 ], [ -122.41824030876161, 37.78872577096919 ], [ -122.41822421550752, 37.78872577096919 ], [ -122.41821348667146, 37.78865794103921 ], [ -122.41830468177797, 37.78864946229359 ], [ -122.41832077503204, 37.788717292231354 ], [ -122.41829931735992, 37.7887215316004 ], [ -122.41831004619598, 37.78878088274148 ], [ -122.4183315038681, 37.78877664337584 ], [ -122.41834223270416, 37.78884447319687 ], [ -122.41834223270416, 37.78884447319687 ], [ -122.41834223270416, 37.78884447319687 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41402387619019, 37.78889958488061 ], [ -122.41372883319853, 37.78893773909911 ], [ -122.41366982460022, 37.788670659155834 ], [ -122.41397023200987, 37.788636744173324 ], [ -122.41398632526396, 37.78874272844198 ], [ -122.41390585899352, 37.788755446544 ], [ -122.41391658782958, 37.78881055829413 ], [ -122.41400241851807, 37.78880207956601 ], [ -122.41402387619019, 37.78889958488061 ], [ -122.41402387619019, 37.78889958488061 ], [ -122.41402387619019, 37.78889958488061 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41081595420837, 37.78885719128138 ], [ -122.4105852842331, 37.7888868668034 ], [ -122.41053700447083, 37.788653701666526 ], [ -122.41076767444612, 37.788624026050876 ], [ -122.41078913211824, 37.78874272844198 ], [ -122.41081595420837, 37.78885719128138 ], [ -122.41081595420837, 37.78885719128138 ], [ -122.41081595420837, 37.78885719128138 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41417407989502, 37.78886990936371 ], [ -122.41401851177216, 37.7888868668034 ], [ -122.4140077829361, 37.78881479765783 ], [ -122.41403460502625, 37.78881055829413 ], [ -122.41401314735413, 37.78873001033775 ], [ -122.41398632526398, 37.78873001033775 ], [ -122.41397023200989, 37.788636744173324 ], [ -122.4141311645508, 37.788619786676236 ], [ -122.41414725780487, 37.788725770969215 ], [ -122.41411507129669, 37.788725770969215 ], [ -122.41413116455078, 37.78877664337584 ], [ -122.41415798664093, 37.78877664337584 ], [ -122.414174079895, 37.78886990936371 ], [ -122.414174079895, 37.78886990936371 ], [ -122.41417407989502, 37.78886990936371 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40987181663513, 37.788963175233846 ], [ -122.40964651107788, 37.78899285071331 ], [ -122.40958213806152, 37.788683377270274 ], [ -122.4095767736435, 37.78864522292042 ], [ -122.40980207920074, 37.78861554730136 ], [ -122.40981817245483, 37.78870033475276 ], [ -122.40983963012695, 37.78880207956601 ], [ -122.40987181663513, 37.788963175233846 ], [ -122.40987181663513, 37.788963175233846 ], [ -122.40987181663513, 37.788963175233846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41796135902405, 37.788895345521794 ], [ -122.41781651973724, 37.78891230295563 ], [ -122.41780579090118, 37.788840233834875 ], [ -122.41776823997498, 37.78863250479942 ], [ -122.41791307926178, 37.78861554730136 ], [ -122.41795063018799, 37.78881479765786 ], [ -122.41796135902405, 37.788895345521794 ], [ -122.41796135902405, 37.788895345521794 ], [ -122.41796135902405, 37.788895345521794 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42182910442352, 37.788751207176915 ], [ -122.4215018749237, 37.78879360083693 ], [ -122.42147505283356, 37.788653701666526 ], [ -122.42180228233339, 37.78861130792624 ], [ -122.42182910442352, 37.788751207176915 ], [ -122.42182910442352, 37.788751207176915 ], [ -122.42182910442352, 37.788751207176915 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41769313812256, 37.78892502102847 ], [ -122.41758048534393, 37.78893773909911 ], [ -122.41756975650787, 37.78885719128138 ], [ -122.41760194301605, 37.78885295192013 ], [ -122.41758048534393, 37.78871305286208 ], [ -122.41754829883575, 37.788717292231354 ], [ -122.41753220558168, 37.788624026050876 ], [ -122.41763412952423, 37.78861130792624 ], [ -122.4176824092865, 37.78885295192013 ], [ -122.41769313812256, 37.78892502102847 ], [ -122.41769313812256, 37.78892502102847 ], [ -122.41769313812256, 37.78892502102847 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41805791854858, 37.78880207956601 ], [ -122.41795063018799, 37.78881479765783 ], [ -122.41791307926178, 37.78861554730136 ], [ -122.41802036762238, 37.78860282917525 ], [ -122.41805791854858, 37.78880207956601 ], [ -122.41805791854858, 37.78880207956601 ], [ -122.41805791854858, 37.78880207956601 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.416872382164, 37.7888063189302 ], [ -122.416689991951, 37.78883175511017 ], [ -122.41666316986085, 37.788691856012 ], [ -122.41652369499208, 37.78871305286208 ], [ -122.41650760173799, 37.788640983547005 ], [ -122.41652369499208, 37.788640983547005 ], [ -122.41682946681978, 37.788598589799406 ], [ -122.41687238216402, 37.7888063189302 ], [ -122.41687238216402, 37.7888063189302 ], [ -122.416872382164, 37.7888063189302 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4145495891571, 37.788963175233846 ], [ -122.41432428359985, 37.78898861135982 ], [ -122.41424381732942, 37.78861554730136 ], [ -122.4144744873047, 37.78858587167039 ], [ -122.41454958915712, 37.788963175233846 ], [ -122.41454958915712, 37.788963175233846 ], [ -122.4145495891571, 37.788963175233846 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41853535175323, 37.7888232763845 ], [ -122.41834223270416, 37.78884447319687 ], [ -122.4183315038681, 37.78877664337584 ], [ -122.41832077503204, 37.788717292231354 ], [ -122.41830468177797, 37.78864946229359 ], [ -122.41829931735994, 37.78860706855085 ], [ -122.41835832595827, 37.788598589799406 ], [ -122.4184173345566, 37.788590111046965 ], [ -122.41848707199097, 37.788581632293536 ], [ -122.41853535175323, 37.78882327638447 ], [ -122.41853535175323, 37.78882327638447 ], [ -122.41853535175323, 37.7888232763845 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.414710521698, 37.78891230295563 ], [ -122.41454422473907, 37.788933499742484 ], [ -122.414528131485, 37.78885295192013 ], [ -122.41455495357513, 37.78884871255861 ], [ -122.41452276706696, 37.78867913789904 ], [ -122.41449594497682, 37.788683377270274 ], [ -122.4144744873047, 37.78858587167039 ], [ -122.4146354198456, 37.78856467478382 ], [ -122.41465687751771, 37.78866218041166 ], [ -122.4146354198456, 37.788666419783866 ], [ -122.4146729707718, 37.78883599447265 ], [ -122.41469442844392, 37.78883175511017 ], [ -122.414710521698, 37.78891230295563 ], [ -122.414710521698, 37.78891230295563 ], [ -122.414710521698, 37.78891230295563 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41161525249481, 37.788755446544 ], [ -122.41145431995392, 37.78877664337584 ], [ -122.41141140460968, 37.78857739291647 ], [ -122.41157233715057, 37.788556196027486 ], [ -122.41161525249481, 37.788755446544 ], [ -122.41161525249481, 37.788755446544 ], [ -122.41161525249481, 37.788755446544 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4100810289383, 37.788666419783866 ], [ -122.40981817245483, 37.78870033475276 ], [ -122.40979671478271, 37.788590111046965 ], [ -122.40987181663513, 37.7885773929165 ], [ -122.41005420684813, 37.788556196027486 ], [ -122.41008102893828, 37.788666419783866 ], [ -122.41008102893828, 37.788666419783866 ], [ -122.4100810289383, 37.788666419783866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41478025913239, 37.78870457412277 ], [ -122.41466760635376, 37.7887215316004 ], [ -122.41463541984558, 37.78856467478382 ], [ -122.4147480726242, 37.78855195664895 ], [ -122.41478025913239, 37.78870457412277 ], [ -122.41478025913239, 37.78870457412277 ], [ -122.41478025913239, 37.78870457412277 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41750538349152, 37.78864522292042 ], [ -122.41745173931122, 37.788653701666526 ], [ -122.41744637489319, 37.78863250479942 ], [ -122.41739809513093, 37.788636744173324 ], [ -122.4173927307129, 37.78861554730136 ], [ -122.41722106933595, 37.788636744173324 ], [ -122.41723179817201, 37.78868761664125 ], [ -122.41716742515564, 37.78869609538249 ], [ -122.41715133190156, 37.78869609538249 ], [ -122.41715133190156, 37.788683377270274 ], [ -122.41711914539339, 37.78868761664125 ], [ -122.4171245098114, 37.78870033475276 ], [ -122.41706013679504, 37.788708813492555 ], [ -122.41704404354097, 37.78860282917525 ], [ -122.41742491722107, 37.788556196027486 ], [ -122.41748929023743, 37.78854771727019 ], [ -122.41750538349152, 37.78864522292042 ], [ -122.41750538349152, 37.78864522292042 ], [ -122.41750538349152, 37.78864522292042 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41497337818146, 37.788670659155834 ], [ -122.41477489471436, 37.78869609538249 ], [ -122.4147480726242, 37.78855195664898 ], [ -122.41494655609131, 37.78852652037268 ], [ -122.41497337818146, 37.788670659155834 ], [ -122.41497337818146, 37.788670659155834 ], [ -122.41497337818146, 37.788670659155834 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41682946681976, 37.788598589799406 ], [ -122.41652369499207, 37.788640983547005 ], [ -122.416512966156, 37.788568914161615 ], [ -122.41660416126251, 37.78856043540577 ], [ -122.41660952568053, 37.7885773929165 ], [ -122.41668462753294, 37.78856467478382 ], [ -122.41667926311493, 37.78853923851192 ], [ -122.4168187379837, 37.78852228099244 ], [ -122.41682946681976, 37.788598589799406 ], [ -122.41682946681976, 37.788598589799406 ], [ -122.41682946681976, 37.788598589799406 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41177082061768, 37.78873424970608 ], [ -122.41161525249481, 37.788755446544 ], [ -122.41157233715057, 37.788556196027486 ], [ -122.41156697273254, 37.78853499913242 ], [ -122.41172254085541, 37.78851380223124 ], [ -122.41177082061768, 37.78873424970608 ], [ -122.41177082061768, 37.78873424970608 ], [ -122.41177082061768, 37.78873424970608 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41514503955841, 37.78867489852755 ], [ -122.41497874259949, 37.78869609538249 ], [ -122.41494655609131, 37.78852652037268 ], [ -122.41511285305023, 37.78850532346909 ], [ -122.41514503955841, 37.78867489852755 ], [ -122.41514503955841, 37.78867489852755 ], [ -122.41514503955841, 37.78867489852755 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41069793701172, 37.78861130792624 ], [ -122.4105316400528, 37.78863250479942 ], [ -122.41053700447083, 37.788653701666526 ], [ -122.41058528423308, 37.7888868668034 ], [ -122.41034388542174, 37.7889207816711 ], [ -122.41026878356932, 37.788556196027486 ], [ -122.41067647933959, 37.78850108408765 ], [ -122.4106979370117, 37.78861130792624 ], [ -122.4106979370117, 37.78861130792624 ], [ -122.41069793701172, 37.78861130792624 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41825103759766, 37.78885719128138 ], [ -122.41807401180267, 37.788878388084036 ], [ -122.41805791854858, 37.78880207956601 ], [ -122.41802036762238, 37.78860282917525 ], [ -122.4180042743683, 37.78852228099244 ], [ -122.41818130016328, 37.78850108408765 ], [ -122.41821348667146, 37.78865794103921 ], [ -122.41822421550752, 37.788725770969215 ], [ -122.41823494434358, 37.78878512210689 ], [ -122.41825103759767, 37.78885719128138 ], [ -122.41825103759767, 37.78885719128138 ], [ -122.41825103759766, 37.78885719128138 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41099298000336, 37.78883599447265 ], [ -122.41081595420837, 37.78885719128138 ], [ -122.41078913211824, 37.78874272844198 ], [ -122.41081595420837, 37.788738489074134 ], [ -122.41076767444612, 37.78850108408765 ], [ -122.41089642047884, 37.78848412655941 ], [ -122.4109447002411, 37.78873001033775 ], [ -122.41097152233124, 37.78872577096919 ], [ -122.41099298000336, 37.78883599447265 ], [ -122.41099298000336, 37.78883599447265 ], [ -122.41099298000336, 37.78883599447265 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41120219230652, 37.78881055829413 ], [ -122.41099298000336, 37.78883599447265 ], [ -122.41097152233124, 37.788725770969215 ], [ -122.41097152233124, 37.788708813492555 ], [ -122.41099298000336, 37.788708813492555 ], [ -122.41095006465912, 37.788492605324016 ], [ -122.41110563278198, 37.78847140841073 ], [ -122.41114854812622, 37.788683377270274 ], [ -122.41117537021637, 37.78867913789904 ], [ -122.41120219230652, 37.78881055829413 ], [ -122.41120219230652, 37.78881055829413 ], [ -122.41120219230652, 37.78881055829413 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42069721221924, 37.78854771727019 ], [ -122.4204236268997, 37.78858587167039 ], [ -122.42041289806365, 37.78854771727019 ], [ -122.42040216922759, 37.78850532346909 ], [ -122.42061138153076, 37.788479887176756 ], [ -122.42068111896513, 37.78846716902731 ], [ -122.42068111896513, 37.78846716902731 ], [ -122.42069721221922, 37.78854771727019 ], [ -122.42069721221922, 37.78854771727019 ], [ -122.42069721221924, 37.78854771727019 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41848707199097, 37.788581632293536 ], [ -122.4184173345566, 37.788590111046965 ], [ -122.41841197013856, 37.78856043540577 ], [ -122.41835296154024, 37.788568914161615 ], [ -122.41835832595827, 37.788598589799406 ], [ -122.41829931735994, 37.78860706855088 ], [ -122.41823494434358, 37.78861130792624 ], [ -122.41821348667146, 37.788492605324016 ], [ -122.41829931735994, 37.78848412655941 ], [ -122.41829931735994, 37.78850108408765 ], [ -122.41833150386812, 37.78850108408765 ], [ -122.41833150386812, 37.788509562850294 ], [ -122.41839051246644, 37.78850108408765 ], [ -122.41840660572053, 37.78850108408765 ], [ -122.41840660572053, 37.78848836594184 ], [ -122.4184012413025, 37.78847140841073 ], [ -122.41846561431886, 37.78846292964368 ], [ -122.41848707199098, 37.788581632293536 ], [ -122.41848707199098, 37.788581632293536 ], [ -122.41848707199097, 37.788581632293536 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41567611694336, 37.788624026050876 ], [ -122.41539180278778, 37.78865794103921 ], [ -122.41535425186157, 37.78846716902731 ], [ -122.41551518440248, 37.78845021149131 ], [ -122.41563856601717, 37.78843325395142 ], [ -122.41567611694336, 37.788624026050876 ], [ -122.41567611694336, 37.788624026050876 ], [ -122.41567611694336, 37.788624026050876 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41208732128143, 37.78868761664125 ], [ -122.41198539733888, 37.78870033475276 ], [ -122.41193175315857, 37.78843325395142 ], [ -122.412006855011, 37.78842477518002 ], [ -122.41201221942902, 37.78845021149131 ], [ -122.41203904151917, 37.78844597210669 ], [ -122.41208732128143, 37.78868761664125 ], [ -122.41208732128143, 37.78868761664125 ], [ -122.41208732128143, 37.78868761664125 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41145431995392, 37.78877664337584 ], [ -122.41120219230652, 37.78881055829413 ], [ -122.41117537021637, 37.78867913789904 ], [ -122.4111270904541, 37.78845021149131 ], [ -122.4113792181015, 37.78842053579395 ], [ -122.41140067577362, 37.788518041611965 ], [ -122.41141140460968, 37.7885773929165 ], [ -122.41145431995393, 37.78877664337584 ], [ -122.41145431995393, 37.78877664337584 ], [ -122.41145431995392, 37.78877664337584 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41742491722107, 37.788556196027486 ], [ -122.41704404354097, 37.78860282917525 ], [ -122.41701722145082, 37.7884586902598 ], [ -122.41710841655733, 37.78844597210669 ], [ -122.41733372211456, 37.788420535793925 ], [ -122.41739809513093, 37.788412057021056 ], [ -122.41742491722107, 37.788556196027486 ], [ -122.41742491722107, 37.788556196027486 ], [ -122.41742491722107, 37.788556196027486 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41589069366455, 37.78874696780958 ], [ -122.41572976112366, 37.788763925277465 ], [ -122.41570830345152, 37.788653701666526 ], [ -122.41573512554167, 37.78864946229359 ], [ -122.4156868457794, 37.78842477518002 ], [ -122.41575658321379, 37.78841629640763 ], [ -122.41582095623015, 37.78840781763428 ], [ -122.41584241390227, 37.78852652037268 ], [ -122.41580486297607, 37.78853075975266 ], [ -122.4158263206482, 37.788636744173324 ], [ -122.41586387157439, 37.78863250479942 ], [ -122.41589069366454, 37.78874696780958 ], [ -122.41589069366454, 37.78874696780958 ], [ -122.41589069366455, 37.78874696780958 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41932928562164, 37.788738489074134 ], [ -122.41877675056458, 37.7888063189302 ], [ -122.41871237754822, 37.78847564779387 ], [ -122.41925954818726, 37.78840781763428 ], [ -122.41932928562163, 37.788738489074134 ], [ -122.41932928562163, 37.788738489074134 ], [ -122.41932928562164, 37.788738489074134 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42061138153076, 37.788479887176756 ], [ -122.4204021692276, 37.78850532346909 ], [ -122.42038607597352, 37.788429014565835 ], [ -122.42058992385864, 37.78839933885995 ], [ -122.42061138153076, 37.788479887176756 ], [ -122.42061138153076, 37.788479887176756 ], [ -122.42061138153076, 37.788479887176756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4207991361618, 37.78853499913242 ], [ -122.42069721221925, 37.78854771727019 ], [ -122.42068111896516, 37.78846716902731 ], [ -122.42068111896516, 37.78846292964368 ], [ -122.42069184780122, 37.78845445087567 ], [ -122.4206864833832, 37.78840781763428 ], [ -122.42076694965364, 37.78839933885995 ], [ -122.42079913616182, 37.78853499913242 ], [ -122.42079913616182, 37.78853499913242 ], [ -122.4207991361618, 37.78853499913242 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41941511631012, 37.78872577096919 ], [ -122.41932928562164, 37.788738489074134 ], [ -122.41925954818726, 37.78840781763428 ], [ -122.41935074329376, 37.78839509947241 ], [ -122.41941511631012, 37.78872577096919 ], [ -122.41941511631012, 37.78872577096919 ], [ -122.41941511631012, 37.78872577096919 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41609454154968, 37.788738489074134 ], [ -122.41589069366456, 37.788768164643834 ], [ -122.41589069366456, 37.78874696780958 ], [ -122.41586387157442, 37.78863250479942 ], [ -122.4158424139023, 37.78852652037268 ], [ -122.41582095623018, 37.78840781763428 ], [ -122.41587460041048, 37.78840357824722 ], [ -122.41603016853334, 37.78838662069664 ], [ -122.41604626178743, 37.78846716902731 ], [ -122.4160623550415, 37.78853499913242 ], [ -122.41594970226288, 37.78854771727019 ], [ -122.41596579551697, 37.788619786676236 ], [ -122.41606771945953, 37.78860282917525 ], [ -122.4160784482956, 37.78864522292042 ], [ -122.41609454154968, 37.78872577096919 ], [ -122.41609454154968, 37.788738489074134 ], [ -122.41609454154968, 37.788738489074134 ], [ -122.41609454154968, 37.788738489074134 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41266131401062, 37.788624026050876 ], [ -122.41218924522398, 37.78867913789904 ], [ -122.41214632987975, 37.78843325395142 ], [ -122.41225361824036, 37.78842477518002 ], [ -122.41225898265837, 37.78844173272184 ], [ -122.41246819496153, 37.78841629640763 ], [ -122.41246283054352, 37.78839933885995 ], [ -122.41260766983032, 37.78838662069664 ], [ -122.41261839866638, 37.78846716902731 ], [ -122.4126237630844, 37.788479887176756 ], [ -122.41262912750243, 37.78852228099244 ], [ -122.41263985633849, 37.78852228099244 ], [ -122.4126613140106, 37.788624026050876 ], [ -122.4126613140106, 37.788624026050876 ], [ -122.41266131401062, 37.788624026050876 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4195009469986, 37.788717292231354 ], [ -122.41941511631012, 37.78872577096919 ], [ -122.41935074329375, 37.78839509947241 ], [ -122.4194312095642, 37.78838238130836 ], [ -122.41950094699858, 37.788717292231354 ], [ -122.41950094699858, 37.788717292231354 ], [ -122.4195009469986, 37.788717292231354 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41967260837555, 37.78869609538249 ], [ -122.4195009469986, 37.788717292231354 ], [ -122.41943120956421, 37.78838238130836 ], [ -122.41960823535919, 37.78836118436342 ], [ -122.41967260837555, 37.78869609538249 ], [ -122.41967260837555, 37.78869609538249 ], [ -122.41967260837555, 37.78869609538249 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4163681268692, 37.788691856012 ], [ -122.41625547409058, 37.788708813492555 ], [ -122.41623938083649, 37.78864946229359 ], [ -122.41620182991029, 37.788653701666526 ], [ -122.41621255874635, 37.78871305286208 ], [ -122.41609454154968, 37.788725770969215 ], [ -122.41607844829561, 37.78864522292042 ], [ -122.41612136363985, 37.788640983547005 ], [ -122.41608381271364, 37.78846292964368 ], [ -122.41604626178746, 37.78846716902731 ], [ -122.41603016853337, 37.78838662069664 ], [ -122.41630911827092, 37.788352705583755 ], [ -122.41632521152498, 37.788429014565835 ], [ -122.41628229618074, 37.78843325395142 ], [ -122.41630911827089, 37.78861554730136 ], [ -122.41635739803316, 37.78861130792624 ], [ -122.41636812686922, 37.788691856012 ], [ -122.41636812686922, 37.788691856012 ], [ -122.4163681268692, 37.788691856012 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42153406143188, 37.788437493336744 ], [ -122.42144286632538, 37.78845021149131 ], [ -122.42142140865326, 37.788361184363445 ], [ -122.42151260375977, 37.78834846619357 ], [ -122.42153406143188, 37.788437493336744 ], [ -122.42153406143188, 37.788437493336744 ], [ -122.42153406143188, 37.788437493336744 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41644859313965, 37.78869609538249 ], [ -122.41641104221345, 37.78870033475276 ], [ -122.41641640663147, 37.78872577096919 ], [ -122.41637349128723, 37.78873001033775 ], [ -122.41636812686922, 37.788691856012 ], [ -122.41635739803316, 37.78861130792624 ], [ -122.41630911827089, 37.78861554730136 ], [ -122.41628229618074, 37.78843325395142 ], [ -122.41632521152498, 37.788429014565835 ], [ -122.41630911827092, 37.788352705583755 ], [ -122.41638958454136, 37.78834422680312 ], [ -122.41642713546754, 37.78855195664895 ], [ -122.41644859313966, 37.78869609538249 ], [ -122.41644859313966, 37.78869609538249 ], [ -122.41644859313965, 37.78869609538249 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41650760173798, 37.78854347789117 ], [ -122.41642713546753, 37.78855195664898 ], [ -122.41638958454134, 37.78834422680312 ], [ -122.41647005081177, 37.788335748021495 ], [ -122.41650760173798, 37.78854347789117 ], [ -122.41650760173798, 37.78854347789117 ], [ -122.41650760173798, 37.78854347789117 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41989254951477, 37.788666419783866 ], [ -122.41967260837555, 37.78869609538249 ], [ -122.41960823535919, 37.788361184363445 ], [ -122.41982281208038, 37.788335748021495 ], [ -122.41989254951476, 37.788666419783866 ], [ -122.41989254951476, 37.788666419783866 ], [ -122.41989254951477, 37.788666419783866 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41306900978088, 37.788568914161615 ], [ -122.41288661956787, 37.788598589799406 ], [ -122.41286516189575, 37.78850532346909 ], [ -122.41287589073181, 37.78850532346909 ], [ -122.41285979747774, 37.78843325395142 ], [ -122.41284906864168, 37.788437493336744 ], [ -122.41283297538759, 37.78835694497374 ], [ -122.41301000118257, 37.788331508630314 ], [ -122.41303145885469, 37.78841629640763 ], [ -122.41299927234651, 37.78842053579395 ], [ -122.4130153656006, 37.78849684470596 ], [ -122.4130529165268, 37.78848836594184 ], [ -122.41306900978088, 37.788568914161615 ], [ -122.41306900978088, 37.788568914161615 ], [ -122.41306900978088, 37.788568914161615 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42173254489899, 37.788412057021084 ], [ -122.42153406143188, 37.788437493336744 ], [ -122.42151260375977, 37.78834846619357 ], [ -122.42159843444824, 37.78833998741243 ], [ -122.42159843444824, 37.788361184363445 ], [ -122.42164134979248, 37.788352705583755 ], [ -122.42163598537446, 37.788331508630314 ], [ -122.42171108722688, 37.78832302984724 ], [ -122.421732544899, 37.788412057021084 ], [ -122.421732544899, 37.788412057021084 ], [ -122.42173254489899, 37.788412057021084 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41287589073181, 37.78860282917525 ], [ -122.41273105144501, 37.788624026050876 ], [ -122.41270422935487, 37.78852228099244 ], [ -122.41272568702699, 37.788518041611965 ], [ -122.41270422935487, 37.78844173272184 ], [ -122.41268277168275, 37.78844597210669 ], [ -122.4126559495926, 37.78834422680312 ], [ -122.4128168821335, 37.78831879045532 ], [ -122.41284370422365, 37.78842477518002 ], [ -122.41281151771547, 37.788429014565835 ], [ -122.41282761096956, 37.78849684470596 ], [ -122.41285443305969, 37.788492605324016 ], [ -122.41287589073181, 37.78860282917525 ], [ -122.41287589073181, 37.78860282917525 ], [ -122.41287589073181, 37.78860282917525 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41668462753296, 37.78856467478382 ], [ -122.41660952568054, 37.78857739291647 ], [ -122.41660416126251, 37.78856043540577 ], [ -122.41651296615602, 37.788568914161615 ], [ -122.41650760173799, 37.78854347789117 ], [ -122.41647005081178, 37.788335748021495 ], [ -122.41655051708223, 37.788327269238906 ], [ -122.4166363477707, 37.7883145510632 ], [ -122.41667926311494, 37.78853923851192 ], [ -122.41668462753297, 37.78856467478382 ], [ -122.41668462753297, 37.78856467478382 ], [ -122.41668462753296, 37.78856467478382 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41846561431885, 37.78844597210669 ], [ -122.41835296154022, 37.7884586902598 ], [ -122.4183475971222, 37.78844173272184 ], [ -122.41822421550752, 37.78845445087567 ], [ -122.41822957992555, 37.78847140841073 ], [ -122.41811692714693, 37.78848412655941 ], [ -122.4180954694748, 37.78835694497374 ], [ -122.41820812225342, 37.78833998741243 ], [ -122.41821348667145, 37.78835694497374 ], [ -122.41832613945007, 37.78834422680312 ], [ -122.41832077503204, 37.788327269238906 ], [ -122.41843879222871, 37.7883145510632 ], [ -122.41846561431885, 37.78844597210669 ], [ -122.41846561431885, 37.78844597210669 ], [ -122.41846561431885, 37.78844597210669 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42073476314545, 37.78838238130839 ], [ -122.42058992385864, 37.78839933885995 ], [ -122.42038607597352, 37.788429014565835 ], [ -122.42036998271944, 37.78834846619357 ], [ -122.42046117782594, 37.788335748021495 ], [ -122.42046654224396, 37.788352705583755 ], [ -122.42062747478487, 37.788331508630314 ], [ -122.42062211036684, 37.7883145510632 ], [ -122.42071866989137, 37.78830183288528 ], [ -122.42073476314546, 37.78838238130839 ], [ -122.42073476314546, 37.78838238130839 ], [ -122.42073476314545, 37.78838238130839 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4168187379837, 37.78852228099244 ], [ -122.41667926311493, 37.78853923851192 ], [ -122.41663634777069, 37.7883145510632 ], [ -122.41677045822144, 37.78830183288528 ], [ -122.41681873798369, 37.78852228099244 ], [ -122.41681873798369, 37.78852228099244 ], [ -122.4168187379837, 37.78852228099244 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42134630680084, 37.78846292964368 ], [ -122.42118000984192, 37.78848412655941 ], [ -122.42114245891571, 37.78832302984724 ], [ -122.42131412029268, 37.78829759349217 ], [ -122.42134630680086, 37.78846292964368 ], [ -122.42134630680086, 37.78846292964368 ], [ -122.42134630680084, 37.78846292964368 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42018759250641, 37.78862826542526 ], [ -122.41989254951476, 37.788666419783866 ], [ -122.41982281208038, 37.788335748021495 ], [ -122.42011785507202, 37.78829759349217 ], [ -122.42018759250641, 37.78862826542526 ], [ -122.42018759250641, 37.78862826542526 ], [ -122.42018759250641, 37.78862826542526 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41235554218292, 37.78837814191988 ], [ -122.41220533847809, 37.78839509947241 ], [ -122.41219997406006, 37.788373902531134 ], [ -122.4121356010437, 37.78838238130839 ], [ -122.41214096546173, 37.78840357824722 ], [ -122.41207122802734, 37.788412057021084 ], [ -122.41206586360931, 37.78839086008464 ], [ -122.41201758384706, 37.78839933885995 ], [ -122.41201758384706, 37.78842053579395 ], [ -122.41193175315857, 37.788429014565835 ], [ -122.41191029548645, 37.788331508630314 ], [ -122.41200149059296, 37.78831879045532 ], [ -122.41200685501099, 37.78833998741243 ], [ -122.41205513477325, 37.788335748021495 ], [ -122.41205513477325, 37.7883145510632 ], [ -122.41211950778961, 37.78830607227817 ], [ -122.41211950778961, 37.788327269238906 ], [ -122.41219460964203, 37.78831879045532 ], [ -122.412189245224, 37.7882933540988 ], [ -122.4123340845108, 37.7882763965229 ], [ -122.41235554218292, 37.78837814191988 ], [ -122.41235554218292, 37.78837814191988 ], [ -122.41235554218292, 37.78837814191988 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41343379020691, 37.78852652037268 ], [ -122.41317093372345, 37.78856467478382 ], [ -122.4131441116333, 37.7884586902598 ], [ -122.41318166255951, 37.78845021149131 ], [ -122.41314947605133, 37.78830607227817 ], [ -122.41337478160857, 37.78827215712833 ], [ -122.4134337902069, 37.78852652037268 ], [ -122.4134337902069, 37.78852652037268 ], [ -122.41343379020691, 37.78852652037268 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4207454919815, 37.78830183288528 ], [ -122.42071866989137, 37.78830183288528 ], [ -122.42062211036682, 37.7883145510632 ], [ -122.42046117782593, 37.788335748021495 ], [ -122.42036998271942, 37.78834846619357 ], [ -122.42035388946535, 37.78826367833844 ], [ -122.42072939872743, 37.78821704497665 ], [ -122.4207454919815, 37.78830183288528 ], [ -122.4207454919815, 37.78830183288528 ], [ -122.4207454919815, 37.78830183288528 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41216778755188, 37.78829759349217 ], [ -122.41191029548645, 37.788327269238906 ], [ -122.41189420223238, 37.788242481359454 ], [ -122.4121516942978, 37.78821704497665 ], [ -122.41216778755188, 37.78829759349217 ], [ -122.41216778755188, 37.78829759349217 ], [ -122.41216778755188, 37.78829759349217 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41742491722107, 37.78840781763428 ], [ -122.41739809513093, 37.788412057021084 ], [ -122.41733372211456, 37.78842053579395 ], [ -122.41732835769655, 37.78839933885995 ], [ -122.41710841655733, 37.78842477518002 ], [ -122.41710841655733, 37.78844597210669 ], [ -122.41701722145082, 37.7884586902598 ], [ -122.41697430610658, 37.788250960151764 ], [ -122.41738200187685, 37.788200087383245 ], [ -122.41739809513093, 37.78828063591724 ], [ -122.41737663745882, 37.78828487531134 ], [ -122.41739273071289, 37.78838238130839 ], [ -122.41741955280304, 37.78838238130839 ], [ -122.41741955280304, 37.78839086008464 ], [ -122.41742491722106, 37.78840781763428 ], [ -122.41742491722106, 37.78840781763428 ], [ -122.41742491722107, 37.78840781763428 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41748929023743, 37.78838238130839 ], [ -122.41741955280305, 37.78839086008464 ], [ -122.41741955280305, 37.78838238130839 ], [ -122.41739809513093, 37.78828063591724 ], [ -122.41738200187685, 37.788200087383245 ], [ -122.41745173931123, 37.78819584798428 ], [ -122.41748929023743, 37.78838238130839 ], [ -122.41748929023743, 37.78838238130839 ], [ -122.41748929023743, 37.78838238130839 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42098152637482, 37.788509562850294 ], [ -122.4207991361618, 37.78853499913242 ], [ -122.42076694965363, 37.78839933885995 ], [ -122.4207454919815, 37.78830183288528 ], [ -122.42072939872743, 37.78821704497665 ], [ -122.42091178894043, 37.78819160858508 ], [ -122.42098152637482, 37.788509562850294 ], [ -122.42098152637482, 37.788509562850294 ], [ -122.42098152637482, 37.788509562850294 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41761267185211, 37.788492605324016 ], [ -122.41751074790955, 37.78850532346909 ], [ -122.41748929023743, 37.78838238130839 ], [ -122.41745173931123, 37.78819584798428 ], [ -122.4175536632538, 37.78818312978595 ], [ -122.41756439208986, 37.78825519954756 ], [ -122.41753756999971, 37.78825519954756 ], [ -122.41753756999971, 37.78828063591724 ], [ -122.41756975650789, 37.7882763965229 ], [ -122.41759121418, 37.78839509947241 ], [ -122.41756439208986, 37.78839509947241 ], [ -122.41756975650789, 37.78842477518002 ], [ -122.41759657859804, 37.78842477518002 ], [ -122.4176073074341, 37.78847564779387 ], [ -122.41761267185211, 37.788492605324016 ], [ -122.41761267185211, 37.788492605324016 ], [ -122.41761267185211, 37.788492605324016 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41005420684814, 37.788556196027486 ], [ -122.40987181663515, 37.78857739291647 ], [ -122.4098289012909, 37.78837814191988 ], [ -122.40975379943848, 37.78838662069664 ], [ -122.40974843502046, 37.78834846619357 ], [ -122.40952849388124, 37.78837814191988 ], [ -122.40950167179109, 37.78824672075573 ], [ -122.40950167179109, 37.788242481359454 ], [ -122.40997910499574, 37.78818312978595 ], [ -122.41005420684816, 37.788556196027486 ], [ -122.41005420684816, 37.788556196027486 ], [ -122.41005420684814, 37.788556196027486 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4210673570633, 37.78850108408765 ], [ -122.42098152637482, 37.788509562850294 ], [ -122.42091178894043, 37.78819160858508 ], [ -122.42100298404694, 37.788178890386014 ], [ -122.4210673570633, 37.78850108408765 ], [ -122.4210673570633, 37.78850108408765 ], [ -122.4210673570633, 37.78850108408765 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41482317447662, 37.78833998741243 ], [ -122.41474270820619, 37.78834846619357 ], [ -122.41470515727998, 37.78818736918563 ], [ -122.41479098796846, 37.78817465098585 ], [ -122.41482317447664, 37.78833998741243 ], [ -122.41482317447664, 37.78833998741243 ], [ -122.41482317447662, 37.78833998741243 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42118000984192, 37.78848412655941 ], [ -122.4210673570633, 37.78850108408765 ], [ -122.42100298404694, 37.788178890386014 ], [ -122.42111027240753, 37.788166172184766 ], [ -122.42114245891571, 37.78832302984724 ], [ -122.42118000984192, 37.78848412655941 ], [ -122.42118000984192, 37.78848412655941 ], [ -122.42118000984192, 37.78848412655941 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41780042648315, 37.78845445087567 ], [ -122.4176073074341, 37.78847564779387 ], [ -122.41759657859804, 37.78842477518002 ], [ -122.41759121418, 37.78839509947241 ], [ -122.41756975650789, 37.7882763965229 ], [ -122.41756439208986, 37.78825519954756 ], [ -122.4175536632538, 37.78818312978595 ], [ -122.41774678230287, 37.78815769338271 ], [ -122.41776823997499, 37.78827215712833 ], [ -122.41771459579469, 37.78828063591724 ], [ -122.41771459579469, 37.78826367833842 ], [ -122.41768240928651, 37.78826791773349 ], [ -122.41769850254059, 37.78836966314214 ], [ -122.41773068904878, 37.78836542375292 ], [ -122.41773068904878, 37.788356944973714 ], [ -122.41777896881104, 37.78834846619357 ], [ -122.41780042648315, 37.78845445087567 ], [ -122.41780042648315, 37.78845445087567 ], [ -122.41780042648315, 37.78845445087567 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41464614868164, 37.788361184363445 ], [ -122.41458177566528, 37.78836966314214 ], [ -122.41453886032104, 37.788166172184766 ], [ -122.4146032333374, 37.78815769338271 ], [ -122.41464614868164, 37.788361184363445 ], [ -122.41464614868164, 37.788361184363445 ], [ -122.41464614868164, 37.788361184363445 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41243600845337, 37.78824672075573 ], [ -122.41237163543701, 37.788250960151764 ], [ -122.41235554218292, 37.78815769338271 ], [ -122.41241991519928, 37.78815345398132 ], [ -122.41243600845337, 37.78824672075573 ], [ -122.41243600845337, 37.78824672075573 ], [ -122.41243600845337, 37.78824672075573 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41795599460602, 37.788479887176756 ], [ -122.4178272485733, 37.78849684470596 ], [ -122.41782188415527, 37.7884586902598 ], [ -122.41780042648315, 37.78846292964368 ], [ -122.41780042648315, 37.78845445087567 ], [ -122.41777896881104, 37.78834846619357 ], [ -122.41776823997498, 37.78827215712833 ], [ -122.41774678230286, 37.78815769338271 ], [ -122.4178272485733, 37.78814921457968 ], [ -122.41783797740936, 37.78822128437439 ], [ -122.41784870624542, 37.78828063591724 ], [ -122.4178272485733, 37.78828487531134 ], [ -122.41783797740936, 37.788327269238906 ], [ -122.41784870624542, 37.788327269238906 ], [ -122.41785407066345, 37.788361184363445 ], [ -122.41780579090118, 37.78836542375292 ], [ -122.4178111553192, 37.78838662069664 ], [ -122.41785943508147, 37.78838238130839 ], [ -122.41787016391753, 37.78842053579395 ], [ -122.41793990135191, 37.78840781763428 ], [ -122.417955994606, 37.788479887176756 ], [ -122.417955994606, 37.788479887176756 ], [ -122.41795599460602, 37.788479887176756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42131412029266, 37.78829759349217 ], [ -122.42114245891571, 37.78832302984724 ], [ -122.42111027240752, 37.788166172184766 ], [ -122.42127656936644, 37.78814497517779 ], [ -122.42131412029265, 37.78829759349217 ], [ -122.42131412029265, 37.78829759349217 ], [ -122.42131412029266, 37.78829759349217 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41796135902405, 37.78834422680312 ], [ -122.41786479949951, 37.78835694497374 ], [ -122.41784870624542, 37.78828063591724 ], [ -122.41787552833557, 37.78828063591724 ], [ -122.41786479949951, 37.78821704497665 ], [ -122.41783797740936, 37.78822128437439 ], [ -122.4178272485733, 37.78814921457968 ], [ -122.41792380809784, 37.78813649637332 ], [ -122.41793990135193, 37.78821280557867 ], [ -122.41791307926178, 37.78821704497665 ], [ -122.41792380809784, 37.7882763965229 ], [ -122.41795063018799, 37.78827215712833 ], [ -122.41796135902405, 37.78834422680312 ], [ -122.41796135902405, 37.78834422680312 ], [ -122.41796135902405, 37.78834422680312 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42144286632538, 37.78845021149131 ], [ -122.42134630680084, 37.78846292964368 ], [ -122.42131412029266, 37.78829759349217 ], [ -122.42127656936646, 37.78814497517779 ], [ -122.421373128891, 37.78813225697071 ], [ -122.42142140865326, 37.78836118436342 ], [ -122.42144286632538, 37.78845021149128 ], [ -122.42144286632538, 37.78845021149128 ], [ -122.42144286632538, 37.78845021149131 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41218388080597, 37.78821280557867 ], [ -122.41189420223236, 37.788242481359454 ], [ -122.41187810897827, 37.788161932783865 ], [ -122.41216778755188, 37.78812801756788 ], [ -122.41218388080597, 37.78821280557867 ], [ -122.41218388080597, 37.78821280557867 ], [ -122.41218388080597, 37.78821280557867 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41074621677399, 37.78846292964368 ], [ -122.41026341915129, 37.78852652037268 ], [ -122.41018831729887, 37.788161932783865 ], [ -122.41067111492157, 37.78809834174111 ], [ -122.41074621677399, 37.78846292964368 ], [ -122.41074621677399, 37.78846292964368 ], [ -122.41074621677399, 37.78846292964368 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42171108722687, 37.78832302984724 ], [ -122.42163598537445, 37.788331508630314 ], [ -122.42159843444824, 37.78833998741243 ], [ -122.42151260375977, 37.78834846619357 ], [ -122.42142140865326, 37.788361184363445 ], [ -122.421373128891, 37.788132256970734 ], [ -122.4216628074646, 37.788089862931294 ], [ -122.42171108722687, 37.78832302984724 ], [ -122.42171108722687, 37.78832302984724 ], [ -122.42171108722687, 37.78832302984724 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41843342781067, 37.7882933540988 ], [ -122.41822957992555, 37.78831879045532 ], [ -122.41819202899934, 37.788106820549984 ], [ -122.41839587688446, 37.78808138412048 ], [ -122.41843342781067, 37.7882933540988 ], [ -122.41843342781067, 37.7882933540988 ], [ -122.41843342781067, 37.7882933540988 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41887867450714, 37.78834846619357 ], [ -122.41868555545807, 37.78836966314214 ], [ -122.41862118244171, 37.788047468867504 ], [ -122.41881966590881, 37.78802627182651 ], [ -122.41883039474487, 37.788085623525994 ], [ -122.4188357591629, 37.78812377816479 ], [ -122.41876602172852, 37.788132256970734 ], [ -122.41877138614655, 37.788161932783865 ], [ -122.41884112358092, 37.78815345398132 ], [ -122.41885185241698, 37.788225523771885 ], [ -122.41885721683501, 37.78823824196291 ], [ -122.41878747940062, 37.78824672075573 ], [ -122.41879284381865, 37.78826791773351 ], [ -122.41885721683501, 37.788259438943136 ], [ -122.41886258125304, 37.78828487531134 ], [ -122.4188786745071, 37.78834846619357 ], [ -122.4188786745071, 37.78834846619357 ], [ -122.41887867450714, 37.78834846619357 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41131484508514, 37.78839086008464 ], [ -122.410746216774, 37.78846292964368 ], [ -122.41067111492157, 37.78809834174111 ], [ -122.41123974323273, 37.78802627182651 ], [ -122.41131484508514, 37.78839086008464 ], [ -122.41131484508514, 37.78839086008464 ], [ -122.41131484508514, 37.78839086008464 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41655051708221, 37.78812377816479 ], [ -122.4164754152298, 37.788132256970734 ], [ -122.41645932197571, 37.788022032417594 ], [ -122.4165290594101, 37.788013553599 ], [ -122.41655051708221, 37.78812377816479 ], [ -122.41655051708221, 37.78812377816479 ], [ -122.41655051708221, 37.78812377816479 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41900205612183, 37.788331508630314 ], [ -122.41887867450714, 37.78834846619357 ], [ -122.41886258125305, 37.78828487531132 ], [ -122.4188894033432, 37.78828063591724 ], [ -122.41887867450714, 37.788221284374366 ], [ -122.41885185241699, 37.788225523771885 ], [ -122.41884112358093, 37.78815345398132 ], [ -122.41884112358093, 37.78814921457968 ], [ -122.41886258125305, 37.78814497517779 ], [ -122.41885185241699, 37.788085623525994 ], [ -122.41883039474487, 37.788085623525994 ], [ -122.41881966590881, 37.78802627182648 ], [ -122.41893768310548, 37.78800931418932 ], [ -122.41895377635956, 37.78808138412046 ], [ -122.41893231868744, 37.788085623525994 ], [ -122.41894841194153, 37.78816193278384 ], [ -122.4189645051956, 37.78815769338271 ], [ -122.41898059844969, 37.788221284374366 ], [ -122.41895914077757, 37.788225523771885 ], [ -122.41896986961363, 37.7882763965229 ], [ -122.41899132728575, 37.78827215712831 ], [ -122.41900205612181, 37.788331508630314 ], [ -122.41900205612181, 37.788331508630314 ], [ -122.41900205612183, 37.788331508630314 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4207991361618, 37.788106820549984 ], [ -122.42070257663727, 37.78812377816479 ], [ -122.42067575454713, 37.788005074779434 ], [ -122.42077767848969, 37.78799235654826 ], [ -122.4207991361618, 37.788106820549984 ], [ -122.4207991361618, 37.788106820549984 ], [ -122.4207991361618, 37.788106820549984 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41336941719055, 37.78825519954756 ], [ -122.41305828094482, 37.7882933540988 ], [ -122.41304218769073, 37.78819584798428 ], [ -122.41305828094482, 37.78819160858508 ], [ -122.41302609443665, 37.7880305112352 ], [ -122.41331577301025, 37.78799235654826 ], [ -122.41336941719055, 37.78825519954756 ], [ -122.41336941719055, 37.78825519954756 ], [ -122.41336941719055, 37.78825519954756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41915762424469, 37.7883145510632 ], [ -122.41900205612183, 37.788331508630314 ], [ -122.41899132728577, 37.78827215712833 ], [ -122.4189805984497, 37.788221284374366 ], [ -122.41896450519562, 37.78815769338271 ], [ -122.41895377635956, 37.78808138412046 ], [ -122.41893768310548, 37.78800931418932 ], [ -122.41909325122833, 37.78799235654826 ], [ -122.41910934448242, 37.78808138412046 ], [ -122.4191415309906, 37.788221284374366 ], [ -122.41915762424469, 37.78831455106317 ], [ -122.41915762424469, 37.78831455106317 ], [ -122.41915762424469, 37.7883145510632 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42061138153076, 37.788132256970734 ], [ -122.42033779621124, 37.78817041158543 ], [ -122.42030560970306, 37.788022032417594 ], [ -122.42039680480957, 37.788009314189345 ], [ -122.42044508457184, 37.788000835369274 ], [ -122.4205094575882, 37.78799235654826 ], [ -122.42058455944061, 37.787983877726255 ], [ -122.42061138153076, 37.788132256970734 ], [ -122.42061138153076, 37.788132256970734 ], [ -122.42061138153076, 37.788132256970734 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41171717643738, 37.788479887176756 ], [ -122.41140067577362, 37.788518041611965 ], [ -122.4113792181015, 37.78842053579395 ], [ -122.41137385368347, 37.78839933885995 ], [ -122.41132020950317, 37.78840357824722 ], [ -122.41131484508514, 37.78839086008464 ], [ -122.41123974323273, 37.78802627182651 ], [ -122.41160988807678, 37.787975398903306 ], [ -122.41171717643738, 37.788479887176756 ], [ -122.41171717643738, 37.788479887176756 ], [ -122.41171717643738, 37.788479887176756 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41629302501678, 37.78815769338271 ], [ -122.41621792316435, 37.788166172184766 ], [ -122.41618573665617, 37.787975398903285 ], [ -122.4162608385086, 37.78796692007934 ], [ -122.41629302501678, 37.78815769338271 ], [ -122.41629302501678, 37.78815769338271 ], [ -122.41629302501678, 37.78815769338271 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.419393658638, 37.78828487531132 ], [ -122.4191576242447, 37.7883145510632 ], [ -122.41914153099061, 37.78822128437439 ], [ -122.41916298866273, 37.78822128437439 ], [ -122.41913616657259, 37.7880771447147 ], [ -122.41910934448246, 37.78808138412048 ], [ -122.41909325122838, 37.78799235654826 ], [ -122.41932392120366, 37.78796268066702 ], [ -122.41934001445775, 37.78805170827497 ], [ -122.41931855678563, 37.7880559476822 ], [ -122.41934537887578, 37.788200087383245 ], [ -122.41937756538395, 37.78819584798428 ], [ -122.41937756538395, 37.78822128437439 ], [ -122.41939365863801, 37.78828487531134 ], [ -122.41939365863801, 37.78828487531134 ], [ -122.419393658638, 37.78828487531132 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42295563220978, 37.78827215712833 ], [ -122.42219388484955, 37.788373902531134 ], [ -122.42212951183318, 37.78805170827497 ], [ -122.42288589477538, 37.78794996242857 ], [ -122.42295563220976, 37.78827215712833 ], [ -122.42295563220976, 37.78827215712833 ], [ -122.42295563220978, 37.78827215712833 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4195545911789, 37.78826367833844 ], [ -122.419393658638, 37.78828487531134 ], [ -122.41937756538391, 37.78822128437439 ], [ -122.41940438747406, 37.78821704497665 ], [ -122.41937756538391, 37.78807290530868 ], [ -122.41934537887573, 37.7880771447147 ], [ -122.4193400144577, 37.78805170827497 ], [ -122.41932392120363, 37.78796268066702 ], [ -122.4194473028183, 37.78794996242857 ], [ -122.41949021816255, 37.78794996242857 ], [ -122.41951167583467, 37.78804322945978 ], [ -122.41948485374452, 37.78804322945978 ], [ -122.4195170402527, 37.78821280557867 ], [ -122.41954386234285, 37.788208566180444 ], [ -122.41955459117891, 37.78826367833844 ], [ -122.41955459117891, 37.78826367833844 ], [ -122.4195545911789, 37.78826367833844 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4205094575882, 37.78799235654826 ], [ -122.42044508457184, 37.788000835369274 ], [ -122.42044508457184, 37.78798811713739 ], [ -122.42039680480957, 37.78799235654826 ], [ -122.42039680480957, 37.788009314189345 ], [ -122.42030560970306, 37.788022032417594 ], [ -122.420294880867, 37.78796268066702 ], [ -122.42042362689972, 37.78794996242857 ], [ -122.42049872875215, 37.78794996242857 ], [ -122.42050409317017, 37.787979638314894 ], [ -122.4205094575882, 37.78799235654826 ], [ -122.4205094575882, 37.78799235654826 ], [ -122.4205094575882, 37.78799235654826 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42315411567688, 37.788242481359454 ], [ -122.42295563220978, 37.78826791773351 ], [ -122.42288589477539, 37.78794996242857 ], [ -122.42291271686554, 37.78794996242857 ], [ -122.42309510707854, 37.78794996242857 ], [ -122.42315411567687, 37.788242481359454 ], [ -122.42315411567687, 37.788242481359454 ], [ -122.42315411567688, 37.788242481359454 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41207659244537, 37.788085623525994 ], [ -122.41186738014221, 37.78811105995404 ], [ -122.41183519363403, 37.78794996242857 ], [ -122.41184055805206, 37.78794996242857 ], [ -122.41205513477325, 37.78794996242857 ], [ -122.41207659244537, 37.788085623525994 ], [ -122.41207659244537, 37.788085623525994 ], [ -122.41207659244537, 37.788085623525994 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41972625255585, 37.788242481359454 ], [ -122.4195545911789, 37.78826367833844 ], [ -122.41954386234283, 37.788208566180444 ], [ -122.41951167583466, 37.78804322945978 ], [ -122.41949021816254, 37.78794996242857 ], [ -122.41966724395752, 37.78794996242857 ], [ -122.41967797279358, 37.788005074779434 ], [ -122.41970479488371, 37.78814921457968 ], [ -122.41972625255583, 37.788242481359454 ], [ -122.41972625255583, 37.788242481359454 ], [ -122.41972625255585, 37.788242481359454 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4164754152298, 37.788132256970734 ], [ -122.41638422012329, 37.788144975177815 ], [ -122.4163466691971, 37.78794996242857 ], [ -122.41644322872163, 37.78794996242857 ], [ -122.41647541522981, 37.788132256970734 ], [ -122.41647541522981, 37.788132256970734 ], [ -122.4164754152298, 37.788132256970734 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41668999195099, 37.788106820549984 ], [ -122.4165505170822, 37.78812377816479 ], [ -122.41651833057402, 37.78794996242857 ], [ -122.41666316986083, 37.78794996242857 ], [ -122.41668999195097, 37.788106820549984 ], [ -122.41668999195097, 37.788106820549984 ], [ -122.41668999195099, 37.788106820549984 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41220533847809, 37.78807290530868 ], [ -122.4120819568634, 37.788085623525994 ], [ -122.41205513477325, 37.78794996242857 ], [ -122.41217851638794, 37.78794996242857 ], [ -122.41220533847809, 37.78807290530868 ], [ -122.41220533847809, 37.78807290530868 ], [ -122.41220533847809, 37.78807290530868 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41638422012329, 37.78814497517779 ], [ -122.41629302501678, 37.78815345398132 ], [ -122.41625547409059, 37.78794996242854 ], [ -122.4163466691971, 37.78794996242854 ], [ -122.41638422012329, 37.78814497517779 ], [ -122.41638422012329, 37.78814497517779 ], [ -122.41638422012329, 37.78814497517779 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41236627101898, 37.78805170827497 ], [ -122.41220533847809, 37.78807290530868 ], [ -122.41218388080597, 37.78794996242857 ], [ -122.41234481334686, 37.78794996242857 ], [ -122.41236627101898, 37.78805170827497 ], [ -122.41236627101898, 37.78805170827497 ], [ -122.41236627101898, 37.78805170827497 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42349207401276, 37.78819584798428 ], [ -122.42315411567688, 37.788242481359454 ], [ -122.42309510707855, 37.78794996242857 ], [ -122.42343842983246, 37.78794996242857 ], [ -122.42349207401276, 37.78819584798428 ], [ -122.42349207401276, 37.78819584798428 ], [ -122.42349207401276, 37.78819584798428 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42010176181793, 37.78819584798428 ], [ -122.41972625255585, 37.788242481359454 ], [ -122.41970479488373, 37.78814921457968 ], [ -122.41974234580994, 37.788144975177815 ], [ -122.41971552371979, 37.788000835369274 ], [ -122.4196779727936, 37.788005074779434 ], [ -122.41966724395753, 37.78794996242857 ], [ -122.42005348205568, 37.78794996242857 ], [ -122.42010176181793, 37.78819584798428 ], [ -122.42010176181793, 37.78819584798428 ], [ -122.42010176181793, 37.78819584798428 ], [ -122.41993546485901, 37.78811529935787 ], [ -122.41990327835083, 37.787979638314894 ], [ -122.41985499858858, 37.78798811713739 ], [ -122.41988718509675, 37.78812377816479 ], [ -122.41993546485901, 37.78811529935787 ], [ -122.41993546485901, 37.78811529935787 ], [ -122.42010176181793, 37.78819584798428 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41254329681396, 37.7880305112352 ], [ -122.41239845752716, 37.788047468867504 ], [ -122.41238236427309, 37.78794996242857 ], [ -122.41252720355989, 37.78794996242857 ], [ -122.41254329681396, 37.7880305112352 ], [ -122.41254329681396, 37.7880305112352 ], [ -122.41254329681396, 37.7880305112352 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41268277168274, 37.78801355359897 ], [ -122.41254329681395, 37.7880305112352 ], [ -122.41252720355988, 37.78794996242857 ], [ -122.41266667842865, 37.78794996242857 ], [ -122.41268277168274, 37.788013553599 ], [ -122.41268277168274, 37.788013553599 ], [ -122.41268277168274, 37.78801355359897 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41276323795319, 37.788005074779434 ], [ -122.41268277168275, 37.78801355359897 ], [ -122.4126720428467, 37.78794996242854 ], [ -122.41275250911713, 37.78794996242854 ], [ -122.41276323795319, 37.788005074779434 ], [ -122.41276323795319, 37.788005074779434 ], [ -122.41276323795319, 37.788005074779434 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42042362689972, 37.78794996242857 ], [ -122.420294880867, 37.78796268066702 ], [ -122.42028951644897, 37.78794996242857 ], [ -122.42042362689972, 37.78794996242857 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42057919502258, 37.78797115949147 ], [ -122.42050409317017, 37.787979638314894 ], [ -122.42049872875215, 37.78794996242857 ], [ -122.42057383060457, 37.78794996242857 ], [ -122.42057919502258, 37.78797115949147 ], [ -122.42057919502258, 37.78797115949147 ], [ -122.42057919502258, 37.78797115949147 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41301000118256, 37.78797115949147 ], [ -122.41279542446136, 37.78799659595888 ], [ -122.4127846956253, 37.78794996242857 ], [ -122.41300463676454, 37.78794996242857 ], [ -122.41301000118256, 37.78797115949147 ], [ -122.41301000118256, 37.78797115949147 ], [ -122.41301000118256, 37.78797115949147 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42070257663727, 37.78812377816479 ], [ -122.42061138153076, 37.788132256970734 ], [ -122.42058455944063, 37.787983877726255 ], [ -122.4205791950226, 37.78797115949147 ], [ -122.4205738306046, 37.78794996242857 ], [ -122.42066502571107, 37.78794996242857 ], [ -122.42067575454713, 37.788005074779434 ], [ -122.42070257663728, 37.78812377816479 ], [ -122.42070257663728, 37.78812377816479 ], [ -122.42070257663727, 37.78812377816479 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41314947605133, 37.78795420184161 ], [ -122.41301000118254, 37.78797115949147 ], [ -122.41300463676453, 37.78794996242857 ], [ -122.41314947605133, 37.78794996242857 ], [ -122.41314947605133, 37.78795420184161 ], [ -122.41314947605133, 37.78795420184161 ], [ -122.41314947605133, 37.78795420184161 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42077767848969, 37.78799235654826 ], [ -122.42067575454713, 37.788005074779434 ], [ -122.42066502571106, 37.78794996242857 ], [ -122.42076694965363, 37.78794996242857 ], [ -122.42077767848969, 37.78799235654826 ], [ -122.42077767848969, 37.78799235654826 ], [ -122.42077767848969, 37.78799235654826 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41320312023163, 37.78794996242857 ], [ -122.41314947605133, 37.78795420184161 ], [ -122.41314947605133, 37.78794996242857 ], [ -122.41320312023163, 37.78794996242857 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42093861103058, 37.788089862931294 ], [ -122.4207991361618, 37.788106820549984 ], [ -122.42077767848967, 37.78799235654826 ], [ -122.42076694965361, 37.78794996242857 ], [ -122.42091178894042, 37.78794996242857 ], [ -122.42093861103056, 37.788089862931294 ], [ -122.42093861103056, 37.788089862931294 ], [ -122.42093861103058, 37.788089862931294 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.4104779958725, 37.78794996242857 ], [ -122.41015613079071, 37.78798811713739 ], [ -122.41014540195465, 37.78794996242857 ], [ -122.4104779958725, 37.78794996242857 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42123365402222, 37.78805170827497 ], [ -122.42093861103058, 37.788089862931294 ], [ -122.42091178894043, 37.78794996242857 ], [ -122.4212121963501, 37.78794996242857 ], [ -122.42123365402222, 37.78805170827497 ], [ -122.42123365402222, 37.78805170827497 ], [ -122.42123365402222, 37.78805170827497 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.42164671421051, 37.788000835369274 ], [ -122.42123365402222, 37.78805170827499 ], [ -122.4212121963501, 37.78794996242857 ], [ -122.42163598537445, 37.78794996242857 ], [ -122.42164671421051, 37.788000835369296 ], [ -122.42164671421051, 37.788000835369296 ], [ -122.42164671421051, 37.788000835369274 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40990936756134, 37.78799659595888 ], [ -122.4095606803894, 37.78803899005183 ], [ -122.40954458713531, 37.78794996242857 ], [ -122.40950167179108, 37.78794996242857 ], [ -122.40989863872528, 37.78794996242857 ], [ -122.40990936756134, 37.78799659595888 ], [ -122.40990936756134, 37.78799659595888 ], [ -122.40990936756134, 37.78799659595888 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41431891918182, 37.78802627182651 ], [ -122.41402387619019, 37.78806442649594 ], [ -122.41400241851807, 37.78794996242857 ], [ -122.41430282592772, 37.78794996242857 ], [ -122.41431891918181, 37.78802627182651 ], [ -122.41431891918181, 37.78802627182651 ], [ -122.41431891918182, 37.78802627182651 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41458177566528, 37.78795844125444 ], [ -122.41441011428833, 37.787983877726255 ], [ -122.41439938545227, 37.78794996242857 ], [ -122.41457641124725, 37.78794996242857 ], [ -122.41458177566527, 37.78795844125444 ], [ -122.41458177566527, 37.78795844125444 ], [ -122.41458177566528, 37.78795844125444 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.41813838481903, 37.787983877726255 ], [ -122.41792917251587, 37.788009314189345 ], [ -122.41791844367981, 37.78794996242857 ], [ -122.41813302040099, 37.78794996242857 ], [ -122.41813838481902, 37.787983877726255 ], [ -122.41813838481902, 37.787983877726255 ], [ -122.41813838481903, 37.787983877726255 ] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.40951776504517, 37.78804322945978 ], [ -122.40950167179108, 37.788047468867504 ], [ -122.40950167179108, 37.78794996242857 ], [ -122.40950167179108, 37.78795844125444 ], [ -122.40951776504517, 37.78804322945978 ], [ -122.40951776504517, 37.78804322945978 ], [ -122.40951776504517, 37.78804322945978 ] ] ] }, "properties": {} } ], "name": "building" }mapnik-vector-tile-0.3.2/examples/python/0000755000175000017500000000000012174360626016512 5ustar devdevmapnik-vector-tile-0.3.2/examples/python/hello-world.py0000755000175000017500000000242412174360626021321 0ustar devdev#!/usr/bin/env python # -*- coding: utf-8 -*- import sys import json # put `./lib` dir on path sys.path.append("./python") import renderer if __name__ == "__main__" : # create a single tile at 0/0/0.png like tile.osm.org/0/0/0.png zoom = 0 x = 0 y = 0 # request object holds a Tile XYZ and internally holds mercator extent req = renderer.Request(x,y,zoom) # create a vector tile, given a tile request vtile = renderer.VectorTile(req) # for a given point representing a spot in NYC lat = 40.70512 lng = -74.01226 # and some attributes attr = {"hello":"world"} # convert to mercator coords x,y = renderer.lonlat2merc(lng,lat) # add this point and attributes to the tile vtile.add_point(x,y,attr) # print the protobuf as geojson just for debugging # NOTE: coordinate rounding is by design and print 'GeoJSON representation of tile (purely for debugging):' print vtile.to_geojson() print '-'*60 # print the protobuf message as a string print 'Protobuf string representation of tile (purely for debugging):' print vtile print '-'*60 # print the protobuf message, zlib encoded print 'Serialized, deflated tile message (storage and wire format):' print vtile.to_message().encode('zlib') mapnik-vector-tile-0.3.2/LICENSE0000644000175000017500000000266412174360626014370 0ustar devdevCopyright (c) MapBox All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - Neither the name "MapBox" nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.mapnik-vector-tile-0.3.2/CHANGELOG.md0000644000175000017500000000364312174360626015172 0ustar devdev# Changlog ## 0.3.2 - Fixed `mapnik::vector::tile_datasource` to respect the feature id if known ## 0.3.1 - Added support for reporting known attribute names for a given vector tile layer via `mapnik::vector::tile_datasource` `descriptors`. ## 0.3.0 - API change: mapnik::vector::processor now requires a mapnik::request object as the third argument. The reason for this is to make it more viable for calling programs to avoid needing to mutate the map before passing to the processor. Now the `width`, `height`, `buffer_size`, and `extent` will be taken from the mapnik::request object inside processor.apply(). For now the `srs` and `layers` will still be taken off the map. ## 0.2.5 - Fixed incorrect copy of protobuf writing backend when passed to the processor ## 0.2.4 - Marked tile_datasource implemented to avoid duplicate symbol errors if used from multiple compilation units ## 0.2.3 - Fixed casting between doubles and ints (solves test failures on 32 bit linux) ## 0.2.2 - Fixed accuracy of bbox filtering of features ## 0.2.1 - Removed tile_datasource validation that requested attributes exist in feature since current vector tiles do not guarantee that `tile_layer::keys` is populated with all possible attributes and rather only include those encounted by features processed. ## 0.2.0 - Now filtering features based on mapnik::query bbox and filtering attributes based on mapnik::query names. (#6) ## 0.1.0 - API change: Optimized spherical mercator math and reworked interface. `mapnik::vector::spherical_mercator` now is not templated on max zoom level and works with any zoom. `mapnik::vector::spherical_mercator::xyz` now expects references to doubles instead of a `mapnik::box2d`. ## 0.0.6 - Removed stale and unused code ## 0.0.5 - Packaging fix ## 0.0.4 - Compile fix to use consistent headers ## 0.0.3 - packaging fix ## 0.0.2 - test / readme improvements ## 0.0.1 - Initial release mapnik-vector-tile-0.3.2/src/0000755000175000017500000000000012174360626014142 5ustar devdevmapnik-vector-tile-0.3.2/src/vector_tile_backend_pbf.hpp0000644000175000017500000002100312174360626021464 0ustar devdev#ifndef __MAPNIK_VECTOR_TILE_BACKEND_PBF_H__ #define __MAPNIK_VECTOR_TILE_BACKEND_PBF_H__ // mapnik #include #include #include // vector tile #include "vector_tile.pb.h" // boost #include #include namespace mapnik { namespace vector { struct to_tile_value: public boost::static_visitor<> { public: to_tile_value(tile_value * value): value_(value) {} void operator () ( value_integer val ) const { // TODO: figure out shortest varint encoding. value_->set_int_value(val); } void operator () ( mapnik::value_bool val ) const { value_->set_bool_value(val); } void operator () ( mapnik::value_double val ) const { // TODO: Figure out how we can encode 32 bit floats in some cases. value_->set_double_value(val); } void operator () ( mapnik::value_unicode_string const& val ) const { std::string str; to_utf8(val, str); value_->set_string_value(str.data(), str.length()); } void operator () ( mapnik::value_null const& /*val*/ ) const { // do nothing } private: tile_value * value_; }; struct backend_pbf { typedef std::map keys_container; typedef boost::unordered_map values_container; private: tile & tile_; unsigned path_multiplier_; mutable tile_layer * current_layer_; mutable tile_feature * current_feature_; keys_container keys_; values_container values_; int32_t x_, y_; public: explicit backend_pbf(tile & _tile, unsigned path_multiplier) : tile_(_tile), path_multiplier_(path_multiplier), current_layer_(NULL), current_feature_(NULL) { } void stop_tile_feature() { if (current_feature_) { if (current_feature_->geometry_size() == 0 && current_layer_) { current_layer_->mutable_features()->RemoveLast(); } } } void start_tile_feature(mapnik::feature_impl const& feature) { current_feature_ = current_layer_->add_features(); x_ = y_ = 0; current_feature_->set_id(feature.id()); feature_kv_iterator itr = feature.begin(); feature_kv_iterator end = feature.end(); for ( ;itr!=end; ++itr) { std::string const& name = boost::get<0>(*itr); mapnik::value const& val = boost::get<1>(*itr); if (!val.is_null()) { // Insert the key index keys_container::const_iterator key_itr = keys_.find(name); if (key_itr == keys_.end()) { // The key doesn't exist yet in the dictionary. current_layer_->add_keys(name.c_str(), name.length()); size_t index = keys_.size(); keys_.insert(keys_container::value_type(name, index)); current_feature_->add_tags(index); } else { current_feature_->add_tags(key_itr->second); } // Insert the value index values_container::const_iterator val_itr = values_.find(val); if (val_itr == values_.end()) { // The value doesn't exist yet in the dictionary. to_tile_value visitor(current_layer_->add_values()); boost::apply_visitor(visitor, val.base()); size_t index = values_.size(); values_.insert(values_container::value_type(val, index)); current_feature_->add_tags(index); } else { current_feature_->add_tags(val_itr->second); } } } } void start_tile_layer(std::string const& name) { // Key/value dictionary is per-layer. keys_.clear(); values_.clear(); current_layer_ = tile_.add_layers(); current_layer_->set_name(name); current_layer_->set_version(1); // We currently use path_multiplier as a factor to scale the coordinates. // Eventually, we should replace this with the extent specifying the // bounding box in both dimensions. E.g. an extent of 4096 means that // the coordinates encoded in this tile should be visible in the range // from 0..4095. current_layer_->set_extent(256 * path_multiplier_); } void stop_tile_layer() { // NOTE: we intentionally do not remove layers without features // since the re-rendering logic expects a layer entry no matter what //std::cerr << "stop_tile_layer()" << std::endl; } template unsigned add_path(T & path, unsigned tolerance, mapnik::eGeomType type) { unsigned count = 0; if (current_feature_) { path.rewind(0); current_feature_->set_type(mapnik::vector::tile_GeomType(type)); vertex2d vtx(vertex2d::no_init); int cmd = -1; int cmd_idx = -1; const int cmd_bits = 3; unsigned length = 0; // See vector_tile.proto for a description of how vertex command // encoding works. while ((vtx.cmd = path.vertex(&vtx.x, &vtx.y)) != SEG_END) { if (static_cast(vtx.cmd) != cmd) { if (cmd_idx >= 0) { // Encode the previous length/command value. current_feature_->set_geometry(cmd_idx, (length << cmd_bits) | (cmd & ((1 << cmd_bits) - 1))); } cmd = static_cast(vtx.cmd); length = 0; cmd_idx = current_feature_->geometry_size(); current_feature_->add_geometry(0); // placeholder } if (cmd == SEG_MOVETO || cmd == SEG_LINETO) { // Compute delta to the previous coordinate. int32_t cur_x = static_cast(std::floor((vtx.x * path_multiplier_)+.5)); int32_t cur_y = static_cast(std::floor((vtx.y * path_multiplier_)+.5)); int32_t dx = cur_x - x_; int32_t dy = cur_y - y_; // Omit movements that are no-ops. unsigned x_floor = static_cast(std::abs(dx)); unsigned y_floor = static_cast(std::abs(dy)); if (x_floor >= tolerance || y_floor >= tolerance || length == 0) { // Manual zigzag encoding. current_feature_->add_geometry((dx << 1) ^ (dx >> 31)); current_feature_->add_geometry((dy << 1) ^ (dy >> 31)); x_ = cur_x; y_ = cur_y; length++; } } else if (cmd == SEG_CLOSE) { length++; } else { throw std::runtime_error("Unknown command type"); } ++count; } // Update the last length/command value. if (cmd_idx >= 0) { current_feature_->set_geometry(cmd_idx, (length << cmd_bits) | (cmd & ((1 << cmd_bits) - 1))); } } return count; } }; }} // end ns #endif // __MAPNIK_VECTOR_TILE_BACKEND_PBF_H__ mapnik-vector-tile-0.3.2/src/hash_variant.hpp0000644000175000017500000000175112174360626017326 0ustar devdev// TODO: Remove this file once the minimum Boost version is bumped to 1.50 #ifndef BOOST_HASH_VARIANT_FUNCTION_HPP #define BOOST_HASH_VARIANT_FUNCTION_HPP #if defined(_MSC_VER) && (_MSC_VER >= 1020) # pragma once #endif #include #include #include #include namespace boost { namespace detail { namespace variant { struct variant_hasher: public boost::static_visitor { template std::size_t operator()(T const& val) const { using namespace boost; hash hasher; return hasher(val); } }; }} template < BOOST_VARIANT_ENUM_PARAMS(typename T) > std::size_t hash_value(variant< BOOST_VARIANT_ENUM_PARAMS(T) > const& val) { std::size_t seed = boost::apply_visitor(detail::variant::variant_hasher(), val); hash_combine(seed, val.which()); return seed; } } #endif mapnik-vector-tile-0.3.2/src/vector_tile_util.hpp0000644000175000017500000001754512174360626020243 0ustar devdev#ifndef __MAPNIK_VECTOR_TILE_UTIL_H__ #define __MAPNIK_VECTOR_TILE_UTIL_H__ #include "clipper.hpp" #include "vector_tile.pb.h" #include #include #include #include #include namespace mapnik { namespace vector { bool is_solid_clipper(mapnik::vector::tile const& tile, std::string & key) { ClipperLib::Clipper clipper; for (int i = 0; i < tile.layers_size(); i++) { mapnik::vector::tile_layer const& layer = tile.layers(i); unsigned extent = layer.extent(); unsigned side = extent - 1; double extent_area = side * side; ClipperLib::Polygon clip_box; clip_box.push_back(ClipperLib::IntPoint(0, 0)); clip_box.push_back(ClipperLib::IntPoint(side, 0)); clip_box.push_back(ClipperLib::IntPoint(side, side)); clip_box.push_back(ClipperLib::IntPoint(0, side)); clip_box.push_back(ClipperLib::IntPoint(0, 0)); for (int j = 0; j < layer.features_size(); j++) { mapnik::vector::tile_feature const& feature = layer.features(j); int cmd = -1; const int cmd_bits = 3; unsigned length = 0; int32_t x = 0, y = 0; int32_t start_x = 0, start_y = 0; ClipperLib::Polygons geometry; ClipperLib::Polygon polygon; for (int k = 0; k < feature.geometry_size();) { if (!length) { unsigned cmd_length = feature.geometry(k++); cmd = cmd_length & ((1 << cmd_bits) - 1); length = cmd_length >> cmd_bits; } if (length > 0) { length--; if (cmd == mapnik::SEG_MOVETO || cmd == mapnik::SEG_LINETO) { int32_t dx = feature.geometry(k++); int32_t dy = feature.geometry(k++); x += ((dx >> 1) ^ (-(dx & 1))); y += ((dy >> 1) ^ (-(dy & 1))); // We can abort early if this feature has a vertex that is // inside the bbox. if ((x > 0 && x < static_cast(side)) && (y > 0 && y < static_cast(side))) { return false; } if (cmd == mapnik::SEG_MOVETO) { start_x = x; start_y = y; geometry.push_back(polygon); polygon.clear(); } polygon.push_back(ClipperLib::IntPoint(x, y)); } else if (cmd == (mapnik::SEG_CLOSE & ((1 << cmd_bits) - 1))) { polygon.push_back(ClipperLib::IntPoint(start_x, start_y)); geometry.push_back(polygon); polygon.clear(); } else { throw std::runtime_error("Unknown command type"); } } } ClipperLib::Polygons solution; clipper.Clear(); clipper.AddPolygons(geometry, ClipperLib::ptSubject); clipper.AddPolygon(clip_box, ClipperLib::ptClip); clipper.Execute(ClipperLib::ctIntersection, solution, ClipperLib::pftNonZero, ClipperLib::pftNonZero); // If there are more than one result polygons, it can't be covered by // a single feature. Similarly, if there's no result, this geometry // is completely outside the bounding box. if (solution.size() != 1) { return false; } // Once we have only one clipped result polygon, we can compare the // areas and return early if they don't match. double area = ClipperLib::Area(solution.front()); if (area != extent_area) { return false; } if (i == 0) { key = layer.name(); } else if (i > 0) { key += std::string("-") + layer.name(); } } } // It's either empty or doesn't have features that have vertices that are // not on the border of the bbox. return true; } bool is_solid_extent(mapnik::vector::tile const& tile, std::string & key) { for (int i = 0; i < tile.layers_size(); i++) { mapnik::vector::tile_layer const& layer = tile.layers(i); unsigned extent = layer.extent(); unsigned side = extent - 1; double extent_area = side * side; for (int j = 0; j < layer.features_size(); j++) { mapnik::vector::tile_feature const& feature = layer.features(j); mapnik::eGeomType g_type = static_cast(feature.type()); mapnik::geometry_type geom(g_type); int cmd = -1; const int cmd_bits = 3; unsigned length = 0; int32_t x = 0, y = 0; for (int k = 0; k < feature.geometry_size();) { if (!length) { unsigned cmd_length = feature.geometry(k++); cmd = cmd_length & ((1 << cmd_bits) - 1); length = cmd_length >> cmd_bits; } if (length > 0) { length--; if (cmd == mapnik::SEG_MOVETO || cmd == mapnik::SEG_LINETO) { int32_t dx = feature.geometry(k++); int32_t dy = feature.geometry(k++); x += ((dx >> 1) ^ (-(dx & 1))); y += ((dy >> 1) ^ (-(dy & 1))); // We can abort early if this feature has a vertex that is // inside the bbox. if ((x > 0 && x < static_cast(side)) && (y > 0 && y < static_cast(side))) { return false; } geom.push_vertex(x, y, static_cast(cmd)); } else if (cmd == (mapnik::SEG_CLOSE & ((1 << cmd_bits) - 1))) { geom.push_vertex(0, 0, mapnik::SEG_CLOSE); } else { throw std::runtime_error("Unknown command type"); } } } // Once we have only one clipped result polygon, we can compare the // areas and return early if they don't match. mapnik::box2d box = geom.envelope(); double geom_area = box.width() * box.height(); if (geom_area < (extent_area - 32) ) { return false; } if (i == 0) { key = layer.name(); } else if (i > 0) { key += std::string("-") + layer.name(); } } } // It's either empty or doesn't have features that have vertices that are // not on the border of the bbox. return true; } }} // end ns #endif // __MAPNIK_VECTOR_TILE_UTIL_H__ mapnik-vector-tile-0.3.2/src/vector_tile_processor.hpp0000644000175000017500000003024312174360626021273 0ustar devdev#ifndef __MAPNIK_VECTOR_PROCESSOR_H__ #define __MAPNIK_VECTOR_PROCESSOR_H__ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include // agg #ifdef CONV_CLIPPER #include "agg_path_storage.h" #include "agg_conv_clipper.h" #else #include "agg_conv_clip_polygon.h" #endif #include "agg_conv_clip_polyline.h" #include #include #include #include #include #include namespace mapnik { namespace vector { /* This processor combines concepts from mapnik's feature_style_processor and agg_renderer. It differs in that here we only process layers in isolation of their styles, and because of this we need options for clipping and simplification, for example, that would normally come from a style's symbolizers */ template class processor : private mapnik::noncopyable { public: typedef T backend_type; private: backend_type & backend_; mapnik::Map const& m_; mapnik::request const& m_req_; double scale_factor_; mapnik::CoordTransform t_; unsigned tolerance_; bool painted_; public: processor(T & backend, mapnik::Map const& map, mapnik::request const& m_req, double scale_factor=1.0, unsigned offset_x=0, unsigned offset_y=0, unsigned tolerance=1) : backend_(backend), m_(map), m_req_(m_req), scale_factor_(scale_factor), t_(m_req.width(),m_req.height(),m_req.extent(),offset_x,offset_y), tolerance_(tolerance), painted_(false) {} void apply(double scale_denom=0.0) { mapnik::projection proj(m_.srs(),true); if (scale_denom <= 0.0) { scale_denom = mapnik::scale_denominator(m_req_.scale(),proj.is_geographic()); } scale_denom *= scale_factor_; BOOST_FOREACH ( mapnik::layer const& lay, m_.layers() ) { backend_.start_tile_layer(lay.name()); if (lay.visible(scale_denom)) { apply_to_layer(lay, proj, m_req_.scale(), scale_denom, m_req_.width(), m_req_.height(), m_req_.extent(), m_req_.buffer_size()); } backend_.stop_tile_layer(); } } bool painted() const { return painted_; } void apply_to_layer(mapnik::layer const& lay, mapnik::projection const& proj0, double scale, double scale_denom, unsigned width, unsigned height, box2d const& extent, int buffer_size) { mapnik::datasource_ptr ds = lay.datasource(); if (!ds) { return; } mapnik::projection proj1(lay.srs(),true); mapnik::proj_transform prj_trans(proj0,proj1); box2d query_ext = extent; // unbuffered box2d buffered_query_ext(query_ext); // buffered double buffer_padding = 2.0 * scale; boost::optional layer_buffer_size = lay.buffer_size(); if (layer_buffer_size) // if layer overrides buffer size, use this value to compute buffered extent { buffer_padding *= *layer_buffer_size; } else { buffer_padding *= buffer_size; } buffered_query_ext.width(query_ext.width() + buffer_padding); buffered_query_ext.height(query_ext.height() + buffer_padding); // clip buffered extent by maximum extent, if supplied boost::optional > const& maximum_extent = m_.maximum_extent(); if (maximum_extent) { buffered_query_ext.clip(*maximum_extent); } mapnik::box2d layer_ext = lay.envelope(); bool fw_success = false; bool early_return = false; // first, try intersection of map extent forward projected into layer srs if (prj_trans.forward(buffered_query_ext, PROJ_ENVELOPE_POINTS) && buffered_query_ext.intersects(layer_ext)) { fw_success = true; layer_ext.clip(buffered_query_ext); } // if no intersection and projections are also equal, early return else if (prj_trans.equal()) { early_return = true; } // next try intersection of layer extent back projected into map srs else if (prj_trans.backward(layer_ext, PROJ_ENVELOPE_POINTS) && buffered_query_ext.intersects(layer_ext)) { layer_ext.clip(buffered_query_ext); // forward project layer extent back into native projection if (! prj_trans.forward(layer_ext, PROJ_ENVELOPE_POINTS)) { std::cerr << "feature_style_processor: Layer=" << lay.name() << " extent=" << layer_ext << " in map projection " << " did not reproject properly back to layer projection"; } } else { // if no intersection then nothing to do for layer early_return = true; } if (early_return) { return; } // if we've got this far, now prepare the unbuffered extent // which is used as a bbox for clipping geometries if (maximum_extent) { query_ext.clip(*maximum_extent); } mapnik::box2d layer_ext2 = lay.envelope(); if (fw_success) { if (prj_trans.forward(query_ext, PROJ_ENVELOPE_POINTS)) { layer_ext2.clip(query_ext); } } else { if (prj_trans.backward(layer_ext2, PROJ_ENVELOPE_POINTS)) { layer_ext2.clip(query_ext); prj_trans.forward(layer_ext2, PROJ_ENVELOPE_POINTS); } } double qw = query_ext.width()>0 ? query_ext.width() : 1; double qh = query_ext.height()>0 ? query_ext.height() : 1; mapnik::query::resolution_type res(width/qw, height/qh); mapnik::query q(layer_ext,res,scale_denom,extent); mapnik::layer_descriptor lay_desc = ds->get_descriptor(); BOOST_FOREACH(mapnik::attribute_descriptor const& desc, lay_desc.get_descriptors()) { q.add_property_name(desc.get_name()); } mapnik::featureset_ptr features = ds->features(q); if (!features) { return; } mapnik::feature_ptr feature; while ((feature = features->next())) { boost::ptr_vector & paths = feature->paths(); if (paths.empty()) continue; backend_.start_tile_feature(*feature); BOOST_FOREACH( mapnik::geometry_type & geom, paths) { mapnik::box2d geom_box = geom.envelope(); if (!geom_box.intersects(buffered_query_ext)) { continue; } if (handle_geometry(geom, prj_trans, buffered_query_ext) > 0) { painted_ = true; } } backend_.stop_tile_feature(); } } unsigned handle_geometry(mapnik::geometry_type & geom, mapnik::proj_transform const& prj_trans, mapnik::box2d const& buffered_query_ext) { unsigned path_count = 0; switch (geom.type()) { case mapnik::Point: { if (geom.size() > 0) { typedef mapnik::coord_transform path_type; path_type path(t_, geom, prj_trans); path_count = backend_.add_path(path, tolerance_, geom.type()); } break; } case mapnik::LineString: { if (geom.size() > 1) { typedef agg::conv_clip_polyline line_clipper; line_clipper clipped(geom); clipped.clip_box( buffered_query_ext.minx(), buffered_query_ext.miny(), buffered_query_ext.maxx(), buffered_query_ext.maxy()); typedef mapnik::coord_transform path_type; path_type path(t_, clipped, prj_trans); path_count = backend_.add_path(path, tolerance_, geom.type()); } break; } case mapnik::Polygon: { if (geom.size() > 2) { #ifdef CONV_CLIPPER agg::path_storage ps; ps.move_to(buffered_query_ext.minx(), buffered_query_ext.miny()); ps.line_to(buffered_query_ext.minx(), buffered_query_ext.maxy()); ps.line_to(buffered_query_ext.maxx(), buffered_query_ext.maxy()); ps.line_to(buffered_query_ext.maxx(), buffered_query_ext.miny()); ps.close_polygon(); typedef agg::conv_clipper poly_clipper; poly_clipper clipped(geom,ps, agg::clipper_and, agg::clipper_non_zero, agg::clipper_non_zero, 1); //clipped.rewind(0); #else typedef agg::conv_clip_polygon poly_clipper; poly_clipper clipped(geom); clipped.clip_box( buffered_query_ext.minx(), buffered_query_ext.miny(), buffered_query_ext.maxx(), buffered_query_ext.maxy()); #endif typedef mapnik::coord_transform path_type; path_type path(t_, clipped, prj_trans); path_count = backend_.add_path(path, tolerance_, geom.type()); } break; } case mapnik::Unknown: default: { throw std::runtime_error("unhandled geometry type"); break; } } return path_count; } }; }} // end ns #endif // __MAPNIK_VECTOR_TILE_PROCESSOR_H__ mapnik-vector-tile-0.3.2/src/vector_tile_projection.hpp0000644000175000017500000000260012174360626021424 0ustar devdev#ifndef __MAPNIK_VECTOR_TILE_PROJECTION_H__ #define __MAPNIK_VECTOR_TILE_PROJECTION_H__ #include #include #include #ifndef M_PI #define M_PI 3.141592653589793238462643 #endif namespace mapnik { namespace vector { class spherical_mercator { private: double tile_size_; public: spherical_mercator(unsigned tile_size) : tile_size_(static_cast(tile_size)) {} void from_pixels(double shift, double & x, double & y) { double b = shift/2.0; x = (x - b)/(shift/360.0); double g = (y - b)/-(shift/(2 * M_PI)); y = R2D * (2.0 * std::atan(std::exp(g)) - M_PI_by2); } void xyz(int x, int y, int z, double & minx, double & miny, double & maxx, double & maxy) { minx = x * tile_size_; miny = (y + 1.0) * tile_size_; maxx = (x + 1.0) * tile_size_; maxy = y * tile_size_; double shift = std::pow(2.0,z) * tile_size_; from_pixels(shift,minx,miny); from_pixels(shift,maxx,maxy); lonlat2merc(&minx,&miny,1); lonlat2merc(&maxx,&maxy,1); } }; }} // end ns #endif // __MAPNIK_VECTOR_TILE_PROJECTION_H__ mapnik-vector-tile-0.3.2/src/vector_tile_datasource.hpp0000644000175000017500000003031312174360626021404 0ustar devdev#ifndef __MAPNIK_VECTOR_TILE_DATASOURCE_H__ #define __MAPNIK_VECTOR_TILE_DATASOURCE_H__ #include "vector_tile.pb.h" #include "vector_tile_projection.hpp" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace mapnik { namespace vector { template class tile_featureset : public Featureset { public: tile_featureset(Filter const& filter, std::set const& attribute_names, mapnik::vector::tile_layer const& layer, double tile_x, double tile_y, double scale) : filter_(filter), layer_(layer), tile_x_(tile_x), tile_y_(tile_y), scale_(scale), itr_(0), end_(layer_.features_size()), tr_("utf-8"), ctx_(boost::make_shared()) { std::set::const_iterator pos = attribute_names.begin(); std::set::const_iterator end = attribute_names.end(); for ( ;pos !=end; ++pos) { for (int i = 0; i < layer_.keys_size(); ++i) { if (layer_.keys(i) == *pos) { ctx_->push(*pos); break; } } } } virtual ~tile_featureset() {} feature_ptr next() { while (itr_ < end_) { mapnik::vector::tile_feature const& f = layer_.features(itr_); mapnik::value_integer feature_id = itr_++; std::auto_ptr geom( new mapnik::geometry_type( mapnik::eGeomType(f.type()))); int cmd = -1; const int cmd_bits = 3; unsigned length = 0; double x = tile_x_, y = tile_y_; bool first = true; mapnik::box2d envelope; for (int k = 0; k < f.geometry_size();) { if (!length) { unsigned cmd_length = f.geometry(k++); cmd = cmd_length & ((1 << cmd_bits) - 1); length = cmd_length >> cmd_bits; } if (length > 0) { length--; if (cmd == mapnik::SEG_MOVETO || cmd == mapnik::SEG_LINETO) { int32_t dx = f.geometry(k++); int32_t dy = f.geometry(k++); dx = ((dx >> 1) ^ (-(dx & 1))); dy = ((dy >> 1) ^ (-(dy & 1))); x += (static_cast(dx) / scale_); y -= (static_cast(dy) / scale_); if (first) { envelope.init(x,y,x,y); first = false; } else { envelope.expand_to_include(x,y); } geom->push_vertex(x, y, static_cast(cmd)); } else if (cmd == (mapnik::SEG_CLOSE & ((1 << cmd_bits) - 1))) { geom->push_vertex(0, 0, mapnik::SEG_CLOSE); } else { throw std::runtime_error("Unknown command type"); } } } if (!filter_.pass(envelope)) { continue; } // if encoded feature was given an id, respect it // TODO: id should not be optional! // https://github.com/mapbox/mapnik-vector-tile/issues/17 // https://github.com/mapbox/mapnik-vector-tile/issues/18 if (f.has_id()) { feature_id = f.id(); } mapnik::feature_ptr feature( mapnik::feature_factory::create(ctx_,feature_id)); feature->paths().push_back(geom); // attributes for (int m = 0; m < f.tags_size(); m += 2) { std::size_t key_name = f.tags(m); std::size_t key_value = f.tags(m + 1); if (key_name < static_cast(layer_.keys_size()) && key_value < static_cast(layer_.values_size())) { std::string const& name = layer_.keys(key_name); if (feature->has_key(name)) { mapnik::vector::tile_value const& value = layer_.values(key_value); if (value.has_string_value()) { std::string str = value.string_value(); feature->put(name, tr_.transcode(str.data(), str.length())); } else if (value.has_int_value()) { mapnik::value_integer val = value.int_value(); feature->put(name, val); } else if (value.has_double_value()) { mapnik::value_double val = value.double_value(); feature->put(name, val); } else if (value.has_float_value()) { mapnik::value_double val = value.float_value(); feature->put(name, val); } else if (value.has_bool_value()) { mapnik::value_bool val = value.bool_value(); feature->put(name, val); } else if (value.has_sint_value()) { mapnik::value_integer val = value.sint_value(); feature->put(name, val); } else if (value.has_uint_value()) { mapnik::value_integer val = value.uint_value(); feature->put(name, val); } else { // Do nothing //feature->put_new(name, mapnik::value_null()); } } } } return feature; } return feature_ptr(); } private: Filter filter_; mapnik::vector::tile_layer const& layer_; double tile_x_; double tile_y_; double scale_; unsigned itr_; unsigned end_; mapnik::transcoder tr_; mapnik::context_ptr ctx_; }; class tile_datasource : public datasource { public: tile_datasource(mapnik::vector::tile_layer const& layer, unsigned x, unsigned y, unsigned z, unsigned tile_size); virtual ~tile_datasource(); datasource::datasource_t type() const; featureset_ptr features(query const& q) const; featureset_ptr features_at_point(coord2d const& pt, double tol = 0) const; void set_envelope(box2d const& bbox); box2d envelope() const; boost::optional get_geometry_type() const; layer_descriptor get_descriptor() const; private: mutable mapnik::layer_descriptor desc_; mutable bool attributes_added_; mapnik::vector::tile_layer const& layer_; unsigned x_; unsigned y_; unsigned z_; unsigned tile_size_; mutable bool extent_initialized_; mutable mapnik::box2d extent_; double tile_x_; double tile_y_; double scale_; }; // tile_datasource impl inline tile_datasource::tile_datasource(mapnik::vector::tile_layer const& layer, unsigned x, unsigned y, unsigned z, unsigned tile_size) : datasource(parameters()), desc_("in-memory datasource","utf-8"), attributes_added_(false), layer_(layer), x_(x), y_(y), z_(z), tile_size_(tile_size), extent_initialized_(false) { double resolution = mapnik::EARTH_CIRCUMFERENCE/(1 << z_); tile_x_ = -0.5 * mapnik::EARTH_CIRCUMFERENCE + x_ * resolution; tile_y_ = 0.5 * mapnik::EARTH_CIRCUMFERENCE - y_ * resolution; scale_ = (static_cast(layer_.extent()) / tile_size_) * tile_size_/resolution; } inline tile_datasource::~tile_datasource() {} inline datasource::datasource_t tile_datasource::type() const { return datasource::Vector; } inline featureset_ptr tile_datasource::features(query const& q) const { mapnik::filter_in_box filter(q.get_bbox()); return boost::make_shared > (filter, q.property_names(), layer_, tile_x_, tile_y_, scale_); } inline featureset_ptr tile_datasource::features_at_point(coord2d const& pt, double tol) const { mapnik::filter_at_point filter(pt,tol); std::set names; for (int i = 0; i < layer_.keys_size(); ++i) { names.insert(layer_.keys(i)); } return boost::make_shared > (filter, names, layer_, tile_x_, tile_y_, scale_); } inline void tile_datasource::set_envelope(box2d const& bbox) { extent_initialized_ = true; extent_ = bbox; } inline box2d tile_datasource::envelope() const { if (!extent_initialized_) { mapnik::vector::spherical_mercator merc(tile_size_); double minx,miny,maxx,maxy; merc.xyz(x_,y_,z_,minx,miny,maxx,maxy); extent_.init(minx,miny,maxx,maxy); extent_initialized_ = true; } return extent_; } inline boost::optional tile_datasource::get_geometry_type() const { return datasource::Collection; } inline layer_descriptor tile_datasource::get_descriptor() const { if (!attributes_added_) { for (int i = 0; i < layer_.keys_size(); ++i) { // Object type here because we don't know the precise value until features are unpacked desc_.add_descriptor(attribute_descriptor(layer_.keys(i), Object)); } attributes_added_ = true; } return desc_; } }} // end ns #endif // __MAPNIK_VECTOR_TILE_DATASOURCE_H__ mapnik-vector-tile-0.3.2/Makefile0000755000175000017500000000234512174360626015022 0ustar devdevPROTOBUF_CXXFLAGS=$(shell pkg-config protobuf --cflags) PROTOBUF_LDFLAGS=$(shell pkg-config protobuf --libs-only-L) -lprotobuf-lite MAPNIK_CXXFLAGS=$(shell mapnik-config --cflags) -Wsign-compare MAPNIK_LDFLAGS=$(shell mapnik-config --libs --ldflags --dep-libs) CXXFLAGS := $(CXXFLAGS) # inherit from env LDFLAGS := $(LDFLAGS) # inherit from env all: mapnik-vector-tile mapnik-vector-tile: src/vector_tile.pb.cc src/vector_tile.pb.cc: proto/vector_tile.proto protoc -Iproto/ --cpp_out=./src proto/vector_tile.proto python/vector_tile_pb2.py: proto/vector_tile.proto protoc -Iproto/ --python_out=python proto/vector_tile.proto python: python/vector_tile_pb2.py test/run-test: src/vector_tile.pb.cc test/vector_tile.cpp test/test_utils.hpp src/* $(CXX) -o ./test/run-test test/vector_tile.cpp src/vector_tile.pb.cc -I./src $(CXXFLAGS) $(MAPNIK_CXXFLAGS) $(PROTOBUF_CXXFLAGS) $(MAPNIK_LDFLAGS) $(PROTOBUF_LDFLAGS) $(LDFLAGS) -Wno-unused-private-field test: test/run-test src/vector_tile.pb.cc ./test/run-test python-test: python/vector_tile_pb2.py python ./test/python/test.py clean: @rm -f ./src/vector_tile.pb.cc @rm -f ./src/vector_tile.pb.h @rm -f ./test/run-test @rm -f ./python/vector_tile_pb2.py @rm -f ./python/*pyc .PHONY: test mapnik-vector-tile-0.3.2/proto/0000755000175000017500000000000012174360626014516 5ustar devdevmapnik-vector-tile-0.3.2/proto/vector_tile.proto0000644000175000017500000000726412174360626020133 0ustar devdev// Protocol Version 1 package mapnik.vector; option optimize_for = LITE_RUNTIME; message tile { enum GeomType { Unknown = 0; Point = 1; LineString = 2; Polygon = 3; } // Variant type encoding message value { // Exactly one of these values may be present in a valid message optional string string_value = 1; optional float float_value = 2; optional double double_value = 3; optional int64 int_value = 4; optional uint64 uint_value = 5; optional sint64 sint_value = 6; optional bool bool_value = 7; extensions 8 to max; } message feature { optional uint64 id = 1; // Tags of this feature. Even numbered values refer to the nth // value in the keys list on the tile message, odd numbered // values refer to the nth value in the values list on the tile // message. repeated uint32 tags = 2 [ packed = true ]; // The type of geometry stored in this feature. optional GeomType type = 3 [ default = Unknown ]; // Contains a stream of commands and parameters (vertices). The // repeat count is shifted to the left by 3 bits. This means // that the command has 3 bits (0-7). The repeat count // indicates how often this command is to be repeated. Defined // commands are: // - MoveTo: 1 (2 parameters follow) // - LineTo: 2 (2 parameters follow) // - ClosePath: 7 (no parameters follow) // // Ex.: MoveTo(3, 6), LineTo(8, 12), LineTo(20, 34), ClosePath // Encoded as: [ 9 3 6 18 5 6 12 22 7 ] // == command type 7 (ClosePath) // ===== relative LineTo(+12, +22) == LineTo(20, 34) // === relative LineTo(+5, +6) == LineTo(8, 12) // == [00010 010] = command type 2 (LineTo), length 2 // === relative MoveTo(+3, +6) // == [00001 001] = command type 1 (MoveTo), length 1 // Commands are encoded as uint32 varints, vertex parameters are // encoded as sint32 varints (zigzag). Vertex parameters are // also encoded as deltas to the previous position. The original // position is (0,0) repeated uint32 geometry = 4 [ packed = true ]; } message layer { // Any compliant implementation must first read the version // number encoded in this message and choose the correct // implementation for this version number before proceeding to // decode other parts of this message. required uint32 version = 15 [ default = 1 ]; required string name = 1; // The actual features in this tile. repeated feature features = 2; // Dictionary encoding for keys repeated string keys = 3; // Dictionary encoding for values repeated value values = 4; // The bounding box in this tile spans from 0..4095 units optional uint32 extent = 5 [ default = 4096 ]; extensions 16 to max; } repeated layer layers = 3; extensions 16 to 8191; } mapnik-vector-tile-0.3.2/.gitignore0000644000175000017500000000020012174360626015333 0ustar devdevarchive python .DS_Store src/vector_tile.pb.cc src/vector_tile.pb.h python/vector_tile_pb2.py test/run-test *pyc archive TODO.mdmapnik-vector-tile-0.3.2/.npmignore0000644000175000017500000000021112174360626015344 0ustar devdevarchive examples python .DS_Store src/vector_tile.pb.cc src/vector_tile.pb.h python/vector_tile_pb2.py test/run-test *pyc archive TODO.mdmapnik-vector-tile-0.3.2/package.json0000644000175000017500000000054412174360626015644 0ustar devdev{ "name": "mapnik-vector-tile", "version": "0.3.2", "description": "Mapnik vector tile API", "main": "./package.json", "repository" : { "type" : "git", "url" : "git://github.com/mapbox/mapnik-vector-tile.git" }, "scripts": { "install" : "protoc -Iproto/ --cpp_out=./src/ ./proto/vector_tile.proto" } } mapnik-vector-tile-0.3.2/python/0000755000175000017500000000000012174360626014674 5ustar devdevmapnik-vector-tile-0.3.2/python/__init__.py0000644000175000017500000000000012174360626016773 0ustar devdevmapnik-vector-tile-0.3.2/python/renderer.py0000755000175000017500000002473412174360626017071 0ustar devdev#!/usr/bin/env python import sys import gzip import json import os import math import vector_tile_pb2 class Box2d(object): """Box2d object to represent floating point bounds as minx,miny,maxx,maxy Which we can also think of as: left,bottom,right,top west,south,east,north """ def __init__(self,minx,miny,maxx,maxy): self.minx = float(minx) self.miny = float(miny) self.maxx = float(maxx) self.maxy = float(maxy) def width(self): return self.maxx - self.minx def height(self): return self.maxy - self.miny def bounds(self): return [self.minx,self.miny,self.maxx,self.maxy] def intersects(self, x, y): return not (x > self.maxx or x < self.minx or y > self.maxy or y < self.miny) def __repr__(self): return 'Box2d(%s,%s,%s,%s)' % (self.minx,self.miny,self.maxx,self.maxy) # Max extent edge for spherical mercator MAX_EXTENT = 20037508.342789244 DEG_TO_RAD = math.pi/180 RAD_TO_DEG = 180/math.pi def lonlat2merc(lon,lat): "Convert coordinate pair from epsg:4326 to epsg:3857" x = lon * MAX_EXTENT / 180 y = math.log(math.tan((90 + lat) * math.pi / 360)) / DEG_TO_RAD y = y * MAX_EXTENT / 180 return [x,y] def merc2lonlat(x,y): "Convert coordinate pair from epsg:3857 to epsg:4326" x = (x / MAX_EXTENT) * 180; y = (y / MAX_EXTENT) * 180; y = RAD_TO_DEG * (2 * math.atan(math.exp(y * DEG_TO_RAD)) - math.pi/2); return x,y def minmax(a,b,c): a = max(a,b) a = min(a,c) return a class SphericalMercator(object): """ Core definition of Spherical Mercator Projection. Adapted from: http://svn.openstreetmap.org/applications/rendering/mapnik/generate_tiles.py """ def __init__(self, levels=22, size=256): self.Bc = [] self.Cc = [] self.zc = [] self.Ac = [] self.levels = levels self.size = size for d in range(0,levels+1): e = size/2.0; self.Bc.append(size/360.0) self.Cc.append(size/(2.0 * math.pi)) self.zc.append((e,e)) self.Ac.append(size) size *= 2.0 def ll_to_px(self, px, zoom): """ Convert LatLong (EPSG:4326) to pixel postion """ d = self.zc[zoom] e = round(d[0] + px[0] * self.Bc[zoom]) f = minmax(math.sin(DEG_TO_RAD * px[1]),-0.9999,0.9999) g = round(d[1] + 0.5 * math.log((1+f)/(1-f))*-self.Cc[zoom]) return (e,g) def px_to_ll(self, px, zoom): """ Convert pixel postion to LatLong (EPSG:4326) """ e = self.zc[zoom] f = (px[0] - e[0])/self.Bc[zoom] g = (px[1] - e[1])/-self.Cc[zoom] h = RAD_TO_DEG * ( 2 * math.atan(math.exp(g)) - 0.5 * math.pi) return (f,h) def bbox(self, x, y, zoom): """ Convert XYZ to extent in mercator """ ll = (x * self.size,(y + 1) * self.size) ur = ((x + 1) * self.size, y * self.size) minx,miny = self.px_to_ll(ll,zoom) maxx,maxy = self.px_to_ll(ur,zoom) minx,miny = lonlat2merc(minx,miny) maxx,maxy = lonlat2merc(maxx,maxy) return [minx,miny,maxx,maxy] def xyz(self, bbox, zoom): """ Convert extent in mercator to XYZ extents""" minx,miny,maxx,maxy = bbox ll = merc2lonlat(minx,miny) ur = merc2lonlat(maxx,maxy) px_ll = self.ll_to_px(ll,zoom) px_ur = self.ll_to_px(ur,zoom) return [int(math.floor(px_ll[0]/self.size)), int(math.floor(px_ur[1]/self.size)), int(math.floor((px_ur[0]-1)/self.size)), int(math.floor((px_ll[1]-1)/self.size)) ] class Request(object): """ Request encapulates a single tile request in the common OSM, aka XYZ scheme. Interally we convert the x,y,zoom to a mercator bounding box assuming a 256 pixel tile """ def __init__(self, x, y, zoom): assert isinstance(zoom,int) assert zoom <= 22 assert isinstance(x,int) assert isinstance(y,int) self.x = x self.y = y self.zoom = zoom self.size = 256 self.mercator = SphericalMercator(levels=22,size=self.size) self.extent = Box2d(*self.mercator.bbox(x,y,zoom)) def get_extent(self): return self.extent def get_width(self): return self.extent.width() def get_height(self): return self.extent.height() def bounds(self): return self.extent.bounds() class CoordTransform(object): """ CoordTransform provides methods for converting coordinate pairs to and from a geographical coordinate system (usually mercator) to screen or pixel coordinates for a given tile request. """ def __init__(self,request): assert isinstance(request,Request) self.extent = request.get_extent() self.sx = (float(request.size) / request.get_width()) self.sy = (float(request.size) / request.get_height()) def forward(self,x,y): """Geo coordinates to Screen coordinates""" x0 = (x - self.extent.minx) * self.sx y0 = (self.extent.maxy - y) * self.sy return x0,y0 def backward(self,x,y): """Screen coordinates to Geo coordinates""" x0 = self.extent.minx + x / self.sx y0 = self.extent.maxy - y / self.sy return x0,y0 class VectorTile(object): """ VectorTile is object that makes it easy to turn a sequence of point features into a vector tile using optimized encoding for transport over the wire and later rendering by MapBox tools. """ def __init__(self, req, path_multiplier=16): assert isinstance(req,Request) self.request = req self.extent = self.request.extent self.ctrans = CoordTransform(req) self.path_multiplier = path_multiplier self.tile = vector_tile_pb2.tile() self.layer = self.tile.layers.add() self.layer.name = "points" self.layer.version = 2 self.layer.extent = req.size * self.path_multiplier # == 4096 self.feature_count = 0 self.keys = [] self.values = [] self.pixels = [] def __str__(self): return self.tile.__str__() def to_message(self): return self.tile.SerializeToString() def _decode_coords(self, dx, dy): x = ((dx >> 1) ^ (-(dx & 1))) y = ((dy >> 1) ^ (-(dy & 1))) x,y = float(x)/self.path_multiplier,float(y)/self.path_multiplier x,y = self.ctrans.backward(x,y); return x,y def _encode_coords(self, x, y, rint=False): dx,dy = self.ctrans.forward(x,y) if rint: dx = int(round(dx * self.path_multiplier)) dy = int(round(dy * self.path_multiplier)) else: dx = int(math.floor(dx * self.path_multiplier)) dy = int(math.floor(dy * self.path_multiplier)) dxi = (dx << 1) ^ (dx >> 31) dyi = (dy << 1) ^ (dy >> 31) #assert dxi >= 0 and dxi <= self.layer.extent #assert dyi >= 0 and dyi <= self.layer.extent return dxi,dyi def add_point(self, x, y, properties,skip_coincident=True,rint=False): if self.extent.intersects(x,y): dx,dy = self._encode_coords(x,y,rint=rint) # TODO - use numpy matrix to "paint" points so we # can drop all coincident ones except last key = "%d-%d" % (dx,dy) if key not in self.pixels: f = self.layer.features.add() self.feature_count += 1 f.id = self.feature_count f.type = self.tile.Point self._handle_attr(self.layer,f,properties) f.geometry.append((1 << 3) | (1 & ((1 << 3) - 1))) f.geometry.append(dx) f.geometry.append(dy) self.pixels.append(key) return True else: raise RuntimeError("point does not intersect with tile bounds") return False def to_geojson(self,lonlat=False): jobj = {} jobj['type'] = "FeatureCollection" features = [] for feat in self.layer.features: fobj = {} fobj['type'] = "Feature" properties = {} for i in xrange(0,len(feat.tags),2): key_id = feat.tags[i] value_id = feat.tags[i+1] name = str(self.layer.keys[key_id]) val = self.layer.values[value_id] if val.HasField('bool_value'): properties[name] = val.bool_value elif val.HasField('string_value'): properties[name] = val.string_value elif val.HasField('int_value'): properties[name] = val.int_value elif val.HasField('float_value'): properties[name] = val.float_value elif val.HasField('double_value'): properties[name] = val.double_value else: raise Exception("Unknown value type: '%s'" % val) fobj['properties'] = properties x,y = self._decode_coords(feat.geometry[1],feat.geometry[2]) if lonlat: x,y = merc2lonlat(x,y) fobj['geometry'] = { "type":"Point", "coordinates": [x,y] } features.append(fobj) jobj['features'] = features return json.dumps(jobj,indent=4) def _handle_attr(self, layer, feature, props): for k,v in props.items(): if k not in self.keys: layer.keys.append(k) self.keys.append(k) idx = self.keys.index(k) feature.tags.append(idx) else: idx = self.keys.index(k) feature.tags.append(idx) if v not in self.values: if (isinstance(v,bool)): val = layer.values.add() val.bool_value = v elif (isinstance(v,str)) or (isinstance(v,unicode)): val = layer.values.add() val.string_value = v elif (isinstance(v,int)): val = layer.values.add() val.int_value = v elif (isinstance(v,float)): val = layer.values.add() val.double_value = v else: raise Exception("Unknown value type: '%s'" % type(v)) self.values.append(v) feature.tags.append(self.values.index(v))