Skip to content

Instantly share code, notes, and snippets.

@marr
Last active August 1, 2017 23:37
Show Gist options
  • Save marr/8a602d93febb5c24b2ee9836aeafdd96 to your computer and use it in GitHub Desktop.
Save marr/8a602d93febb5c24b2ee9836aeafdd96 to your computer and use it in GitHub Desktop.
Valley Fair - Topojson
license: mit

This example demonstrates how to compute a suitable translate and scale to zoom to the bounding box of a particular feature. Click on any state to zoom in; click on the focused state or the background to zoom out.

This variant uses transform transitions to change the viewport. A slightly better approach, and one that can also allow free panning and zooming with the mouse if desired, is to use zoom transitions.

forked from mbostock's block: Valley Faire - Topojson

<!DOCTYPE html>
<meta charset="utf-8">
<style>
.background {
fill: none;
pointer-events: all;
}
.feature {
fill: #bff;
}
.feature.active {
fill: #ffb;
}
.Mall-Boundary {
fill: #fbf;
}
.Units {
cursor: pointer;
}
.mesh {
fill: transparent;
stroke: #000;
stroke-linecap: round;
stroke-linejoin: round;
stroke-width: 1px;
vector-effect: non-scaling-stroke;
}
</style>
<body>
<script src="//d3js.org/d3.v4.min.js"></script>
<script src="//unpkg.com/topojson@3"></script>
<script>
var width = 960,
height = 500,
active = d3.select(null);
var projection = d3.geoAlbersUsa();
var path = d3.geoPath(projection);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
svg.append("rect")
.attr("class", "background")
.attr("width", width)
.attr("height", height)
.on("click", reset);
var g = svg.append("g");
d3.json("valley-master_L1.json", function(error, us) {
if (error) throw error;
//
console.log(us);
projection.fitSize([ width, height ], us);
g.selectAll("path")
.data(us.features)
.enter().append("path")
.attr("d", path)
.attr("class", function(d) {
return `feature ${d.properties.layer || ''}`
})
.on("click", clicked);
const topology = topojson.topology({ us });
console.log(topology);
const topo = topojson.mesh(topology, topology.objects.us);
console.log(topo);
g.append("path")
.datum(topo)
.attr("class", "mesh")
.attr("d", path);
});
function clicked(d) {
if (active.node() === this) return reset();
active.classed("active", false);
active = d3.select(this).classed("active", true);
var bounds = path.bounds(d),
dx = bounds[1][0] - bounds[0][0],
dy = bounds[1][1] - bounds[0][1],
x = (bounds[0][0] + bounds[1][0]) / 2,
y = (bounds[0][1] + bounds[1][1]) / 2,
scale = .9 / Math.max(dx / width, dy / height),
translate = [width / 2 - scale * x, height / 2 - scale * y];
g.transition()
.duration(750)
.attr("transform", "translate(" + translate + ")scale(" + scale + ")");
}
function reset() {
active.classed("active", false);
active = d3.select(null);
g.transition()
.duration(750)
.attr("transform", "");
}
</script>
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"layer":"Mall-Boundary"},"geometry":{"type":"MultiLineString","coordinates":[[[-121.94707784755198,37.32583863962866],[-121.94707784755198,37.32567823763789],[-121.94707784755198,37.325859642198424],[-121.94710199026929,37.325859642198424],[-121.94710199026929,37.325841858910835],[-121.9471395214327,37.325812014120615],[-121.9471913268709,37.32586479552003],[-121.9472513534211,37.325913443105705],[-121.94720650251526,37.32594909614929],[-121.94708836093999,37.32594909614929],[-121.94708836093999,37.32619705425766],[-121.94707132039312,37.32619705425766],[-121.94707132039312,37.32626209454304],[-121.9470917643871,37.32626209454304],[-121.9470917643871,37.32653173368929],[-121.9465521936922,37.32653171515233],[-121.9465521936922,37.32652088956522],[-121.94647379785212,37.32652088956522],[-121.94647381339297,37.32653171515233],[-121.94602315192623,37.32653024455327],[-121.94602315192623,37.32648713374331],[-121.94595388633809,37.32648715845929],[-121.94595388633809,37.32651060154862],[-121.94595729755564,37.32651060154862],[-121.94595729755564,37.326515711572625],[-121.94593627855002,37.326515711572625],[-121.94593627855002,37.32651306696533],[-121.9458720948213,37.32651306696533],[-121.9458720948213,37.326515711572625],[-121.94585107581571,37.326515711572625],[-121.94585107581571,37.32651060154862],[-121.94585391202165,37.32651060154862],[-121.94585447926282,37.32649271337225],[-121.94585447926282,37.32646540222774],[-121.94568518496526,37.32643999420385],[-121.94568617180951,37.326435545327215],[-121.94553004061562,37.3264136716798],[-121.94553112847542,37.32640877791374],[-121.94547966493603,37.32640156702301],[-121.94547690643438,37.32641402388265],[-121.94540027448124,37.326403290963526],[-121.94540096604926,37.32640017674839],[-121.94527612636575,37.32638269018072],[-121.94527475877057,37.32639516558048],[-121.94523344340911,37.32639229852492],[-121.94523225453375,37.32640309941459],[-121.94519379091906,37.32640042390834],[-121.94517058842342,37.326398811189705],[-121.94517335469551,37.326373619408315],[-121.94509976097942,37.326368509374646],[-121.94496583766649,37.326359216156476],[-121.9449648974448,37.32636779878949],[-121.94494170271959,37.32636618607019],[-121.94494199799584,37.326363485846585],[-121.94489389905142,37.32636014918572],[-121.94489305984526,37.3263677617155],[-121.94483234172708,37.32636354763663],[-121.94482760176648,37.32640673884444],[-121.9446752159185,37.326396160399284],[-121.94467255066198,37.32642045003956],[-121.94457512504563,37.326413684037774],[-121.94457238208484,37.32643865336189],[-121.94447737307136,37.32643160930694],[-121.94440611048346,37.32642665993107],[-121.94440865918357,37.32640346397547],[-121.94438781112738,37.326402018089894],[-121.94438266710456,37.326448867240416],[-121.94437121349486,37.326448638617606],[-121.94437101146377,37.32645452102011],[-121.94436457458939,37.32645437445865],[-121.94433883896664,37.32645359315845],[-121.94433240837581,37.32645334910487],[-121.944306701349,37.32645217818657],[-121.94430027877262,37.326451836816034],[-121.94427460726523,37.32645027698031],[-121.9442681944341,37.326449838467994],[-121.94424256536956,37.32644789041554],[-121.9442361640146,37.32644735493663],[-121.94421058431634,37.32644501936808],[-121.94420419616837,37.32644438709774],[-121.94417867275989,37.32644166471374],[-121.94417229954979,37.32644093582711],[-121.94415744127195,37.32643916003953],[-121.9440657191492,37.326425745439636],[-121.94403663444015,37.32642062923047],[-121.94400236685617,37.32641405477764],[-121.94398535739103,37.326364684572894],[-121.94398125460546,37.32635276527827],[-121.94395871259611,37.32635120199069],[-121.94395915551048,37.32634715474394],[-121.94376613032821,37.32633511186647],[-121.94376446745677,37.3263502380663],[-121.94373078265484,37.326347902403285],[-121.94370238174339,37.326411193901805],[-121.9436382446372,37.32639299675185],[-121.94364038927513,37.32637345875432],[-121.94357404536763,37.326368855398684],[-121.94357947689625,37.326319404837164],[-121.94312442513812,37.325957345161285],[-121.94329874690209,37.325818780176576],[-121.94298558314476,37.325569640618184],[-121.94281930377296,37.325701866351295],[-121.94259293568753,37.32552185787981],[-121.94258806362967,37.32552575687332],[-121.94258295068859,37.32552169104491],[-121.94258073611682,37.32552345208006],[-121.94246197290738,37.32542887516669],[-121.94246470032733,37.32542684224991],[-121.94245975833563,37.32542291235586],[-121.94246413308615,37.32541943353441],[-121.94219407188854,37.32520467933331],[-121.94237461776473,37.325061169673944],[-121.94239388842418,37.32507650004075],[-121.94256742537502,37.3249385575227],[-121.94258750415891,37.32495453054268],[-121.94266945108426,37.32488939025954],[-121.94266001778563,37.32488188880424],[-121.94338802911071,37.32430296451163],[-121.94399638362722,37.324786903260744],[-121.94397054695676,37.32480553333875],[-121.94404042640862,37.32486110223057],[-121.94403861589909,37.32486254196668],[-121.94418320023816,37.32497751685567],[-121.9441850107477,37.324976077121775],[-121.94419063653697,37.3249805508013],[-121.9443691698725,37.32512252201785],[-121.94492432804437,37.32512252201785],[-121.94492432804437,37.325124554942875],[-121.9449277392619,37.325124554942875],[-121.9449277392619,37.325143296161016],[-121.94500498507878,37.325143296161016],[-121.94511065511838,37.325143296161016],[-121.94523445356467,37.325143296161016],[-121.94523445356467,37.32516213006093],[-121.94563598262016,37.32516167898663],[-121.94595442249756,37.32516167898663],[-121.94595442249756,37.32514555771223],[-121.9462522785133,37.32514555771223],[-121.9462522785133,37.32512387524149],[-121.94677410932283,37.32512387524149],[-121.94701195432923,37.324934738827295],[-121.94701395909948,37.32493633303994],[-121.94703946941199,37.3249160469901],[-121.94703626022554,37.324913488834184],[-121.94730563762555,37.32469815852724],[-121.94728635919564,37.32468282808327],[-121.94734641682754,37.324635069497546],[-121.94734995237192,37.324635069497546],[-121.94734995237192,37.324558738497856],[-121.94732041697812,37.324558738497856],[-121.94732041697812,37.3245316367416],[-121.94731416955462,37.3245316367416],[-121.94731416955462,37.324128069054666],[-121.94857642106152,37.324128069054666],[-121.94857817717806,37.324911968770465],[-121.94849384473159,37.32491210471112],[-121.94849382919074,37.3249065496813],[-121.9483232605431,37.32490790290885],[-121.94832409197879,37.32510984867547],[-121.9477707753982,37.32510984867547],[-121.9477707753982,37.32521643815352],[-121.9477707753982,37.32523450582748],[-121.94777247712176,37.32523450582748],[-121.94777247712176,37.325260766973685],[-121.94777247712176,37.32551633996948],[-121.94733086820268,37.32551633996948],[-121.94733086820268,37.32549728371171],[-121.94730536566058,37.32549728371171],[-121.94707783978154,37.325678212921616],[-121.94707783978154,37.32583863962866],[-121.94707784755198,37.32583863962866]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"MultiLineString","coordinates":[[[-121.94424787350378,37.32624633806638],[-121.94426831749779,37.326060059187725],[-121.94442279359068,37.32607077979782],[-121.94438660671116,37.32640042390834],[-121.94438796653591,37.32640051659331],[-121.94438265933415,37.32644885488243],[-121.94437119795401,37.326448638617606],[-121.94437101146377,37.32645450866214],[-121.944364599745,37.326454363785345],[-121.9443389643755,37.326453589517456],[-121.94433255876828,37.326453347285366],[-121.94430695143244,37.32645218384653],[-121.94430055373053,37.32645184438422],[-121.94427498160363,37.326450292274856],[-121.94426859360084,37.326449855707494],[-121.94424306385801,37.326447915428105],[-121.94423668734815,37.3264473818808],[-121.94421120716464,37.326445053931835],[-121.9442048439415,37.326444423529665],[-121.94417942049255,37.32644170841158],[-121.94417307234995,37.32644098127972],[-121.94415827270768,37.32643920947146],[-121.94415908083208,37.32643185646677],[-121.94416915907618,37.32633225716667],[-121.94417000605273,37.32633231895673],[-121.94417995997001,37.32624162348077],[-121.94424787350378,37.32624633806638],[-121.94424787350378,37.32624633806638]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94482016546763,37.32522356265065],[-121.94482016546763,37.325174166947306],[-121.94482129995,37.3251732586197],[-121.94482129995,37.325138649476315],[-121.94471779008919,37.325138649476315],[-121.94471779008919,37.32520088536779],[-121.94480085595603,37.32520088536779],[-121.94480085595603,37.32522356265065],[-121.94482016546763,37.32522356265065]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94388798616768,37.32563819733254],[-121.94389937761396,37.325629138828404],[-121.94389584984,37.32562633353426],[-121.9439141025735,37.325611825095066],[-121.94388277221103,37.32558691110778],[-121.94385314357207,37.325610478059275],[-121.94388798616768,37.32563819733254]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94489570956094,37.32569684895772],[-121.94489570956094,37.325735696674585],[-121.94490933889027,37.325735696674585],[-121.94490933889027,37.325725754577505],[-121.94492296821959,37.325725754577505],[-121.94492296821959,37.32569684895772],[-121.94489570956094,37.32569684895772]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94489570956094,37.32577671321785],[-121.94492240097843,37.32577671321785],[-121.94492240097843,37.325744730449685],[-121.94490933889027,37.325744730449685],[-121.94490933889027,37.325735696674585],[-121.94489570956094,37.325735696674585],[-121.94489570956094,37.32577671321785]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94529726969819,37.32594090274772],[-121.94529726969819,37.325907832538576],[-121.9451865177992,37.325907832538576],[-121.9451865177992,37.32591607537607],[-121.94518566305221,37.32591607537607],[-121.94518566305221,37.32594090274772],[-121.94529726969819,37.32594090274772]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94416243765664,37.325832404972374],[-121.94416243765664,37.325805303675494],[-121.94412835656291,37.325805303675494],[-121.94412835656291,37.325832404972374],[-121.94416243765664,37.325832404972374]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.9442067446326,37.325832404972374],[-121.9442067446326,37.325732131360866],[-121.944197894116,37.32572509959779],[-121.94412836433334,37.32578038975235],[-121.94412836433334,37.325805303675494],[-121.94416243765664,37.325805303675494],[-121.94416243765664,37.325832404972374],[-121.9442067446326,37.325832404972374]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94469066352778,37.325241315189075],[-121.9446350039577,37.325241315189075],[-121.9446350039577,37.32518065500126],[-121.94461512720493,37.32518065500126],[-121.94461512720493,37.32519601623915],[-121.9446156944461,37.32519601623915],[-121.9446156944461,37.32529041425197],[-121.94469066352778,37.32529041425197],[-121.94469066352778,37.325241315189075]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94424787350378,37.32624633806638],[-121.9442650694592,37.32608975558284],[-121.94424263623586,37.32608819846877],[-121.9442374222792,37.32613564717994],[-121.9441925014395,37.32613252059565],[-121.94420088573048,37.326058551505255],[-121.94419654206166,37.32605824873298],[-121.944196293408,37.32606050407763],[-121.9439961272031,37.326046607446],[-121.94396631984434,37.32631818139414],[-121.94404891171514,37.32632390933176],[-121.94404472345488,37.32636210175025],[-121.94405955720042,37.32641741615208],[-121.9440594095623,37.32641806494678],[-121.94415908860252,37.32643185646677],[-121.94416916684662,37.32633225716667],[-121.94417001382317,37.32633231895673],[-121.94417997551085,37.32624162348077],[-121.94418075255358,37.32624167909188],[-121.94417997551085,37.32624162348077],[-121.94424787350378,37.32624633806638]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94635485592285,37.32520380190158],[-121.94635485592285,37.325175513990914],[-121.94628627413232,37.325175513990914],[-121.94628627413232,37.32520380190158],[-121.94635485592285,37.32520380190158]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94563124265957,37.32579153057763],[-121.9459737397796,37.32579153057763],[-121.9459737397796,37.325721898847746],[-121.94595982294449,37.325721898847746],[-121.94595982294449,37.32571023279249],[-121.94563124265957,37.32571023279249],[-121.94563124265957,37.32579153057763]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94396733777032,37.32574602805066],[-121.94400340809341,37.32574602805066],[-121.94400340809341,37.32572045294906],[-121.94398722229353,37.32572045294906],[-121.94398722229353,37.325703967230254],[-121.9439636468174,37.325703967230254],[-121.9439636468174,37.32565693842254],[-121.94394092608825,37.32565693842254],[-121.94394092608825,37.32572400590524],[-121.94396733777032,37.32572400590524],[-121.94396733777032,37.32574602805066]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94400340809341,37.325768550692715],[-121.94400340809341,37.32574602805066],[-121.94396733777032,37.32574602805066],[-121.94396733777032,37.32576804401059],[-121.94394092608825,37.32576804401059],[-121.94394092608825,37.32578726085498],[-121.94398637531698,37.32578726085498],[-121.94400340809341,37.325768550692715]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94563124265957,37.325872958034694],[-121.94599731525574,37.325872958034694],[-121.94599731525574,37.32583534001874],[-121.94606518216699,37.32583534001874],[-121.94606518216699,37.32577707160273],[-121.9460620739961,37.32577459380376],[-121.94602570839676,37.32577459380376],[-121.94602570839676,37.325721898847746],[-121.9459737397796,37.325721898847746],[-121.9459737397796,37.32579153057763],[-121.94563124265957,37.32579153057763],[-121.94563124265957,37.325872958034694]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.9433121431186,37.32532585750221],[-121.9434630215037,37.32539310447373],[-121.94346580331663,37.32538916221979],[-121.94346934663145,37.32539074406466],[-121.94354453328509,37.32533098614408],[-121.94342514067105,37.32523603206374],[-121.9433121431186,37.32532585750221]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94516099194583,37.326367897653526],[-121.94522911528115,37.326367897653526],[-121.94522911528115,37.32616832183169],[-121.94516808634584,37.32616175353577],[-121.94516718497631,37.326167092207186],[-121.94516099194583,37.326166431052314],[-121.94516099194583,37.326367897653526]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94533135079192,37.326179246333865],[-121.94522911528115,37.32616832183169],[-121.94522911528115,37.326367897653526],[-121.94516099194583,37.326367897653526],[-121.94516099194583,37.32637275434824],[-121.94517335469551,37.32637361322932],[-121.94517291178117,37.32637766047465],[-121.94519610650637,37.326379273193695],[-121.94519379091906,37.32640041772933],[-121.94523225453375,37.326403093235584],[-121.94523343563867,37.32639229234596],[-121.94527475877057,37.32639515940146],[-121.94527612636575,37.326382684001715],[-121.9453343734881,37.32639084646013],[-121.9453361684568,37.32638276432873],[-121.94533135079192,37.32638209081772],[-121.94533135079192,37.326179246333865]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94357782179524,37.325714440728945],[-121.94375014655945,37.325577401525635],[-121.94365383988463,37.32550097879708],[-121.94361788611795,37.325529569359645],[-121.94364196667185,37.32554872447432],[-121.94352879039957,37.325638673120224],[-121.94353269115403,37.32564469770455],[-121.94352662245038,37.32564717550778],[-121.94356794558229,37.325711036069634],[-121.94357400651549,37.325708552089424],[-121.94357782179524,37.325714440728945]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94364003960591,37.325511952828876],[-121.94371427049701,37.32545292413569],[-121.94365595344084,37.32540655015339],[-121.94365535511793,37.325407025942525],[-121.94362319331972,37.32538145690465],[-121.9436105042121,37.32539154116614],[-121.94360567877679,37.3253877101356],[-121.94355640649786,37.32542688550345],[-121.9435480455182,37.32543876169137],[-121.94364003960591,37.325511952828876]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94584253611619,37.325689681252086],[-121.94584253611619,37.325536119173606],[-121.9457914144756,37.325536119173606],[-121.9457914144756,37.325689681252086],[-121.94584253611619,37.325689681252086]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94684739999227,37.32536343251964],[-121.94691968827658,37.325305942302805],[-121.946762671254,37.32518108135908],[-121.946762671254,37.32514136210213],[-121.94672716817209,37.32514136210213],[-121.94672716817209,37.325267829675695],[-121.94684739999227,37.32536343251964]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94684739999227,37.32536343251964],[-121.94672716817209,37.325267829675695],[-121.94672716817209,37.32542590920903],[-121.94676882543233,37.32542590920903],[-121.94684739999227,37.32536343251964]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94589365775681,37.325689681252086],[-121.94589365775681,37.325536119173606],[-121.94584253611619,37.325536119173606],[-121.94584253611619,37.325689681252086],[-121.94589365775681,37.325689681252086]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94614925041893,37.325706395599084],[-121.94614925041893,37.325536119173606],[-121.94604445843763,37.325536119173606],[-121.94604445843763,37.325706395599084],[-121.94614925041893,37.325706395599084]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94525978515732,37.325690132323246],[-121.94525978515732,37.3256397729931],[-121.94528022915132,37.3256397729931],[-121.94528022915132,37.325536119173606],[-121.94522911528115,37.325536119173606],[-121.94522911528115,37.325690132323246],[-121.94525978515732,37.325690132323246]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94434277373128,37.32542590920903],[-121.94434277373128,37.32527234659152],[-121.94434334097248,37.32527234659152],[-121.94434334097248,37.325268731823044],[-121.94422425140509,37.32536343251964],[-121.944302825965,37.32542590920903],[-121.94434277373128,37.32542590920903]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94441178289533,37.32527234659152],[-121.94434277373128,37.32527234659152],[-121.94434277373128,37.32542590920903],[-121.9444129251481,37.32542590920903],[-121.9444129251481,37.3253863878121],[-121.94441178289533,37.3253863878121],[-121.94441178289533,37.32527234659152]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94421054437147,37.3257150339182],[-121.94432431896666,37.3257150339182],[-121.94432431896666,37.32560318676411],[-121.94434306123709,37.32560318676411],[-121.94434306123709,37.32550223932785],[-121.94433965001956,37.32550223932785],[-121.94433965001956,37.32549682028126],[-121.94423202183229,37.32549682028126],[-121.94423202183229,37.32554337340086],[-121.9442162323242,37.32554337340086],[-121.94401541340345,37.32570306508809],[-121.94401541340345,37.32578726085498],[-121.94394092608825,37.32578726085498],[-121.94394092608825,37.325832404972374],[-121.94412836433334,37.325832404972374],[-121.94412836433334,37.32578038975235],[-121.94421054437147,37.3257150339182]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94370179896134,37.32520597694362],[-121.94358239080647,37.32511104742173],[-121.94347872553708,37.32519343337637],[-121.9434931863021,37.32520493267627],[-121.94346868614511,37.32522441536577],[-121.943573524749,37.32530794432746],[-121.94370179896134,37.32520597694362]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94422425140509,37.32536343251964],[-121.94434334097248,37.325268731823044],[-121.94434334097248,37.32521124153381],[-121.94418811114814,37.32533468741673],[-121.94422425140509,37.32536343251964]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94414048619979,37.32508511989495],[-121.94404971206914,37.32501294171615],[-121.94397900118156,37.32506917779824],[-121.94397900118156,37.32516840184745],[-121.94400737878173,37.325190967916356],[-121.94414048619979,37.32508511989495]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94341303434547,37.32546404029323],[-121.94341720706487,37.325458114559666],[-121.94342315144168,37.325460765383156],[-121.94346480093152,37.32540166250081],[-121.94345885655471,37.32539901785431],[-121.9434630215037,37.32539310447373],[-121.9433121431186,37.32532585750221],[-121.943265877995,37.325362629238754],[-121.94325159594979,37.325351265902825],[-121.94321870373143,37.32537740960568],[-121.94341303434547,37.32546404029323]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94713656867037,37.32513348374668],[-121.94701053234107,37.325033258635386],[-121.94698297063576,37.32505517593842],[-121.94693751363661,37.32501902814174],[-121.94689278705758,37.32505458892305],[-121.94706427261563,37.325190967916356],[-121.94713656867037,37.32513348374668]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94699198433132,37.325248458221125],[-121.94706427261563,37.325190967916356],[-121.94689278705758,37.32505458892305],[-121.94687169811814,37.325071365202405],[-121.94691788553747,37.325108093809746],[-121.9468666861926,37.32514880174051],[-121.94699198433132,37.325248458221125]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"MultiLineString","coordinates":[[[-121.94364696305654,37.326199186017845],[-121.94366278364636,37.3260550603552],[-121.94366153785471,37.32605444832946],[-121.94366030563341,37.326053821344715],[-121.94365908716757,37.32605317955715],[-121.94365788264221,37.32605252312294],[-121.94365669224237,37.326051852198205],[-121.94365551615309,37.326051166939095],[-121.9436543545594,37.32605046750179],[-121.94365320764638,37.326049754042444],[-121.94365207559905,37.326049026717186],[-121.94365095860245,37.32604828568222],[-121.94364985684163,37.326047531093636],[-121.9436487705017,37.32604676310767],[-121.94364769976758,37.32604598188041],[-121.94364664482443,37.326045187568056],[-121.94364560585721,37.32604438032671],[-121.94364458305104,37.326043560312584],[-121.94364357659089,37.32604272768182],[-121.94364258666187,37.326041882590545],[-121.94364161344897,37.32604102519497],[-121.9436406571373,37.326040155651185],[-121.94363971791185,37.32603927411539],[-121.94363879595768,37.32603838074378],[-121.94363789145983,37.3260374756924],[-121.94363700460336,37.32603655911747],[-121.9436361355733,37.32603563117517],[-121.9436352845547,37.32603469202161],[-121.94363445173262,37.326033741812964],[-121.94363363729208,37.32603278070542],[-121.94363284141812,37.32603180885508],[-121.94363206429584,37.32603082641813],[-121.94363130611022,37.326029833550706],[-121.94363056704634,37.32602883040897],[-121.94362984728926,37.32602781714911],[-121.94362961169259,37.326027477174335],[-121.94360089996407,37.32603997734917],[-121.94341409889398,37.32618844071004],[-121.94357922047215,37.32631977557749],[-121.9435826394601,37.32628860866946],[-121.94364937188898,37.32629324292506],[-121.94365270540226,37.32626287309829],[-121.94368778888109,37.32626530762809],[-121.94368697298624,37.32627272861821],[-121.94371394413909,37.32627460085787],[-121.94372165240286,37.326204376390265],[-121.94364696305654,37.326199186017845],[-121.94364696305654,37.326199186017845]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"MultiLineString","coordinates":[[[-121.94388676621061,37.32581392344608],[-121.9438385817915,37.325775588630776],[-121.9436874469823,37.32589570308414],[-121.94370239728424,37.32591880651091],[-121.94370378640579,37.325918715253096],[-121.94370517584878,37.32591864054754],[-121.9437065653891,37.32591858236323],[-121.9437079548027,37.32591854066911],[-121.94370934386549,37.32591851543418],[-121.94371073235347,37.32591850662743],[-121.94371212004249,37.325918514217776],[-121.94371350670853,37.32591853817419],[-121.94371489212752,37.32591857846566],[-121.94371627607536,37.32591863506116],[-121.94371765832803,37.32591870792966],[-121.9437190386614,37.3259187970401],[-121.94372041685146,37.325918902361465],[-121.94372179267411,37.32591902386275],[-121.94372316590531,37.325919161512886],[-121.94372453632097,37.32591931528084],[-121.94372590369701,37.32591948513563],[-121.9437272678094,37.32591967104618],[-121.94372862843403,37.32591987298149],[-121.94372998534683,37.32592009091047],[-121.9437313383238,37.325920324802155],[-121.9437326871408,37.325920574625485],[-121.9437340315738,37.32592084034944],[-121.94373537139869,37.32592112194294],[-121.94373670639145,37.325921419375035],[-121.94373803632801,37.325921732614674],[-121.94373936098427,37.32592206163076],[-121.94374068013616,37.325922406392294],[-121.94374199355966,37.32592276686829],[-121.94374330103064,37.32592314302768],[-121.94374460232508,37.325923534839404],[-121.94374589721889,37.32592394227251],[-121.94374718548801,37.325924365295904],[-121.94374761340018,37.32592450976283],[-121.94388676621061,37.32581392344608],[-121.94388676621061,37.32581392344608]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.9446156944461,37.325813435301384],[-121.9446156944461,37.32549682028126],[-121.94451345893533,37.32549682028126],[-121.94451345893533,37.32564703956844],[-121.94440894668939,37.32564703956844],[-121.94440894668939,37.32581163101972],[-121.94443089814622,37.32581163101972],[-121.94443089814622,37.325813435301384],[-121.9445140261765,37.325813435301384],[-121.9445140261765,37.32579808036874],[-121.94455662365846,37.32579808036874],[-121.94455662365846,37.325813435301384],[-121.9446156944461,37.325813435301384]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94517799364056,37.325690132323246],[-121.94517799364056,37.325536119173606],[-121.94512687977038,37.325536119173606],[-121.94512687977038,37.325706327629476],[-121.9451630122569,37.325706327629476],[-121.9451630122569,37.325690132323246],[-121.94517799364056,37.325690132323246]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"MultiLineString","coordinates":[[[-121.94410805243662,37.32596195472118],[-121.94412060944698,37.32584753745242],[-121.94398917267075,37.32584753745242],[-121.94398917267075,37.325883165811064],[-121.94403117960024,37.325883165811064],[-121.94402229023152,37.32596415445741],[-121.9440216841382,37.325969629081584],[-121.94402896502851,37.32596928923475],[-121.94403115190158,37.325969210984084],[-121.94407709339258,37.3259678991523],[-121.9440792817934,37.32596785246662],[-121.94410189825827,37.325967454061626],[-121.94410746188416,37.32596737991324],[-121.94410805243662,37.32596195472118],[-121.94410805243662,37.32596195472118]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94594477162698,37.32546520813848],[-121.94594477162698,37.32533738767731],[-121.94587661720992,37.32533738767731],[-121.94587661720992,37.32546520813848],[-121.94594477162698,37.32546520813848]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"MultiLineString","coordinates":[[[-121.94379846307581,37.325968399453856],[-121.94383174381554,37.32594195318384],[-121.94383174381554,37.325857664904674],[-121.94374762117062,37.3259245221209],[-121.94374977191481,37.32592527720213],[-121.9437518919365,37.32592607386806],[-121.94375398047286,37.32592691146107],[-121.94375603676109,37.325927789323416],[-121.94375806003826,37.32592870679751],[-121.94376004954161,37.32592966322565],[-121.94376200450824,37.32593065795021],[-121.94376392417536,37.32593169031348],[-121.94376580778012,37.325932759657846],[-121.94376765455966,37.32593386532561],[-121.94376946375118,37.32593500665915],[-121.94377123459178,37.32593618300076],[-121.94377296631869,37.325937393692826],[-121.94377465816905,37.32593863807766],[-121.94377630937998,37.3259399154976],[-121.9437779191887,37.32594122529497],[-121.94377948683234,37.325942566812145],[-121.94378101154807,37.325943939391436],[-121.94378249257305,37.325945342375206],[-121.94378392914443,37.32594677510576],[-121.9437853204994,37.32594823692547],[-121.94378666587511,37.32594972717665],[-121.94378796450869,37.32595124520168],[-121.94378921563735,37.32595279034285],[-121.94379041849824,37.32595436194248],[-121.94379157232848,37.325955959343005],[-121.94379267636528,37.3259575818867],[-121.9437937298458,37.32595922891586],[-121.94379473200713,37.32596089977294],[-121.94379568208653,37.325962593800156],[-121.94379657932112,37.32596431033994],[-121.94379742294805,37.32596604873456],[-121.94379821220453,37.325967808326425],[-121.94379846307581,37.325968399453856],[-121.94379846307581,37.325968399453856]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"MultiLineString","coordinates":[[[-121.94372165240286,37.326204370211244],[-121.94373720879813,37.326062697631954],[-121.9437349489816,37.32606320640953],[-121.9437326795847,37.32606366841594],[-121.94373040168496,37.3260640837603],[-121.94372811635992,37.32606445255169],[-121.94372582468714,37.326064774899265],[-121.94372352774414,37.326065050912106],[-121.94372122660845,37.32606528069935],[-121.94371892235763,37.3260654643701],[-121.94371661606921,37.326065602033424],[-121.94371430882076,37.32606569379844],[-121.94371200168979,37.32606573977432],[-121.94370969575387,37.32606574007012],[-121.94370739209049,37.32606569479495],[-121.94370509177722,37.326065604057916],[-121.94370279589162,37.326065467968206],[-121.94370050551122,37.326065286634815],[-121.94369822171353,37.32606506016688],[-121.94369594557612,37.32606478867358],[-121.94369367817653,37.32606447226395],[-121.94369142059227,37.3260641110471],[-121.94368917390094,37.3260637051322],[-121.94368693918003,37.32606325462832],[-121.9436847175071,37.32606275964454],[-121.9436825099597,37.32606222029001],[-121.94368031761535,37.32606163667384],[-121.94367814155159,37.326061008905114],[-121.94367598284596,37.32606033709297],[-121.94367384257603,37.326059621346445],[-121.94367172181931,37.326058861774726],[-121.94366962165337,37.32605805848689],[-121.94366754315573,37.32605721159207],[-121.94366548740389,37.32605632119933],[-121.9436634554755,37.32605538741781],[-121.94366278364636,37.326055066534195],[-121.94364696305654,37.32619919219688],[-121.94372165240286,37.326204370211244],[-121.94372165240286,37.326204370211244]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94699198433132,37.325248458221125],[-121.9468666861926,37.32514880174051],[-121.94686165095575,37.32515280579807],[-121.94681546353645,37.3251160772126],[-121.9467836669483,37.32514136210213],[-121.946762671254,37.32514136210213],[-121.946762671254,37.32518108135908],[-121.94691968827658,37.325305942302805],[-121.94699198433132,37.325248458221125]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94451345893533,37.32549682028126],[-121.94451094908732,37.32549682028126],[-121.94450452294403,37.325491710187904],[-121.94446646339158,37.325491710187904],[-121.94440894668939,37.32553745385262],[-121.94440894668939,37.32564703956844],[-121.94451345893533,37.32564703956844],[-121.94451345893533,37.32549682028126]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"MultiLineString","coordinates":[[[-121.94533135856236,37.32546521431752],[-121.94546800929521,37.32546520813848],[-121.94546874216645,37.32546429235995],[-121.94546948749696,37.32546338359579],[-121.9454702451999,37.32546248192014],[-121.94547101518837,37.32546158740706],[-121.94547179737556,37.32546070013059],[-121.94547259167459,37.325459820164795],[-121.94547339799863,37.32545894758381],[-121.94547421626075,37.32545808246165],[-121.94547504637414,37.32545722487244],[-121.94547588825198,37.32545637489024],[-121.94547674180735,37.32545553258909],[-121.94547760695343,37.325454698043075],[-121.94547848360334,37.325453871326346],[-121.94547937167022,37.32545305251287],[-121.94548027106723,37.325452241676786],[-121.9454811817075,37.325451438892145],[-121.94548210350418,37.325450644233044],[-121.94548303637042,37.32544985777352],[-121.94548398021932,37.3254490795877],[-121.9454849349641,37.32544830974963],[-121.94548590051782,37.325447548333386],[-121.94548687679367,37.32544679541304],[-121.94548786370477,37.32544605106267],[-121.94548886116428,37.32544531535632],[-121.9454898690853,37.32544458836813],[-121.94549088738106,37.32544387017214],[-121.94549191596462,37.325443160842426],[-121.94549295474914,37.32544246045305],[-121.9454940036478,37.32544176907814],[-121.94549506257371,37.3254410867917],[-121.94549613144,37.325440413667835],[-121.94549721015984,37.32543974978063],[-121.94549829864636,37.32543909520416],[-121.94549866363056,37.325438879093824],[-121.94545147382611,37.325388272432036],[-121.94545150490785,37.325357939314],[-121.94545148936697,37.32533738767731],[-121.94533136633277,37.32533739385639],[-121.94533136633277,37.32546521431752],[-121.94533135856236,37.32546521431752]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94705102403724,37.32552535523374],[-121.94691687538193,37.32541868586584],[-121.94691687538193,37.325421392302474],[-121.94690779175251,37.325421392302474],[-121.94690779175251,37.325495467064314],[-121.94664226071399,37.325495467064314],[-121.94659596450867,37.32553227579227],[-121.94659596450867,37.32576239635826],[-121.94660732487326,37.32576239635826],[-121.94660732487326,37.32576194528757],[-121.94665901375505,37.32576194528757],[-121.94665901375505,37.32581614790283],[-121.94672681850285,37.32581614790283],[-121.94672681850285,37.3258355686434],[-121.94698997179067,37.3258355686434],[-121.94698997179067,37.32581555471437],[-121.94705187878422,37.32581555471437],[-121.94705187878422,37.32581208209014],[-121.94707392348624,37.32581208209014],[-121.94707392348624,37.325674814439765],[-121.94715684948538,37.32560887150278],[-121.94705142032903,37.32552503392209],[-121.94705102403724,37.32552535523374]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94723808153141,37.32484516626545],[-121.94718416253701,37.324888037031656],[-121.94718416253701,37.32491486677807],[-121.94716106882734,37.324933231122245],[-121.94718944642752,37.32495580344087],[-121.94727726779583,37.32495580344087],[-121.94730855153576,37.32493092631077],[-121.94723808153141,37.32487488785719],[-121.94723808153141,37.32484516626545]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94468441610432,37.325699394728886],[-121.94468441610432,37.32549682646034],[-121.94461568667566,37.32549682646034],[-121.94461568667566,37.325699394728886],[-121.94468441610432,37.325699394728886]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94522911528115,37.325690132323246],[-121.94522911528115,37.32553611299453],[-121.94517799364056,37.32553611299453],[-121.94517799364056,37.325690132323246],[-121.94522911528115,37.325690132323246]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94482016546763,37.325813435301384],[-121.94482016546763,37.325536119173606],[-121.94481505252652,37.325536119173606],[-121.94476564037993,37.32549682028126],[-121.94468441610432,37.32549682028126],[-121.94468441610432,37.325699394728886],[-121.9446156944461,37.325699394728886],[-121.9446156944461,37.325813435301384],[-121.94465147726339,37.325813435301384],[-121.94465147726339,37.32575652625968],[-121.94477075332102,37.32575652625968],[-121.94477075332102,37.325813435301384],[-121.94482016546763,37.325813435301384]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94533135856236,37.32546521431752],[-121.94533135856236,37.32533739385639],[-121.9453215522832,37.32533738767731],[-121.9453215522832,37.32516213624007],[-121.94520752903435,37.32516213624007],[-121.94520752903435,37.32518426977394],[-121.94522911528115,37.32518426977394],[-121.94522911528115,37.32546520813848],[-121.94533135856236,37.32546521431752]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94404971206914,37.32501294171615],[-121.94414048619979,37.32508511989495],[-121.94416569346564,37.32506507487048],[-121.94416669585074,37.32506587197541],[-121.94420979841047,37.32503160263367],[-121.94419473155212,37.3250196275156],[-121.94421541642936,37.325003178717736],[-121.944153967891,37.3249543142736],[-121.9441298717962,37.32497347571406],[-121.94411440864607,37.32496117927268],[-121.94410216245281,37.32497091756008],[-121.94410748519545,37.32497515025442],[-121.94409804412636,37.324982657879545],[-121.94409292341484,37.32497858584263],[-121.94404971206914,37.32501294171615]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94388277221103,37.32558691110778],[-121.94381047615627,37.32552942724102],[-121.94357782179524,37.325714440728945],[-121.94358180802442,37.32572060124636],[-121.94357574709119,37.32572308522617],[-121.94361707022307,37.32578693954443],[-121.9436231311563,37.32578446174578],[-121.94362693866562,37.325790350379336],[-121.94388277221103,37.32558691110778]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94739359886154,37.325289462672174],[-121.94739359886154,37.32524735216343],[-121.9472845176044,37.32516060382319],[-121.94722857052851,37.32516060382319],[-121.94707575730705,37.32528212191315],[-121.94708873392048,37.325292496605186],[-121.94708595987797,37.325294764331005],[-121.94730102199179,37.32546578279246],[-121.94730102199179,37.325340501936495],[-121.94732402245634,37.325340501936495],[-121.94732402245634,37.325289462672174],[-121.94739359886154,37.325289462672174]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94740674642439,37.32514410562332],[-121.94755518489532,37.325262144911235],[-121.94770319599277,37.325262144911235],[-121.94770319599277,37.325216456690825],[-121.94776438810705,37.325216456690825],[-121.94776438810705,37.32512492568907],[-121.94772761067507,37.32512492568907],[-121.94772761067507,37.32510715458584],[-121.94753662911516,37.32510715458584],[-121.9474162108047,37.325011396937995],[-121.94737831443123,37.325041526285304],[-121.94738770110729,37.32511363646647],[-121.94737726542357,37.325121619868725],[-121.94740614033105,37.32514458141415],[-121.94740674642439,37.32514410562332]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94417653321159,37.325144606130564],[-121.94416689011145,37.32513693786497],[-121.94425899298513,37.32506369692932],[-121.94422812107784,37.325039147327814],[-121.94419398559111,37.32506629215479],[-121.9442072341695,37.32507683371253],[-121.94419385349384,37.325087474134506],[-121.94416569346564,37.32506507487048],[-121.94400978761415,37.32518905239597],[-121.94406521407141,37.32523312788942],[-121.94417653321159,37.325144606130564]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94705102403724,37.32552535523374],[-121.94709499688483,37.32549038168719],[-121.94718416253701,37.32556128651947],[-121.94725680049054,37.325503518395806],[-121.94725600013655,37.32550287577229],[-121.9472656354663,37.32549521372232],[-121.94726283034207,37.325492976897905],[-121.94728276148786,37.32547712757385],[-121.94705664205613,37.32529732247397],[-121.94691044923862,37.325413575767186],[-121.94705102403724,37.32552535523374]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.9439715571123,37.32498044575634],[-121.94405497264837,37.324913909014384],[-121.94403950949821,37.32490161256324],[-121.94406360559299,37.32488245110444],[-121.94402806365893,37.32485418778934],[-121.94399199333584,37.324882871284856],[-121.94398516313032,37.32487743983533],[-121.94397471967616,37.32488574457709],[-121.94396508434642,37.32487808246417],[-121.94397552003018,37.32486977772156],[-121.94393063027218,37.32483407473288],[-121.9438591501123,37.324891058622654],[-121.9439715571123,37.32498044575634]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.9446156944461,37.32519601623915],[-121.94459637716406,37.32519601623915],[-121.94459637716406,37.32521498606599],[-121.94456627452904,37.32521498606599],[-121.94456627452904,37.325204592825955],[-121.94451345893533,37.325204592825955],[-121.94451345893533,37.32542590920903],[-121.9446156944461,37.32542590920903],[-121.9446156944461,37.32519601623915]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"MultiLineString","coordinates":[[[-121.94391934761188,37.32597533232966],[-121.94391934761188,37.32584753745242],[-121.9439144988653,37.32584753745242],[-121.9439144988653,37.32579188896243],[-121.94383173604513,37.325857664904674],[-121.94383173604513,37.32594195318384],[-121.9437984553054,37.325968399453856],[-121.94379867180596,37.32596891054588],[-121.94379909044156,37.325969936145356],[-121.94379929256903,37.325970450608764],[-121.9437996824245,37.32597148275278],[-121.94379987014491,37.325972000389385],[-121.94380023115222,37.325973038681525],[-121.94380040443157,37.32597355929306],[-121.9438007365228,37.32597460333699],[-121.9438008953271,37.32597512672528],[-121.94380119843423,37.32597617612454],[-121.94380134272951,37.325976702091424],[-121.94380161678458,37.32597775644963],[-121.94380174653682,37.325978284796875],[-121.94380199147186,37.325979343717634],[-121.9438021066471,37.32597987424708],[-121.94380232239412,37.32598093733401],[-121.94380242295837,37.325981469847406],[-121.94380260944942,37.325982536704046],[-121.94380269536867,37.32598307100328],[-121.94380285253575,37.32598414123328],[-121.94380292377602,37.32598467712006],[-121.94380305155116,37.325985750327035],[-121.94380307093914,37.32598592937114],[-121.94380654976267,37.32598554870091],[-121.94384834336381,37.32598128292467],[-121.94385183002592,37.325980952662576],[-121.94389371386102,37.325977292799436],[-121.94389720772352,37.32597701311471],[-121.94391934761188,37.32597533232966],[-121.94391934761188,37.32597533232966]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94415196312079,37.325305942302805],[-121.94435665948473,37.32514315404167],[-121.94435665948473,37.32514136210213],[-121.94434333320204,37.32513076494149],[-121.94429815593826,37.32516669641592],[-121.94421381572134,37.32509962843582],[-121.94416689011145,37.32513693786497],[-121.94417653321159,37.325144606130564],[-121.94406279746856,37.32523504340868],[-121.94415196312079,37.325305942302805]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94594476385655,37.325689681252086],[-121.94594476385655,37.325536119173606],[-121.94589365775681,37.325536119173606],[-121.94589365775681,37.325689681252086],[-121.94594476385655,37.325689681252086]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94529726969819,37.32609766473311],[-121.94529726969819,37.32594090274772],[-121.94518566305221,37.32594090274772],[-121.94518566305221,37.32594317045397],[-121.94516095309369,37.32594317045397],[-121.94516095309369,37.3260832676074],[-121.94516294232305,37.3260832676074],[-121.94529726969819,37.32609766473311]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94390415642668,37.3249268295546],[-121.94385912680104,37.324891046264426],[-121.94377957316726,37.324954345169175],[-121.94382460279294,37.32499012842922],[-121.94390415642668,37.3249268295546]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94482016546763,37.325536119173606],[-121.94482016546763,37.325813435301384],[-121.94483929625942,37.325813435301384],[-121.94483929625942,37.32577671321785],[-121.94489570956094,37.32577671321785],[-121.94489570956094,37.32569684895772],[-121.94492296821959,37.32569684895772],[-121.94492296821959,37.3255894136292],[-121.94492069925485,37.3255894136292],[-121.94492069925485,37.3255568932024],[-121.94492296821959,37.3255568932024],[-121.94492296821959,37.325536119173606],[-121.94482016546763,37.325536119173606]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94331232960884,37.32581071034174],[-121.94344884824447,37.32570221237842],[-121.9434466336727,37.325699098134194],[-121.94336204480213,37.32565625872597],[-121.9432400335541,37.325753220467135],[-121.94331232960884,37.32581071034174]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94408900711954,37.325356165916844],[-121.94392795724522,37.32548423350906],[-121.94396480461104,37.32551354085024],[-121.94389291261852,37.325570703417654],[-121.94392926267699,37.325599609085955],[-121.9439759007811,37.32556252233296],[-121.94397449433379,37.32556140392177],[-121.94398367897874,37.32555410026373],[-121.94398408304095,37.3255544153962],[-121.94416120215872,37.325413575767186],[-121.94408900711954,37.325356165916844]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"MultiLineString","coordinates":[[[-121.94394092608825,37.32584753745242],[-121.94398917267075,37.32584753745242],[-121.94398917267075,37.325883165811064],[-121.94403117960024,37.325883165811064],[-121.9440216841382,37.325969629081584],[-121.94401925889584,37.32596972457195],[-121.9439780514747,37.32597163986935],[-121.94397562892873,37.32597176976519],[-121.94394092608825,37.32597384318258],[-121.94394092608825,37.32584753745242],[-121.94394092608825,37.32584753745242]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"MultiLineString","coordinates":[[[-121.94461703095958,37.325999727149494],[-121.94463556342846,37.32583060069116],[-121.94473821854231,37.32583060069116],[-121.94471838841207,37.32601130665343],[-121.94471683432663,37.326016589724276],[-121.94471385332699,37.32601603619209],[-121.94467203262508,37.32600859561073],[-121.94466903933943,37.32600808624274],[-121.94462705059911,37.32600126553676],[-121.94462404559397,37.326000800558205],[-121.94461703095958,37.325999727149494],[-121.94461703095958,37.325999727149494]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"MultiLineString","coordinates":[[[-121.9438537496654,37.32633983262525],[-121.94385590984416,37.32632017721279],[-121.94385488414777,37.32632010306476],[-121.94388218942898,37.32607134208912],[-121.9437415369261,37.32606157922821],[-121.94374140820587,37.32606161529226],[-121.94374011638787,37.326061966977164],[-121.94373985701723,37.32606203541225],[-121.94373855512876,37.326062368518535],[-121.94373829374403,37.32606243338205],[-121.94373720102772,37.326062697631954],[-121.94371393636865,37.326274594678864],[-121.94371299614697,37.32627452670977],[-121.94371035420171,37.32629860012413],[-121.94371205592526,37.32629871752525],[-121.94372683527781,37.32630291307076],[-121.94372696737508,37.326302622657465],[-121.94383200801008,37.32633242399979],[-121.94383136306462,37.326338281695385],[-121.9438537496654,37.32633983262525],[-121.9438537496654,37.32633983262525]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94529726969819,37.32596435836554],[-121.94529726969819,37.32609766473311],[-121.945539233031,37.32610852745535],[-121.945539233031,37.32605146416148],[-121.94554519294866,37.32605146416148],[-121.94554519294866,37.32599753359334],[-121.94538076293854,37.32599755213042],[-121.94538076293854,37.32596435836554],[-121.94529726969819,37.32596435836554]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94574030060542,37.32529538223994],[-121.94562897369481,37.32529538223994],[-121.94562897369481,37.32537244780221],[-121.94568711980162,37.32541868586584],[-121.94568711980162,37.32542590920903],[-121.94573653194824,37.32546520813848],[-121.94574030060542,37.32546520813848],[-121.94574030060542,37.32529538223994]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94594476385655,37.325536119173606],[-121.94594476385655,37.325689681252086],[-121.94599234218234,37.325689681252086],[-121.94599234218234,37.325669358331254],[-121.94602074309377,37.325669358331254],[-121.94602074309377,37.3255894136292],[-121.94601846635862,37.3255894136292],[-121.94601846635862,37.3255568932024],[-121.94602074309377,37.3255568932024],[-121.94602074309377,37.325536119173606],[-121.94594476385655,37.325536119173606]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94316774526979,37.325695736727596],[-121.94327371058563,37.325611516141905],[-121.94322496669575,37.32558683695902],[-121.94309476541747,37.3255676262424],[-121.94305291389652,37.32560088197319],[-121.94307701776172,37.32562006178597],[-121.94307479541955,37.32562182281879],[-121.94316774526979,37.325695736727596]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94625148592972,37.32567226866777],[-121.94614925041893,37.32567226866777],[-121.94614925041893,37.325706395599084],[-121.94616883966594,37.325706395599084],[-121.94616883966594,37.32575472197664],[-121.94612687935901,37.32575472197664],[-121.94612687935901,37.3258355686434],[-121.94616231250708,37.3258355686434],[-121.94616231250708,37.32581388637179],[-121.94619809532438,37.32581388637179],[-121.94619809532438,37.32581072887888],[-121.94621853931835,37.32581072887888],[-121.94621853931835,37.3258355686434],[-121.94638780253422,37.3258355686434],[-121.94638780253422,37.325536119173606],[-121.94625148592972,37.325536119173606],[-121.94625148592972,37.32567226866777]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94398408304095,37.3255544153962],[-121.94398367897874,37.32555410026373],[-121.94397449433379,37.32556140392177],[-121.94399703634312,37.32557932939423],[-121.94399703634312,37.32558890694585],[-121.94399068790408,37.32559396142099],[-121.94397702749305,37.32558309862438],[-121.94394188962121,37.32561104653308],[-121.94394469474543,37.325613283353974],[-121.94392871097666,37.32562599986488],[-121.94394092608825,37.325635713349925],[-121.94395504495448,37.325624640471204],[-121.94399263051089,37.325624640471204],[-121.9441533695681,37.32549682028126],[-121.94415704498016,37.32549682028126],[-121.94415703720975,37.32541942117625],[-121.9441610234389,37.32541625748769],[-121.94415942273088,37.325414984597344],[-121.94398408304095,37.3255544153962]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94533135079192,37.325690132323246],[-121.9454029164265,37.325690132323246],[-121.9454029164265,37.32553611299453],[-121.94533135079192,37.32553611299453],[-121.94533135079192,37.325690132323246]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94388798616768,37.32563819733254],[-121.94385314357207,37.325610478059275],[-121.94362188011752,37.325794372939896],[-121.94368745475273,37.32589570308414],[-121.9438385895619,37.325775588630776],[-121.94388676621061,37.32581392344608],[-121.9439144988653,37.325791882783406],[-121.9439144988653,37.3256411632818],[-121.94391283599388,37.3256398347837],[-121.94388027013348,37.32566572504474],[-121.94386681952396,37.32565502909313],[-121.94388798616768,37.32563819733254]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94594477162698,37.3253373814982],[-121.94594477162698,37.325295376060865],[-121.94587661720992,37.325295376060865],[-121.94587661720992,37.3253373814982],[-121.94594477162698,37.3253373814982]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94587661720992,37.32546520813848],[-121.94587661720992,37.32529538223994],[-121.9458084627929,37.32529538223994],[-121.9458084627929,37.32546520813848],[-121.94587661720992,37.32546520813848]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94529726969819,37.32596435836554],[-121.94538076293854,37.32596435836554],[-121.94538076293854,37.32599755213042],[-121.94554519294866,37.32599753359334],[-121.94554519294866,37.32593770818593],[-121.94539114422929,37.32593770818593],[-121.9453722465503,37.32592260044018],[-121.9453722465503,37.325888862886615],[-121.94529726969819,37.325888862886615],[-121.94529726969819,37.32596435836554]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94713656867037,37.32513348374668],[-121.94717605798144,37.325102081540635],[-121.94717605798144,37.32508017043038],[-121.94720151390098,37.325059933852245],[-121.94707431200759,37.32495878177531],[-121.94707592048601,37.32495750887719],[-121.9470546372859,37.324940578094484],[-121.94703696733443,37.32495462940858],[-121.947010058345,37.324933231122245],[-121.946946597266,37.32498369597086],[-121.94700973198705,37.32503389508382],[-121.94701053234107,37.325033258635386],[-121.94713656867037,37.32513348374668]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.9454029164265,37.325636609313804],[-121.94549157700094,37.325636609313804],[-121.94549157700094,37.32556329471639],[-121.94545828849078,37.325536119173606],[-121.9454029164265,37.325536119173606],[-121.9454029164265,37.325636609313804]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94341303434547,37.32546404029323],[-121.94321870373143,37.32537740960568],[-121.943110399517,37.32546324319247],[-121.94323165703358,37.32551728536738],[-121.94324953678658,37.32549192645547],[-121.94331868581831,37.325522747665985],[-121.94340887716689,37.32546993513094],[-121.94341303434547,37.32546404029323]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94500015964347,37.32577162785975],[-121.94500015964347,37.326061962327856],[-121.94513396639998,37.326080165737025],[-121.94513602556322,37.326080165737025],[-121.94513602556322,37.326052279793075],[-121.94514193108787,37.326052279793075],[-121.94514193108787,37.32579795678781],[-121.94513738538797,37.32579795678781],[-121.94513738538797,37.3257214601349],[-121.94508805094563,37.3257214601349],[-121.94501256124529,37.32578148962314],[-121.94500015964347,37.32577162785975]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94554519294866,37.32593770818593],[-121.94554519294866,37.32589157548537],[-121.94553582181348,37.32589157548537],[-121.94553582181348,37.325888862886615],[-121.9453722465503,37.325888862886615],[-121.9453722465503,37.32592260044018],[-121.94539114422929,37.32593770818593],[-121.94554519294866,37.32593770818593]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94577826691277,37.32624648018364],[-121.94563806509466,37.32622322856129],[-121.94563806509466,37.326428797863755],[-121.94568617957992,37.32643553914818],[-121.94568519273567,37.32643998802486],[-121.94577826691277,37.326453025703586],[-121.94577826691277,37.32624648018364]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94499609571005,37.32574699816186],[-121.9450246442596,37.32572429632076],[-121.9450246442596,37.325536119173606],[-121.94494568894876,37.325536119173606],[-121.94494568894876,37.32577210982568],[-121.94496531704787,37.32577210982568],[-121.94499649200183,37.32574731947257],[-121.94499609571005,37.32574699816186]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94487398344648,37.325880613867085],[-121.9448825853094,37.325880613867085],[-121.9448825853094,37.32604597100618],[-121.94500015964347,37.326061962327856],[-121.94500015964347,37.32577162785975],[-121.94499750215738,37.325769514624554],[-121.94497577604291,37.32578679124727],[-121.94494654369575,37.32578679124727],[-121.94494654369575,37.32583060069116],[-121.94487947713853,37.32583060069116],[-121.94487398344648,37.325880613867085]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94421054437147,37.3257150339182],[-121.944197894116,37.32572509959779],[-121.9442067446326,37.325732131360866],[-121.9442067446326,37.325832404972374],[-121.94423687057885,37.325832404972374],[-121.94423687057885,37.32582946992585],[-121.9442556128493,37.32582946992585],[-121.9442556128493,37.32581208209014],[-121.94425618009048,37.32581208209014],[-121.94425618009048,37.32579333485977],[-121.94428798444906,37.32579333485977],[-121.94428798444906,37.32581388637179],[-121.94431581811932,37.32581388637179],[-121.94431581811932,37.325807114136325],[-121.9443223297373,37.325807114136325],[-121.9443223297373,37.32581388637179],[-121.94432431896666,37.32581388637179],[-121.94432431896666,37.3257150339182],[-121.94421054437147,37.3257150339182]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94625148592972,37.32567226866777],[-121.94625148592972,37.32553686066194],[-121.94614925041893,37.32553686066194],[-121.94614925041893,37.32567226866777],[-121.94625148592972,37.32567226866777]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.9439715571123,37.32498044575634],[-121.94390414865627,37.32492683573372],[-121.94382461056337,37.3249901222501],[-121.94386466711562,37.32502191378701],[-121.94391955741341,37.32502191378701],[-121.9439715571123,37.32498044575634]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94376075319256,37.325272068532385],[-121.94383305701774,37.325329639103245],[-121.94394424406067,37.32524104948807],[-121.94391560226595,37.325218273344944],[-121.94383785137134,37.325218273344944],[-121.94380924842876,37.3252410124135],[-121.94380453954989,37.32523726788256],[-121.94376075319256,37.325272068532385]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94335811296597,37.32584711727742],[-121.94348163167685,37.32574895074231],[-121.94344884824447,37.32570221237842],[-121.94331232960884,37.32581071034174],[-121.94335811296597,37.32584711727742]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94401541340345,37.325703967230254],[-121.94401541340345,37.32570306508809],[-121.9442162323242,37.32554337340086],[-121.94423202183229,37.32554337340086],[-121.94423202183229,37.32549682028126],[-121.9441533695681,37.32549682028126],[-121.94399263051089,37.325624640471204],[-121.94396251233502,37.325624640471204],[-121.94396251233502,37.32565693842254],[-121.9439636468174,37.32565693842254],[-121.9439636468174,37.325703967230254],[-121.94401541340345,37.325703967230254]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94770319599277,37.325262144911235],[-121.94755518489532,37.325262144911235],[-121.94740674642439,37.32514410562332],[-121.94733525849408,37.325200953337884],[-121.94739359886154,37.32524735216343],[-121.94739359886154,37.325289462672174],[-121.94739189713799,37.325289462672174],[-121.94739189713799,37.32536681865743],[-121.94733087597312,37.32536681865743],[-121.94733087597312,37.32541112885164],[-121.94739704893124,37.32541112885164],[-121.94739704893124,37.325434275680934],[-121.94738199761372,37.325434275680934],[-121.94738199761372,37.32544613333049],[-121.94735132773754,37.32544613333049],[-121.94735132773754,37.32548249101019],[-121.94733087597312,37.32548249101019],[-121.94733087597312,37.32551636468577],[-121.9477724848922,37.32551636468577],[-121.9477724848922,37.32526079169007],[-121.94770319599277,37.32526079169007],[-121.94770319599277,37.325262144911235]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"MultiLineString","coordinates":[[[-121.94422252637024,37.32596264677299],[-121.94422216968687,37.32596263790842],[-121.94421062207577,37.32596238107456],[-121.9442232257087,37.32584753745242],[-121.94426569886382,37.32584753745242],[-121.94426569886382,37.3258495703578],[-121.94431124133769,37.3258495703578],[-121.94431124133769,37.32589712426331],[-121.94422252637024,37.32596264677299],[-121.94422252637024,37.32596264677299]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.945088330681,37.32616592437286],[-121.94490530603855,37.32617827622825],[-121.94488457453876,37.32636716853138],[-121.94489305984526,37.326367755536495],[-121.94489389905142,37.32636014300671],[-121.9449419902254,37.32636347966759],[-121.94494169494918,37.32636617989121],[-121.9449648974448,37.326367792610526],[-121.94496583766649,37.326359203798475],[-121.94508829182885,37.326367706104506],[-121.945088330681,37.32616592437286]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94577826691277,37.326453025703586],[-121.945842986801,37.326462090287365],[-121.94584475845838,37.32645408231154],[-121.94585448703323,37.32645544786922],[-121.94585448703323,37.32647926788697],[-121.9458936810681,37.32647926788697],[-121.9458936810681,37.32646839286036],[-121.94592179447372,37.32646839286036],[-121.94592179447372,37.32643762764869],[-121.94590986686795,37.32643762764869],[-121.94590986686795,37.32626830444765],[-121.94577826691277,37.32624648018364],[-121.94577826691277,37.326453025703586]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94482129995,37.3251732586197],[-121.94482016546763,37.325174166947306],[-121.94482016546763,37.32542590920903],[-121.94482527840874,37.32542590920903],[-121.94487469055537,37.32546520813848],[-121.94492240097843,37.32546520813848],[-121.94492240097843,37.3252560708635],[-121.94490374418268,37.3252560708635],[-121.94490374418268,37.3251732586197],[-121.94482129995,37.3251732586197]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94574030060542,37.32529538223994],[-121.94574030060542,37.32546520813848],[-121.94580845502246,37.32546520813848],[-121.94580845502246,37.32529538223994],[-121.94574030060542,37.32529538223994]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94628627413232,37.325175520170035],[-121.94627036806783,37.325175520170035],[-121.94627036806783,37.3251630445678],[-121.9462020737831,37.3251630445678],[-121.9462020737831,37.32521385529145],[-121.94608278995504,37.32521385529145],[-121.94608278995504,37.3251630445678],[-121.94604566285385,37.3251630445678],[-121.94604566285385,37.32546520813848],[-121.94625191330321,37.32546520813848],[-121.94625191330321,37.325284593549256],[-121.94628627413232,37.325284593549256],[-121.94628627413232,37.325175520170035]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94338053841888,37.32598628775504],[-121.94355228040101,37.32584984223574],[-121.94348163167685,37.32574895074231],[-121.94335811296597,37.32584711727742],[-121.94338143201803,37.32586565440691],[-121.9433768008434,37.325983309461336],[-121.94338053841888,37.32598628775504]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.945088330681,37.32616592437286],[-121.94508829182885,37.326367706104506],[-121.94516099194583,37.32637275434824],[-121.94516099194583,37.32633340028242],[-121.94515389754577,37.32633340028242],[-121.94515389754577,37.32618425133717],[-121.94516099194583,37.32618425133717],[-121.94516099194583,37.32616102441163],[-121.94515569251446,37.32616049919508],[-121.945088330681,37.32616592437286]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94467285370862,37.32633262172793],[-121.94461372075759,37.32632851886912],[-121.94464147672358,37.32608868661168],[-121.94459903465015,37.32608573921715],[-121.94459933769681,37.32608303898347],[-121.94442280136109,37.326070785976825],[-121.94438660671116,37.326400430087304],[-121.9443879587655,37.326400522772275],[-121.94438779558652,37.326402011910886],[-121.94440865141314,37.32640345779649],[-121.94440610271302,37.32642665993107],[-121.94447736530095,37.32643160312794],[-121.94448108733557,37.32639771750695],[-121.94451418935549,37.32640001609441],[-121.94451523059273,37.32639048189917],[-121.94454917958922,37.326392842276846],[-121.94454813835195,37.32640237647179],[-121.94457162058298,37.326404001548326],[-121.94457137969974,37.32640617037664],[-121.94466407312589,37.32641260271326],[-121.94467285370862,37.32633262172793]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94364003960591,37.325511952828876],[-121.94359664176994,37.325477424169435],[-121.94348829093296,37.32556358513253],[-121.9435050672853,37.325613864185925],[-121.94352374739232,37.32564273276324],[-121.94364196667185,37.32554872447432],[-121.94361788611795,37.325529569359645],[-121.94364003960591,37.325511952828876]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94789183088366,37.32526257126857],[-121.94789183088366,37.32554260101723],[-121.94858533374153,37.32554260101723],[-121.94858733074133,37.32526483281622],[-121.94789183088366,37.32526257126857]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"MultiLineString","coordinates":[[[-121.94448351170887,37.32595802485514],[-121.9445158522269,37.3259860344147],[-121.94451889757207,37.32598639683333],[-121.9445614716037,37.325991785449375],[-121.94456450801133,37.325992192792995],[-121.94460694700422,37.325998208782295],[-121.94460997305812,37.325998660825675],[-121.94461703095958,37.325999727149494],[-121.94463556342846,37.32583060069116],[-121.9445727706062,37.32583060069116],[-121.94456807726817,37.325872130043095],[-121.94450404894798,37.325872130043095],[-121.94449199701538,37.32588092899822],[-121.94448351170887,37.32595802485514],[-121.94448351170887,37.32595802485514]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94522911528115,37.32546520813848],[-121.94522911528115,37.32518426977394],[-121.94520752903435,37.32518426977394],[-121.94520752903435,37.32516213624007],[-121.94516436431122,37.32516213624007],[-121.94516436431122,37.32521498606599],[-121.9450450882536,37.32521498606599],[-121.9450450882536,37.32516213624007],[-121.94492155400185,37.32516213624007],[-121.94492155400185,37.32523982602747],[-121.9450246442596,37.32523982602747],[-121.9450246442596,37.32546520813848],[-121.94522911528115,37.32546520813848]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94672716817209,37.32514136210213],[-121.94665986850202,37.32514136210213],[-121.94665986850202,37.325204592825955],[-121.94661158306735,37.325204592825955],[-121.94661158306735,37.32519646731329],[-121.94659284079694,37.32519646731329],[-121.94659284079694,37.32521543714],[-121.94655876747365,37.32521543714],[-121.94655876747365,37.325138649476315],[-121.94637700941082,37.325138649476315],[-121.94637700941082,37.3251630445678],[-121.9463841115813,37.3251630445678],[-121.9463841115813,37.325227066197556],[-121.94631069658503,37.325227066197556],[-121.94631069658503,37.325259586767075],[-121.94630842762028,37.325259586767075],[-121.94630842762028,37.32530243875959],[-121.94627434652656,37.32530243875959],[-121.94627434652656,37.325426811354504],[-121.94628400516758,37.325426811354504],[-121.94628400516758,37.32546520813848],[-121.94629951494029,37.32546520813848],[-121.94635485592285,37.32542742926235],[-121.94635485592285,37.32542590920903],[-121.94672716817209,37.32542590920903],[-121.94672716817209,37.32514136210213]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94599731525574,37.32600973717969],[-121.94563125043001,37.32600973717969],[-121.94563124265957,37.326106920909496],[-121.94577205057101,37.32614484156146],[-121.94599731525574,37.32614484156146],[-121.94599731525574,37.32600973717969]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94469066352778,37.32542590920903],[-121.94469066352778,37.32529040807289],[-121.94461568667566,37.32529040807289],[-121.94461568667566,37.32542590920903],[-121.94469066352778,37.32542590920903]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94355228040101,37.32584984223574],[-121.94338053841888,37.32598628775504],[-121.94339903203563,37.326000993850926],[-121.94337282238467,37.32602184189959],[-121.94338772606405,37.32603369945636],[-121.94336317151406,37.3260532251842],[-121.94336913920216,37.32605797685581],[-121.94334295286247,37.3260787939935],[-121.94335283684589,37.32608665371275],[-121.94333769228325,37.32609869663001],[-121.94339701949498,37.326145891994756],[-121.94342284839502,37.32612535293157],[-121.94342925899745,37.326130450623765],[-121.94361971993877,37.32597902121249],[-121.94362815085228,37.32595817315196],[-121.94355228040101,37.32584984223574]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94464147672358,37.32608868661168],[-121.94461372075759,37.32632851886912],[-121.94467285370862,37.32633262172793],[-121.94466668398942,37.32638876413736],[-121.94469567545335,37.32639077849113],[-121.94469493726277,37.326397532136994],[-121.94482720547468,37.32640670794943],[-121.9448322640228,37.326360674400874],[-121.94481359168623,37.326359376810515],[-121.9448376023063,37.32614062747005],[-121.9448134440481,37.326100624485235],[-121.94464147672358,37.32608868661168]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94579142224603,37.32559573481255],[-121.94574713081094,37.32559573481255],[-121.94574713081094,37.325536119173606],[-121.94573747216992,37.325536119173606],[-121.94568927998037,37.325573644653346],[-121.94568927998037,37.32566111546673],[-121.9456959936295,37.32566111546673],[-121.94572396716745,37.32566111546673],[-121.94572396716745,37.325689681252086],[-121.94579142224603,37.325689681252086],[-121.94579142224603,37.32559573481255]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94599731525574,37.32600973717969],[-121.94599731525574,37.32594876248136],[-121.94563351939475,37.32594876248136],[-121.94563351939475,37.32594543816016],[-121.94563125043001,37.32594543816016],[-121.94563125043001,37.32600973717969],[-121.94599731525574,37.32600973717969]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94418811114814,37.32533468741673],[-121.94434334097248,37.32521124153381],[-121.94434334097248,37.32518185992549],[-121.94438736044259,37.32514685532357],[-121.94438736044259,37.32514136210213],[-121.94435665948473,37.32514136210213],[-121.94435665948473,37.325143166399855],[-121.94415196312079,37.325305942302805],[-121.94418811114814,37.32533468741673]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94385488414777,37.32632010306476],[-121.94388208841343,37.32632199384027],[-121.94388174651462,37.32632508334264],[-121.94394169536051,37.32632924799164],[-121.94393986931014,37.326345807721324],[-121.94396395763447,37.32634748223106],[-121.94396716682091,37.3263182370052],[-121.94396631984434,37.32631818139414],[-121.9439961272031,37.326046607446],[-121.94398453372574,37.32604580417242],[-121.94389256294932,37.326072058856084],[-121.9438821971994,37.32607134208912],[-121.94385488414777,37.32632010306476]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94601236657326,37.3251630445678],[-121.94601236657326,37.325219496805886],[-121.94594477162698,37.325219496805886],[-121.94594477162698,37.32546520813848],[-121.94604339388908,37.32546520813848],[-121.94604339388908,37.3251630445678],[-121.94601236657326,37.3251630445678]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94398637531698,37.32578726085498],[-121.94401541340345,37.32578726085498],[-121.94401541340345,37.325703967230254],[-121.94398722229353,37.325703967230254],[-121.94398722229353,37.32572045294906],[-121.94400340809341,37.32572045294906],[-121.94400340809341,37.325768550692715],[-121.94398637531698,37.32578726085498]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94461512720493,37.32518065500126],[-121.9446350039577,37.32518065500126],[-121.9446350039577,37.325241315189075],[-121.94469066352778,37.325241315189075],[-121.94469066352778,37.32542590920903],[-121.94482016546763,37.32542590920903],[-121.94482016546763,37.32522356265065],[-121.94480085595603,37.32522356265065],[-121.94480085595603,37.32520088536779],[-121.94471779008919,37.32520088536779],[-121.94471779008919,37.325138649476315],[-121.94461512720493,37.325138649476315],[-121.94461512720493,37.32518065500126]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"MultiLineString","coordinates":[[[-121.9442106298462,37.32596238107456],[-121.94421044240292,37.325962377198096],[-121.94420437465229,37.32596225749384],[-121.94420421924376,37.32596767650688],[-121.94420131694805,37.32596762393163],[-121.94416067881657,37.325967174044806],[-121.94415777586632,37.32596716227047],[-121.94411713650118,37.32596728044314],[-121.94411133162951,37.325967340269344],[-121.94410746188416,37.3259673860923],[-121.94412061721742,37.32584753745242],[-121.94422324124955,37.32584753745242],[-121.9442106298462,37.32596238107456],[-121.9442106298462,37.32596238107456]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94563806509466,37.32622322856129],[-121.94544865316104,37.32619181445263],[-121.94533135079192,37.326179246333865],[-121.94533135079192,37.32638209081772],[-121.9453361684568,37.32638276432873],[-121.9453343734881,37.32639084646013],[-121.94540096604926,37.32640017056937],[-121.94540027448124,37.32640328478453],[-121.94547690643438,37.32641401770364],[-121.94547966493603,37.32640156702301],[-121.94553112847542,37.326408771734734],[-121.94553004838606,37.32641366550081],[-121.94563806509466,37.326428797863755],[-121.94563806509466,37.32622322856129]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94549010061978,37.32533738767731],[-121.94549010061978,37.3253000103777],[-121.94547249283171,37.3253000103777],[-121.94547249283171,37.32526421490704],[-121.9455449132133,37.32526421490704],[-121.9455449132133,37.325241630322864],[-121.94553809854862,37.325241630322864],[-121.94553809854862,37.32522085620688],[-121.94553341298104,37.32522085620688],[-121.94553341298104,37.32516123409141],[-121.94543784449681,37.32516123409141],[-121.94543784449681,37.32516213624007],[-121.9453215522832,37.32516213624007],[-121.9453215522832,37.32533738767731],[-121.94549010061978,37.32533738767731]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.9454029164265,37.325636609313804],[-121.9454029164265,37.3256874815078],[-121.94554264424856,37.3256874815078],[-121.94554264424856,37.325636609313804],[-121.9454029164265,37.325636609313804]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94525978515732,37.325690132323246],[-121.94533135079192,37.325690132323246],[-121.94533135079192,37.325536119173606],[-121.94528022915132,37.325536119173606],[-121.94528022915132,37.3256397729931],[-121.94525978515732,37.3256397729931],[-121.94525978515732,37.325690132323246]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94492240097843,37.32546520813848],[-121.9450246442596,37.32546520813848],[-121.9450246442596,37.32523982602747],[-121.94492155400185,37.32523982602747],[-121.94492155400185,37.3252560708635],[-121.94492240097843,37.3252560708635],[-121.94492240097843,37.32546520813848]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94359664176994,37.325477424169435],[-121.9435480455182,37.32543876169137],[-121.94347921507399,37.32553640958987],[-121.94348829093296,37.32556358513253],[-121.94359664176994,37.325477424169435]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94408900711954,37.325356165916844],[-121.94394424406067,37.32524104948807],[-121.94383305701774,37.325329639103245],[-121.94376075319256,37.325272068532385],[-121.94363845443876,37.32536932118619],[-121.94377062163512,37.325474414960155],[-121.94381459448269,37.325439441389875],[-121.94389994485516,37.32550731234603],[-121.94392845455258,37.325484635148825],[-121.94392795724522,37.32548423350906],[-121.94408900711954,37.325356165916844]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94516095309369,37.325888862886615],[-121.94554264424856,37.325888862886615],[-121.94554264424856,37.32571090630947],[-121.94550174849016,37.32571090630947],[-121.94550174849016,37.32571023279249],[-121.9452915895159,37.32571023279249],[-121.9452915895159,37.325761605439766],[-121.94516095309369,37.325761605439766],[-121.94516095309369,37.325888862886615]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94336204480213,37.32565625872597],[-121.94327371058563,37.325611516141905],[-121.94316774526979,37.325695736727596],[-121.9432400335541,37.325753220467135],[-121.94336204480213,37.32565625872597]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.9450246442596,37.32572429632076],[-121.94499609571005,37.32574699816186],[-121.94501256124529,37.325760091572235],[-121.94507575812979,37.32570983733294],[-121.94507575812979,37.325536119173606],[-121.94502463648918,37.325536119173606],[-121.9450246442596,37.32572429632076]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94471683432663,37.326016589724276],[-121.94475009175507,37.32602248451863],[-121.94475212760702,37.32601558872139],[-121.94476848435629,37.32586650711477],[-121.94475404690252,37.32586650711477],[-121.94475798650913,37.32583060069116],[-121.94473821854231,37.32583060069116],[-121.94471838841207,37.326011300474406],[-121.94471683432663,37.326016589724276]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.9448825853094,37.32604597100618],[-121.9448825853094,37.325880613867085],[-121.94487398344648,37.325880613867085],[-121.94483664654376,37.325878018669755],[-121.94484080372229,37.32584008552507],[-121.94483929625942,37.32584008552507],[-121.94483929625942,37.32583060069116],[-121.94475798650913,37.32583060069116],[-121.94475404690252,37.32586650711477],[-121.94476848435629,37.32586650711477],[-121.94475212760702,37.32601558872139],[-121.94475009175507,37.32602248451863],[-121.9448825853094,37.32604597100618]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94594477162698,37.325219496805886],[-121.94601236657326,37.325219496805886],[-121.94601236657326,37.3251630445678],[-121.94594250266222,37.3251630445678],[-121.94594250266222,37.32516168516575],[-121.9456359903906,37.32516168516575],[-121.9456359903906,37.325228079569115],[-121.94562897369481,37.325228079569115],[-121.94562897369481,37.32529538223994],[-121.94594477162698,37.32529538223994],[-121.94594477162698,37.325219496805886]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94448351170887,37.32595802485514],[-121.94449199701538,37.32588092281917],[-121.94450404894798,37.325872123864045],[-121.94456807726817,37.325872123864045],[-121.9445727706062,37.32583060069116],[-121.94441121565413,37.32583060069116],[-121.94441121565413,37.32589541266928],[-121.94448351170887,37.32595802485514]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94451345893533,37.32542590920903],[-121.94451345893533,37.325204592825955],[-121.9445140261765,37.325204592825955],[-121.9445140261765,37.32512252819694],[-121.94445892607719,37.32512252819694],[-121.94445892607719,37.32514136210213],[-121.94443450362448,37.32514136210213],[-121.94443450362448,37.32542590920903],[-121.94451345893533,37.32542590920903]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94563351939475,37.32594543816016],[-121.94563351939475,37.32594876248136],[-121.94599731525574,37.32594876248136],[-121.94599731525574,37.325872958034694],[-121.94563124265957,37.325872958034694],[-121.94563125043001,37.32588615646685],[-121.94563806509466,37.32588615646685],[-121.94563806509466,37.32589157548537],[-121.94563124265957,37.32589157548537],[-121.94563124265957,37.32594543816016],[-121.94563351939475,37.32594543816016]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94579142224603,37.32559573481255],[-121.94579142224603,37.32553611299453],[-121.94574713081094,37.32553611299453],[-121.94574713081094,37.32559573481255],[-121.94579142224603,37.32559573481255]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94707255589104,37.3265195919776],[-121.9470725481206,37.32627704774529],[-121.94705210412663,37.32627704774529],[-121.94705210412663,37.3261849124919],[-121.94706914467349,37.3261849124919],[-121.94706914467349,37.325936948164426],[-121.9471972712477,37.325936948164426],[-121.94722519039269,37.325914753061866],[-121.94717631440554,37.3258751392364],[-121.9471357760868,37.32583383233178],[-121.94711685509655,37.325848878304924],[-121.94711685509655,37.32587460165979],[-121.9460391434654,37.32587460165979],[-121.9460391434654,37.3265195919776],[-121.94645458158563,37.326519573440635],[-121.94645456604479,37.32650874785176],[-121.9465670662899,37.32650874785176],[-121.9465670662899,37.326519573440635],[-121.94707255589104,37.3265195919776]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94753662911516,37.32510715458584],[-121.94832181524362,37.32510715458584],[-121.94832099157834,37.324906129501045],[-121.94849610592591,37.32490474537788],[-121.94849610592591,37.32491031276605],[-121.94857590044289,37.32491020154187],[-121.94857415209678,37.32412989191428],[-121.94754534753447,37.32412989191428],[-121.94754534753447,37.32460888846157],[-121.94735223687752,37.32460888846157],[-121.94735223687752,37.32463689234487],[-121.94734658000651,37.32463689234487],[-121.94728879133936,37.324682846620675],[-121.94730845829064,37.32469849220074],[-121.94723978325496,37.32475310340595],[-121.94723978325496,37.32487110005417],[-121.94753662911516,37.32510715458584]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94325159594979,37.325351265902825],[-121.94326363234156,37.32536084348352],[-121.94396968443934,37.32479957665761],[-121.94338666151553,37.32433578208118],[-121.94268274628521,37.324895544665495],[-121.94269217181342,37.324903052298566],[-121.94258612102288,37.3249873478277],[-121.94256604223898,37.324971374814666],[-121.94239250528815,37.32510931727245],[-121.94237323462868,37.32509398073327],[-121.94221678484728,37.325218335135915],[-121.9428179128665,37.32569635463321],[-121.94325159594979,37.325351265902825]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94754307856974,37.324607084150955],[-121.94754307856974,37.32412989191428],[-121.94731645406023,37.32412989191428],[-121.94731645406023,37.32452984478746],[-121.9473227014837,37.32452984478746],[-121.9473227014837,37.32455694654436],[-121.94735223687752,37.32455694654436],[-121.94735223687752,37.324607084150955],[-121.94754307856974,37.324607084150955]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94716106882734,37.324933231122245],[-121.94718416253701,37.32491486677807],[-121.94718416253701,37.324888037031656],[-121.94723808153141,37.32484516626545],[-121.94723808153141,37.32475302307719],[-121.94710232439765,37.32486097246891],[-121.94712853404863,37.32488181465476],[-121.9471124725756,37.32489458690155],[-121.94716106882734,37.324933231122245]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94512687977038,37.325706327629476],[-121.94512687977038,37.32553611299453],[-121.94507575812979,37.32553611299453],[-121.94507575812979,37.325706327629476],[-121.94512687977038,37.325706327629476]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94379551808389,37.32552008448651],[-121.94371266978902,37.325454197025394],[-121.94365390204804,37.32550102822968],[-121.94373669594994,37.32556686003811],[-121.94379551808389,37.32552008448651]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94434334097248,37.32527234659152],[-121.94441178289533,37.32527234659152],[-121.94441175958404,37.325216351646176],[-121.94434334097248,37.325216351646176],[-121.94434334097248,37.32527234659152]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94441175958404,37.325216351646176],[-121.94441178289533,37.32514271532543],[-121.94438736044259,37.32514271532543],[-121.94438736044259,37.32514685532357],[-121.94434334097248,37.32518185992549],[-121.94434334874289,37.325216351646176],[-121.94441175958404,37.325216351646176]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94659301174634,37.3239657663985],[-121.94659319046617,37.32360072935228],[-121.94628647616342,37.323601143360605],[-121.94628664711281,37.323966872475026],[-121.94659301174634,37.3239657663985]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94574154387378,37.324147379006206],[-121.94587786824872,37.324147131838856],[-121.94587769729931,37.32411279410705],[-121.94595522285155,37.32411252222285],[-121.94595522285155,37.324025259699425],[-121.94598440080573,37.32402517936991],[-121.94598266023003,37.32361618360159],[-121.9457270675679,37.32361695600498],[-121.9457270675679,37.32365764620589],[-121.94564016311,37.32365764620589],[-121.94563863233583,37.323911846691814],[-121.94566896031323,37.323911846691814],[-121.94566928667118,37.32396496310267],[-121.94574019181947,37.32396496310267],[-121.94574154387378,37.324147379006206]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94959162737621,37.3246906694111],[-121.94994246993505,37.324689075193234],[-121.94993889553855,37.32415412049532],[-121.94988658502257,37.324154392379384],[-121.94988641407318,37.324136237937154],[-121.94959162737621,37.324137455236524],[-121.94959162737621,37.3246906694111]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94959162737621,37.3246906694111],[-121.94959162737621,37.32415498558095],[-121.9495785108951,37.32415498558095],[-121.94957833994567,37.324132579859764],[-121.94917024487916,37.32413434092744],[-121.94917040805812,37.324154392379384],[-121.94911332649986,37.32415463336753],[-121.9491167377174,37.324671192762366],[-121.9492072165718,37.324671192762366],[-121.9492073875212,37.324699647699575],[-121.94949040979138,37.32469843040933],[-121.94949019221944,37.32466997547165],[-121.9495463024743,37.324669703589464],[-121.9495463024743,37.32471577524882],[-121.9495924821232,37.3247156393078],[-121.94959299497138,37.32478582809192],[-121.94968517554935,37.324785420269265],[-121.94968517554935,37.324690162721694],[-121.94959162737621,37.3246906694111]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94975009746868,37.32580666924494],[-121.94997655102878,37.325806125488754],[-121.94997331076064,37.32552132030068],[-121.94973578434177,37.32552185787981],[-121.94973663131832,37.325740145592675],[-121.94974975556988,37.325740145592675],[-121.94975009746868,37.32580666924494]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94999052225688,37.326481591187886],[-121.94999052225688,37.32635896899639],[-121.94985369280421,37.32635896899639],[-121.94985369280421,37.32636411610474],[-121.94957748519869,37.32636411610474],[-121.94957748519869,37.326481591187886],[-121.94999052225688,37.326481591187886]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94370179896134,37.32520597694362],[-121.94372844375623,37.32518480117639],[-121.94372843598582,37.32514473589171],[-121.94365433719197,37.32508578723845],[-121.9436511202351,37.3250883392094],[-121.94363104145118,37.325072372396946],[-121.94358239080647,37.32511104742173],[-121.94370179896134,37.32520597694362]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"MultiLineString","coordinates":[[[-121.94553924857185,37.325423196593505],[-121.94553793340788,37.32542348821917],[-121.94553662309868,37.325423791377176],[-121.94553531775757,37.32542410602143],[-121.94553401749788,37.32542443210593],[-121.94553272243287,37.325424769584586],[-121.94553143267584,37.32542511841136],[-121.9455301483401,37.32542547854018],[-121.94552886953889,37.32542584992507],[-121.94552759638553,37.325426232519945],[-121.94552632899335,37.325426626278755],[-121.94552506747561,37.325427031155414],[-121.9455238119456,37.32542744710399],[-121.94552256251662,37.32542787407829],[-121.94552131930196,37.3254283120324],[-121.94552008241493,37.32542876092019],[-121.9455188519688,37.325429220695625],[-121.94551762807683,37.32542969131265],[-121.94551641085239,37.32543017272528],[-121.94551520040874,37.325430664887406],[-121.94551399685916,37.32543116775301],[-121.94551280031693,37.325431681276044],[-121.9455116108954,37.32543220541045],[-121.9455104287078,37.32543274011017],[-121.94550925386747,37.32543328532918],[-121.94550808648766,37.325433841021464],[-121.94550692668172,37.325434407140904],[-121.94550577456289,37.32543498364147],[-121.94550463024447,37.325435570477154],[-121.94550349383977,37.32543616760189],[-121.94550236546208,37.32543677496962],[-121.94550124522469,37.32543739253431],[-121.9455001332409,37.32543802024989],[-121.94549902962397,37.32543865807037],[-121.94549866363056,37.32543887291476],[-121.9454514660557,37.32538826625296],[-121.94545149713741,37.325357933134924],[-121.945539233031,37.32535794549308],[-121.94553924857185,37.325423196593505],[-121.94553924857185,37.325423196593505]]]}},{"type":"Feature","properties":{"layer":"Units"},"geometry":{"type":"Polygon","coordinates":[[[-121.94547249283171,37.32526421490704],[-121.94547249283171,37.3253000103777],[-121.94549010061978,37.3253000103777],[-121.94549010061978,37.32533738767731],[-121.94545148159655,37.32533738767731],[-121.94545149713741,37.325357939314],[-121.945539233031,37.325357939314],[-121.94553924857185,37.32526421490704],[-121.94547249283171,37.32526421490704]]]}}]}
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment