Skip to content

Instantly share code, notes, and snippets.

@lolney
Created December 27, 2019 19:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lolney/8421e748880681919f28c2ff1d41fe08 to your computer and use it in GitHub Desktop.
Save lolney/8421e748880681919f28c2ff1d41fe08 to your computer and use it in GitHub Desktop.
sf-zoning.html
This file has been truncated, but you can view the full file.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>Kepler.gl embedded map</title>
<!--Uber Font-->
<link rel="stylesheet" href="https://d1a3f4spazzrp4.cloudfront.net/kepler.gl/uber-fonts/4.0.0/superfine.css">
<!--MapBox css-->
<link href="https://api.tiles.mapbox.com/mapbox-gl-js/v1.1.1/mapbox-gl.css" rel="stylesheet">
<!-— facebook open graph tags -->
<meta property="og:url" content="http://kepler.gl/" />
<meta property="og:title" content="Large-scale WebGL-powered Geospatial Data Visualization Tool" />
<meta property="og:description" content="Kepler.gl is a powerful web-based geospatial data analysis tool. Built on a high performance rendering engine and designed for large-scale data sets." />
<meta property="og:site_name" content="kepler.gl" />
<meta property="og:image" content="https://d1a3f4spazzrp4.cloudfront.net/kepler.gl/kepler.gl-meta-tag.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="800" />
<meta property="og:image:height" content="800" />
<!-— twitter card tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@uber">
<meta name="twitter:creator" content="@uber">
<meta name="twitter:title" content="Large-scale WebGL-powered Geospatial Data Visualization Tool">
<meta name="twitter:description" content="Kepler.gl is a powerful web-based geospatial data analysis tool. Built on a high performance rendering engine and designed for large-scale data sets.">
<meta name="twitter:image" content="https://d1a3f4spazzrp4.cloudfront.net/kepler.gl/kepler.gl-meta-tag.png" />
<!-- Load React/Redux -->
<script src="https://unpkg.com/react@16.8.4/umd/react.production.min.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@16.8.4/umd/react-dom.production.min.js" crossorigin></script>
<script src="https://unpkg.com/redux@3.7.2/dist/redux.js" crossorigin></script>
<script src="https://unpkg.com/react-redux@5.1.1/dist/react-redux.min.js" crossorigin></script>
<script src="https://unpkg.com/styled-components@4.1.3/dist/styled-components.min.js" crossorigin></script>
<!-- Load Kepler.gl -->
<script src="https://unpkg.com/kepler.gl@1.1.12/umd/keplergl.min.js" crossorigin></script>
<style type="text/css">
body {margin: 0; padding: 0; overflow: hidden;}
</style>
<!--MapBox token-->
<script>
/**
* Provide your MapBox Token
**/
const MAPBOX_TOKEN = 'pk.eyJ1IjoidWJlcmRhdGEiLCJhIjoiY2p5aHB5bzEzMDI3MjNucWx4dmhvbW5wYyJ9.ZjLMWjog4imdrZhtheCOtA';
const WARNING_MESSAGE = 'Please Provide a Mapbox Token in order to use Kepler.gl. Edit this file and fill out MAPBOX_TOKEN with your access key';
</script>
<!-- GA: Delete this as you wish, However to pat ourselves on the back, we only track anonymous pageview to understand how many people are using kepler.gl. -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-64694404-19', {
'storage': 'none',
'clientId': localStorage.getItem('ga:clientId')
});
ga(function(tracker) {
localStorage.setItem('ga:clientId', tracker.get('clientId'));
});
ga('set', 'checkProtocolTask', null); // Disable file protocol checking.
ga('set', 'checkStorageTask', null); // Disable cookie storage checking.
ga('set', 'historyImportTask', null); // Disable history checking (requires reading from cookies).
ga('set', 'page', 'keplergl-html');
ga('send', 'pageview');
</script>
</head>
<body>
<!-- We will put our React component inside this div. -->
<div id="app">
<!-- Kepler.gl map will be placed here-->
</div>
<!-- Load our React component. -->
<script>
/* Validate Mapbox Token */
if ((MAPBOX_TOKEN || '') === '' || MAPBOX_TOKEN === 'PROVIDE_MAPBOX_TOKEN') {
alert(WARNING_MESSAGE);
}
/** STORE **/
const reducers = (function createReducers(redux, keplerGl) {
return redux.combineReducers({
// mount keplerGl reducer
keplerGl: keplerGl.keplerGlReducer.initialState({
uiState: {
readOnly: false
}
})
});
}(Redux, KeplerGl));
const middleWares = (function createMiddlewares(keplerGl) {
return keplerGl.enhanceReduxMiddleware([
// Add other middlewares here
]);
}(KeplerGl));
const enhancers = (function craeteEnhancers(redux, middles) {
return redux.applyMiddleware(...middles);
}(Redux, middleWares));
const store = (function createStore(redux, enhancers) {
const initialState = {};
return redux.createStore(
reducers,
initialState,
redux.compose(enhancers)
);
}(Redux, enhancers));
/** END STORE **/
/** COMPONENTS **/
var KeplerElement = (function makeKeplerElement(react, keplerGl, mapboxToken) {
var LogoSvg = function LogoSvg() {
return react.createElement(
"div",
{ className: "logo-container", style: {position: 'fixed', zIndex: 10000, padding: '4px'} },
react.createElement(
"svg",
{
className: "kepler_gl__logo",
width: "107px",
height: "21px",
viewBox: "0 0 124 24"
},
react.createElement(
"g",
{ transform: "translate(13.500000, 13.500000) rotate(45.000000) translate(-13.500000, -13.500000) translate(4.000000, 4.000000)" },
react.createElement("rect", { x: "0", y: "6", transform: "matrix(2.535181e-06 1 -1 2.535181e-06 18.1107 6.0369)", fill: "#535C6C", width: "12.1", height: "12.1" }),
react.createElement("rect", { x: "6", y: "0", transform: "matrix(2.535182e-06 1 -1 2.535182e-06 18.1107 -6.0369)", fill:"#1FBAD6", width: "12.1", height: "12.1" })
),
react.createElement(
"g",
{},
react.createElement("path", { fill:"#1FBAD6", d: "M39,8.7h2.2l-2.8,4.2l2.9,5.1H39l-2.4-4.2h-1.3V18h-2V5l2-0.1v7.3h1.3L39,8.7z" }),
react.createElement("path", { fill:"#1FBAD6", d: "M42.4,13.3c0-1.5,0.4-2.7,1.1-3.5s1.8-1.2,3.1-1.2c1.3,0,2.2,0.4,2.8,1.1c0.6,0.7,0.9,1.8,0.9,3.3 c0,0.4,0,0.8,0,1.1h-5.8c0,1.6,0.8,2.4,2.4,2.4c1,0,2-0.2,2.9-0.6l0.2,1.7c-0.4,0.2-0.9,0.4-1.4,0.5s-1.1,0.2-1.7,0.2 c-1.5,0-2.6-0.4-3.3-1.2C42.8,16.1,42.4,14.9,42.4,13.3z M46.6,10.1c-0.7,0-1.2,0.2-1.5,0.5c-0.4,0.4-0.6,0.9-0.6,1.7h4 c0-0.8-0.2-1.4-0.5-1.7S47.2,10.1,46.6,10.1z" }),
react.createElement("path", { fill:"#1FBAD6", d: "M57.1,18.2c-1,0-1.8-0.3-2.3-0.9l0,0l0,1.3v2.5h-2V8.7h1.5l0.3,0.9h0c0.3-0.3,0.7-0.6,1.2-0.7 c0.4-0.2,0.9-0.3,1.4-0.3c1.2,0,2.1,0.4,2.7,1.1c0.6,0.7,0.9,2,0.9,3.7c0,1.6-0.3,2.8-1,3.7C59.2,17.8,58.3,18.2,57.1,18.2z M56.7,10.3c-0.4,0-0.8,0.1-1.1,0.2c-0.3,0.2-0.6,0.4-0.8,0.7v4.3c0.2,0.3,0.4,0.5,0.7,0.7c0.3,0.2,0.7,0.3,1.1,0.3 c0.7,0,1.2-0.2,1.6-0.7c0.4-0.5,0.5-1.3,0.5-2.5c0-0.8-0.1-1.4-0.2-1.8s-0.4-0.7-0.7-0.9C57.6,10.4,57.2,10.3,56.7,10.3z" }),
react.createElement("path", { fill:"#1FBAD6", d: "M63.2,16V5l2-0.1v10.8c0,0.3,0.1,0.5,0.2,0.6c0.1,0.1,0.3,0.2,0.6,0.2c0.3,0,0.6,0,0.9-0.1V18 c-0.4,0.1-1,0.2-1.6,0.2c-0.8,0-1.3-0.2-1.7-0.5S63.2,16.8,63.2,16z" }),
react.createElement("path", { fill:"#1FBAD6", d: "M68.2,13.3c0-1.5,0.4-2.7,1.1-3.5c0.7-0.8,1.8-1.2,3.1-1.2c1.3,0,2.2,0.4,2.8,1.1c0.6,0.7,0.9,1.8,0.9,3.3 c0,0.4,0,0.8,0,1.1h-5.8c0,1.6,0.8,2.4,2.4,2.4c1,0,2-0.2,2.9-0.6l0.2,1.7c-0.4,0.2-0.9,0.4-1.4,0.5s-1.1,0.2-1.7,0.2 c-1.5,0-2.6-0.4-3.3-1.2C68.6,16.1,68.2,14.9,68.2,13.3z M72.4,10.1c-0.7,0-1.2,0.2-1.5,0.5c-0.4,0.4-0.6,0.9-0.6,1.7h4 c0-0.8-0.2-1.4-0.5-1.7S73,10.1,72.4,10.1z" }),
react.createElement("path", { fill:"#1FBAD6", d: "M80.2,8.7l0.1,1.7h0c0.3-0.6,0.7-1.1,1.1-1.4c0.4-0.3,1-0.5,1.6-0.5c0.4,0,0.7,0,1,0.1l-0.1,2 c-0.3-0.1-0.7-0.2-1-0.2c-0.7,0-1.3,0.3-1.7,0.8c-0.4,0.5-0.7,1.2-0.7,2.1V18h-2V8.7H80.2z" }),
react.createElement("path", { fill:"#1FBAD6", d: "M83.8,17c0-0.8,0.4-1.2,1.2-1.2c0.8,0,1.2,0.4,1.2,1.2c0,0.8-0.4,1.1-1.2,1.1C84.2,18.2,83.8,17.8,83.8,17z" }),
react.createElement("path", { fill:"#1FBAD6", d: "M88.5,18.7c0-0.8,0.4-1.4,1.2-1.8c-0.6-0.3-0.9-0.8-0.9-1.5c0-0.7,0.4-1.2,1.1-1.6c-0.3-0.3-0.6-0.6-0.7-0.9 c-0.2-0.4-0.2-0.8-0.2-1.3c0-1,0.3-1.8,0.9-2.3c0.6-0.5,1.6-0.8,2.8-0.8c0.5,0,1,0,1.4,0.1c0.4,0.1,0.8,0.2,1.1,0.4l2.4-0.2v1.5 h-1.5c0.2,0.4,0.2,0.8,0.2,1.3c0,1-0.3,1.7-0.9,2.2s-1.5,0.8-2.7,0.8c-0.7,0-1.2-0.1-1.6-0.2c-0.1,0.1-0.2,0.2-0.3,0.3 c-0.1,0.1-0.1,0.2-0.1,0.4c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.2,0.6,0.2l2.7,0.2c1,0.1,1.7,0.3,2.2,0.6c0.5,0.3,0.8,0.9,0.8,1.7 c0,0.6-0.2,1.1-0.5,1.5c-0.4,0.4-0.9,0.8-1.5,1c-0.7,0.2-1.5,0.4-2.4,0.4c-1.3,0-2.3-0.2-3-0.6C88.8,20.1,88.5,19.5,88.5,18.7z M95.1,18.4c0-0.3-0.1-0.5-0.3-0.7s-0.6-0.2-1.1-0.3l-2.7-0.3c-0.2,0.1-0.4,0.3-0.5,0.5c-0.1,0.2-0.2,0.4-0.2,0.6 c0,0.4,0.2,0.8,0.5,1c0.4,0.2,1,0.3,1.8,0.3C94.2,19.5,95.1,19.2,95.1,18.4z M94.3,11.5c0-0.6-0.1-1-0.4-1.2 c-0.3-0.2-0.7-0.3-1.3-0.3c-0.7,0-1.1,0.1-1.4,0.3c-0.3,0.2-0.4,0.6-0.4,1.2s0.1,1,0.4,1.2c0.3,0.2,0.7,0.3,1.4,0.3 c0.6,0,1.1-0.1,1.3-0.4S94.3,12,94.3,11.5z" }),
react.createElement("path", { fill:"#1FBAD6", d: "M99.4,16V5l2-0.1v10.8c0,0.3,0.1,0.5,0.2,0.6c0.1,0.1,0.3,0.2,0.6,0.2c0.3,0,0.6,0,0.9-0.1V18 c-0.4,0.1-1,0.2-1.6,0.2c-0.8,0-1.3-0.2-1.7-0.5S99.4,16.8,99.4,16z" })
)
)
);
};
return function App() {
var rootElm = react.useRef(null);
var _useState = react.useState({
width: window.innerWidth,
height: window.innerHeight
});
var windowDimension = _useState[0];
var setDimension = _useState[1];
react.useEffect(function sideEffect(){
function handleResize() {
setDimension({width: window.innerWidth, height: window.innerHeight});
};
window.addEventListener('resize', handleResize);
return function() {window.removeEventListener('resize', handleResize);};
}, []);
return react.createElement(
'div',
{style: {position: 'absolute', left: 0, width: '100vw', height: '100vh'}},
react.createElement(keplerGl.KeplerGl, {
mapboxApiAccessToken: mapboxToken,
id: "map",
width: windowDimension.width,
height: windowDimension.height
})
)
}
}(React, KeplerGl, MAPBOX_TOKEN));
const app = (function createReactReduxProvider(react, reactRedux, KeplerElement) {
return react.createElement(
reactRedux.Provider,
{store},
react.createElement(KeplerElement, null)
)
}(React, ReactRedux, KeplerElement));
/** END COMPONENTS **/
/** Render **/
(function render(react, reactDOM, app) {
reactDOM.render(app, document.getElementById('app'));
}(React, ReactDOM, app));
</script>
<!-- The next script will show how to interact directly with Kepler map store -->
<script>
/**
* Customize map.
* In the following section you can use the store object to dispatch Kepler.gl actions
* to add new data and customize behavior
*/
(function customize(keplerGl, store) {
const datasets = [{"version":"v1","data":{"id":"ppl5k4mb","label":"Zoning Map - Zoning Districts.geojson","color":[143,47,191],"allData":[[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.398798920894779e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19770,"shape_length":0.0026884456653202106,"gen":"Mixed Use","index":0},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.428306959,37.743600279],[-122.428882686,37.743565342],[-122.429249081,37.743543105],[-122.429250169,37.743554407],[-122.429257392,37.743629451],[-122.429264535,37.743703672],[-122.429040378,37.743717196],[-122.428898126,37.743725778],[-122.428911143,37.743861043],[-122.42879804,37.743867866],[-122.42876889,37.743869624],[-122.42842701,37.743890248],[-122.428432738,37.743950509],[-122.428433517,37.743958713],[-122.428436771,37.743992945],[-122.428347107,37.743998354],[-122.428344803,37.743998493],[-122.428341025,37.743958738],[-122.428315133,37.743686296],[-122.428306959,37.743600279]]]]}},"NC-1","6:00AM-11:00PM",2.398798920894779e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19770,0.0026884456653202106,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-3","commercial_hours_of_operation":"No Limit","shape_area":0.0000013742323738985617,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","districtname":"NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","zoning":"NC-3","codesection":712.1,"objectid":19592,"shape_length":0.0062015288548837415,"gen":"Mixed Use","index":1},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.425212477,37.771250061],[-122.425135508,37.770868545],[-122.425269289,37.770851602],[-122.42581556,37.77078242],[-122.42585446,37.770777494],[-122.426102951,37.770746022],[-122.426199652,37.770733775],[-122.426201789,37.770744407],[-122.426208141,37.770776005],[-122.42621839,37.770827001],[-122.426285411,37.771157925],[-122.426304399,37.77115552],[-122.426315408,37.771209881],[-122.426713685,37.771159439],[-122.426702676,37.771105077],[-122.426635652,37.770774153],[-122.426634623,37.770769036],[-122.426616913,37.770680927],[-122.426780766,37.770660174],[-122.426802258,37.770766296],[-122.426834902,37.770927472],[-122.426934782,37.771420623],[-122.426948117,37.771486461],[-122.426969625,37.771592653],[-122.426970019,37.771594599],[-122.426852597,37.771609584],[-122.426407816,37.771666155],[-122.426388831,37.77166857],[-122.426382525,37.771669372],[-122.425912452,37.771729158],[-122.425441672,37.771789031],[-122.425324226,37.771803971],[-122.425322485,37.771795346],[-122.425321607,37.771790992],[-122.425289515,37.771631926],[-122.425212477,37.771250061]]]]}},"NC-3","No Limit",0.0000013742323738985617,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","NC-3",712.1,19592,0.0062015288548837415,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000004831781683689014,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19555,"shape_length":0.016944095275964875,"gen":"Mixed Use","index":2},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.496231212,37.77540527],[-122.496244904,37.775583452],[-122.496353583,37.775578477],[-122.496692251,37.775562972],[-122.496687288,37.775494428],[-122.496682325,37.775425882],[-122.496677363,37.775357337],[-122.496763719,37.775353383],[-122.497166607,37.775334938],[-122.497290595,37.775329261],[-122.497290593,37.775329233],[-122.49734608,37.775326693],[-122.4974084,37.77532384],[-122.49757546,37.775316191],[-122.497661815,37.775312237],[-122.497748171,37.775308282],[-122.497834526,37.775304328],[-122.49783949,37.775372873],[-122.497891392,37.775370497],[-122.498046742,37.775363383],[-122.49824154,37.775354463],[-122.498362437,37.775348918],[-122.49835745,37.775280418],[-122.498478348,37.775274873],[-122.498684017,37.775265454],[-122.498770372,37.775261499],[-122.49889127,37.775255962],[-122.498895616,37.775255763],[-122.498943083,37.775253589],[-122.499115794,37.77524568],[-122.499305776,37.775236978],[-122.499426673,37.775231432],[-122.499454811,37.775617867],[-122.499474516,37.775888486],[-122.499389973,37.775892364],[-122.499353542,37.775892982],[-122.499353131,37.775894054],[-122.498941159,37.7759132],[-122.498943746,37.775965543],[-122.498933464,37.775966028],[-122.498530051,37.775985051],[-122.498409152,37.775990597],[-122.498424731,37.776204586],[-122.498303833,37.776210131],[-122.497914455,37.776227844],[-122.497905547,37.776228249],[-122.497903799,37.776201121],[-122.497899559,37.776135291],[-122.497895321,37.776069461],[-122.497891081,37.77600363],[-122.497761575,37.776010039],[-122.497675237,37.77601431],[-122.497588899,37.776018582],[-122.497464553,37.776024735],[-122.497455991,37.776025159],[-122.497341705,37.776030814],[-122.497341755,37.776031507],[-122.497222832,37.776036938],[-122.496912525,37.77605111],[-122.496808897,37.776055842],[-122.496813859,37.776124388],[-122.496727502,37.776128331],[-122.496392118,37.776143646],[-122.496283664,37.776148598],[-122.496283387,37.776144315],[-122.496150006,37.776150404],[-122.496040196,37.776155418],[-122.495953839,37.776159361],[-122.495867482,37.776163304],[-122.495781124,37.776167248],[-122.495737946,37.776169219],[-122.495694768,37.776171191],[-122.495522053,37.776179077],[-122.49532343,37.776188144],[-122.495202529,37.776193664],[-122.495197543,37.77612512],[-122.495076642,37.776130639],[-122.494791617,37.77614365],[-122.494796604,37.776212195],[-122.494710247,37.776216137],[-122.494667068,37.776218108],[-122.494623889,37.776220079],[-122.494537532,37.776224021],[-122.494451175,37.776227963],[-122.494364816,37.776231906],[-122.494252551,37.776237029],[-122.494131651,37.776242536],[-122.49401075,37.776248065],[-122.493898841,37.776253174],[-122.493812483,37.776257116],[-122.493726126,37.776261057],[-122.493639768,37.776264998],[-122.493596244,37.776266985],[-122.49355341,37.776268939],[-122.493467053,37.776272881],[-122.493380695,37.776276822],[-122.493294337,37.776280763],[-122.493181727,37.776285903],[-122.49306943,37.776290594],[-122.493069458,37.776291026],[-122.493002855,37.776294065],[-122.492939926,37.776296937],[-122.492652056,37.776310073],[-122.492632391,37.776039663],[-122.492624394,37.775929704],[-122.492626938,37.775929588],[-122.492620126,37.775835913],[-122.492618983,37.775820205],[-122.492598896,37.77554398],[-122.492685252,37.775540029],[-122.492771608,37.775536078],[-122.492884215,37.775530927],[-122.493015007,37.775524944],[-122.493126012,37.775519865],[-122.493238266,37.775514729],[-122.493324622,37.775510779],[-122.493410978,37.775506827],[-122.493497334,37.775502876],[-122.493540521,37.7755009],[-122.493670046,37.775494974],[-122.493842758,37.775487072],[-122.493955021,37.775481935],[-122.494075919,37.775476403],[-122.494080906,37.775544947],[-122.494135823,37.775542434],[-122.494201804,37.775539415],[-122.494357245,37.775532303],[-122.494352258,37.775463758],[-122.494438614,37.775459806],[-122.49452497,37.775455854],[-122.494611326,37.775451902],[-122.494609332,37.775424485],[-122.494695687,37.775420533],[-122.494700674,37.775489076],[-122.49470566,37.775557622],[-122.494710648,37.775626165],[-122.495038846,37.775611146],[-122.495043346,37.77561094],[-122.495159744,37.775605613],[-122.495161141,37.775624804],[-122.495282038,37.775619271],[-122.495572064,37.775605998],[-122.495567076,37.775537453],[-122.49556209,37.775468909],[-122.495557701,37.77540859],[-122.495644056,37.775404637],[-122.495687234,37.775402661],[-122.495730412,37.775400684],[-122.495816768,37.775396732],[-122.495903124,37.775392779],[-122.495905119,37.775420197],[-122.496098817,37.77541133],[-122.496110234,37.775410808],[-122.496231212,37.77540527]]]]}},"NC-2","6:00AM-2:00AM",0.000004831781683689014,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19555,0.016944095275964875,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":8.676081641050226e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19723,"shape_length":0.00512873963671066,"gen":"Mixed Use","index":3},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.385986397,37.717481907],[-122.386075424,37.717385103],[-122.386103877,37.717354164],[-122.386141395,37.717313367],[-122.386184357,37.717266652],[-122.386265013,37.717178948],[-122.386413861,37.717262976],[-122.386493143,37.717307734],[-122.386785155,37.717472583],[-122.386849666,37.717509],[-122.387004036,37.717596146],[-122.387007006,37.717597822],[-122.38759422,37.717929314],[-122.38796531,37.718138797],[-122.388136868,37.718235642],[-122.388011567,37.718373939],[-122.387972381,37.718417189],[-122.3879416,37.718451163],[-122.38790701,37.718489341],[-122.387858066,37.718543361],[-122.387857482,37.718544007],[-122.387790335,37.71850589],[-122.387765185,37.718491614],[-122.387281339,37.71821697],[-122.387038843,37.718079322],[-122.387018943,37.718068026],[-122.386950939,37.718029425],[-122.386797073,37.717942085],[-122.386591166,37.717825203],[-122.386108883,37.717551437],[-122.386079217,37.717534597],[-122.385986397,37.717481907]]]]}},"NC-1","6:00AM-11:00PM",8.676081641050226e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19723,0.00512873963671066,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCT","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":6.056638975560631e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_753","districtname":"SOMA NEIGHBORHOOD COMMERCIAL TRANSIT","zoning":"NCT-SOMA","codesection":753,"objectid":20550,"shape_length":0.0040571163823293266,"gen":"Mixed Use","index":4},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.406233364,37.779549625],[-122.406038306,37.779393729],[-122.405977046,37.779442205],[-122.405915785,37.779490679],[-122.405854525,37.779539154],[-122.405798164,37.779583751],[-122.40562749,37.779447343],[-122.405573667,37.779404325],[-122.40557522,37.779403109],[-122.405870419,37.779171856],[-122.40581305,37.779126004],[-122.405617995,37.778970109],[-122.405667003,37.778931329],[-122.405618239,37.778892355],[-122.405759138,37.778780863],[-122.405860217,37.778700879],[-122.405860414,37.778701037],[-122.405905658,37.778737197],[-122.405956304,37.778777676],[-122.405998744,37.778811595],[-122.406026289,37.778833611],[-122.406162858,37.778942761],[-122.406309841,37.779060235],[-122.406350008,37.779092336],[-122.406445899,37.779168976],[-122.4066282,37.779314674],[-122.406859986,37.779499755],[-122.406758801,37.779579821],[-122.406636279,37.779676772],[-122.40657461,37.779725571],[-122.406513758,37.779773722],[-122.406330892,37.779627572],[-122.406282247,37.779588693],[-122.406233364,37.779549625]]]]}},"NCT","6:00AM-2:00AM",6.056638975560631e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_753","SOMA NEIGHBORHOOD COMMERCIAL TRANSIT","NCT-SOMA",753,20550,0.0040571163823293266,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":9.233844834472947e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19560,"shape_length":0.0053971981496568604,"gen":"Mixed Use","index":5},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.508967955,37.763644451],[-122.508979839,37.763643945],[-122.509053775,37.763640793],[-122.509252718,37.763632311],[-122.509373609,37.763626945],[-122.50932454,37.762930308],[-122.50926908,37.762142921],[-122.509622174,37.762127287],[-122.509635716,37.762239626],[-122.509703509,37.762801994],[-122.50971698,37.762913734],[-122.509760349,37.763273494],[-122.509817376,37.763728972],[-122.509827057,37.763877257],[-122.509833065,37.763969286],[-122.509836245,37.76401799],[-122.509402192,37.764032734],[-122.509064744,37.764046375],[-122.50899564,37.764049169],[-122.508993077,37.764009205],[-122.508987269,37.763918658],[-122.508985363,37.763891606],[-122.508968189,37.763647762],[-122.508967955,37.763644451]]]]}},"NC-2","6:00AM-2:00AM",9.233844834472947e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19560,0.0053971981496568604,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"C-2","commercial_hours_of_operation":"Unrestricted","shape_area":0.000043758996934704437,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article2usedistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_210.1","districtname":"COMMUNITY BUSINESS","zoning":"C-2","codesection":210.1,"objectid":19416,"shape_length":0.09241647456010826,"gen":"Commercial","index":6},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.412767793,37.809152441],[-122.412716518,37.808916892],[-122.412694929,37.80881155],[-122.412691794,37.808796248],[-122.412691688,37.80879573],[-122.412653372,37.80860876],[-122.41263401,37.808514282],[-122.412630762,37.808513813],[-122.412628706,37.808513516],[-122.41249672,37.808494437],[-122.412485812,37.80849286],[-122.412380293,37.808478379],[-122.41088275,37.808255406],[-122.410640843,37.80822126],[-122.410639565,37.8082211],[-122.410636738,37.808220747],[-122.410630671,37.808273062],[-122.410621059,37.808355967],[-122.410615834,37.80840102],[-122.410615769,37.808401012],[-122.410615619,37.808403012],[-122.410592965,37.808702849],[-122.410600049,37.808703893],[-122.41059204,37.808806466],[-122.410591027,37.808825154],[-122.410590987,37.808825873],[-122.410546305,37.808818919],[-122.410443703,37.809318061],[-122.41044129,37.809316224],[-122.410439793,37.809322766],[-122.410410026,37.80929027],[-122.410499308,37.808811606],[-122.410491505,37.808810392],[-122.410401884,37.809312118],[-122.410430613,37.809362883],[-122.410631044,37.809717032],[-122.410638988,37.809731066],[-122.410673651,37.809792316],[-122.410897782,37.810188334],[-122.410906053,37.810202949],[-122.411215836,37.810750301],[-122.41122262,37.810762286],[-122.411323036,37.810939707],[-122.411245266,37.81111676],[-122.410949813,37.811220593],[-122.410929365,37.811279243],[-122.410681957,37.81136701],[-122.410614376,37.811352876],[-122.410418989,37.811420803],[-122.410415238,37.811414426],[-122.410406387,37.811399371],[-122.410397815,37.811384793],[-122.410199368,37.811328112],[-122.410002383,37.810999763],[-122.410015267,37.810934367],[-122.410035619,37.810915625],[-122.410045568,37.810869063],[-122.410028576,37.810866803],[-122.4100313,37.810852979],[-122.410048518,37.810855252],[-122.410056549,37.810817663],[-122.410042778,37.810794713],[-122.410053731,37.810739119],[-122.410077598,37.810724349],[-122.410094541,37.810623353],[-122.410081697,37.810597156],[-122.410091759,37.810546083],[-122.410117462,37.810526909],[-122.41013628,37.810422784],[-122.410120319,37.810401106],[-122.410127758,37.810363347],[-122.410130283,37.810350526],[-122.410134697,37.810351153],[-122.410155415,37.81033105],[-122.410176343,37.810233089],[-122.410157944,37.810210113],[-122.410179319,37.81010161],[-122.410076655,37.809920209],[-122.41005752,37.809886398],[-122.410010355,37.80980306],[-122.409788648,37.80941131],[-122.409782014,37.80939959],[-122.409759003,37.809358929],[-122.409674454,37.809156997],[-122.409661629,37.809126366],[-122.40964597,37.809088968],[-122.409645319,37.809088722],[-122.409643357,37.809083593],[-122.409612782,37.809076473],[-122.409583101,37.8090653],[-122.409554281,37.809062852],[-122.40955392,37.809062767],[-122.409549935,37.809045366],[-122.409551685,37.809045558],[-122.409554781,37.80905023],[-122.409554273,37.809045841],[-122.409563206,37.809046823],[-122.409552294,37.809028772],[-122.409550084,37.809009707],[-122.409549749,37.808996692],[-122.409548287,37.808994203],[-122.409547736,37.80898945],[-122.409539934,37.808979983],[-122.409387312,37.808720139],[-122.409385093,37.808719617],[-122.409381658,37.808713766],[-122.409363882,37.808692571],[-122.409190641,37.808632184],[-122.40919128,37.808629354],[-122.409193098,37.808621284],[-122.409215417,37.808525146],[-122.409254069,37.808370274],[-122.409296844,37.808222317],[-122.409298415,37.808216883],[-122.409329741,37.808111558],[-122.409344486,37.808061976],[-122.409348452,37.808048645],[-122.409348614,37.8080481],[-122.409284195,37.808038958],[-122.409223829,37.808020925],[-122.409219513,37.808019636],[-122.409144571,37.807992943],[-122.409139115,37.807991],[-122.409137462,37.807990411],[-122.409047092,37.807952809],[-122.40900888,37.80793691],[-122.408971237,37.807921248],[-122.408971029,37.807921161],[-122.408839024,37.807866236],[-122.408380886,37.807673394],[-122.407742408,37.807404148],[-122.40774242,37.807404641],[-122.407566759,37.807330699],[-122.40773996,37.807308903],[-122.407931408,37.807284811],[-122.407970715,37.807279864],[-122.408275368,37.807241526],[-122.408897337,37.807163252],[-122.408988692,37.807151815],[-122.409533167,37.807083651],[-122.409662488,37.80706746],[-122.409678722,37.807065427],[-122.410497554,37.80696291],[-122.410518696,37.80706769],[-122.410531731,37.80713229],[-122.410646995,37.807703537],[-122.410664814,37.807791846],[-122.41068505,37.807892132],[-122.410819298,37.807875672],[-122.411337789,37.8078121],[-122.411630615,37.807776196],[-122.412194905,37.807707004],[-122.412329558,37.807690493],[-122.412308779,37.807587512],[-122.412295515,37.807521776],[-122.412174714,37.80692307],[-122.412162639,37.806863229],[-122.412141424,37.806758082],[-122.41211993,37.806653257],[-122.41210473,37.806579126],[-122.411987696,37.806008352],[-122.411970938,37.805926619],[-122.411950087,37.80582493],[-122.411504382,37.80588007],[-122.411485324,37.805783172],[-122.411485315,37.805783044],[-122.411484136,37.805783192],[-122.411409906,37.805414168],[-122.411429849,37.805411673],[-122.411417348,37.805349522],[-122.411392346,37.805225223],[-122.411470701,37.805215419],[-122.4114692,37.805207962],[-122.411433197,37.805028969],[-122.411428171,37.80500347],[-122.411422623,37.804975327],[-122.411415571,37.804939557],[-122.411634443,37.804912395],[-122.411766481,37.80489601],[-122.411786572,37.80499766],[-122.411800409,37.805067664],[-122.411858464,37.805361376],[-122.411984437,37.80534547],[-122.412408707,37.805291895],[-122.412970667,37.805220932],[-122.413394291,37.805167436],[-122.413516489,37.805152005],[-122.413583289,37.805507398],[-122.413583858,37.805510427],[-122.413604168,37.805618479],[-122.41372835,37.805603212],[-122.414251291,37.805538918],[-122.414619766,37.805493614],[-122.415108376,37.805433538],[-122.415241485,37.805417171],[-122.415374588,37.805400572],[-122.415909821,37.805333824],[-122.416207953,37.805296643],[-122.41653054,37.805256412],[-122.416512114,37.805163409],[-122.416455349,37.804895268],[-122.416533981,37.804885374],[-122.41656238,37.804859303],[-122.416655159,37.804774129],[-122.416558452,37.804707143],[-122.416444138,37.804627963],[-122.41634499,37.804559288],[-122.416200118,37.804458941],[-122.416051424,37.804355945],[-122.416175667,37.804340701],[-122.416696326,37.804276815],[-122.416756921,37.804579914],[-122.416838223,37.804569681],[-122.416875308,37.804565014],[-122.41719154,37.80452527],[-122.417202542,37.804579498],[-122.417219635,37.80457735],[-122.417220014,37.804579214],[-122.417238418,37.804669934],[-122.417257202,37.804762519],[-122.417260892,37.804780707],[-122.417295079,37.80477641],[-122.417308832,37.804844196],[-122.417478561,37.804822863],[-122.41752138,37.805033705],[-122.417541067,37.805128468],[-122.417951145,37.805074835],[-122.41797041,37.805167563],[-122.417988533,37.805257937],[-122.418012041,37.805375162],[-122.418071023,37.805367584],[-122.418097462,37.805364187],[-122.418182883,37.805353211],[-122.418188843,37.805382932],[-122.418202441,37.805450737],[-122.418216039,37.805518543],[-122.418200663,37.805520519],[-122.418216979,37.805601885],[-122.418524498,37.805562375],[-122.41857565,37.805555896],[-122.418641016,37.805547615],[-122.418683083,37.805756677],[-122.418696982,37.805825753],[-122.418718266,37.80593152],[-122.419000181,37.805895442],[-122.419019071,37.805988363],[-122.419066712,37.806224284],[-122.419134568,37.806162775],[-122.419219399,37.806185329],[-122.41929766,37.806175342],[-122.419352076,37.806168398],[-122.419374553,37.80616553],[-122.419389423,37.806239166],[-122.419406042,37.806321455],[-122.419415569,37.806320239],[-122.419484358,37.806311461],[-122.419548246,37.806303309],[-122.419562676,37.806301467],[-122.419619634,37.806294199],[-122.419640994,37.806291473],[-122.419719313,37.806281479],[-122.419875945,37.806261491],[-122.41985541,37.806159801],[-122.419873257,37.806157523],[-122.420026284,37.806137994],[-122.420325313,37.806099834],[-122.420409409,37.806089053],[-122.420443268,37.806084712],[-122.420509219,37.806408556],[-122.420627362,37.80639341],[-122.420688179,37.80638555],[-122.420911637,37.80635667],[-122.420896881,37.806283448],[-122.420882126,37.806210227],[-122.42086737,37.806137006],[-122.420957904,37.806125306],[-122.421052755,37.806113046],[-122.421089435,37.806108306],[-122.421144571,37.806101179],[-122.421230361,37.806090092],[-122.421322176,37.806078224],[-122.421413992,37.806066357],[-122.421516483,37.80605311],[-122.421440995,37.805678533],[-122.421429729,37.805626587],[-122.421423075,37.805595908],[-122.421418956,37.805576912],[-122.421889682,37.805512642],[-122.422006822,37.805496648],[-122.422140626,37.805479628],[-122.422694357,37.805409194],[-122.422981648,37.805372649],[-122.423521158,37.805304019],[-122.423655075,37.805286984],[-122.423676611,37.805393176],[-122.423690062,37.8054595],[-122.423749599,37.805753066],[-122.423867073,37.805738068],[-122.424523277,37.805654588],[-122.42517948,37.805571106],[-122.425290555,37.805556975],[-122.425393087,37.805543931],[-122.425477271,37.805958976],[-122.425487611,37.806009959],[-122.425274002,37.806037134],[-122.42485362,37.806090617],[-122.424806072,37.806096804],[-122.423844681,37.806221893],[-122.42371027,37.806239381],[-122.423198791,37.806305928],[-122.422196208,37.806436364],[-122.422063689,37.806454293],[-122.421480201,37.806533236],[-122.420694749,37.806639498],[-122.420559965,37.806657732],[-122.420580858,37.806764006],[-122.420587704,37.806798827],[-122.420715717,37.807449969],[-122.420743268,37.807590105],[-122.42075746,37.807662293],[-122.420760416,37.807677327],[-122.420878563,37.807660321],[-122.421026073,37.808414476],[-122.421026798,37.808414383],[-122.421049479,37.808530851],[-122.421052084,37.808545464],[-122.421052434,37.808546024],[-122.421053137,37.808549637],[-122.421053377,37.808550801],[-122.421053402,37.80855103],[-122.421053417,37.808551611],[-122.421052671,37.808550454],[-122.421054527,37.808559939],[-122.421053895,37.808559666],[-122.42105564,37.808565629],[-122.421062459,37.808600492],[-122.421060217,37.808600803],[-122.421060327,37.808601344],[-122.421062569,37.808601056],[-122.421077548,37.808677633],[-122.421089403,37.808751141],[-122.421096598,37.808775028],[-122.421102174,37.808803535],[-122.421113613,37.808813141],[-122.421144749,37.808839294],[-122.421494931,37.809133418],[-122.421448316,37.809163213],[-122.422053151,37.809607418],[-122.422886143,37.810219171],[-122.422843781,37.810255664],[-122.421970603,37.809608763],[-122.421366412,37.809161132],[-122.42121031,37.809190082],[-122.421035964,37.808957117],[-122.421015169,37.808959441],[-122.420944184,37.80896737],[-122.420910922,37.808797309],[-122.42085805,37.80879564],[-122.420716762,37.808900446],[-122.420759921,37.809084919],[-122.42069359,37.809080166],[-122.420677375,37.809022095],[-122.420416184,37.809020515],[-122.420360581,37.80900392],[-122.420384508,37.808933528],[-122.420668363,37.808958074],[-122.42064057,37.808788607],[-122.420640529,37.80878836],[-122.420635337,37.808756195],[-122.420587932,37.80876236],[-122.420583761,37.80876291],[-122.420569473,37.808764788],[-122.420541386,37.808768438],[-122.420533815,37.808726851],[-122.420519427,37.808641995],[-122.420508349,37.808576661],[-122.420495816,37.808502755],[-122.420496026,37.808501611],[-122.420466136,37.808321862],[-122.420464682,37.808319142],[-122.420461953,37.808303051],[-122.420456438,37.808303719],[-122.420455525,37.808302009],[-122.419414685,37.808429407],[-122.419414674,37.808429853],[-122.419409952,37.808430456],[-122.419103988,37.808467509],[-122.41910445,37.808469505],[-122.419103384,37.808469641],[-122.419111521,37.80850012],[-122.419112107,37.80850266],[-122.419109949,37.808503093],[-122.419115754,37.808518446],[-122.419117418,37.808525647],[-122.419120902,37.808540732],[-122.419088029,37.808549143],[-122.419043181,37.808554574],[-122.418980156,37.808558235],[-122.418975926,37.808536248],[-122.41897518,37.80852816],[-122.41897086,37.80850991],[-122.418965919,37.80848423],[-122.418906874,37.80849138],[-122.418906487,37.808490315],[-122.418358794,37.808557751],[-122.417885701,37.808615038],[-122.417885868,37.808615978],[-122.41788399,37.80861621],[-122.417896038,37.808673085],[-122.417900826,37.808699976],[-122.417922541,37.80882192],[-122.418011113,37.808840764],[-122.418894777,37.808835772],[-122.418894269,37.80876045],[-122.418931617,37.80875756],[-122.41893472,37.808880955],[-122.419947521,37.808902026],[-122.419938342,37.809125667],[-122.419082675,37.809090777],[-122.419077113,37.809157248],[-122.418886682,37.809083586],[-122.418359449,37.809068692],[-122.418314053,37.809144536],[-122.418969945,37.80939747],[-122.418931307,37.809449459],[-122.4178967,37.809029276],[-122.41794042,37.808939633],[-122.41794685,37.808869915],[-122.41798661,37.808869268],[-122.41798631,37.808840904],[-122.417923544,37.80882755],[-122.417844005,37.808830106],[-122.41782037,37.808697372],[-122.41781136,37.80864678],[-122.417776065,37.808646278],[-122.417726085,37.808645158],[-122.417731315,37.808592876],[-122.417680003,37.808592439],[-122.417625152,37.808591972],[-122.417601604,37.808579204],[-122.417557327,37.808580958],[-122.417488945,37.808583666],[-122.417484735,37.80842066],[-122.417524933,37.808415881],[-122.417587243,37.808408472],[-122.417576685,37.808384971],[-122.417615241,37.80838106],[-122.417620366,37.808381529],[-122.417662744,37.808376242],[-122.417669315,37.808375575],[-122.41765388,37.808291658],[-122.417653608,37.808291691],[-122.417653584,37.80829153],[-122.417626394,37.808294968],[-122.417376126,37.808325107],[-122.417344849,37.808141498],[-122.417342405,37.80814179],[-122.417342389,37.808141699],[-122.417337434,37.808142286],[-122.416346445,37.808259626],[-122.416346541,37.80826027],[-122.416346219,37.808260308],[-122.41635452,37.808327787],[-122.416336474,37.808330777],[-122.416320305,37.808332754],[-122.416304411,37.808331614],[-122.416305151,37.808334607],[-122.416305018,37.808334624],[-122.416336497,37.808467557],[-122.416335294,37.808475381],[-122.416338366,37.808475451],[-122.416338523,37.808476112],[-122.417184319,37.808496539],[-122.417183876,37.808511858],[-122.417182527,37.808532881],[-122.416834507,37.808522189],[-122.416333889,37.808506039],[-122.416323443,37.808502105],[-122.416292043,37.808491503],[-122.41628243,37.808487545],[-122.416171073,37.808500425],[-122.416149952,37.808501607],[-122.416146523,37.808526415],[-122.416144469,37.808539761],[-122.416144676,37.808539775],[-122.416144668,37.808539833],[-122.416206548,37.808545359],[-122.416200216,37.808644929],[-122.416186923,37.808853983],[-122.417428242,37.808927153],[-122.41741315,37.809166196],[-122.417521241,37.809237412],[-122.417710632,37.809362191],[-122.418178587,37.809670496],[-122.419290995,37.810403372],[-122.419314562,37.810380611],[-122.419833999,37.810735131],[-122.419807859,37.810753994],[-122.420595038,37.811266987],[-122.42035347,37.811509562],[-122.420001824,37.811280746],[-122.419845713,37.811320053],[-122.419951521,37.811563027],[-122.419915733,37.811574292],[-122.419724411,37.811134944],[-122.419215223,37.810893741],[-122.419186231,37.810925335],[-122.419097875,37.81091513],[-122.418988145,37.810835419],[-122.418935536,37.810882845],[-122.419125142,37.811023349],[-122.419048675,37.811094447],[-122.419466197,37.811381745],[-122.419351092,37.811486556],[-122.418846139,37.811473361],[-122.416831306,37.810133139],[-122.41617704,37.809703032],[-122.415352307,37.809160849],[-122.415188645,37.80915742],[-122.415189115,37.809157828],[-122.415189142,37.809157852],[-122.415189642,37.809158054],[-122.41519014,37.809158263],[-122.415190631,37.809158478],[-122.415191119,37.809158701],[-122.415191601,37.809158931],[-122.415192077,37.809159167],[-122.415192549,37.80915941],[-122.415193014,37.809159659],[-122.415193475,37.809159915],[-122.41519393,37.809160176],[-122.41519438,37.809160444],[-122.415194823,37.809160719],[-122.415195259,37.809161],[-122.415195691,37.809161285],[-122.415196115,37.809161578],[-122.415196533,37.809161876],[-122.415196944,37.80916218],[-122.415197349,37.80916249],[-122.415197746,37.809162805],[-122.415198137,37.809163125],[-122.41519852,37.809163451],[-122.415198897,37.809163782],[-122.415199266,37.809164119],[-122.415199628,37.809164461],[-122.415199982,37.809164806],[-122.415200327,37.809165158],[-122.415200666,37.809165513],[-122.415200997,37.809165874],[-122.41520132,37.80916624],[-122.415201635,37.809166609],[-122.415201941,37.809166983],[-122.415202239,37.809167361],[-122.415202529,37.809167743],[-122.41520281,37.809168129],[-122.415203083,37.809168519],[-122.415203347,37.809168912],[-122.415203602,37.809169309],[-122.415203849,37.80916971],[-122.415204087,37.809170114],[-122.415204316,37.809170522],[-122.415204536,37.809170933],[-122.415204747,37.809171346],[-122.415204948,37.809171762],[-122.415205141,37.809172181],[-122.415205324,37.809172602],[-122.415205499,37.809173027],[-122.415205663,37.809173453],[-122.415205818,37.809173881],[-122.415205965,37.809174312],[-122.415206101,37.809174745],[-122.415206228,37.809175179],[-122.415206345,37.809175615],[-122.415206451,37.809176053],[-122.41520655,37.809176492],[-122.415206639,37.809176932],[-122.415206717,37.809177374],[-122.415206785,37.809177816],[-122.415206845,37.80917826],[-122.415206894,37.809178704],[-122.415206933,37.809179149],[-122.415206963,37.809179594],[-122.415206984,37.80918004],[-122.415206994,37.809180486],[-122.415206994,37.809180932],[-122.415206985,37.809181378],[-122.415206965,37.809181823],[-122.415206937,37.809182269],[-122.415206897,37.809182714],[-122.415206849,37.809183158],[-122.41520679,37.809183601],[-122.415206722,37.809184044],[-122.415206644,37.809184485],[-122.415206557,37.809184926],[-122.41520646,37.809185365],[-122.415206353,37.809185803],[-122.415206236,37.809186239],[-122.41520611,37.809186675],[-122.415205974,37.809187107],[-122.41520583,37.809187538],[-122.415205675,37.809187966],[-122.41520551,37.809188392],[-122.415205337,37.809188817],[-122.415205155,37.809189239],[-122.415204962,37.809189657],[-122.415204762,37.809190074],[-122.415204552,37.809190488],[-122.415204332,37.809190898],[-122.415204104,37.809191306],[-122.415203867,37.80919171],[-122.41520362,37.809192112],[-122.415203366,37.809192509],[-122.415203102,37.809192902],[-122.41520283,37.809193292],[-122.415202549,37.809193679],[-122.41520226,37.809194061],[-122.415201963,37.80919444],[-122.415201657,37.809194814],[-122.415201343,37.809195184],[-122.41520102,37.80919555],[-122.41520069,37.80919591],[-122.415200353,37.809196266],[-122.415200006,37.809196618],[-122.415199653,37.809196964],[-122.415199293,37.809197306],[-122.415198924,37.809197644],[-122.415198548,37.809197974],[-122.415198165,37.809198301],[-122.415197775,37.809198622],[-122.415197378,37.809198938],[-122.415196973,37.809199247],[-122.415196563,37.809199552],[-122.415196145,37.80919985],[-122.415195721,37.809200143],[-122.415195291,37.80920043],[-122.415194854,37.809200711],[-122.415194411,37.809200986],[-122.415193963,37.809201254],[-122.415193508,37.809201517],[-122.415193048,37.809201773],[-122.415192582,37.809202022],[-122.415192111,37.809202266],[-122.415191634,37.809202502],[-122.415191153,37.809202731],[-122.415190667,37.809202955],[-122.415190175,37.809203171],[-122.415189679,37.809203381],[-122.415189178,37.809203583],[-122.415188673,37.80920378],[-122.415188163,37.809203968],[-122.415187651,37.809204151],[-122.415151572,37.809230819],[-122.415171745,37.809244016],[-122.415194638,37.809227761],[-122.415412883,37.809363422],[-122.415370186,37.809406659],[-122.41514224,37.809264967],[-122.415156565,37.809254796],[-122.415139052,37.809240073],[-122.415131505,37.809245653],[-122.415040185,37.809186117],[-122.414889242,37.809241453],[-122.414977804,37.809294072],[-122.414968883,37.809303522],[-122.414993622,37.809317879],[-122.415006865,37.809304414],[-122.415222474,37.809437895],[-122.415179885,37.809481198],[-122.414964275,37.809347718],[-122.414980513,37.809331207],[-122.41495822,37.80931482],[-122.414952904,37.809320451],[-122.414846387,37.809257163],[-122.414787426,37.809278779],[-122.414792067,37.809178938],[-122.414671866,37.809182761],[-122.414577216,37.809171197],[-122.414505038,37.809162076],[-122.414463921,37.809168357],[-122.414358902,37.809166319],[-122.414361034,37.809020314],[-122.414198081,37.809012666],[-122.414008011,37.809005458],[-122.413572491,37.808992875],[-122.413500578,37.808994042],[-122.41337417,37.8089858],[-122.413192186,37.808971909],[-122.413046892,37.808963037],[-122.412881725,37.808961038],[-122.412745262,37.808974479],[-122.412860916,37.809023133],[-122.412871383,37.809017348],[-122.413042903,37.809082873],[-122.413047137,37.80906409],[-122.413080556,37.809079455],[-122.413130166,37.809082393],[-122.413186754,37.809081476],[-122.413306208,37.809094509],[-122.413354737,37.809101208],[-122.413489374,37.80915423],[-122.41348733,37.809166427],[-122.413442098,37.809150319],[-122.413428313,37.809164578],[-122.413418064,37.809178779],[-122.413433679,37.809189755],[-122.413320032,37.809356283],[-122.413336729,37.809363498],[-122.413311998,37.809410686],[-122.41307602,37.809315328],[-122.413047675,37.809268066],[-122.412767793,37.809152441]]]]}},"C-2","Unrestricted",0.000043758996934704437,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article2usedistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_210.1","COMMUNITY BUSINESS","C-2",210.1,19416,0.09241647456010826,"Commercial"],[{"type":"Feature","properties":{"zoning_sim":"NC-S","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000002996916370291045,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","districtname":"NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","zoning":"NC-S","codesection":713.1,"objectid":20451,"shape_length":0.007365120228755238,"gen":"Mixed Use","index":7},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.398132147,37.714255002],[-122.397901655,37.713798859],[-122.39787809,37.713752226],[-122.397785284,37.713568561],[-122.397756683,37.713511958],[-122.397657688,37.713316045],[-122.397652418,37.713305614],[-122.39768222,37.713151049],[-122.397688684,37.713117527],[-122.397745663,37.713080296],[-122.397805122,37.713041444],[-122.39788056,37.712992151],[-122.398113537,37.71295523],[-122.398166883,37.712946776],[-122.39848297,37.712986272],[-122.398542264,37.71299368],[-122.398669056,37.713027521],[-122.398675434,37.713029224],[-122.398873642,37.713082125],[-122.398972788,37.713130116],[-122.399079202,37.713181626],[-122.399124408,37.713203508],[-122.399237802,37.713258396],[-122.399363268,37.713319128],[-122.399498477,37.713384723],[-122.39960599,37.713436882],[-122.399614958,37.713441232],[-122.399755265,37.713509301],[-122.399811268,37.713525312],[-122.400016689,37.713584038],[-122.400116846,37.713612671],[-122.399710562,37.714020942],[-122.399623314,37.714114809],[-122.39941865,37.714335001],[-122.399288763,37.714567428],[-122.399172381,37.714852552],[-122.399125128,37.714979262],[-122.399054253,37.715169312],[-122.398991049,37.715338789],[-122.398834619,37.715264995],[-122.398743833,37.715174317],[-122.398638975,37.715069582],[-122.398533486,37.714964218],[-122.398502335,37.714933103],[-122.398350802,37.714687714],[-122.398211815,37.714412663],[-122.398155817,37.714301844],[-122.398132147,37.714255002]]]]}},"NC-S","6:00AM-2:00AM",0.000002996916370291045,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","NC-S",713.1,20451,0.007365120228755238,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-S","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000005038656556067152,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","districtname":"NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","zoning":"NC-S","codesection":713.1,"objectid":20445,"shape_length":0.009038741855487361,"gen":"Mixed Use","index":8},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.490591226,37.732047347],[-122.49143643,37.732010206],[-122.491559899,37.733781454],[-122.491469343,37.733875813],[-122.491453903,37.7338919],[-122.491342618,37.734007857],[-122.490443545,37.734050496],[-122.488956039,37.734113297],[-122.489032522,37.734010194],[-122.488984509,37.733326194],[-122.488899959,37.73212165],[-122.489743996,37.732084572],[-122.490591226,37.732047347]]]]}},"NC-S","6:00AM-2:00AM",0.000005038656556067152,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","NC-S",713.1,20445,0.009038741855487361,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":8.573563328021504e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19537,"shape_length":0.004607807420297676,"gen":"Mixed Use","index":9},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.502691269,37.775749746],[-122.502569878,37.775755307],[-122.502281495,37.775768491],[-122.502286887,37.775842517],[-122.502224953,37.775845348],[-122.502218319,37.775873161],[-122.502202528,37.775873883],[-122.502116172,37.775877831],[-122.502111178,37.775809287],[-122.502086337,37.775810422],[-122.502024821,37.775813233],[-122.501739845,37.77582626],[-122.501730573,37.775826685],[-122.501620456,37.775831718],[-122.501625153,37.775896602],[-122.501565966,37.775899301],[-122.501502772,37.775902183],[-122.50142337,37.775905812],[-122.50130247,37.775911338],[-122.501283015,37.775644223],[-122.501275115,37.775534616],[-122.501198904,37.775538076],[-122.501192138,37.775444189],[-122.501190997,37.775428361],[-122.501186058,37.775360572],[-122.501462396,37.77534791],[-122.501585027,37.775342291],[-122.501574855,37.775201773],[-122.501627977,37.77519935],[-122.501693958,37.775196341],[-122.501865503,37.77518848],[-122.501955313,37.775184364],[-122.501979274,37.775183266],[-122.501974282,37.775114722],[-122.502040129,37.775111704],[-122.502044777,37.775111491],[-122.502103469,37.775108802],[-122.502232182,37.775102904],[-122.502237177,37.775171448],[-122.502242169,37.775239991],[-122.502527488,37.775226915],[-122.502533897,37.775226622],[-122.502652837,37.77522117],[-122.50267097,37.775470567],[-122.502691269,37.775749746]]]]}},"NC-1","6:00AM-11:00PM",8.573563328021504e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19537,0.004607807420297676,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":0.000001243902466144706,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19528,"shape_length":0.006333645306961156,"gen":"Mixed Use","index":10},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.493268194,37.779258642],[-122.493334506,37.779255626],[-122.49339752,37.779252763],[-122.493812059,37.779233922],[-122.49382473,37.779408112],[-122.493831376,37.779499483],[-122.493840966,37.779668992],[-122.494048353,37.7796616],[-122.494038648,37.779490075],[-122.494034287,37.779430134],[-122.494037035,37.779430009],[-122.494241547,37.779420713],[-122.494363452,37.77941508],[-122.494362274,37.779399019],[-122.494348377,37.779209543],[-122.494405392,37.779206951],[-122.494468402,37.779204087],[-122.494581018,37.779198968],[-122.494592331,37.779354466],[-122.494595286,37.779395077],[-122.494600342,37.779464577],[-122.494615434,37.779636795],[-122.494610359,37.779637076],[-122.494625276,37.779807299],[-122.494643742,37.780061096],[-122.494645225,37.780081475],[-122.494532606,37.780086587],[-122.494412578,37.780092036],[-122.494290788,37.780097565],[-122.494092161,37.780106581],[-122.493919433,37.780114421],[-122.493876252,37.780116381],[-122.493461707,37.780135197],[-122.493337424,37.780140934],[-122.493337411,37.780140746],[-122.493219888,37.780146171],[-122.492802454,37.780165115],[-122.49280159,37.780153242],[-122.492782512,37.779890938],[-122.492767369,37.779717518],[-122.493297258,37.779688368],[-122.493278927,37.779417341],[-122.493268194,37.779258642]]]]}},"NC-1","6:00AM-11:00PM",0.000001243902466144706,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19528,0.006333645306961156,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":3.3234097944373216e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19680,"shape_length":0.0025833436480462374,"gen":"Mixed Use","index":11},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.398804471,37.731805816],[-122.398813468,37.731767023],[-122.398843825,37.731782389],[-122.398871535,37.731672624],[-122.398880837,37.731635778],[-122.398883197,37.731626432],[-122.398888303,37.731606208],[-122.399014054,37.731624323],[-122.399072147,37.731632692],[-122.399096757,37.731636237],[-122.399310372,37.73166701],[-122.399423246,37.731703097],[-122.39957158,37.731853678],[-122.399595379,37.731877837],[-122.399717094,37.732001393],[-122.399787814,37.732073184],[-122.399774878,37.73208142],[-122.399720032,37.73211634],[-122.399592151,37.732197759],[-122.399580564,37.732205136],[-122.3995211,37.732242995],[-122.399465091,37.732278654],[-122.399476388,37.732285534],[-122.399446661,37.732313321],[-122.399227399,37.732090247],[-122.399171913,37.732033796],[-122.399173349,37.732032355],[-122.39910582,37.731990883],[-122.399051004,37.73195722],[-122.398831145,37.731822197],[-122.398804471,37.731805816]]]]}},"NC-1","6:00AM-11:00PM",3.3234097944373216e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19680,0.0025833436480462374,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":4.969725816032462e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":20415,"shape_length":0.004126104353634167,"gen":"Mixed Use","index":12},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.447735172,37.773965205],[-122.447721246,37.773896643],[-122.447709901,37.773840791],[-122.447687959,37.773732768],[-122.447530826,37.773752713],[-122.44747129,37.773760271],[-122.447355227,37.773775002],[-122.447228802,37.77379105],[-122.447225999,37.773777137],[-122.447210345,37.773699431],[-122.447196814,37.773632597],[-122.447183091,37.773564808],[-122.447465229,37.773529114],[-122.447524766,37.773521582],[-122.447642187,37.773506609],[-122.447642232,37.773506839],[-122.447652693,37.773505504],[-122.447759668,37.773491863],[-122.447833201,37.77348256],[-122.447978412,37.773464188],[-122.448124478,37.773445708],[-122.44811074,37.773377921],[-122.448097001,37.773310134],[-122.448083263,37.773242348],[-122.448076394,37.773208453],[-122.448118117,37.773203175],[-122.448161813,37.773197647],[-122.448219682,37.773190325],[-122.448247231,37.77318684],[-122.44833265,37.773176032],[-122.448408883,37.773166387],[-122.448484089,37.773537446],[-122.448502606,37.77362936],[-122.448165167,37.773672193],[-122.448184227,37.773766801],[-122.448214722,37.773915724],[-122.448226285,37.773972191],[-122.448189737,37.773976839],[-122.448123795,37.773985225],[-122.448109918,37.773917456],[-122.447849422,37.773950583],[-122.447824934,37.773953718],[-122.447735172,37.773965205]]]]}},"NC-1","6:00AM-11:00PM",4.969725816032462e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,20415,0.004126104353634167,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.974544530096258e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19678,"shape_length":0.0023452053173746534,"gen":"Mixed Use","index":13},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.476109724,37.783913898],[-122.476293987,37.783905696],[-122.476410924,37.783900544],[-122.47653584,37.783895039],[-122.476651003,37.783889914],[-122.476737377,37.783886068],[-122.476823751,37.783882223],[-122.476910123,37.783878378],[-122.476910875,37.783888751],[-122.476929229,37.784141818],[-122.476936905,37.784248449],[-122.476436803,37.784271124],[-122.476136556,37.784284737],[-122.476128825,37.784177338],[-122.47611223,37.783948452],[-122.476109724,37.783913898]]]]}},"NC-1","6:00AM-11:00PM",2.974544530096258e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19678,0.0023452053173746534,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":5.193130601099123e-8,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19692,"shape_length":0.0009742381519180925,"gen":"Mixed Use","index":14},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.380630716,37.728148039],[-122.380642494,37.728134817],[-122.380710601,37.728058361],[-122.380763086,37.727999441],[-122.380770515,37.727991101],[-122.380882448,37.728000825],[-122.381016231,37.728012447],[-122.380979151,37.728054073],[-122.380886429,37.728158163],[-122.380806544,37.728247841],[-122.38076883,37.728226435],[-122.380643005,37.728155015],[-122.380630716,37.728148039]]]]}},"NC-1","6:00AM-11:00PM",5.193130601099123e-8,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19692,0.0009742381519180925,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.8110582007611373e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19786,"shape_length":0.003070564139199064,"gen":"Mixed Use","index":15},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.443262736,37.788194469],[-122.443280642,37.788192191],[-122.443313991,37.788187949],[-122.443356703,37.788182515],[-122.443371839,37.788257078],[-122.443410404,37.788252172],[-122.443465805,37.788245125],[-122.443480943,37.788319688],[-122.443574909,37.788307734],[-122.443668875,37.788295781],[-122.443761627,37.788283982],[-122.443798871,37.788279244],[-122.443879085,37.788269041],[-122.44390794,37.788411655],[-122.443911047,37.78841126],[-122.444025399,37.788396713],[-122.44438845,37.788350528],[-122.444402504,37.78841999],[-122.444420717,37.788509999],[-122.443940018,37.788570189],[-122.44342047,37.788636787],[-122.443354255,37.788645274],[-122.44333608,37.78855575],[-122.443275767,37.788258661],[-122.443273453,37.788247258],[-122.443262736,37.788194469]]]]}},"NC-1","6:00AM-11:00PM",2.8110582007611373e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19786,0.003070564139199064,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCT-3","commercial_hours_of_operation":"No Limit","shape_area":0.000006509737369960047,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_752","districtname":"MODERATE SCALE NEIGHBORHOOD COMMERCIAL TRANSIT DISTRICT","zoning":"NCT-3","codesection":752,"objectid":19846,"shape_length":0.01406295866787203,"gen":"Mixed Use","index":16},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.422086793,37.780821047],[-122.422042151,37.780600254],[-122.421992561,37.780354983],[-122.421891571,37.779890105],[-122.421870616,37.779782808],[-122.421864728,37.779752664],[-122.421744631,37.779137733],[-122.421709307,37.778956864],[-122.421687894,37.778850587],[-122.421675453,37.778788838],[-122.421542885,37.778130878],[-122.421520698,37.77802076],[-122.421426124,37.77755963],[-122.421914515,37.777497321],[-122.421924125,37.777544772],[-122.421937828,37.777612563],[-122.421947788,37.777661839],[-122.421956507,37.777704973],[-122.421963863,37.777741367],[-122.421989745,37.777869401],[-122.422003895,37.777940753],[-122.422007696,37.777959915],[-122.421937014,37.777968746],[-122.421920478,37.777970812],[-122.421939557,37.77806702],[-122.422014939,37.778439871],[-122.42210889,37.778427904],[-122.422202841,37.778415938],[-122.422339497,37.778398531],[-122.422472737,37.778381561],[-122.422672596,37.778356104],[-122.422997672,37.778314696],[-122.423105446,37.778113747],[-122.423203035,37.778101316],[-122.423222884,37.778098788],[-122.423165553,37.777815246],[-122.423752096,37.777739087],[-122.423771588,37.77783366],[-122.423809365,37.778020492],[-122.423823403,37.77808991],[-122.423847527,37.778209222],[-122.423874394,37.778342092],[-122.42391481,37.778541964],[-122.423922372,37.77857936],[-122.423939347,37.778663311],[-122.42394122,37.778672572],[-122.423487843,37.778730325],[-122.423354025,37.778747371],[-122.423375501,37.778853584],[-122.423388518,37.778917963],[-122.423448263,37.779213434],[-122.423508008,37.779508905],[-122.423521025,37.779573283],[-122.423541307,37.779673585],[-122.423563979,37.77978571],[-122.423576996,37.779850084],[-122.423696489,37.780441034],[-122.423709506,37.780505409],[-122.423723141,37.780572837],[-122.423730984,37.780611621],[-122.423825226,37.781077683],[-122.423884974,37.781373153],[-122.423897993,37.781437532],[-122.423917826,37.781535611],[-122.423785432,37.781552475],[-122.423159634,37.781632187],[-122.422884842,37.781667188],[-122.422408868,37.781727813],[-122.422390882,37.781730103],[-122.422286646,37.781751804],[-122.422186711,37.781286386],[-122.42212099,37.780980313],[-122.422109594,37.780927239],[-122.422086793,37.780821047]]]]}},"NCT-3","No Limit",0.000006509737369960047,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_752","MODERATE SCALE NEIGHBORHOOD COMMERCIAL TRANSIT DISTRICT","NCT-3",752,19846,0.01406295866787203,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":4.1695270038468307e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19656,"shape_length":0.0030350021535661617,"gen":"Mixed Use","index":17},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.450499291,37.773375882],[-122.450480678,37.773283508],[-122.450453542,37.77315101],[-122.45081657,37.773105073],[-122.450929437,37.773091041],[-122.45094272,37.773158362],[-122.45099299,37.773152112],[-122.451065351,37.773143116],[-122.451340825,37.773108256],[-122.451326945,37.773040486],[-122.451403841,37.773030756],[-122.451430671,37.77316267],[-122.45144933,37.773255263],[-122.451470841,37.773252532],[-122.451480129,37.773298621],[-122.451489752,37.773346374],[-122.45151858,37.773487131],[-122.451493534,37.773490317],[-122.451139073,37.773535405],[-122.451021453,37.773550459],[-122.451019447,37.773540585],[-122.450902217,37.773555589],[-122.450670285,37.773585091],[-122.450560587,37.773599044],[-122.450533744,37.773467978],[-122.450519807,37.773398812],[-122.45051479,37.773373914],[-122.450499291,37.773375882]]]]}},"NC-1","6:00AM-11:00PM",4.1695270038468307e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19656,0.0030350021535661617,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":7.154330962654713e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19777,"shape_length":0.00437111632097754,"gen":"Mixed Use","index":18},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.425981567,37.73408777],[-122.425966431,37.73407829],[-122.425954415,37.734070764],[-122.425869936,37.734017849],[-122.425764905,37.733952062],[-122.425598415,37.733847779],[-122.425758037,37.733687039],[-122.425832159,37.733612397],[-122.425955125,37.733625738],[-122.426010476,37.733631993],[-122.426035117,37.733557945],[-122.426107607,37.733340109],[-122.426143929,37.733302794],[-122.426164129,37.733282042],[-122.426439538,37.733444253],[-122.42655364,37.733511456],[-122.426623382,37.733441247],[-122.426741915,37.733321921],[-122.426854391,37.733392371],[-122.42692456,37.733436322],[-122.42707201,37.733528677],[-122.427091168,37.733540677],[-122.427187313,37.733600897],[-122.426956531,37.733622382],[-122.426961195,37.733653979],[-122.426968609,37.733704212],[-122.426989615,37.733846525],[-122.42686322,37.733792208],[-122.426699252,37.734032867],[-122.426676211,37.734066685],[-122.426657509,37.734094135],[-122.426608138,37.734166598],[-122.426447511,37.734097569],[-122.426386663,37.73407142],[-122.426309526,37.73403827],[-122.426114539,37.733954474],[-122.42610677,37.733962262],[-122.426054325,37.734014835],[-122.425991433,37.734077881],[-122.425981567,37.73408777]]]]}},"NC-1","6:00AM-11:00PM",7.154330962654713e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19777,0.00437111632097754,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-3","commercial_hours_of_operation":"No Limit","shape_area":0.000004212403894165166,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","districtname":"NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","zoning":"NC-3","codesection":712.1,"objectid":19594,"shape_length":0.015009928000415902,"gen":"Mixed Use","index":19},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.391521351,37.732431907],[-122.391333092,37.732325225],[-122.391319832,37.732317711],[-122.391183963,37.732240716],[-122.391182177,37.732239704],[-122.391168657,37.732232043],[-122.391098285,37.732192164],[-122.391178693,37.732102778],[-122.39137971,37.731879314],[-122.391238967,37.731799557],[-122.39128922,37.73174369],[-122.391339475,37.731687824],[-122.391439983,37.731576092],[-122.391520389,37.731486706],[-122.391450017,37.731446827],[-122.391529095,37.731358918],[-122.391530423,37.731357442],[-122.391714753,37.731152525],[-122.391731438,37.731133976],[-122.391714029,37.731124111],[-122.391590695,37.73105422],[-122.391520324,37.731014341],[-122.391570577,37.730958474],[-122.391650983,37.730869088],[-122.391705982,37.730807947],[-122.391721338,37.730790876],[-122.391722667,37.730789397],[-122.391765908,37.730741327],[-122.391801743,37.73070149],[-122.391741249,37.730667209],[-122.39171924,37.730654736],[-122.39167452,37.730629395],[-122.391590629,37.730581854],[-122.391622509,37.730546413],[-122.391671035,37.730492468],[-122.391721289,37.730436602],[-122.391771541,37.730380735],[-122.391821793,37.730324869],[-122.391872046,37.730269003],[-122.3919223,37.730213136],[-122.391972552,37.73015727],[-122.392022805,37.730101403],[-122.392073057,37.730045537],[-122.392153461,37.72995615],[-122.39185242,37.729785553],[-122.391980749,37.729642823],[-122.392019014,37.729600264],[-122.392248366,37.729345173],[-122.392293266,37.729295233],[-122.392415074,37.729159753],[-122.392174361,37.729023048],[-122.392114181,37.728988871],[-122.392030015,37.728941072],[-122.391986683,37.728916462],[-122.391903181,37.72886904],[-122.39198321,37.728780068],[-122.392024741,37.728733897],[-122.392184216,37.728556602],[-122.392385221,37.728333136],[-122.392412788,37.728302489],[-122.392465306,37.728244102],[-122.392381751,37.728196853],[-122.392127323,37.728052979],[-122.392042786,37.728005175],[-122.392123812,37.727915094],[-122.392324814,37.727691627],[-122.392369532,37.727716969],[-122.392395183,37.727731506],[-122.392465552,37.727771384],[-122.392535921,37.727811262],[-122.392737345,37.727587325],[-122.392772436,37.727548312],[-122.39281698,37.727498789],[-122.392901063,37.727546245],[-122.392967304,37.72758363],[-122.392993497,37.727598414],[-122.393232787,37.727733467],[-122.393009818,37.728239186],[-122.392985968,37.72829328],[-122.39289942,37.72848958],[-122.392793684,37.728839319],[-122.392624535,37.729278453],[-122.393130629,37.729342295],[-122.3931059,37.729450693],[-122.393090488,37.729518252],[-122.393075077,37.729585811],[-122.393059665,37.729653371],[-122.393044254,37.72972093],[-122.393028843,37.729788488],[-122.393013431,37.729856047],[-122.39299802,37.729923607],[-122.392982608,37.729991166],[-122.392967196,37.730058725],[-122.392951784,37.730126284],[-122.392936373,37.730193843],[-122.392920961,37.730261402],[-122.39290555,37.730328961],[-122.392890138,37.73039652],[-122.392805071,37.730384299],[-122.392789659,37.730451858],[-122.392774248,37.730519416],[-122.392758836,37.730586976],[-122.39274292,37.730656746],[-122.392727509,37.730724305],[-122.392760423,37.730728961],[-122.392741271,37.730812659],[-122.392653393,37.731196691],[-122.392588725,37.731479295],[-122.392486969,37.731463207],[-122.392452275,37.731457722],[-122.39227228,37.731429264],[-122.392252157,37.731496089],[-122.392295405,37.731502926],[-122.392278093,37.731570196],[-122.392224867,37.73156178],[-122.39219873,37.731627654],[-122.392203557,37.731628417],[-122.392188809,37.731696092],[-122.392170307,37.731780987],[-122.392174857,37.731781703],[-122.392160882,37.731847527],[-122.392146145,37.731916938],[-122.392127517,37.731914214],[-122.392112469,37.731982346],[-122.392097293,37.732051057],[-122.39208252,37.732117946],[-122.392151598,37.732128707],[-122.392137664,37.732187572],[-122.392119415,37.732264671],[-122.392093771,37.732373019],[-122.392089477,37.732391165],[-122.392076204,37.732447245],[-122.391814367,37.732409452],[-122.391521351,37.732431907]]]]}},"NC-3","No Limit",0.000004212403894165166,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","NC-3",712.1,19594,0.015009928000415902,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.07029546994413e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19530,"shape_length":0.0018241377040699733,"gen":"Mixed Use","index":20},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.428357382,37.779064645],[-122.428370271,37.779128846],[-122.428376377,37.779159265],[-122.428386096,37.779207315],[-122.42845063,37.779526367],[-122.42838613,37.779534919],[-122.428012371,37.779584477],[-122.427942318,37.779214573],[-122.427926566,37.779136103],[-122.427923243,37.779119545],[-122.428357382,37.779064645]]]]}},"NC-1","6:00AM-11:00PM",2.07029546994413e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19530,0.0018241377040699733,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCT-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":7.606458313100243e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_751","districtname":"NEIGHBORHOOD COMMERCIAL TRANSIT-2","zoning":"NCT-2","codesection":751,"objectid":19852,"shape_length":0.004047976422347887,"gen":"Mixed Use","index":21},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.443382249,37.722908597],[-122.443407142,37.722868102],[-122.44344911,37.722799832],[-122.443657734,37.722460452],[-122.443722866,37.722354497],[-122.443793036,37.722240347],[-122.443984821,37.722315917],[-122.444051386,37.722342145],[-122.444068268,37.722348797],[-122.444226664,37.72241121],[-122.444274352,37.722430001],[-122.44441522,37.722485507],[-122.444592154,37.722555224],[-122.444640291,37.72257419],[-122.444669593,37.722585736],[-122.444772449,37.722626264],[-122.444944314,37.722693982],[-122.444780144,37.722920351],[-122.444759055,37.722949431],[-122.444746625,37.722966571],[-122.44461027,37.722951888],[-122.444542075,37.722944544],[-122.444482005,37.72294365],[-122.444381576,37.722955663],[-122.444017849,37.722999169],[-122.443857264,37.723017704],[-122.443592246,37.723048292],[-122.443561666,37.723051821],[-122.44329652,37.723082424],[-122.443273779,37.723085048],[-122.443275177,37.723082776],[-122.443287906,37.723062068],[-122.443289892,37.723058838],[-122.443382249,37.722908597]]]]}},"NCT-2","6:00AM-2:00AM",7.606458313100243e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_751","NEIGHBORHOOD COMMERCIAL TRANSIT-2","NCT-2",751,19852,0.004047976422347887,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000025489250681160335,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19552,"shape_length":0.010660656620883396,"gen":"Mixed Use","index":22},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.43499103,37.786240624],[-122.434917663,37.785876208],[-122.434823829,37.785410119],[-122.434876184,37.78540356],[-122.434941327,37.785395398],[-122.435264914,37.785354855],[-122.435733792,37.785296106],[-122.43573399,37.785296092],[-122.43581017,37.78566715],[-122.43582935,37.785760321],[-122.435957205,37.785744068],[-122.435941171,37.785664999],[-122.435938305,37.785650862],[-122.435863344,37.785281193],[-122.435863277,37.785280866],[-122.435863083,37.785279905],[-122.436345889,37.785219408],[-122.436345829,37.785217094],[-122.436462928,37.785202421],[-122.436523061,37.785498956],[-122.436535768,37.785561618],[-122.436557297,37.785667783],[-122.436691172,37.785650863],[-122.436966461,37.785616068],[-122.437525944,37.78554535],[-122.437808744,37.785509604],[-122.437815018,37.7855406],[-122.43782743,37.78560192],[-122.437882271,37.785872853],[-122.43796787,37.785861969],[-122.438053437,37.785851091],[-122.438154911,37.785838189],[-122.438238405,37.785827574],[-122.43827939,37.785822362],[-122.438295862,37.785904268],[-122.438352058,37.786183702],[-122.43837267,37.786286191],[-122.438393884,37.786391675],[-122.438253593,37.786409505],[-122.438142566,37.786423617],[-122.437433182,37.786513776],[-122.437294547,37.786531395],[-122.437291445,37.786516105],[-122.437275579,37.786437865],[-122.43722041,37.786165828],[-122.437191365,37.78616952],[-122.437170528,37.786066767],[-122.437170343,37.786066791],[-122.43716601,37.786044962],[-122.437164356,37.786036626],[-122.437019494,37.786055155],[-122.437020943,37.786063026],[-122.437021526,37.786066196],[-122.436765269,37.786099209],[-122.436703073,37.786107221],[-122.436647852,37.786114335],[-122.436646893,37.786109601],[-122.436631184,37.786032134],[-122.436513726,37.786047065],[-122.436419762,37.78605901],[-122.436295044,37.786074864],[-122.436231831,37.7860829],[-122.436137866,37.786094844],[-122.436043902,37.786106789],[-122.436059307,37.786182763],[-122.436064519,37.786208468],[-122.435970555,37.786220413],[-122.435885131,37.786231272],[-122.435876589,37.786232358],[-122.435782624,37.786244303],[-122.435760414,37.786247126],[-122.435688659,37.786256247],[-122.435671573,37.786258418],[-122.435594194,37.786268255],[-122.43558615,37.786269277],[-122.435500728,37.786280136],[-122.435495225,37.786252996],[-122.435493855,37.786246242],[-122.435480109,37.786178457],[-122.435386145,37.786190401],[-122.435364756,37.78619312],[-122.435292179,37.786202345],[-122.435108486,37.786225694],[-122.435061112,37.786231716],[-122.43499103,37.786240624]]]]}},"NC-2","6:00AM-2:00AM",0.0000025489250681160335,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19552,0.010660656620883396,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":0.0000019634988371519618,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19778,"shape_length":0.007741245706928753,"gen":"Mixed Use","index":23},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.472138455,37.731600434],[-122.472160325,37.731205503],[-122.472132195,37.731060227],[-122.472715827,37.731068534],[-122.472716311,37.73106854],[-122.472716619,37.731068545],[-122.473028812,37.731072987],[-122.473027154,37.731146492],[-122.473026786,37.731162819],[-122.472997624,37.731200574],[-122.473073676,37.731233415],[-122.473164939,37.731272823],[-122.473317044,37.731338503],[-122.473353519,37.731291282],[-122.473370696,37.731299],[-122.473504095,37.731358941],[-122.473542542,37.731376216],[-122.473604175,37.731403911],[-122.473654672,37.731426601],[-122.473859036,37.731518428],[-122.473954211,37.731561194],[-122.474007578,37.731587023],[-122.474028349,37.731559951],[-122.474207741,37.731326155],[-122.474243491,37.731270758],[-122.474304168,37.731176734],[-122.474358643,37.731092321],[-122.474358913,37.731091903],[-122.474455175,37.731093271],[-122.474399434,37.731175138],[-122.474398784,37.731176091],[-122.474396383,37.731179619],[-122.474394058,37.731183178],[-122.474391811,37.73118677],[-122.474389645,37.731190391],[-122.474387557,37.731194043],[-122.474385551,37.731197722],[-122.474383625,37.731201429],[-122.474381782,37.731205162],[-122.474380021,37.731208921],[-122.474378343,37.731212701],[-122.474376748,37.731216506],[-122.474375237,37.731220333],[-122.47437381,37.731224179],[-122.474372468,37.731228044],[-122.47437121,37.731231928],[-122.47437004,37.731235828],[-122.474368953,37.731239744],[-122.474367954,37.731243675],[-122.474367042,37.731247619],[-122.474366215,37.731251575],[-122.474365476,37.731255542],[-122.474364825,37.731259517],[-122.47436426,37.731263503],[-122.474363784,37.731267495],[-122.474363396,37.731271493],[-122.474363095,37.731275496],[-122.474362882,37.731279501],[-122.474362757,37.73128351],[-122.474362723,37.731288206],[-122.474369455,37.731392434],[-122.474376188,37.731496664],[-122.474382919,37.731600893],[-122.474389534,37.731703297],[-122.474389889,37.73170511],[-122.474400679,37.731760177],[-122.474410186,37.731808686],[-122.474429095,37.731905185],[-122.474430122,37.73190953],[-122.474478932,37.732115893],[-122.474497652,37.732195037],[-122.474510983,37.732251401],[-122.474512425,37.732257495],[-122.474529726,37.732265267],[-122.474601003,37.732297286],[-122.47453311,37.732392618],[-122.474498378,37.732425751],[-122.474466884,37.732543737],[-122.474474159,37.732639829],[-122.474438284,37.732623959],[-122.474255667,37.73254317],[-122.474076757,37.732464022],[-122.474072002,37.732461918],[-122.473975709,37.732419318],[-122.473972613,37.732423335],[-122.473971624,37.732424619],[-122.473885888,37.732386119],[-122.473720019,37.732311633],[-122.473644722,37.732277821],[-122.473557706,37.732238744],[-122.473519412,37.732221548],[-122.473519524,37.732221402],[-122.473482506,37.732204779],[-122.47333188,37.732137137],[-122.473217404,37.73208573],[-122.473061923,37.732015908],[-122.472986665,37.731982112],[-122.472993466,37.731972277],[-122.472918328,37.731938308],[-122.472768052,37.731870368],[-122.472649727,37.731816874],[-122.472563602,37.731777937],[-122.472534161,37.731764628],[-122.472539787,37.731669914],[-122.472529077,37.73166806],[-122.472421337,37.731649408],[-122.472198452,37.731610821],[-122.472138455,37.731600434]]]]}},"NC-1","6:00AM-11:00PM",0.0000019634988371519618,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19778,0.007741245706928753,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":0.0000012601866486530515,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19691,"shape_length":0.006463522512021167,"gen":"Mixed Use","index":24},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.439805693,37.729498567],[-122.439765505,37.729457284],[-122.439734439,37.729425371],[-122.439718988,37.729409498],[-122.439684188,37.729373751],[-122.439551841,37.729237796],[-122.439711926,37.729138932],[-122.439858964,37.729048124],[-122.439889838,37.729029058],[-122.440062034,37.728922714],[-122.439852757,37.728810296],[-122.439846073,37.728806706],[-122.43963591,37.728693811],[-122.439575768,37.728661504],[-122.439633277,37.728592932],[-122.439675863,37.728542153],[-122.439714626,37.728495934],[-122.439728275,37.728479659],[-122.439774038,37.728425092],[-122.439822798,37.728366951],[-122.439869214,37.728311606],[-122.43995513,37.728209159],[-122.440308177,37.728393633],[-122.440427839,37.728456158],[-122.440439122,37.728439293],[-122.440446534,37.728428216],[-122.440596527,37.728204035],[-122.440607092,37.728188243],[-122.440687439,37.728068158],[-122.440699865,37.728049584],[-122.440761783,37.727957041],[-122.440931002,37.728028748],[-122.440969681,37.728045139],[-122.441011408,37.72806282],[-122.441117041,37.728107582],[-122.441149796,37.728121461],[-122.441118644,37.728168961],[-122.441072308,37.728239616],[-122.441028997,37.728305657],[-122.440989477,37.728365917],[-122.440988526,37.728367368],[-122.440953396,37.728420935],[-122.440909186,37.728488347],[-122.44087402,37.728541968],[-122.440864002,37.728557242],[-122.440832053,37.728605959],[-122.440865646,37.728620208],[-122.440896088,37.728633121],[-122.440929757,37.728647402],[-122.440897732,37.728696087],[-122.440868778,37.728740106],[-122.440771432,37.728888094],[-122.440752781,37.728880611],[-122.440676577,37.728850036],[-122.440552419,37.729030598],[-122.440541167,37.729046963],[-122.440499726,37.729107228],[-122.440509178,37.729111213],[-122.440543214,37.729125377],[-122.440555022,37.729130291],[-122.440679647,37.729182154],[-122.440800757,37.729232554],[-122.440633365,37.729294619],[-122.440560023,37.729321813],[-122.440554615,37.729323818],[-122.440548455,37.729326103],[-122.440534943,37.729331112],[-122.44032234,37.729409935],[-122.440314832,37.729412719],[-122.440214578,37.729449889],[-122.439980398,37.729536711],[-122.439959603,37.729544421],[-122.439879311,37.72957419],[-122.439872513,37.729567207],[-122.439867005,37.729561549],[-122.439852055,37.729546192],[-122.439844997,37.729538941],[-122.439805693,37.729498567]]]]}},"NC-1","6:00AM-11:00PM",0.0000012601866486530515,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19691,0.006463522512021167,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":5.108830547496599e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19740,"shape_length":0.004015406635013195,"gen":"Mixed Use","index":25},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.397728733,37.754826578],[-122.398554457,37.754773621],[-122.398693308,37.754745312],[-122.398680137,37.754605833],[-122.398658899,37.754380961],[-122.398775607,37.754374013],[-122.398796872,37.754372747],[-122.398889221,37.754367175],[-122.398975448,37.754361973],[-122.398999989,37.75460068],[-122.399003589,37.754635702],[-122.399012238,37.75472607],[-122.398981304,37.754727936],[-122.398920825,37.754731585],[-122.398926924,37.754795305],[-122.398929475,37.754821955],[-122.398955724,37.755095798],[-122.398868141,37.755101082],[-122.398728728,37.755109626],[-122.398726306,37.75508472],[-122.398589869,37.755093081],[-122.398241583,37.755114092],[-122.397982902,37.755129698],[-122.397896675,37.755134898],[-122.39776748,37.75514261],[-122.397758703,37.755143133],[-122.397735694,37.754900098],[-122.397728733,37.754826578]]]]}},"NC-1","6:00AM-11:00PM",5.108830547496599e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19740,0.004015406635013195,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":6.16546907796917e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19682,"shape_length":0.0040510003623698745,"gen":"Mixed Use","index":26},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.408413129,37.73132019],[-122.408411373,37.73131595],[-122.408307588,37.731065361],[-122.40830508,37.731059306],[-122.408307417,37.731058695],[-122.408404116,37.731033377],[-122.408798205,37.7309302],[-122.409188648,37.730827975],[-122.409192293,37.730827021],[-122.409290815,37.730801225],[-122.409300737,37.730825263],[-122.409341389,37.730923746],[-122.409388833,37.731038681],[-122.40939093,37.73104376],[-122.409398761,37.731062733],[-122.409476471,37.731042374],[-122.409497277,37.731036923],[-122.409696278,37.730984787],[-122.40989134,37.730933683],[-122.409930357,37.731028203],[-122.409931054,37.731029892],[-122.409933151,37.731034971],[-122.409962635,37.731106395],[-122.409932603,37.731115613],[-122.409847834,37.731141632],[-122.409520148,37.73124221],[-122.409478166,37.731255096],[-122.409350905,37.731294152],[-122.409116307,37.731366148],[-122.409029327,37.731392841],[-122.408914448,37.731428096],[-122.408883605,37.731437483],[-122.408569035,37.731533225],[-122.408508936,37.731551517],[-122.408501812,37.731534314],[-122.40846452,37.731444273],[-122.408413129,37.73132019]]]]}},"NC-1","6:00AM-11:00PM",6.16546907796917e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19682,0.0040510003623698745,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":1.2153581239784904e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19704,"shape_length":0.001563651439272719,"gen":"Mixed Use","index":27},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.432722549,37.723885091],[-122.432776046,37.723814503],[-122.432799375,37.723783719],[-122.432814703,37.723763494],[-122.432826802,37.723747528],[-122.432831711,37.723741051],[-122.43284463,37.723747235],[-122.432876474,37.723762481],[-122.432916812,37.723781792],[-122.43297821,37.723811186],[-122.432979777,37.723811936],[-122.432980371,37.72381115],[-122.433003701,37.723780366],[-122.433019028,37.723760142],[-122.433031128,37.723744175],[-122.433075113,37.723686135],[-122.433168491,37.72373064],[-122.433223353,37.723756789],[-122.433327121,37.723806246],[-122.433231487,37.723932437],[-122.433136763,37.724057565],[-122.433122884,37.724075898],[-122.433086162,37.724058395],[-122.433019029,37.724026399],[-122.432778576,37.723911795],[-122.432722549,37.723885091]]]]}},"NC-1","6:00AM-11:00PM",1.2153581239784904e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19704,0.001563651439272719,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCD","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000006596538992518304,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_731","districtname":"NORIEGA STREET NEIGHBORHOOD COMMERCIAL DISTRICT","zoning":"NCD-NORIEGA","codesection":731,"objectid":19867,"shape_length":0.021492892659057013,"gen":"Mixed Use","index":28},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.475928915,37.754086218],[-122.47593175,37.754086093],[-122.476237355,37.754072622],[-122.476347113,37.754067748],[-122.476411033,37.75406491],[-122.476387059,37.753724582],[-122.476451159,37.753721746],[-122.476559053,37.753716972],[-122.47687732,37.753702942],[-122.47697349,37.753698702],[-122.476978257,37.753767257],[-122.476983023,37.753835811],[-122.477138437,37.753828959],[-122.477224777,37.753825153],[-122.47731112,37.753821346],[-122.47739746,37.753817539],[-122.477409079,37.753817015],[-122.477521222,37.75381195],[-122.477531063,37.753949304],[-122.47764875,37.753943989],[-122.47799436,37.75392875],[-122.477989591,37.753860196],[-122.477984824,37.753791642],[-122.478053897,37.753788596],[-122.478071165,37.753787835],[-122.478157507,37.753784027],[-122.478468335,37.753770321],[-122.478589214,37.753765021],[-122.478591907,37.753803746],[-122.478712787,37.753798446],[-122.47904178,37.753783938],[-122.479043437,37.753783865],[-122.47912812,37.75378013],[-122.47912526,37.753738997],[-122.4792116,37.75373519],[-122.479211843,37.753735178],[-122.479216234,37.753803707],[-122.47954447,37.753789359],[-122.47955247,37.753789008],[-122.47966535,37.753784058],[-122.479665503,37.753786256],[-122.479786383,37.753780955],[-122.479899335,37.753775972],[-122.479985676,37.753772163],[-122.480028847,37.753770259],[-122.480024078,37.753701705],[-122.480153589,37.753695991],[-122.480196759,37.753694087],[-122.480239929,37.753692183],[-122.48032627,37.753688375],[-122.48033104,37.753756928],[-122.48041738,37.753753119],[-122.480503721,37.753749311],[-122.480615964,37.753744359],[-122.480623816,37.753744014],[-122.480736844,37.753739056],[-122.48073207,37.753670441],[-122.480852949,37.753665139],[-122.481224214,37.753648759],[-122.48127001,37.753646738],[-122.481310554,37.753644949],[-122.481396896,37.75364114],[-122.481483236,37.75363733],[-122.481569577,37.75363352],[-122.481684446,37.753628452],[-122.481805324,37.753623148],[-122.481810091,37.753691641],[-122.48193097,37.753686338],[-122.482273207,37.753671235],[-122.482268436,37.753602681],[-122.482337508,37.753599633],[-122.482475652,37.753593537],[-122.482480424,37.753662091],[-122.482756714,37.753649896],[-122.482764707,37.753649546],[-122.482877593,37.753644592],[-122.482872817,37.753575978],[-122.482993695,37.753570673],[-122.483330942,37.753555788],[-122.483412101,37.753552205],[-122.483509667,37.753547899],[-122.483688391,37.753540009],[-122.483826536,37.75353391],[-122.483947415,37.753528605],[-122.483947411,37.753528544],[-122.484009412,37.753525823],[-122.484068289,37.753523238],[-122.484310043,37.753512566],[-122.484396383,37.753508754],[-122.484482818,37.753504938],[-122.484481704,37.753488943],[-122.484568046,37.753485131],[-122.484572763,37.753552884],[-122.484659104,37.753549073],[-122.484663822,37.753616825],[-122.484905574,37.753606152],[-122.484911384,37.753605898],[-122.485026454,37.753600846],[-122.485044692,37.753862755],[-122.485062255,37.754111958],[-122.484941172,37.754117337],[-122.484656247,37.754129917],[-122.48466102,37.754198471],[-122.484665794,37.754267025],[-122.484579453,37.754270837],[-122.484536282,37.754272743],[-122.484121748,37.754291044],[-122.484000905,37.754296355],[-122.484001065,37.754298657],[-122.48388015,37.754303971],[-122.483787748,37.75430805],[-122.48369519,37.754312136],[-122.483602632,37.754316222],[-122.483510074,37.754320306],[-122.483465867,37.754322258],[-122.483417515,37.754324392],[-122.483324958,37.754328478],[-122.483232399,37.754332563],[-122.483139842,37.754336649],[-122.4830473,37.754340733],[-122.4829275,37.754346198],[-122.482932055,37.754409152],[-122.482809952,37.754414721],[-122.482399769,37.754432823],[-122.482403523,37.754486754],[-122.481987953,37.754505092],[-122.481866643,37.754510351],[-122.481858607,37.754393468],[-122.481738049,37.754398693],[-122.481634519,37.754403261],[-122.481544724,37.754407223],[-122.481454929,37.754411186],[-122.481365134,37.754415147],[-122.481327144,37.754416823],[-122.481275339,37.75441911],[-122.481185543,37.754423071],[-122.481095748,37.754427033],[-122.481005952,37.754430995],[-122.480906544,37.754435381],[-122.480785891,37.754440717],[-122.480785718,37.754438256],[-122.480664618,37.754443611],[-122.480465686,37.754452387],[-122.480379345,37.754456197],[-122.480293003,37.754460005],[-122.480250178,37.754461894],[-122.480206662,37.754463814],[-122.480033979,37.754471432],[-122.479947636,37.75447524],[-122.479835028,37.754480207],[-122.479714154,37.754485509],[-122.479714157,37.754485568],[-122.479593272,37.75449087],[-122.479256538,37.754505722],[-122.479178831,37.75450915],[-122.479062894,37.754514264],[-122.479049318,37.754514862],[-122.478916386,37.754520724],[-122.478763492,37.754527467],[-122.478642351,37.754532728],[-122.478642362,37.75453289],[-122.478580515,37.754535576],[-122.478521735,37.754538128],[-122.478107294,37.754556404],[-122.478003684,37.754560972],[-122.477998916,37.754492419],[-122.477994149,37.754423864],[-122.477685129,37.75443749],[-122.477679155,37.754437755],[-122.477566136,37.754442779],[-122.477570963,37.754511244],[-122.477448139,37.754516703],[-122.477307937,37.754522884],[-122.477221594,37.754526691],[-122.477135253,37.754530497],[-122.477140019,37.754599051],[-122.477036409,37.754603619],[-122.476967336,37.754606664],[-122.476624023,37.754621799],[-122.476514672,37.754626638],[-122.476450632,37.754629464],[-122.47645063,37.754629434],[-122.476386734,37.754632254],[-122.476278654,37.754637023],[-122.476184011,37.754641195],[-122.476183831,37.754638613],[-122.476164618,37.754362234],[-122.476157061,37.754253904],[-122.475941257,37.754263394],[-122.475933513,37.754152374],[-122.475928915,37.754086218]]]]}},"NCD","6:00AM-2:00AM",0.000006596538992518304,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_731","NORIEGA STREET NEIGHBORHOOD COMMERCIAL DISTRICT","NCD-NORIEGA",731,19867,0.021492892659057013,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-3","commercial_hours_of_operation":"No Limit","shape_area":0.0000027910066395388926,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","districtname":"NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","zoning":"NC-3","codesection":712.1,"objectid":19585,"shape_length":0.013106504718069777,"gen":"Mixed Use","index":29},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.402459479,37.712179485],[-122.402553337,37.712149083],[-122.40271119,37.712097952],[-122.402825033,37.712040912],[-122.402916878,37.711994893],[-122.402979469,37.711947766],[-122.403097026,37.71185925],[-122.403181816,37.711779721],[-122.403227787,37.711736602],[-122.40332181,37.711622887],[-122.403449916,37.711453412],[-122.4035503,37.711320611],[-122.403650108,37.711188572],[-122.403908927,37.710838337],[-122.404122339,37.710549543],[-122.40418173,37.710469174],[-122.404226037,37.710409216],[-122.404285715,37.71032616],[-122.404404487,37.710160864],[-122.404418276,37.710141608],[-122.404476694,37.710060027],[-122.404487876,37.71004441],[-122.404568848,37.709931334],[-122.40460729,37.709869466],[-122.404631033,37.709831254],[-122.404837444,37.709439311],[-122.404837638,37.709446901],[-122.404939046,37.709257299],[-122.405015406,37.709076404],[-122.40504619,37.709003474],[-122.405051097,37.708991852],[-122.405091082,37.708897128],[-122.405109454,37.708853605],[-122.405146843,37.708769751],[-122.405319177,37.708383235],[-122.40617173,37.708381013],[-122.406232474,37.708380854],[-122.406214971,37.708420084],[-122.406186098,37.708484799],[-122.406171564,37.708517372],[-122.406157225,37.708549512],[-122.406128351,37.708614226],[-122.406099477,37.70867894],[-122.406078689,37.708725534],[-122.405971121,37.708695359],[-122.405850202,37.708966372],[-122.405812601,37.709050939],[-122.405563829,37.708981124],[-122.405525131,37.709068158],[-122.405487965,37.709151365],[-122.405458488,37.709217356],[-122.40545097,37.709234188],[-122.405413976,37.709317012],[-122.405410239,37.709325376],[-122.405376981,37.709399835],[-122.40536091,37.709435815],[-122.405339985,37.709482659],[-122.405304146,37.709562894],[-122.405268307,37.70964313],[-122.405232467,37.709723364],[-122.405205609,37.709783495],[-122.405196628,37.709803599],[-122.405160789,37.709883835],[-122.40512495,37.70996407],[-122.40508148,37.710061387],[-122.405060669,37.710107976],[-122.405041016,37.710151976],[-122.405002864,37.710237387],[-122.404892062,37.710206232],[-122.404858992,37.710280266],[-122.404834257,37.710335644],[-122.404776449,37.710465056],[-122.404737766,37.710551652],[-122.40464109,37.710524743],[-122.404633863,37.710541273],[-122.404604284,37.710608924],[-122.404562018,37.710705596],[-122.404543123,37.710748811],[-122.404520842,37.710799772],[-122.40451354,37.710816475],[-122.404655321,37.71085634],[-122.404606329,37.710963303],[-122.404629751,37.71096988],[-122.404624579,37.710981708],[-122.404592958,37.711054033],[-122.404591685,37.711056945],[-122.404564554,37.711118999],[-122.404520855,37.711101972],[-122.404405595,37.711057062],[-122.404391853,37.711080799],[-122.404392246,37.711082542],[-122.404392092,37.711082483],[-122.404252719,37.711304244],[-122.404249536,37.711309309],[-122.40420639,37.711377958],[-122.404255093,37.711396935],[-122.404265059,37.711400817],[-122.404313102,37.711419537],[-122.404267433,37.711493511],[-122.404263697,37.711499578],[-122.404154753,37.711676472],[-122.404115503,37.711740203],[-122.404115151,37.711740773],[-122.404114434,37.711739174],[-122.403964254,37.711679551],[-122.403802427,37.711932884],[-122.403757367,37.712003423],[-122.403605,37.711944202],[-122.40355767,37.712021051],[-122.403488119,37.71213398],[-122.403405736,37.712267743],[-122.40332814,37.712237508],[-122.40330839,37.712269578],[-122.403201542,37.712443061],[-122.403180532,37.712477173],[-122.403182918,37.712570387],[-122.402952693,37.712480855],[-122.402869313,37.712448429],[-122.402835124,37.712435133],[-122.402602616,37.712344713],[-122.402459479,37.712179485]]]]}},"NC-3","No Limit",0.0000027910066395388926,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","NC-3",712.1,19585,0.013106504718069777,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000026832709214843865,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19581,"shape_length":0.01078862330082563,"gen":"Mixed Use","index":30},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.424305357,37.735337361],[-122.424655987,37.735366058],[-122.424702562,37.73536987],[-122.424661467,37.735346388],[-122.424518079,37.735264458],[-122.424425784,37.735195262],[-122.424415811,37.735187786],[-122.424330906,37.735124131],[-122.424365755,37.735089039],[-122.424412047,37.735042426],[-122.424527691,37.734925977],[-122.424705938,37.735037625],[-122.424799214,37.73509605],[-122.424880694,37.735147085],[-122.424907846,37.735164093],[-122.42497865,37.735093118],[-122.425039446,37.735032176],[-122.425054766,37.735016819],[-122.425296977,37.734774024],[-122.425371316,37.734699505],[-122.425398473,37.734716509],[-122.42548541,37.734770945],[-122.425791085,37.73496234],[-122.42585962,37.735005253],[-122.425855942,37.735005444],[-122.425792288,37.735008747],[-122.425768297,37.735009992],[-122.425762986,37.735009516],[-122.425752057,37.735020531],[-122.425698786,37.735074219],[-122.425691594,37.735081468],[-122.425651093,37.735122287],[-122.425632928,37.735250298],[-122.425622042,37.735327015],[-122.42549954,37.735316257],[-122.425225885,37.735292224],[-122.425215272,37.73536827],[-122.425206656,37.735429995],[-122.425197018,37.735499054],[-122.425187692,37.73556587],[-122.425177903,37.735636003],[-122.425090519,37.735628605],[-122.425065545,37.735695907],[-122.42504196,37.73575946],[-122.425016586,37.735827836],[-122.424991853,37.735894485],[-122.424962419,37.735973807],[-122.424990422,37.735976066],[-122.424963007,37.736055551],[-122.424939848,37.736122694],[-122.424916689,37.736189837],[-122.424893531,37.73625698],[-122.424870372,37.736324124],[-122.424847213,37.736391267],[-122.424824054,37.736458411],[-122.424802096,37.736522072],[-122.424780183,37.736585604],[-122.424752417,37.736666105],[-122.424782334,37.736668649],[-122.424791873,37.73666946],[-122.424837556,37.736673345],[-122.42481027,37.736753887],[-122.424788675,37.736817631],[-122.424701712,37.736810058],[-122.424701472,37.736810038],[-122.424633423,37.737011323],[-122.424633525,37.737011332],[-122.42462149,37.737046857],[-122.424543435,37.737277255],[-122.424516691,37.737356194],[-122.424459662,37.737350896],[-122.424458063,37.737435369],[-122.424456758,37.737504326],[-122.424256771,37.737486913],[-122.424179297,37.737480167],[-122.424082158,37.737471708],[-122.424036241,37.73746771],[-122.424030763,37.73755387],[-122.423889442,37.737546968],[-122.423821007,37.737543625],[-122.423604254,37.737533039],[-122.423610273,37.737464544],[-122.423612747,37.737436385],[-122.42361734,37.737384106],[-122.423646466,37.737385631],[-122.423652161,37.737312105],[-122.423652979,37.737301537],[-122.423663592,37.737164479],[-122.42351241,37.737157095],[-122.423517716,37.737088564],[-122.423519553,37.737064851],[-122.423523024,37.737020035],[-122.423762415,37.737031728],[-122.423780158,37.737032595],[-122.423807812,37.737033945],[-122.423862394,37.737036611],[-122.423805587,37.736947976],[-122.423758338,37.736874255],[-122.423640333,37.736690133],[-122.42360174,37.736629916],[-122.423600631,37.736628188],[-122.423520858,37.736503718],[-122.423464897,37.736416402],[-122.423436424,37.736371976],[-122.423413482,37.736336179],[-122.423462922,37.736340116],[-122.423516734,37.736344399],[-122.423524909,37.73634505],[-122.42360212,37.736351196],[-122.423686422,37.736357908],[-122.423770724,37.736364619],[-122.423790526,37.736366195],[-122.423855027,37.73637133],[-122.423878192,37.736304171],[-122.423901357,37.736237012],[-122.423924521,37.736169853],[-122.423947687,37.736102694],[-122.423975485,37.736022103],[-122.423966884,37.736021418],[-122.423994681,37.735940828],[-122.424017845,37.735873669],[-122.42408734,37.735672192],[-122.424169348,37.735678721],[-122.424192513,37.735611562],[-122.42421029,37.735612977],[-122.424233455,37.735545818],[-122.424256619,37.735478659],[-122.424277493,37.735418145],[-122.424305357,37.735337361]]]]}},"NC-2","6:00AM-2:00AM",0.0000026832709214843865,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19581,0.01078862330082563,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-3","commercial_hours_of_operation":"No Limit","shape_area":5.723168337416629e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","districtname":"NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","zoning":"NC-3","codesection":712.1,"objectid":19580,"shape_length":0.0034461733590528797,"gen":"Mixed Use","index":31},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.415261537,37.753401782],[-122.415253282,37.753312789],[-122.415354685,37.753306859],[-122.415458609,37.753300608],[-122.415597387,37.753228321],[-122.415596285,37.75321681],[-122.415712689,37.75314596],[-122.415763937,37.753142878],[-122.415763072,37.753133827],[-122.415762279,37.753125544],[-122.415761395,37.753116314],[-122.415756077,37.753060724],[-122.415748217,37.752978571],[-122.415741666,37.752910109],[-122.41575791,37.752909132],[-122.416166747,37.75288454],[-122.416312199,37.752876033],[-122.416331682,37.75308602],[-122.416374886,37.753551689],[-122.416231385,37.753560082],[-122.415806301,37.753585651],[-122.415383789,37.753611064],[-122.415281505,37.753617045],[-122.415261537,37.753401782]]]]}},"NC-3","No Limit",5.723168337416629e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","NC-3",712.1,19580,0.0034461733590528797,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-3","commercial_hours_of_operation":"No Limit","shape_area":2.0710196606277682e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","districtname":"NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","zoning":"NC-3","codesection":712.1,"objectid":19584,"shape_length":0.0024851781069375883,"gen":"Mixed Use","index":32},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.408211088,37.748354516],[-122.408706313,37.748352847],[-122.408934106,37.748348375],[-122.409111709,37.748344888],[-122.409116268,37.74839271],[-122.409124453,37.748478565],[-122.409124658,37.74848071],[-122.409134341,37.748582271],[-122.408875785,37.748597821],[-122.408730502,37.748606558],[-122.408724236,37.748540835],[-122.408646563,37.748545507],[-122.408578954,37.748549572],[-122.408320291,37.748565127],[-122.408328123,37.748647283],[-122.408239508,37.748652613],[-122.408224937,37.748499772],[-122.40821536,37.748399326],[-122.408211088,37.748354516]]]]}},"NC-3","No Limit",2.0710196606277682e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","NC-3",712.1,19584,0.0024851781069375883,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":8.769007359611655e-8,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19040,"shape_length":0.0011858569497704694,"gen":"Mixed Use","index":33},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.435928084,37.758914886],[-122.435929576,37.758930932],[-122.435956699,37.759222661],[-122.435673831,37.759239718],[-122.435666824,37.759165969],[-122.435665556,37.759152622],[-122.435645889,37.75894562],[-122.435644571,37.758931746],[-122.435730805,37.758926576],[-122.435827388,37.758920787],[-122.435928084,37.758914886]]]]}},"NC-1","6:00AM-11:00PM",8.769007359611655e-8,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19040,0.0011858569497704694,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-3","commercial_hours_of_operation":"No Limit","shape_area":0.000007602453626555447,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","districtname":"NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","zoning":"NC-3","codesection":712.1,"objectid":19574,"shape_length":0.016679742190078308,"gen":"Mixed Use","index":34},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.423027553,37.785482243],[-122.423548496,37.785410256],[-122.423820328,37.785381305],[-122.42413629,37.78538693],[-122.424441099,37.78539569],[-122.424559014,37.785404753],[-122.42468704,37.785334621],[-122.424858423,37.786196427],[-122.424879809,37.786302381],[-122.424892943,37.786367451],[-122.425046953,37.787130433],[-122.42511427,37.787464184],[-122.425130171,37.787543016],[-122.425140963,37.787596525],[-122.425117777,37.78759947],[-122.425015188,37.787612502],[-122.424593365,37.787666081],[-122.424118408,37.787726407],[-122.424110095,37.787727463],[-122.424111532,37.787734587],[-122.424119665,37.787774919],[-122.424187211,37.788108443],[-122.424206093,37.788201651],[-122.424034171,37.788223585],[-122.424040005,37.788252382],[-122.424053052,37.788316794],[-122.424085869,37.788479503],[-122.424086307,37.788481672],[-122.424000889,37.788492569],[-122.424033268,37.788653109],[-122.424038591,37.788679387],[-122.424042881,37.788700561],[-122.424084832,37.788695209],[-122.424147575,37.788687204],[-122.424157188,37.788734656],[-122.424173662,37.788816001],[-122.424088244,37.788826899],[-122.424104718,37.788908244],[-122.424121194,37.78898959],[-122.424135957,37.789062484],[-122.424141653,37.789090743],[-122.424151672,37.789140449],[-122.424154747,37.789155705],[-122.424274522,37.789140499],[-122.424293312,37.789233719],[-122.424331703,37.789423274],[-122.423955824,37.789471048],[-122.423838373,37.789486029],[-122.423974965,37.790160471],[-122.42339517,37.790234159],[-122.423000579,37.790284306],[-122.422977321,37.790169055],[-122.422944374,37.790006363],[-122.422911426,37.789843672],[-122.422908009,37.789844106],[-122.422886045,37.789735644],[-122.422860416,37.789738901],[-122.422796587,37.789423716],[-122.422777799,37.789330495],[-122.42279412,37.789328424],[-122.42281829,37.789325356],[-122.423194135,37.789277648],[-122.423395067,37.789252141],[-122.423411388,37.78925007],[-122.423392599,37.789156849],[-122.4233275,37.788840502],[-122.423317888,37.78879305],[-122.423232475,37.788803947],[-122.423222863,37.788756495],[-122.423195432,37.788620916],[-122.423189719,37.788592682],[-122.423157026,37.788431104],[-122.423138146,37.788337895],[-122.423134956,37.788338302],[-122.423116076,37.788245094],[-122.423048414,37.787910977],[-122.423038844,37.78786352],[-122.422637259,37.787914521],[-122.422627689,37.787867064],[-122.422561798,37.787541679],[-122.422543001,37.78744846],[-122.422346631,37.787473399],[-122.422327835,37.78738018],[-122.422293578,37.78721086],[-122.422260662,37.787048164],[-122.422251226,37.787000689],[-122.422259406,37.786999666],[-122.422313184,37.786992934],[-122.422443264,37.78697665],[-122.422451445,37.786975626],[-122.422444929,37.786942848],[-122.422442009,37.786928152],[-122.422376137,37.786602764],[-122.422357803,37.786515148],[-122.422673395,37.786473554],[-122.423079986,37.786419966],[-122.423213873,37.786402319],[-122.423195191,37.786310066],[-122.423181937,37.786244614],[-122.42305983,37.785641632],[-122.423048809,37.78558721],[-122.423027553,37.785482243]]]]}},"NC-3","No Limit",0.000007602453626555447,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","NC-3",712.1,19574,0.016679742190078308,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-S","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":8.824088921558696e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","districtname":"NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","zoning":"NC-S","codesection":713.1,"objectid":19793,"shape_length":0.0037580765977439333,"gen":"Mixed Use","index":35},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.49240358,37.78206748],[-122.492375157,37.781676654],[-122.493318095,37.781633154],[-122.49332614,37.781742991],[-122.493385986,37.782565742],[-122.493289328,37.782570208],[-122.493185694,37.782574997],[-122.493082061,37.782579785],[-122.492978427,37.782584573],[-122.492874794,37.782589361],[-122.49277116,37.782594149],[-122.492667525,37.782598936],[-122.492563892,37.782603724],[-122.492442982,37.782609263],[-122.49240358,37.78206748]]]]}},"NC-S","6:00AM-2:00AM",8.824088921558696e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","NC-S",713.1,19793,0.0037580765977439333,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":3.293681531385028e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19463,"shape_length":0.0029203497865216755,"gen":"Mixed Use","index":36},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.506808265,37.773228796],[-122.506821259,37.77340701],[-122.506237743,37.773433773],[-122.505747076,37.773456276],[-122.505719094,37.77307243],[-122.505777385,37.773069757],[-122.505839987,37.773066886],[-122.505981558,37.773060393],[-122.506067911,37.773056433],[-122.506154263,37.773052472],[-122.506202033,37.773050281],[-122.506240616,37.773048512],[-122.506266022,37.773047348],[-122.506326968,37.773044552],[-122.506331966,37.773113096],[-122.506418319,37.773109135],[-122.506423315,37.773177679],[-122.506428313,37.773246223],[-122.506687371,37.77323434],[-122.506690513,37.773234196],[-122.506808265,37.773228796]]]]}},"NC-1","6:00AM-11:00PM",3.293681531385028e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19463,0.0029203497865216755,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCT","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000018230072855233215,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_753","districtname":"SOMA NEIGHBORHOOD COMMERCIAL TRANSIT","zoning":"NCT-SOMA","codesection":753,"objectid":19855,"shape_length":0.00900056408633615,"gen":"Mixed Use","index":37},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.405328969,37.778276738],[-122.405401919,37.778219122],[-122.405427237,37.778199126],[-122.405576536,37.778081717],[-122.405538427,37.778051461],[-122.405520005,37.778036835],[-122.405454219,37.777984605],[-122.405517391,37.777934928],[-122.405601697,37.777868629],[-122.40564452,37.777834649],[-122.405599917,37.777799237],[-122.405540665,37.777752195],[-122.405512121,37.777729534],[-122.405467519,37.777694124],[-122.405510341,37.777660144],[-122.405594647,37.777593846],[-122.405807664,37.77742633],[-122.405854557,37.777389528],[-122.405898572,37.77742486],[-122.406286799,37.777736501],[-122.406291234,37.777740061],[-122.406436336,37.777856537],[-122.406589064,37.777735894],[-122.406724471,37.777628933],[-122.406794208,37.777573846],[-122.406873257,37.777511403],[-122.406911091,37.777481517],[-122.407014751,37.777399633],[-122.406906767,37.777313087],[-122.406867483,37.777281603],[-122.406867355,37.7772815],[-122.406746251,37.77718444],[-122.406696,37.777144166],[-122.406735857,37.777112836],[-122.406744244,37.777106244],[-122.406863654,37.777010211],[-122.40692442,37.776961341],[-122.406987552,37.776910567],[-122.407048317,37.776861698],[-122.407077889,37.776837915],[-122.407109081,37.776812829],[-122.407169845,37.77676396],[-122.407230609,37.77671509],[-122.407352139,37.776617352],[-122.40738135,37.776593858],[-122.407412902,37.776568482],[-122.407516417,37.776486635],[-122.407615032,37.776565211],[-122.407631932,37.776578678],[-122.407645617,37.776589582],[-122.40784206,37.776746108],[-122.408136259,37.776980523],[-122.408136796,37.776980951],[-122.408033737,37.777062438],[-122.407837541,37.777217423],[-122.407776229,37.777265856],[-122.407637204,37.77737568],[-122.407587084,37.777414987],[-122.407587435,37.777415269],[-122.407539105,37.777453173],[-122.407479019,37.777500637],[-122.407417708,37.777549069],[-122.407355169,37.777598471],[-122.407404031,37.777637367],[-122.407342719,37.777685799],[-122.407293858,37.777646903],[-122.407232545,37.777695336],[-122.407281407,37.777734231],[-122.407159503,37.777830527],[-122.407068309,37.777902687],[-122.407019296,37.777863665],[-122.406926678,37.777936951],[-122.406865365,37.777985383],[-122.406742739,37.778082248],[-122.406681426,37.778130681],[-122.40666676,37.778119019],[-122.406600248,37.778171557],[-122.406564898,37.778199482],[-122.406484773,37.778262773],[-122.406429427,37.778306231],[-122.406377424,37.778264509],[-122.406307,37.778208006],[-122.406301681,37.778203738],[-122.406150424,37.778082381],[-122.405990419,37.778208771],[-122.405912192,37.778270563],[-122.405820592,37.778342918],[-122.405811751,37.778349901],[-122.405615267,37.778505104],[-122.405404952,37.778337346],[-122.405328969,37.778276738]]]]}},"NCT","6:00AM-2:00AM",0.0000018230072855233215,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_753","SOMA NEIGHBORHOOD COMMERCIAL TRANSIT","NCT-SOMA",753,19855,0.00900056408633615,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-S","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000004421603747054783,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","districtname":"NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","zoning":"NC-S","codesection":713.1,"objectid":20433,"shape_length":0.014851467769978859,"gen":"Mixed Use","index":38},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.408808005,37.737714231],[-122.408788619,37.737713145],[-122.40854618,37.737699557],[-122.408505681,37.737697287],[-122.408509938,37.737649617],[-122.408544021,37.73761549],[-122.408594326,37.737565119],[-122.408635965,37.737511232],[-122.408675804,37.737477704],[-122.408695685,37.737460086],[-122.408715176,37.737442196],[-122.40873427,37.737424038],[-122.408752964,37.737405619],[-122.408771249,37.737386943],[-122.408789121,37.737368017],[-122.408806574,37.737348845],[-122.408821096,37.737332284],[-122.408834844,37.737315997],[-122.408844997,37.737303502],[-122.408848232,37.737299522],[-122.408861257,37.737282864],[-122.408873912,37.737266028],[-122.408886196,37.73724902],[-122.408898104,37.737231844],[-122.408909633,37.737214505],[-122.408920779,37.737197009],[-122.408931539,37.737179361],[-122.408948101,37.737150665],[-122.408959165,37.737130369],[-122.408969781,37.737109923],[-122.408979947,37.737089334],[-122.408989658,37.737068606],[-122.408998913,37.737047747],[-122.409007708,37.737026762],[-122.40901604,37.737005659],[-122.409023907,37.736984444],[-122.409031307,37.736963123],[-122.409038237,37.736941703],[-122.409044694,37.73692019],[-122.409050679,37.73689859],[-122.409141206,37.736571876],[-122.409160693,37.736501543],[-122.409164044,37.736453083],[-122.409203256,37.736353905],[-122.409232442,37.736280083],[-122.409263356,37.736255062],[-122.409625523,37.735840898],[-122.409739703,37.735710324],[-122.409772551,37.73567276],[-122.409785159,37.735658341],[-122.409929291,37.73561923],[-122.409939894,37.735616352],[-122.409946655,37.735614518],[-122.409953456,37.735612776],[-122.409960293,37.73561113],[-122.409967165,37.735609578],[-122.409974072,37.735608122],[-122.409981008,37.735606762],[-122.409987973,37.735605498],[-122.409994965,37.735604331],[-122.410001981,37.73560326],[-122.410009022,37.735602288],[-122.41001608,37.735601413],[-122.410023158,37.735600636],[-122.410030252,37.735599958],[-122.41003736,37.735599378],[-122.410044478,37.735598895],[-122.410051607,37.735598513],[-122.410058744,37.735598229],[-122.410065883,37.735598044],[-122.410079326,37.735597964],[-122.410083188,37.735598005],[-122.410087048,37.735597993],[-122.410090908,37.735597926],[-122.410094767,37.735597807],[-122.410098622,37.735597635],[-122.410102472,37.735597408],[-122.410106317,37.735597129],[-122.410110156,37.735596795],[-122.410113986,37.735596409],[-122.410117807,37.73559597],[-122.410121618,37.735595479],[-122.410125417,37.735594934],[-122.410129205,37.735594337],[-122.410132978,37.735593687],[-122.410136737,37.735592985],[-122.410140479,37.735592231],[-122.410144205,37.735591426],[-122.410147912,37.735590568],[-122.4101516,37.735589661],[-122.410155266,37.735588701],[-122.410158913,37.735587691],[-122.410162536,37.735586631],[-122.410166134,37.73558552],[-122.410169709,37.73558436],[-122.410173257,37.735583151],[-122.410176777,37.735581892],[-122.410180271,37.735580585],[-122.410183734,37.73557923],[-122.410187167,37.735577827],[-122.410190568,37.735576376],[-122.410193938,37.735574878],[-122.410197274,37.735573334],[-122.410200575,37.735571744],[-122.410203842,37.735570109],[-122.41020707,37.735568429],[-122.410210264,37.735566703],[-122.410213417,37.735564935],[-122.410218208,37.735562119],[-122.410344392,37.735484335],[-122.410504711,37.735381363],[-122.410507757,37.735379393],[-122.410510759,37.735377381],[-122.410513716,37.735375328],[-122.410516627,37.735373233],[-122.410519491,37.735371099],[-122.410522309,37.735368926],[-122.410525078,37.735366714],[-122.410527799,37.735364463],[-122.41053047,37.735362175],[-122.410533089,37.735359851],[-122.410535658,37.73535749],[-122.410538174,37.735355095],[-122.410540637,37.735352665],[-122.410543045,37.735350201],[-122.410545401,37.735347704],[-122.4105477,37.735345175],[-122.410549944,37.735342614],[-122.410552131,37.735340023],[-122.41055426,37.735337402],[-122.410556331,37.735334752],[-122.410558345,37.735332073],[-122.410560299,37.735329367],[-122.410562194,37.735326635],[-122.410564027,37.735323876],[-122.410565799,37.735321092],[-122.410567511,37.735318284],[-122.410569161,37.735315453],[-122.410570748,37.7353126],[-122.410572273,37.735309725],[-122.410573734,37.735306829],[-122.410575131,37.735303913],[-122.410576463,37.735300979],[-122.410577731,37.735298027],[-122.410578934,37.735295056],[-122.410580071,37.73529207],[-122.410581143,37.735289069],[-122.410582148,37.735286053],[-122.410583087,37.735283024],[-122.41058396,37.735279983],[-122.410584766,37.73527693],[-122.410585504,37.735273866],[-122.410586174,37.735270793],[-122.410586778,37.73526771],[-122.410587312,37.73526462],[-122.410587779,37.735261522],[-122.410588179,37.735258419],[-122.410588648,37.735253773],[-122.410589021,37.735248206],[-122.410589516,37.735242645],[-122.410589699,37.735240994],[-122.410589921,37.735238994],[-122.410960341,37.735013639],[-122.411052527,37.734957554],[-122.411107228,37.734924275],[-122.411124879,37.734913536],[-122.411157311,37.734893805],[-122.411165064,37.734889089],[-122.411182263,37.734878626],[-122.411182742,37.734872996],[-122.411196565,37.734710839],[-122.41120696,37.734588878],[-122.41246441,37.733958033],[-122.412594603,37.733892716],[-122.412643533,37.733955125],[-122.412792665,37.734145343],[-122.412804678,37.734145186],[-122.412812082,37.73414509],[-122.412807467,37.734193744],[-122.412800971,37.734262214],[-122.412794787,37.734327406],[-122.412794476,37.734330683],[-122.412787981,37.734399153],[-122.412781485,37.734467622],[-122.41277499,37.734536091],[-122.412768495,37.734604561],[-122.412766959,37.734620742],[-122.412760844,37.734685208],[-122.412447332,37.734669531],[-122.41182609,37.734638464],[-122.41172894,37.734702202],[-122.411707963,37.734715965],[-122.411554021,37.734708168],[-122.411553778,37.734708156],[-122.411509738,37.734705925],[-122.411507254,37.734705798],[-122.41150714,37.734707152],[-122.411494585,37.734855956],[-122.411493573,37.734867954],[-122.4114854,37.734964808],[-122.411485408,37.734965575],[-122.411484862,37.734965847],[-122.41147418,37.735085535],[-122.411461955,37.735222509],[-122.411455841,37.735290997],[-122.411449729,37.735359483],[-122.411443616,37.735427971],[-122.411437503,37.735496458],[-122.411431391,37.735564945],[-122.411425278,37.735633432],[-122.411183848,37.735619468],[-122.411175962,37.735619012],[-122.411125019,37.735616066],[-122.411119432,37.735615743],[-122.411107993,37.735749942],[-122.411107987,37.735750009],[-122.411101417,37.735820498],[-122.411058728,37.73627848],[-122.411006582,37.736837915],[-122.410998088,37.736929036],[-122.41037694,37.736893544],[-122.409761838,37.736858394],[-122.409721383,37.737289301],[-122.409704475,37.7374694],[-122.409687084,37.737654632],[-122.409683326,37.737694671],[-122.409661976,37.737693406],[-122.409614488,37.737690595],[-122.409372481,37.737677034],[-122.409366367,37.73774552],[-122.409360251,37.737814008],[-122.409354137,37.737882494],[-122.409348021,37.737950981],[-122.409342036,37.738018023],[-122.409334639,37.738087244],[-122.409027333,37.738066535],[-122.409062232,37.737676004],[-122.409063686,37.73765973],[-122.409035657,37.737658159],[-122.408994746,37.737655866],[-122.408786848,37.737644216],[-122.408801437,37.737692497],[-122.408808005,37.737714231]]]]}},"NC-S","6:00AM-2:00AM",0.000004421603747054783,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","NC-S",713.1,20433,0.014851467769978859,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":0.00000104916086171778,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19784,"shape_length":0.005788880447844359,"gen":"Mixed Use","index":39},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.41841992,37.798019214],[-122.41845515,37.798014755],[-122.41846777,37.798013158],[-122.418475314,37.798051138],[-122.418533417,37.798043783],[-122.418534495,37.798049208],[-122.418691876,37.798029286],[-122.418720006,37.798025705],[-122.418809273,37.798014339],[-122.41882497,37.798091961],[-122.418944094,37.798076794],[-122.41919232,37.798045285],[-122.419243132,37.798038836],[-122.419249746,37.79807182],[-122.419259644,37.798121176],[-122.419277827,37.798211742],[-122.419183265,37.798223696],[-122.419202592,37.798319957],[-122.419213588,37.798374186],[-122.419224585,37.798428415],[-122.41923558,37.798482644],[-122.419257575,37.798591102],[-122.41926857,37.798645331],[-122.419276836,37.798685792],[-122.419413373,37.798668227],[-122.41942164,37.798708689],[-122.419439467,37.7987966],[-122.41945463,37.798871375],[-122.419346902,37.798885234],[-122.4193528,37.798914433],[-122.419383115,37.799064524],[-122.419388264,37.799090526],[-122.419400938,37.79915454],[-122.419376464,37.79915759],[-122.419395567,37.799254083],[-122.419424306,37.799396543],[-122.41942839,37.799416791],[-122.419433192,37.799440518],[-122.419429083,37.799441041],[-122.419433885,37.799464768],[-122.419450327,37.799546118],[-122.419245289,37.799572249],[-122.41912608,37.799586911],[-122.419109459,37.799501832],[-122.419086036,37.799504834],[-122.418833575,37.799537193],[-122.418828056,37.79951008],[-122.418790542,37.799327109],[-122.418771477,37.799234309],[-122.418729497,37.799239739],[-122.41869732,37.799243902],[-122.418678105,37.799150374],[-122.418641392,37.798968597],[-122.418636016,37.798941468],[-122.418485476,37.798960249],[-122.418479998,37.798933131],[-122.418478356,37.798924996],[-122.418452615,37.798797544],[-122.418538092,37.798786881],[-122.418623569,37.798776217],[-122.418609877,37.798708423],[-122.418596184,37.79864063],[-122.418591605,37.798617521],[-122.418589464,37.798606717],[-122.418712741,37.798591337],[-122.418718566,37.798590611],[-122.418711846,37.798556698],[-122.418677616,37.798387215],[-122.418658115,37.798290084],[-122.418478428,37.798312798],[-122.41846055,37.79822375],[-122.418426419,37.798051933],[-122.41841992,37.798019214]]]]}},"NC-1","6:00AM-11:00PM",0.00000104916086171778,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19784,0.005788880447844359,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000029769907291708984,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19577,"shape_length":0.010939427567468803,"gen":"Mixed Use","index":40},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.502056813,37.735892613],[-122.50204717,37.735756681],[-122.502042033,37.735684259],[-122.501925223,37.735689485],[-122.501922187,37.735689621],[-122.501507853,37.735707942],[-122.50149443,37.735518713],[-122.501491988,37.735428041],[-122.501488286,37.735290582],[-122.501616463,37.735316716],[-122.502021316,37.735392193],[-122.502498126,37.735433798],[-122.503104759,37.73546649],[-122.504189205,37.735470927],[-122.505257352,37.735475287],[-122.506128385,37.735472492],[-122.506150951,37.735686877],[-122.506193982,37.736095687],[-122.505296602,37.73613514],[-122.504227751,37.736182122],[-122.503157281,37.736229167],[-122.502579954,37.736254535],[-122.502572314,37.736144877],[-122.50256745,37.736076326],[-122.502562587,37.736007777],[-122.502557723,37.735939227],[-122.50255286,37.735870676],[-122.502178657,37.735887225],[-122.502172829,37.735887483],[-122.502056813,37.735892613]]]]}},"NC-2","6:00AM-2:00AM",0.0000029769907291708984,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19577,0.010939427567468803,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCD","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.00000529050311121392,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_715.1","districtname":"CASTRO STREET NEIGHBORHOOD COMMERCIAL","zoning":"NCD-CASTRO","codesection":715.1,"objectid":19865,"shape_length":0.018729364071032924,"gen":"Mixed Use","index":41},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.435187962,37.762670707],[-122.434939553,37.762502312],[-122.43450617,37.762526282],[-122.434499635,37.762451802],[-122.434498274,37.762436302],[-122.434474619,37.762189743],[-122.434472319,37.762165782],[-122.43446805,37.762121283],[-122.434461482,37.762052823],[-122.434385597,37.762057416],[-122.434379028,37.761988956],[-122.434454914,37.761984363],[-122.434448345,37.761915902],[-122.434445894,37.761890351],[-122.434443485,37.761865242],[-122.434495221,37.76186211],[-122.434497768,37.7618895],[-122.434498251,37.76188947],[-122.434670236,37.76187906],[-122.434663291,37.761804425],[-122.434651059,37.761672958],[-122.434927006,37.761656254],[-122.435070423,37.761647573],[-122.435068905,37.761631054],[-122.43506413,37.761579094],[-122.434920635,37.761587781],[-122.434491072,37.761613785],[-122.434489469,37.761613882],[-122.434487702,37.761594888],[-122.434485328,37.761569374],[-122.434483099,37.761545409],[-122.434478958,37.761500902],[-122.434476728,37.761476936],[-122.434472587,37.76143243],[-122.434470357,37.761408464],[-122.434466217,37.761363958],[-122.434458891,37.761285215],[-122.434372658,37.761290434],[-122.434286425,37.761295653],[-122.434200192,37.761300873],[-122.434113959,37.761306093],[-122.434036418,37.761310786],[-122.434017306,37.761311943],[-122.433939588,37.761316647],[-122.433903579,37.760954738],[-122.432793505,37.76102131],[-122.432764956,37.760728378],[-122.432905352,37.760719755],[-122.432991584,37.760714536],[-122.433077816,37.760709318],[-122.433164047,37.760704099],[-122.433157481,37.760635639],[-122.433233365,37.760631046],[-122.433329945,37.760625201],[-122.433336621,37.760694804],[-122.433421741,37.760689652],[-122.433506249,37.760684537],[-122.433594205,37.760679214],[-122.433680438,37.760673995],[-122.433766669,37.760668775],[-122.433766668,37.760668736],[-122.433780931,37.760667842],[-122.433874451,37.760661977],[-122.433874863,37.760666115],[-122.433973976,37.7606599],[-122.434053394,37.760655093],[-122.434139627,37.760649873],[-122.434225859,37.760644653],[-122.434219489,37.760576181],[-122.434305722,37.760570962],[-122.434391953,37.760565743],[-122.43439123,37.760557965],[-122.434385753,37.760499096],[-122.434379382,37.760430624],[-122.43441215,37.760428642],[-122.434402722,37.760327302],[-122.434369954,37.760329286],[-122.43436282,37.760252597],[-122.434360526,37.760227947],[-122.434357723,37.760197819],[-122.434354155,37.760159475],[-122.434351352,37.760129347],[-122.434347785,37.760091002],[-122.434345237,37.760063614],[-122.43434167,37.760025268],[-122.434339631,37.760003357],[-122.434334025,37.759943101],[-122.434332242,37.75992393],[-122.434328419,37.759882847],[-122.434324939,37.759845433],[-122.434322814,37.75982259],[-122.434316444,37.759754118],[-122.434310074,37.759685647],[-122.434303704,37.759617173],[-122.43440718,37.759610911],[-122.434400809,37.759542437],[-122.434394439,37.759473965],[-122.434388069,37.759405493],[-122.434386683,37.759391059],[-122.434379654,37.759317865],[-122.434853681,37.75928917],[-122.434834328,37.75909048],[-122.434889167,37.759087193],[-122.434980377,37.759081726],[-122.435344532,37.759059898],[-122.435355097,37.759171088],[-122.435363397,37.759258437],[-122.435277016,37.759263645],[-122.435285419,37.759351492],[-122.435292976,37.75943058],[-122.435298852,37.75949208],[-122.435304729,37.759553581],[-122.435381481,37.759549016],[-122.435458234,37.75954445],[-122.435464645,37.759611543],[-122.435471056,37.759678636],[-122.435477597,37.759747099],[-122.435480767,37.759780277],[-122.435484138,37.759815552],[-122.435487279,37.759848422],[-122.435490593,37.759883102],[-122.435496961,37.759949746],[-122.435497047,37.759950652],[-122.435503415,37.760017296],[-122.435503502,37.760018202],[-122.435509781,37.760083923],[-122.435510043,37.760086665],[-122.435516324,37.760152384],[-122.435522779,37.760219935],[-122.435522865,37.76022085],[-122.435529276,37.760287942],[-122.435535687,37.760355035],[-122.435541968,37.760420758],[-122.435548509,37.760489228],[-122.435548733,37.760491561],[-122.435555051,37.760557682],[-122.435727532,37.760547423],[-122.435813771,37.760542292],[-122.435980515,37.760532374],[-122.435994957,37.760531478],[-122.436084807,37.760525912],[-122.436085237,37.760530288],[-122.436187859,37.760523929],[-122.43662117,37.760497076],[-122.436620798,37.760493154],[-122.436614833,37.76043039],[-122.436614664,37.760428611],[-122.436700884,37.760423268],[-122.436701091,37.760425441],[-122.436707391,37.760491731],[-122.43679361,37.760486388],[-122.43687983,37.760481045],[-122.43696605,37.760475701],[-122.437010413,37.760472951],[-122.43705227,37.760470357],[-122.437066411,37.76046951],[-122.437162653,37.760463746],[-122.437190627,37.760758107],[-122.437218348,37.7610498],[-122.437107965,37.761056411],[-122.437022283,37.761061722],[-122.436849842,37.761072409],[-122.436763621,37.761077753],[-122.436677402,37.761083097],[-122.436591181,37.76108844],[-122.436504961,37.761093783],[-122.43641874,37.761099127],[-122.4362463,37.761109813],[-122.436142511,37.761116172],[-122.436142526,37.761116331],[-122.436046678,37.761122203],[-122.436039371,37.761122641],[-122.43578401,37.761138464],[-122.435697789,37.761143807],[-122.435649191,37.761146818],[-122.435611569,37.76114915],[-122.435592496,37.760949563],[-122.435591942,37.760943761],[-122.435583722,37.76085493],[-122.435456074,37.760862375],[-122.435464336,37.760951668],[-122.43549155,37.76123647],[-122.43549878,37.761236022],[-122.435565407,37.761231894],[-122.435619157,37.761228563],[-122.435619391,37.761231007],[-122.43562125,37.761250474],[-122.435630409,37.76134632],[-122.435630932,37.761351794],[-122.435636952,37.761414783],[-122.435637387,37.761419345],[-122.435643493,37.761483245],[-122.435643888,37.761487379],[-122.435650297,37.761554445],[-122.435655641,37.761610368],[-122.435656839,37.761622907],[-122.435663381,37.761691369],[-122.435575338,37.761696825],[-122.435583412,37.761778965],[-122.435590139,37.761847416],[-122.435596868,37.761915866],[-122.435603596,37.761984316],[-122.435518414,37.761989595],[-122.435529404,37.762104612],[-122.435540105,37.762216591],[-122.435685695,37.762405534],[-122.435586697,37.762453303],[-122.435563781,37.76246436],[-122.435498844,37.762495693],[-122.435311663,37.762588715],[-122.435187962,37.762670707]]]]}},"NCD","6:00AM-2:00AM",0.00000529050311121392,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_715.1","CASTRO STREET NEIGHBORHOOD COMMERCIAL","NCD-CASTRO",715.1,19865,0.018729364071032924,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":3.4240318125383994e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19677,"shape_length":0.0028239567241356935,"gen":"Mixed Use","index":42},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.485024072,37.784060852],[-122.485010944,37.783882235],[-122.484779286,37.783892717],[-122.484772878,37.783803519],[-122.48477144,37.783783501],[-122.484751662,37.783511088],[-122.484863928,37.78350591],[-122.484982834,37.783500396],[-122.484982838,37.783500453],[-122.485055467,37.783497086],[-122.485105743,37.783494754],[-122.485395888,37.783481369],[-122.485415746,37.783754772],[-122.485423559,37.78386357],[-122.485259637,37.783870985],[-122.48526616,37.783961801],[-122.485267569,37.783981432],[-122.485286774,37.78424584],[-122.485287383,37.784254226],[-122.485189601,37.784258669],[-122.48516132,37.784259954],[-122.485039123,37.784265612],[-122.485024072,37.784060852]]]]}},"NC-1","6:00AM-11:00PM",3.4240318125383994e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19677,0.0028239567241356935,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCT","commercial_hours_of_operation":"No Limit","shape_area":0.00001540457380078245,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_760","districtname":"FILLMORE STREET NEIGHBORHOOD COMMERCIAL TRANSIT DISTRICT","zoning":"NCT-FILLMORE","codesection":760,"objectid":19373,"shape_length":0.03179201170122484,"gen":"Mixed Use","index":43},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.432885212,37.786505218],[-122.432831201,37.786237005],[-122.432812422,37.786143747],[-122.432755068,37.786151032],[-122.432584407,37.786172707],[-122.432480974,37.786185843],[-122.432478678,37.78617444],[-122.432462215,37.786092684],[-122.43241704,37.785868338],[-122.432415787,37.785867479],[-122.43238537,37.785726904],[-122.432741497,37.785677076],[-122.432742696,37.785675671],[-122.43273778,37.785651256],[-122.432728158,37.785603473],[-122.432713141,37.785528894],[-122.432698123,37.785454317],[-122.432668088,37.785305161],[-122.432661141,37.785270663],[-122.432648346,37.785207117],[-122.433083398,37.785150939],[-122.432981041,37.784669335],[-122.432927034,37.784415219],[-122.432914248,37.784355055],[-122.431204946,37.78456824],[-122.431156334,37.784329233],[-122.431083149,37.783969405],[-122.430989979,37.783511313],[-122.430989255,37.783507753],[-122.430920518,37.783170897],[-122.430879961,37.782972141],[-122.43086499,37.782898773],[-122.430797881,37.782569888],[-122.430755607,37.782362797],[-122.430697166,37.782076513],[-122.430643832,37.781815243],[-122.430728268,37.781804482],[-122.430836182,37.781790729],[-122.431177832,37.781747189],[-122.431162745,37.78167262],[-122.431143619,37.781578088],[-122.431359518,37.781550819],[-122.431553692,37.781526295],[-122.431535008,37.781433947],[-122.431488039,37.781201794],[-122.431478901,37.78115663],[-122.431433524,37.780932338],[-122.431431048,37.780920099],[-122.431384142,37.780688259],[-122.431365339,37.780595319],[-122.430954413,37.780647838],[-122.430936434,37.780557563],[-122.430936344,37.780554099],[-122.430935673,37.78055374],[-122.430916057,37.780455248],[-122.430869017,37.780219053],[-122.430861475,37.780181182],[-122.431194658,37.780138719],[-122.431282736,37.780127494],[-122.431370816,37.780116269],[-122.431458895,37.780105043],[-122.431447922,37.780050811],[-122.431448808,37.780050698],[-122.431385878,37.779731891],[-122.431375429,37.779680156],[-122.431369286,37.779649738],[-122.431367026,37.77963855],[-122.431951802,37.779564148],[-122.43176322,37.778632037],[-122.431668931,37.778165981],[-122.431609154,37.777870514],[-122.43160665,37.777858137],[-122.431574642,37.777699924],[-122.431537773,37.777517683],[-122.431655209,37.777502715],[-122.431954136,37.777464615],[-122.431972147,37.777553645],[-122.431991002,37.777646857],[-122.432009859,37.777740068],[-122.432085292,37.778112913],[-122.432256108,37.778091141],[-122.432331543,37.778463985],[-122.432350896,37.778557134],[-122.432369754,37.778650344],[-122.432515763,37.779395777],[-122.432517463,37.779396436],[-122.432536322,37.779489648],[-122.432538995,37.779489307],[-122.432557854,37.779582518],[-122.432633292,37.779955362],[-122.432633638,37.779955317],[-122.432715173,37.780327385],[-122.432734032,37.780420597],[-122.432690251,37.780426177],[-122.432696192,37.780426079],[-122.432713537,37.780518823],[-122.432720196,37.780519326],[-122.43277011,37.780786213],[-122.432789577,37.780890309],[-122.432816381,37.780887499],[-122.432894664,37.781260655],[-122.432914201,37.78135378],[-122.433007387,37.781341902],[-122.433013678,37.781341101],[-122.433155375,37.78132304],[-122.433158533,37.781338726],[-122.43317415,37.781416262],[-122.433240055,37.781743475],[-122.433249591,37.781790821],[-122.433019841,37.78182039],[-122.433091347,37.782182843],[-122.433091229,37.782183375],[-122.433101152,37.782235579],[-122.433333004,37.782204964],[-122.43333309,37.782205394],[-122.433333302,37.782206443],[-122.433431447,37.782693726],[-122.43351212,37.783094252],[-122.433530896,37.783187474],[-122.433530523,37.783187521],[-122.433549262,37.783280748],[-122.433621039,37.783637842],[-122.43362414,37.783653272],[-122.433624241,37.783653651],[-122.433712281,37.783642429],[-122.433823319,37.783628276],[-122.433857486,37.783623921],[-122.43385414,37.783607385],[-122.433847883,37.783576469],[-122.434317661,37.783516588],[-122.434331565,37.783514815],[-122.434391521,37.783507173],[-122.434433351,37.783501841],[-122.434439117,37.783530952],[-122.434510619,37.783891951],[-122.434562099,37.784151863],[-122.434623518,37.784441649],[-122.434667204,37.784647771],[-122.434549558,37.784662511],[-122.433903471,37.784743459],[-122.433844464,37.784750852],[-122.433858031,37.78481736],[-122.433884642,37.784947813],[-122.433905015,37.785047687],[-122.433756963,37.785066293],[-122.433475186,37.785101704],[-122.433458984,37.78510374],[-122.433477653,37.785196481],[-122.433507451,37.785344506],[-122.433586068,37.785334657],[-122.433626837,37.785537184],[-122.433643845,37.78562167],[-122.433642412,37.785621851],[-122.433705733,37.785934641],[-122.433724604,37.786027851],[-122.433816152,37.786016215],[-122.433834926,37.786109437],[-122.433881621,37.786341306],[-122.434137891,37.786308733],[-122.43416014,37.786419212],[-122.434166291,37.786449753],[-122.434268799,37.786436724],[-122.434362764,37.786424781],[-122.43445673,37.786412837],[-122.434894047,37.786357252],[-122.434959566,37.786348923],[-122.435011503,37.786342322],[-122.435105768,37.786810542],[-122.434972039,37.786827615],[-122.434417972,37.786898355],[-122.434196617,37.786926615],[-122.433459916,37.787020667],[-122.433064764,37.787071112],[-122.433000812,37.787079276],[-122.432982039,37.786986055],[-122.432906469,37.786610785],[-122.432906291,37.786609894],[-122.432899495,37.786576146],[-122.432885212,37.786505218]]]]}},"NCT","No Limit",0.00001540457380078245,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_760","FILLMORE STREET NEIGHBORHOOD COMMERCIAL TRANSIT DISTRICT","NCT-FILLMORE",760,19373,0.03179201170122484,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCT","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000025670831058545806,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_762","districtname":"VALENCIA STREET NEIGHBORHOOD COMMERCIAL TRANSIT","zoning":"NCT-VALENCIA","codesection":726.1,"objectid":19844,"shape_length":0.07042935680478996,"gen":"Mixed Use","index":44},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.421129381,37.767358866],[-122.421113934,37.767197572],[-122.421056631,37.766599217],[-122.421531295,37.76657054],[-122.421523099,37.766481766],[-122.42152225,37.76647258],[-122.421488363,37.766105555],[-122.421455672,37.765751485],[-122.421453681,37.76572993],[-122.421450035,37.765690438],[-122.421423324,37.765401139],[-122.421423203,37.765399823],[-122.421421177,37.765399946],[-122.421393327,37.765401628],[-122.421048026,37.765422489],[-122.420944541,37.76542874],[-122.420901271,37.764976898],[-122.420580608,37.764996269],[-122.420546922,37.764626865],[-122.420543549,37.764589868],[-122.420539803,37.764548794],[-122.420546496,37.764548409],[-122.420617438,37.764544333],[-122.420831308,37.764531425],[-122.42093652,37.764525076],[-122.420938268,37.76454425],[-122.421024506,37.764539045],[-122.421110745,37.764533841],[-122.421152045,37.764531349],[-122.421174266,37.764530008],[-122.42118899,37.764529113],[-122.421198614,37.764528538],[-122.421198653,37.764528949],[-122.421198849,37.764530997],[-122.421220704,37.764529678],[-122.421241728,37.764528409],[-122.421245416,37.764528186],[-122.421379516,37.764520085],[-122.421461942,37.764515105],[-122.42145869,37.764481143],[-122.421456129,37.764454402],[-122.421452789,37.764419527],[-122.421450315,37.764393698],[-122.421446758,37.764356543],[-122.421444502,37.764332996],[-122.421438365,37.764268914],[-122.421432875,37.764211592],[-122.421431808,37.764200452],[-122.421427062,37.76415089],[-122.421423941,37.764118299],[-122.421363575,37.764121946],[-122.421358243,37.764066268],[-122.421349742,37.763977496],[-122.421343906,37.763916564],[-122.421341241,37.763888724],[-122.421339016,37.763865496],[-122.421332738,37.763799952],[-122.421326859,37.763738565],[-122.421324237,37.76371118],[-122.421220753,37.763717432],[-122.421220316,37.763712874],[-122.421191907,37.763416203],[-122.421184084,37.763331714],[-122.421043803,37.7633399],[-122.421035422,37.763249383],[-122.421012293,37.76300788],[-122.421010273,37.762986779],[-122.421009511,37.762978822],[-122.421007548,37.76295834],[-122.421008979,37.762958253],[-122.421087518,37.762953508],[-122.421206187,37.762946339],[-122.421207618,37.762946252],[-122.421205655,37.762925769],[-122.421179839,37.76265619],[-122.421175245,37.762608268],[-122.421244242,37.762604099],[-122.421239648,37.762556177],[-122.42123047,37.762460332],[-122.421223914,37.762391871],[-122.421217358,37.76232341],[-122.421214413,37.762292663],[-122.421210802,37.762254949],[-122.421204246,37.762186488],[-122.421204043,37.762184379],[-122.42119769,37.762118026],[-122.421191134,37.762049566],[-122.4211872,37.762008489],[-122.421213071,37.762006926],[-122.421203953,37.761911711],[-122.421194512,37.761813126],[-122.421193449,37.761802112],[-122.421185984,37.761724783],[-122.421160249,37.761726349],[-122.421151859,37.761639429],[-122.42114256,37.761542336],[-122.421136005,37.761473875],[-122.42113076,37.761419107],[-122.421129449,37.761405414],[-122.421124205,37.761350645],[-122.421122893,37.761336953],[-122.421116337,37.761268492],[-122.421109782,37.761200031],[-122.421103225,37.76113157],[-122.421096669,37.761063109],[-122.421090114,37.760994648],[-122.421083558,37.760926187],[-122.421077002,37.760857725],[-122.421070446,37.760789265],[-122.42106499,37.760732281],[-122.421063891,37.760720804],[-122.421061793,37.760698896],[-122.421057336,37.760652342],[-122.421050778,37.760583882],[-122.421044223,37.76051542],[-122.421037668,37.760446959],[-122.420948911,37.760452321],[-122.420862678,37.760457531],[-122.420759199,37.760463783],[-122.420742955,37.760464763],[-122.42070445,37.760467086],[-122.420690212,37.760467946],[-122.420668216,37.760238222],[-122.420659534,37.760147553],[-122.420650892,37.760056851],[-122.420629006,37.759827119],[-122.420698568,37.759822942],[-122.420803843,37.759816583],[-122.420890075,37.759811373],[-122.420976306,37.759806163],[-122.420969751,37.759737702],[-122.420933463,37.759739894],[-122.420926907,37.759671434],[-122.420920352,37.759602973],[-122.42095664,37.75960078],[-122.420943528,37.759463858],[-122.420936973,37.759395397],[-122.420923862,37.759258475],[-122.420917307,37.759190013],[-122.420910751,37.759121553],[-122.420904195,37.759053092],[-122.420901242,37.759022254],[-122.420897641,37.75898463],[-122.420891085,37.758916169],[-122.42088453,37.758847708],[-122.420796503,37.758853026],[-122.420710272,37.758858236],[-122.420606795,37.758864487],[-122.420590305,37.758865478],[-122.420537691,37.758868637],[-122.420537695,37.758868687],[-122.420468826,37.758872823],[-122.420330857,37.758881158],[-122.420261872,37.758885326],[-122.420192888,37.758889493],[-122.420063541,37.758897306],[-122.419940333,37.758904749],[-122.419885486,37.758907629],[-122.419868277,37.758908533],[-122.419848875,37.758675655],[-122.419841317,37.758584925],[-122.419811003,37.758266866],[-122.419880534,37.758262681],[-122.420003757,37.758255266],[-122.420079642,37.758250698],[-122.420133105,37.758247482],[-122.420155525,37.758246132],[-122.420231409,37.758241565],[-122.420307293,37.758236999],[-122.420391801,37.758231912],[-122.420473231,37.758226493],[-122.420466413,37.758161913],[-122.420523501,37.758158114],[-122.42078231,37.758142478],[-122.420781786,37.758137],[-122.420773162,37.758137521],[-122.420767918,37.758082753],[-122.42076292,37.758030552],[-122.420771543,37.758030033],[-122.420770773,37.758021986],[-122.42076525,37.75796431],[-122.420759367,37.757902864],[-122.420758957,37.757898587],[-122.420753729,37.757843987],[-122.420752665,37.757832864],[-122.420748092,37.75778511],[-122.420746109,37.757764404],[-122.420742454,37.757726234],[-122.420740707,37.757707983],[-122.420739554,37.757695942],[-122.420736685,37.757665988],[-122.42073326,37.75763022],[-122.420730917,37.757605742],[-122.420726968,37.757564497],[-122.420725148,37.757545496],[-122.420719626,37.75748782],[-122.420713611,37.757425005],[-122.420707843,37.757364759],[-122.420707565,37.757361852],[-122.420702205,37.757305883],[-122.420701533,37.757298868],[-122.420696568,37.757247006],[-122.420688948,37.757167422],[-122.420691249,37.757167284],[-122.420676827,37.757016669],[-122.420675538,37.757003166],[-122.420668459,37.756929038],[-122.420590231,37.756933746],[-122.420581863,37.756846114],[-122.420558339,37.756600425],[-122.420522123,37.756602605],[-122.420509013,37.756465682],[-122.420499704,37.756368467],[-122.420490397,37.756271253],[-122.420481774,37.756271772],[-122.420475219,37.75620331],[-122.420468926,37.756137587],[-122.42046539,37.756100663],[-122.420462633,37.756071865],[-122.420456341,37.756006142],[-122.420447165,37.755910296],[-122.420440392,37.755839556],[-122.420396057,37.755842231],[-122.420388191,37.755760078],[-122.420429022,37.755757614],[-122.420432507,37.755757213],[-122.420416473,37.755589729],[-122.420400757,37.755425591],[-122.420398835,37.7554067],[-122.420391186,37.755331528],[-122.420254321,37.755340307],[-122.420247313,37.755271429],[-122.420246012,37.755258635],[-122.420231592,37.75510802],[-122.420369557,37.755099716],[-122.420490276,37.75509245],[-122.420800698,37.755073767],[-122.420942179,37.755065253],[-122.420893483,37.754555177],[-122.420893077,37.754550932],[-122.420787345,37.754557294],[-122.420751453,37.754559455],[-122.420320316,37.754585404],[-122.420312262,37.75450128],[-122.420310458,37.754482438],[-122.420299971,37.7543729],[-122.420296037,37.754331823],[-122.420294728,37.754318131],[-122.420289484,37.754263363],[-122.420282929,37.754194901],[-122.420278996,37.754153824],[-122.420275064,37.754112748],[-122.420268509,37.754044287],[-122.420354736,37.754039097],[-122.420440963,37.754033907],[-122.420434408,37.753965446],[-122.420427854,37.753896985],[-122.420419988,37.753814831],[-122.420418906,37.753803495],[-122.420411622,37.753727199],[-122.420812136,37.753703093],[-122.42068849,37.752360827],[-122.42068698,37.752344433],[-122.420540195,37.752352957],[-122.420230534,37.752371907],[-122.420237087,37.752440368],[-122.420142272,37.752446399],[-122.420116476,37.752447977],[-122.420090541,37.752449564],[-122.420088804,37.752431427],[-122.420088313,37.752426288],[-122.419890485,37.752438392],[-122.419893106,37.752465777],[-122.419789647,37.752472108],[-122.419686186,37.752478439],[-122.419586352,37.75248427],[-122.419580177,37.752417624],[-122.419557366,37.752171411],[-122.42008415,37.752139177],[-122.420074835,37.752040209],[-122.420074018,37.752031532],[-122.420059207,37.75187418],[-122.420035796,37.751625467],[-122.420002375,37.751270401],[-122.419977817,37.7510095],[-122.419942018,37.750629173],[-122.419933664,37.750540404],[-122.419925169,37.750451663],[-122.419888972,37.750073512],[-122.419858846,37.749758793],[-122.419823642,37.749391006],[-122.419789101,37.749030152],[-122.419780601,37.748941346],[-122.419779993,37.748941383],[-122.419771605,37.748853753],[-122.419749324,37.748620985],[-122.419747323,37.748600095],[-122.419742886,37.748553748],[-122.419735022,37.748471585],[-122.419721019,37.748325308],[-122.419558401,37.748318114],[-122.419559483,37.748329185],[-122.419289777,37.748337276],[-122.419285329,37.74833741],[-122.419186013,37.748340389],[-122.419170604,37.748179391],[-122.419167513,37.74814711],[-122.42027883,37.748125283],[-122.420486003,37.748107837],[-122.421199847,37.748091304],[-122.421293614,37.74808944],[-122.421389142,37.74807803],[-122.421488897,37.748066114],[-122.421922591,37.748036008],[-122.421926797,37.748035716],[-122.422487364,37.748013449],[-122.422508016,37.748200836],[-122.422508046,37.748201113],[-122.42246568,37.748203622],[-122.422372925,37.748209115],[-122.422097427,37.748225433],[-122.422098738,37.748239125],[-122.422024592,37.748243631],[-122.422032197,37.748323045],[-122.42203668,37.748369856],[-122.422043235,37.748438318],[-122.422048408,37.748438003],[-122.422048801,37.748442111],[-122.421974656,37.748446617],[-122.42188844,37.748451856],[-122.421802225,37.748457095],[-122.421804528,37.748481156],[-122.421808386,37.748521449],[-122.421708376,37.748527525],[-122.421721487,37.748664448],[-122.421728435,37.748737017],[-122.421733709,37.748792103],[-122.421736685,37.748823187],[-122.42128446,37.748850442],[-122.420832301,37.74887769],[-122.420840983,37.748968389],[-122.420875896,37.74933314],[-122.420912003,37.749710363],[-122.420925952,37.749856089],[-122.42092606,37.749857223],[-122.420941079,37.75001413],[-122.420961114,37.75022344],[-122.420976887,37.750388218],[-122.420985382,37.750476971],[-122.420994139,37.750565734],[-122.421028788,37.750916988],[-122.421043009,37.751061142],[-122.421043115,37.751062225],[-122.42105731,37.751206111],[-122.421075928,37.751394848],[-122.421096972,37.751608173],[-122.421127745,37.751920111],[-122.421133233,37.751975741],[-122.421142969,37.752074434],[-122.421142802,37.752074444],[-122.421147778,37.752137119],[-122.421149038,37.752153447],[-122.421171463,37.752445391],[-122.42117415,37.752445226],[-122.42118053,37.752511866],[-122.421186021,37.752569215],[-122.421191586,37.752627336],[-122.421185468,37.752627704],[-122.421176356,37.752628253],[-122.421182911,37.752696713],[-122.42117145,37.752697403],[-122.421178004,37.752765865],[-122.421147071,37.752767726],[-122.421153626,37.752836188],[-122.421201261,37.752833321],[-122.421432085,37.752819426],[-122.421499335,37.752815378],[-122.421548653,37.752812409],[-122.421545505,37.752856084],[-122.421519994,37.753210039],[-122.421493429,37.753578627],[-122.421517872,37.753660456],[-122.421497148,37.754063976],[-122.42147652,37.754465619],[-122.421473622,37.754521986],[-122.421435247,37.755268222],[-122.421547798,37.755261877],[-122.421553144,37.755321652],[-122.421556219,37.755356042],[-122.421586114,37.755668225],[-122.421508508,37.755672897],[-122.421439525,37.75567705],[-122.421459192,37.755882433],[-122.421469291,37.755987899],[-122.421470517,37.756000746],[-122.421473295,37.756029837],[-122.421477658,37.75607553],[-122.421494952,37.75607449],[-122.42150332,37.756162121],[-122.421516431,37.756299044],[-122.421523512,37.756372981],[-122.421530067,37.756441442],[-122.421533214,37.756474303],[-122.421543178,37.756578364],[-122.421563162,37.75678705],[-122.421571521,37.756874682],[-122.42157988,37.756962314],[-122.421592992,37.757099236],[-122.421661975,37.757095084],[-122.421671941,37.757199144],[-122.421679022,37.757273082],[-122.421682431,37.757308682],[-122.421689773,37.757385359],[-122.421603543,37.757390549],[-122.421622392,37.757587385],[-122.421623629,37.757600297],[-122.421629426,37.757660753],[-122.421630793,37.757675012],[-122.421717003,37.757669802],[-122.421725405,37.757757435],[-122.421742451,37.757935434],[-122.421749007,37.758003895],[-122.421755563,37.758072356],[-122.421758186,37.75809974],[-122.421784964,37.75837936],[-122.421793364,37.75846699],[-122.421758855,37.758469075],[-122.421767255,37.758556704],[-122.421793695,37.758832517],[-122.421793879,37.758834427],[-122.421797515,37.758872357],[-122.421800463,37.758903115],[-122.421807496,37.758976478],[-122.421813589,37.759040037],[-122.421779811,37.759042078],[-122.421468686,37.759060877],[-122.421326404,37.759069465],[-122.421355418,37.759372453],[-122.421476563,37.759365443],[-122.421787711,37.759347438],[-122.421842807,37.75934425],[-122.421844316,37.759360685],[-122.421850872,37.759429146],[-122.421858216,37.759505823],[-122.421864772,37.759574284],[-122.421871328,37.759642745],[-122.421874213,37.759672869],[-122.421899701,37.759939006],[-122.421901703,37.759959914],[-122.421904032,37.759984224],[-122.421912432,37.760071855],[-122.421913311,37.760071801],[-122.421921395,37.760156129],[-122.421921712,37.760159431],[-122.421947939,37.760433274],[-122.421954495,37.760501736],[-122.421961051,37.760570197],[-122.421967608,37.760638658],[-122.421971128,37.760675413],[-122.421974164,37.760707119],[-122.421938776,37.760709257],[-122.421945333,37.760777719],[-122.421980721,37.76077558],[-122.421987277,37.76084404],[-122.421993834,37.760912502],[-122.422000391,37.760980962],[-122.422006947,37.761049424],[-122.422013505,37.761117885],[-122.422020061,37.761186346],[-122.422026618,37.761254807],[-122.422033174,37.761323268],[-122.422039731,37.761391729],[-122.421953497,37.761396939],[-122.421971976,37.761589877],[-122.42197308,37.761601312],[-122.421980334,37.761676451],[-122.422274278,37.761658564],[-122.422282784,37.761747372],[-122.422309013,37.762021215],[-122.422310637,37.762038172],[-122.422317194,37.762106633],[-122.422356275,37.762104272],[-122.422379079,37.762218648],[-122.422388732,37.762245533],[-122.42239552,37.76226444],[-122.422549585,37.76225513],[-122.422554045,37.762301647],[-122.422564275,37.762408446],[-122.422570832,37.762476906],[-122.42257739,37.762545368],[-122.422583947,37.762613828],[-122.422589717,37.762674074],[-122.422596668,37.762746643],[-122.422603619,37.762819212],[-122.422610176,37.762887672],[-122.422796444,37.762876416],[-122.422799521,37.762908535],[-122.42282183,37.763141445],[-122.422830616,37.763235558],[-122.422698659,37.763243322],[-122.42273006,37.763571157],[-122.422708811,37.76357244],[-122.422626576,37.763577404],[-122.422419611,37.763589911],[-122.422316127,37.763596164],[-122.422322685,37.763664625],[-122.422219201,37.763670878],[-122.422220582,37.763685302],[-122.422228451,37.763767456],[-122.422228774,37.763770831],[-122.422232046,37.763804999],[-122.422238347,37.763870783],[-122.422244034,37.763930166],[-122.42224779,37.763969368],[-122.422257232,37.764067952],[-122.422259925,37.764096068],[-122.42226622,37.764161791],[-122.422272417,37.764226486],[-122.422272969,37.764232258],[-122.42227776,37.764282282],[-122.422280838,37.764314411],[-122.422285629,37.764364435],[-122.422288707,37.764396564],[-122.422293498,37.764446589],[-122.422296575,37.764478718],[-122.422503545,37.764466211],[-122.422504617,37.764477407],[-122.422511413,37.764548364],[-122.422590752,37.76454357],[-122.422718383,37.764535858],[-122.422733724,37.764534931],[-122.422821868,37.76452961],[-122.422821936,37.764530331],[-122.422925421,37.764524084],[-122.423000448,37.764519549],[-122.423138428,37.764511211],[-122.423241911,37.764504957],[-122.423235259,37.7644355],[-122.423234042,37.764422804],[-122.423337527,37.764416551],[-122.42333225,37.764361458],[-122.423431111,37.764355484],[-122.423534594,37.76434923],[-122.423624281,37.76434381],[-122.423743288,37.764336618],[-122.423915762,37.764326194],[-122.42401305,37.76432075],[-122.424061363,37.764318046],[-122.424064813,37.764356904],[-122.424113126,37.7643542],[-122.424204187,37.764349105],[-122.424514825,37.764333707],[-122.424528456,37.764333031],[-122.424537483,37.764418144],[-122.424582829,37.76441632],[-122.424652881,37.764413503],[-122.42464629,37.764339227],[-122.424659891,37.764337651],[-122.42471523,37.764334544],[-122.424738032,37.764333263],[-122.424828231,37.764328198],[-122.424913504,37.764323409],[-122.425090589,37.764313464],[-122.425206924,37.76430693],[-122.425319008,37.764300636],[-122.42554537,37.764287923],[-122.425626694,37.764283355],[-122.425654037,37.764579507],[-122.425664152,37.764689067],[-122.424574376,37.764754941],[-122.424525814,37.764757877],[-122.424102684,37.764783451],[-122.424142142,37.765195308],[-122.424142178,37.765195682],[-122.424093873,37.765198474],[-122.424059831,37.765200441],[-122.42399985,37.765203906],[-122.42370855,37.765220744],[-122.423705407,37.765191153],[-122.423615856,37.765197452],[-122.423514279,37.765204596],[-122.423219265,37.765225347],[-122.423199955,37.765226705],[-122.423152736,37.765230027],[-122.423152725,37.765229918],[-122.423081359,37.765234463],[-122.422743694,37.765255968],[-122.422756838,37.765318711],[-122.422769908,37.765381104],[-122.422776615,37.765380671],[-122.422792888,37.765461483],[-122.422804685,37.765520059],[-122.422806796,37.765530543],[-122.422802422,37.765530862],[-122.422815194,37.765598808],[-122.422821906,37.76559835],[-122.422830038,37.76566797],[-122.422819204,37.765668643],[-122.422827573,37.76573666],[-122.422844737,37.76573549],[-122.422862048,37.765802545],[-122.422879457,37.765869977],[-122.422870689,37.765870517],[-122.422875537,37.765938566],[-122.422881756,37.766025854],[-122.422885811,37.766082766],[-122.422887959,37.766112908],[-122.422960522,37.766108148],[-122.423163774,37.766094816],[-122.423183822,37.7660935],[-122.423242349,37.766089655],[-122.423243954,37.766105052],[-122.423301407,37.766101277],[-122.423303164,37.766101162],[-122.423484328,37.766089394],[-122.423567851,37.766083968],[-122.423597071,37.76635758],[-122.423605474,37.766445209],[-122.423281456,37.766464791],[-122.422043812,37.766539575],[-122.422134435,37.767472921],[-122.422156113,37.767696196],[-122.422220298,37.767692268],[-122.422294907,37.767687704],[-122.422639804,37.767666864],[-122.422743293,37.767660611],[-122.422829534,37.7676554],[-122.422863636,37.768011396],[-122.422872024,37.768099162],[-122.422686071,37.768110361],[-122.422199174,37.768139682],[-122.421364522,37.76819011],[-122.421209882,37.768199451],[-122.421129381,37.767358866]]]]}},"NCT","6:00AM-2:00AM",0.000025670831058545806,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_762","VALENCIA STREET NEIGHBORHOOD COMMERCIAL TRANSIT","NCT-VALENCIA",726.1,19844,0.07042935680478996,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":4.5745481302048046e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19529,"shape_length":0.003015172520505506,"gen":"Mixed Use","index":45},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.504020633,37.779208481],[-122.504022581,37.7792352],[-122.504040366,37.77947924],[-122.504056826,37.779705085],[-122.502972265,37.779609736],[-122.502960614,37.779449833],[-122.502946586,37.77925732],[-122.503081206,37.779251199],[-122.50348846,37.779232682],[-122.504020633,37.779208481]]]]}},"NC-1","6:00AM-11:00PM",4.5745481302048046e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19529,0.003015172520505506,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":0.0000013876338923430367,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19752,"shape_length":0.006342977216351361,"gen":"Mixed Use","index":46},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.491327367,37.782112646],[-122.491321909,37.782038621],[-122.491219919,37.782043359],[-122.49120408,37.782044095],[-122.491200687,37.782044252],[-122.49111741,37.782048097],[-122.491108545,37.781926171],[-122.491102458,37.781842465],[-122.491094612,37.781735512],[-122.491060329,37.781737096],[-122.491053609,37.781645507],[-122.491052083,37.781624713],[-122.491041708,37.781481998],[-122.491048249,37.781481701],[-122.491159417,37.781476657],[-122.491281476,37.781471408],[-122.491272135,37.781334599],[-122.491391335,37.781329472],[-122.491552196,37.781322173],[-122.491724926,37.781314337],[-122.491811292,37.781310418],[-122.491894202,37.781306657],[-122.491977113,37.781302895],[-122.492060023,37.781299133],[-122.492142934,37.78129537],[-122.492225844,37.781291609],[-122.492346233,37.781285994],[-122.492346256,37.781286298],[-122.492467666,37.781280636],[-122.492550576,37.781276874],[-122.492633487,37.781273111],[-122.492716398,37.781269349],[-122.492799309,37.781265587],[-122.492882218,37.781261824],[-122.492916765,37.781260256],[-122.492965129,37.781258061],[-122.49313095,37.781250537],[-122.49321386,37.781246774],[-122.49329966,37.78124288],[-122.493417778,37.781237427],[-122.493444723,37.781605101],[-122.493446345,37.781627238],[-122.493318095,37.781633154],[-122.492375157,37.781676654],[-122.49240358,37.78206748],[-122.492282672,37.782073019],[-122.492084019,37.782081889],[-122.49199765,37.782085745],[-122.491911279,37.782089602],[-122.491868107,37.78209153],[-122.491824908,37.782093457],[-122.4917394,37.782097275],[-122.491652166,37.782101169],[-122.491565796,37.782105026],[-122.491448111,37.78211028],[-122.491444871,37.782110335],[-122.491327598,37.782115782],[-122.491327367,37.782112646]]]]}},"NC-1","6:00AM-11:00PM",0.0000013876338923430367,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19752,0.006342977216351361,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"P","commercial_hours_of_operation":"Unrestricted","shape_area":0.000001478879163882149,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article2usedistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_211","districtname":"PUBLIC","zoning":"P","codesection":211,"objectid":19689,"shape_length":0.0071267653082330755,"gen":"Public","index":47},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.412159603,37.809247085],[-122.411475708,37.809132115],[-122.411452999,37.809105294],[-122.411423701,37.80911889],[-122.411248581,37.808920285],[-122.411095588,37.808897971],[-122.411094851,37.808898702],[-122.411093588,37.808898524],[-122.41108619,37.808906398],[-122.411086606,37.808906881],[-122.41108606,37.808907422],[-122.411283423,37.80913511],[-122.411256436,37.809149492],[-122.411250358,37.809142492],[-122.41117147,37.809050623],[-122.411031846,37.808889857],[-122.41103089,37.808889723],[-122.411027343,37.808903726],[-122.410952798,37.808892537],[-122.410954433,37.808880114],[-122.410766082,37.808850625],[-122.410736663,37.808846453],[-122.410731481,37.808872879],[-122.41065736,37.808862923],[-122.410649124,37.808861817],[-122.410652353,37.808835422],[-122.410590987,37.808825873],[-122.410591027,37.808825154],[-122.41059204,37.808806466],[-122.410600049,37.808703893],[-122.410592965,37.808702849],[-122.410615619,37.808403012],[-122.410615769,37.808401012],[-122.410615834,37.80840102],[-122.410621059,37.808355967],[-122.410630671,37.808273062],[-122.410636738,37.808220747],[-122.410639565,37.8082211],[-122.410640843,37.80822126],[-122.410828798,37.808244758],[-122.41088275,37.808255406],[-122.412380293,37.808478379],[-122.412485812,37.80849286],[-122.41249672,37.808494437],[-122.412628706,37.808513516],[-122.412630762,37.808513813],[-122.41263401,37.808514282],[-122.412653372,37.80860876],[-122.412691688,37.80879573],[-122.412691794,37.808796248],[-122.412694929,37.80881155],[-122.412716518,37.808916892],[-122.412767793,37.809152441],[-122.412692434,37.809121307],[-122.412684687,37.809120656],[-122.412682206,37.80911912],[-122.412616709,37.809078575],[-122.41261332,37.809078201],[-122.412498382,37.809065523],[-122.412397838,37.809119408],[-122.412398285,37.809120844],[-122.412398517,37.809121671],[-122.41239873,37.809122502],[-122.412398924,37.809123335],[-122.4123991,37.80912417],[-122.412399258,37.809125008],[-122.412399398,37.809125848],[-122.412399518,37.80912669],[-122.412399621,37.809127533],[-122.412399705,37.809128378],[-122.412399771,37.809129224],[-122.412399817,37.80913007],[-122.412399845,37.809130917],[-122.412399855,37.809131764],[-122.412399846,37.809132611],[-122.412399818,37.809133459],[-122.41239977,37.809134305],[-122.412399706,37.809135151],[-122.412399622,37.809135995],[-122.41239952,37.809136839],[-122.412399399,37.809137681],[-122.41239926,37.80913852],[-122.412399102,37.809139359],[-122.412398926,37.809140195],[-122.412398731,37.809141027],[-122.412398519,37.809141858],[-122.412398287,37.809142685],[-122.412398038,37.809143509],[-122.41239777,37.809144329],[-122.412397486,37.809145146],[-122.412397182,37.809145958],[-122.412396861,37.809146766],[-122.412396522,37.809147569],[-122.412396166,37.809148368],[-122.412395792,37.809149162],[-122.4123954,37.809149951],[-122.412394992,37.809150733],[-122.412394566,37.809151511],[-122.412394123,37.809152281],[-122.412393664,37.809153046],[-122.412393188,37.809153804],[-122.412392694,37.809154556],[-122.412392185,37.8091553],[-122.41239166,37.809156038],[-122.412391116,37.809156768],[-122.412390559,37.809157491],[-122.412389986,37.809158205],[-122.412389396,37.809158912],[-122.412388792,37.80915961],[-122.412388171,37.809160299],[-122.412387536,37.809160981],[-122.412386886,37.809161653],[-122.412386221,37.809162316],[-122.412385542,37.809162971],[-122.412384849,37.809163614],[-122.41238414,37.809164249],[-122.412383419,37.809164873],[-122.412382684,37.809165488],[-122.412381936,37.809166093],[-122.412381174,37.809166687],[-122.412380399,37.80916727],[-122.412426404,37.809216601],[-122.412435303,37.809211052],[-122.412449884,37.809212438],[-122.412629169,37.809393417],[-122.412574738,37.809427358],[-122.412395453,37.80924638],[-122.412397201,37.809234811],[-122.412412791,37.80922509],[-122.412366194,37.809175124],[-122.412364843,37.809175648],[-122.412363874,37.809176003],[-122.412362897,37.809176345],[-122.412361912,37.809176674],[-122.412360921,37.809176989],[-122.412359923,37.80917729],[-122.412358919,37.809177578],[-122.412357907,37.809177851],[-122.41235689,37.809178111],[-122.412355868,37.809178356],[-122.412354841,37.809178587],[-122.412353809,37.809178804],[-122.412352772,37.809179007],[-122.41235173,37.809179195],[-122.412350685,37.809179367],[-122.412349636,37.809179527],[-122.412348585,37.809179672],[-122.412347529,37.809179802],[-122.41234647,37.809179917],[-122.412345411,37.809180018],[-122.412344348,37.809180104],[-122.412343284,37.809180176],[-122.412342219,37.809180232],[-122.412341152,37.809180274],[-122.412340084,37.809180301],[-122.412339016,37.809180314],[-122.412337949,37.80918031],[-122.41233688,37.809180293],[-122.412335813,37.809180261],[-122.412334747,37.809180214],[-122.412333681,37.809180152],[-122.412332619,37.809180076],[-122.412331556,37.809179985],[-122.412330497,37.80917988],[-122.41232944,37.809179759],[-122.412328386,37.809179624],[-122.412327335,37.809179474],[-122.412326287,37.80917931],[-122.412325243,37.809179131],[-122.412324203,37.809178938],[-122.412323168,37.80917873],[-122.412322137,37.809178509],[-122.412321112,37.809178273],[-122.412320091,37.809178023],[-122.412319076,37.809177759],[-122.412318068,37.80917748],[-122.412317065,37.809177188],[-122.412316069,37.809176882],[-122.41231508,37.809176563],[-122.412314098,37.809176229],[-122.412313124,37.809175882],[-122.412312158,37.809175522],[-122.412311199,37.809175148],[-122.41231025,37.809174762],[-122.412309308,37.809174362],[-122.412308375,37.809173948],[-122.412307452,37.809173522],[-122.412306537,37.809173084],[-122.412305634,37.809172632],[-122.412305193,37.809172403],[-122.412304741,37.809172169],[-122.412303857,37.809171693],[-122.412302984,37.809171205],[-122.412302122,37.809170705],[-122.412159603,37.809247085]]]]}},"P","Unrestricted",0.000001478879163882149,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article2usedistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_211","PUBLIC","P",211,19689,0.0071267653082330755,"Public"],[{"type":"Feature","properties":{"zoning_sim":"NC-3","commercial_hours_of_operation":"No Limit","shape_area":0.000016831943096093575,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","districtname":"NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","zoning":"NC-3","codesection":712.1,"objectid":19573,"shape_length":0.04987235710939095,"gen":"Mixed Use","index":48},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.42526159,37.800781531],[-122.425311481,37.80077518],[-122.425347026,37.800770655],[-122.425432462,37.800759777],[-122.425458919,37.800756409],[-122.425517899,37.8007489],[-122.425603334,37.800738023],[-122.425596497,37.800704125],[-122.42597156,37.800656373],[-122.426089035,37.800641417],[-122.426109168,37.800741224],[-122.426227323,37.800691938],[-122.426235721,37.800688435],[-122.426563735,37.800551609],[-122.426597698,37.800581103],[-122.426664042,37.800553415],[-122.426749813,37.800517618],[-122.426805941,37.800602291],[-122.426993742,37.800578379],[-122.427079178,37.8005675],[-122.427164613,37.800556621],[-122.427284222,37.800541392],[-122.427293126,37.800585457],[-122.427310383,37.800670876],[-122.427652127,37.800627361],[-122.427677031,37.80062419],[-122.4277696,37.800612403],[-122.427765024,37.800589753],[-122.427882456,37.800574592],[-122.428087631,37.800548102],[-122.42824116,37.800528279],[-122.428328273,37.800517031],[-122.428352188,37.800513944],[-122.428411971,37.800506224],[-122.428446132,37.800501814],[-122.428497376,37.800495197],[-122.42857424,37.800485272],[-122.428582781,37.80048417],[-122.428668186,37.800473142],[-122.428753592,37.800462115],[-122.428712488,37.800258694],[-122.428652858,37.800266287],[-122.428630887,37.800157512],[-122.428716293,37.800146485],[-122.428801698,37.800135457],[-122.428887103,37.800124431],[-122.428900795,37.800192223],[-122.428914487,37.800260017],[-122.428915036,37.800262728],[-122.428928683,37.800330296],[-122.428942376,37.80039809],[-122.428956068,37.800465883],[-122.428969761,37.800533676],[-122.429311383,37.800489565],[-122.429323275,37.800488029],[-122.429429464,37.800474317],[-122.429405885,37.800358142],[-122.429522818,37.80034325],[-122.429629612,37.80032965],[-122.429800482,37.800307889],[-122.429885917,37.800297009],[-122.429872224,37.800229216],[-122.429865376,37.800195319],[-122.429950812,37.80018444],[-122.430036246,37.800173559],[-122.430121681,37.800162678],[-122.430207116,37.800151798],[-122.430207064,37.800151545],[-122.430377948,37.800129853],[-122.430377985,37.800130037],[-122.430463419,37.800119156],[-122.430548853,37.800108274],[-122.430555701,37.800142171],[-122.430569395,37.800209964],[-122.430655043,37.800199056],[-122.430740479,37.800188175],[-122.430825913,37.800177294],[-122.430932706,37.800163692],[-122.430965474,37.800159519],[-122.431050423,37.800148699],[-122.431167651,37.800133768],[-122.431530748,37.800087523],[-122.431517056,37.800019729],[-122.43151021,37.799985833],[-122.431595645,37.799974951],[-122.431681079,37.79996407],[-122.431766513,37.799953188],[-122.431851948,37.799942306],[-122.431937382,37.799931424],[-122.432022816,37.799920542],[-122.43210825,37.799909661],[-122.432193683,37.799898778],[-122.43220053,37.799932675],[-122.432214221,37.800000468],[-122.432299656,37.799989586],[-122.432385089,37.799978704],[-122.432470523,37.799967822],[-122.43257836,37.799954085],[-122.432611623,37.799949848],[-122.43269578,37.799939129],[-122.432675277,37.799837422],[-122.432801079,37.799821412],[-122.433133755,37.799779072],[-122.433563472,37.799724381],[-122.433773721,37.799697622],[-122.434193315,37.799644217],[-122.434319174,37.799628198],[-122.434732658,37.79957557],[-122.434742205,37.799622811],[-122.434758646,37.799704161],[-122.434791135,37.79986492],[-122.434805676,37.799936867],[-122.434818232,37.799998999],[-122.435587183,37.799901282],[-122.43557464,37.799839222],[-122.435559893,37.799766254],[-122.435511104,37.799524852],[-122.435501573,37.799477696],[-122.435805399,37.799439021],[-122.435834928,37.799435262],[-122.435960785,37.799419242],[-122.435983456,37.799531738],[-122.436101003,37.799516819],[-122.436418844,37.799476479],[-122.43640569,37.799411398],[-122.436396074,37.799363831],[-122.436510928,37.79934921],[-122.436539751,37.799345541],[-122.436548149,37.799344472],[-122.436981285,37.799289333],[-122.43705381,37.7992801],[-122.437479414,37.799225918],[-122.437608835,37.799209441],[-122.437637525,37.799351271],[-122.437751517,37.799336747],[-122.438045405,37.799299299],[-122.438096665,37.799292767],[-122.438113751,37.79929059],[-122.438108525,37.799264789],[-122.438067878,37.799064104],[-122.438067069,37.79906011],[-122.438142248,37.79905053],[-122.438306278,37.799029627],[-122.438323366,37.79902745],[-122.43839171,37.799018742],[-122.438408797,37.799016564],[-122.438477143,37.799007855],[-122.438494229,37.799005678],[-122.438562575,37.798996968],[-122.438648006,37.798986081],[-122.43864526,37.798972524],[-122.438730692,37.798961636],[-122.438770792,37.798956527],[-122.438774324,37.798973987],[-122.438777648,37.798990423],[-122.43879136,37.799058213],[-122.439133089,37.799014665],[-122.439183993,37.799008178],[-122.439250557,37.798999695],[-122.439368026,37.798984725],[-122.439837902,37.798924844],[-122.439929741,37.79891314],[-122.440008765,37.798903069],[-122.440021579,37.798901436],[-122.440118545,37.798889079],[-122.440208104,37.798877664],[-122.440218927,37.798876285],[-122.440383897,37.798855261],[-122.440401751,37.798852985],[-122.440422812,37.798957089],[-122.440489197,37.798948661],[-122.440516795,37.798945158],[-122.440610779,37.798933224],[-122.440704763,37.798921293],[-122.440795713,37.798909746],[-122.440828363,37.798905601],[-122.440913397,37.798894805],[-122.440912865,37.798892175],[-122.441030135,37.798877255],[-122.441203173,37.798855239],[-122.441288607,37.798844369],[-122.44136607,37.798834512],[-122.441352334,37.798766725],[-122.441345465,37.798732831],[-122.441377104,37.798728806],[-122.441430901,37.79872196],[-122.4414711,37.798716845],[-122.441516336,37.798711089],[-122.441576063,37.79870349],[-122.44167556,37.79869083],[-122.441674109,37.798682605],[-122.441679462,37.798681251],[-122.441768634,37.798658713],[-122.441825276,37.798644396],[-122.441852002,37.79863764],[-122.441905569,37.7986241],[-122.44193537,37.798616568],[-122.441985648,37.79860356],[-122.442018643,37.798595023],[-122.442022076,37.79861197],[-122.442035813,37.798679758],[-122.44204955,37.798747545],[-122.442134985,37.798736674],[-122.44222042,37.798725802],[-122.442243774,37.798841041],[-122.442465333,37.798812848],[-122.442478448,37.798811179],[-122.442606322,37.798794908],[-122.442577473,37.798652556],[-122.44271842,37.798634619],[-122.442993986,37.798599552],[-122.443190486,37.798574547],[-122.443175396,37.798499978],[-122.443269373,37.798488019],[-122.443346264,37.798478235],[-122.443363351,37.79847606],[-122.443431699,37.798467362],[-122.443517133,37.79845649],[-122.443602567,37.798445618],[-122.443645284,37.798440181],[-122.443676963,37.79843615],[-122.443688002,37.798434745],[-122.443773436,37.798423873],[-122.444005929,37.798394286],[-122.444115173,37.798380383],[-122.444232645,37.798365433],[-122.444292569,37.798661525],[-122.444297617,37.798686472],[-122.444318619,37.798790245],[-122.444711451,37.798802498],[-122.444931418,37.798759877],[-122.44547454,37.798690138],[-122.445484641,37.798740154],[-122.445493077,37.798781925],[-122.445540385,37.799016171],[-122.445547844,37.799053099],[-122.44548655,37.799060789],[-122.445187881,37.799098261],[-122.445068193,37.79902396],[-122.444918122,37.799026435],[-122.444881402,37.799027041],[-122.44490988,37.799167751],[-122.4449236,37.79923554],[-122.444838165,37.799246413],[-122.444818957,37.799151508],[-122.444806609,37.799090497],[-122.444507586,37.799128553],[-122.444476762,37.799132476],[-122.444390113,37.799143502],[-122.444402037,37.799202421],[-122.444284523,37.799217165],[-122.444194783,37.799228423],[-122.444069149,37.799244185],[-122.444089728,37.79934587],[-122.44389914,37.799369781],[-122.443728208,37.799391226],[-122.443702051,37.799394507],[-122.443668382,37.799398731],[-122.443642742,37.799401947],[-122.443557277,37.79941267],[-122.44349745,37.799420176],[-122.44347181,37.799423392],[-122.443386345,37.799434114],[-122.443300879,37.799444836],[-122.443241053,37.799452341],[-122.442892989,37.799496006],[-122.442751996,37.799513694],[-122.442738257,37.799445905],[-122.442597213,37.799463599],[-122.442216034,37.799511417],[-122.442229771,37.799579203],[-122.442144305,37.799589924],[-122.442058839,37.799600646],[-122.441973372,37.799611367],[-122.441802439,37.799632809],[-122.441716973,37.799643529],[-122.441631506,37.799654249],[-122.441610901,37.799552568],[-122.441525435,37.799563289],[-122.441439969,37.79957401],[-122.441354502,37.79958473],[-122.441269036,37.799595451],[-122.441177449,37.799606939],[-122.44112845,37.799613085],[-122.44106117,37.799621523],[-122.441061565,37.799623456],[-122.440942851,37.799638528],[-122.440848522,37.799650504],[-122.440754196,37.79966248],[-122.440659867,37.799674456],[-122.440565539,37.799686432],[-122.4405796,37.799754178],[-122.440586687,37.799788322],[-122.440493385,37.799800167],[-122.440398715,37.799812187],[-122.440305412,37.799824032],[-122.440304387,37.799824162],[-122.440211085,37.799836007],[-122.440210059,37.799836137],[-122.440116756,37.799847983],[-122.440022428,37.799859958],[-122.440022086,37.79986],[-122.439928101,37.799871932],[-122.439921015,37.799837788],[-122.439906954,37.799770042],[-122.439718982,37.799793906],[-122.439624655,37.799805881],[-122.43953536,37.799817216],[-122.439487694,37.799823268],[-122.439418483,37.799832054],[-122.439300396,37.799847044],[-122.439018099,37.799882881],[-122.438923771,37.799894856],[-122.438937497,37.799962644],[-122.438944415,37.79999681],[-122.438850089,37.800008784],[-122.438679205,37.800030476],[-122.438614611,37.800038675],[-122.438508322,37.800052168],[-122.438379135,37.800068567],[-122.438313916,37.800076846],[-122.438251998,37.800084705],[-122.438245189,37.800051082],[-122.438224546,37.799949127],[-122.437886704,37.799992011],[-122.437845572,37.799997232],[-122.437769222,37.800006924],[-122.437762315,37.799972346],[-122.437644824,37.799987221],[-122.437459609,37.80001067],[-122.437473157,37.800078481],[-122.437316583,37.800098304],[-122.437295346,37.800100975],[-122.437315724,37.800202981],[-122.437260978,37.800209911],[-122.437097701,37.800230582],[-122.437094389,37.800214],[-122.437094144,37.800212773],[-122.436737349,37.800259215],[-122.436736092,37.800262347],[-122.436735665,37.800260208],[-122.436735223,37.800260264],[-122.436641337,37.800272181],[-122.436263862,37.80032009],[-122.436146378,37.800335001],[-122.436149694,37.800351282],[-122.436032244,37.800366358],[-122.435562445,37.800426656],[-122.435461652,37.800439593],[-122.435421505,37.800444745],[-122.435371108,37.800451213],[-122.435280565,37.800462834],[-122.435284835,37.800483799],[-122.435294368,37.800530613],[-122.435282372,37.800532153],[-122.435106447,37.800554732],[-122.435092645,37.800486952],[-122.434998684,37.800499011],[-122.434625439,37.800546915],[-122.434559666,37.800555356],[-122.434507988,37.800561988],[-122.434382167,37.800578136],[-122.433965227,37.800631644],[-122.433406447,37.800703352],[-122.4329895,37.800756858],[-122.432863678,37.800773003],[-122.432737856,37.800789149],[-122.432320907,37.800842652],[-122.431761988,37.80091437],[-122.431344778,37.800967903],[-122.431219089,37.80098403],[-122.431218236,37.8009798],[-122.431100731,37.80099457],[-122.430908439,37.80101874],[-122.430737511,37.801040225],[-122.430566584,37.801061708],[-122.43053823,37.801065271],[-122.430395656,37.801083191],[-122.430343372,37.801089763],[-122.430317314,37.801093038],[-122.430238971,37.801102885],[-122.430198084,37.801108023],[-122.430160629,37.801112731],[-122.430052795,37.801126284],[-122.429689573,37.801171935],[-122.429572968,37.80118659],[-122.429552457,37.801084487],[-122.429433918,37.801099794],[-122.429274921,37.801120324],[-122.429180974,37.801132456],[-122.429087028,37.801144585],[-122.429107655,37.801246264],[-122.429022248,37.801257292],[-122.429006164,37.801259369],[-122.428936842,37.80126832],[-122.428878055,37.80127591],[-122.428851436,37.801279347],[-122.428749947,37.801292451],[-122.428595217,37.801312429],[-122.428499706,37.801324762],[-122.428494581,37.801325423],[-122.428404051,37.801337112],[-122.428293023,37.801351447],[-122.428181995,37.801365783],[-122.428045241,37.801382911],[-122.427928246,37.801398018],[-122.427880447,37.801161245],[-122.427762272,37.801176109],[-122.427462811,37.801213773],[-122.427476561,37.801281558],[-122.427490311,37.801349345],[-122.427504061,37.80141713],[-122.427510991,37.801451294],[-122.427425528,37.801462043],[-122.427340066,37.801472792],[-122.427245714,37.801484658],[-122.427170165,37.80149416],[-122.427151363,37.801496524],[-122.427057012,37.80150839],[-122.427041629,37.801510325],[-122.426963003,37.801520213],[-122.426913092,37.80152649],[-122.426827629,37.801537238],[-122.426757891,37.801546009],[-122.426737212,37.801444058],[-122.426651748,37.801454807],[-122.426566286,37.801465555],[-122.426471935,37.80147742],[-122.426379635,37.801489028],[-122.42633183,37.80149504],[-122.426262546,37.801503753],[-122.426228025,37.801332916],[-122.426109964,37.801347763],[-122.425810843,37.80138538],[-122.425824867,37.801454522],[-122.425838616,37.801522307],[-122.425852365,37.801590094],[-122.425759209,37.801601808],[-122.425772957,37.801669594],[-122.425695186,37.801679374],[-122.425609723,37.801690122],[-122.425636105,37.801820199],[-122.425550666,37.801831073],[-122.425486999,37.801839175],[-122.425379791,37.801852819],[-122.425368455,37.801796927],[-122.425374438,37.801796175],[-122.425359314,37.801721611],[-122.425372989,37.801719892],[-122.425297374,37.801347067],[-122.425282404,37.801272769],[-122.425269939,37.801210911],[-122.425346221,37.801201235],[-122.425333693,37.80113906],[-122.42531903,37.801066284],[-122.425303713,37.800990353],[-122.425264464,37.800795779],[-122.42526159,37.800781531]]]]}},"NC-3","No Limit",0.000016831943096093575,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","NC-3",712.1,19573,0.04987235710939095,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":0.0000010942300378693758,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19772,"shape_length":0.004670448621293819,"gen":"Mixed Use","index":49},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.504101141,37.741414013],[-122.50447339,37.741397579],[-122.504594244,37.741392217],[-122.504594248,37.741392271],[-122.504655498,37.741389553],[-122.504715104,37.741386909],[-122.504827389,37.741381951],[-122.504913714,37.74137814],[-122.505000041,37.741374328],[-122.505086367,37.741370517],[-122.50512953,37.741368611],[-122.505172694,37.741366705],[-122.50525902,37.741362894],[-122.505263864,37.741431445],[-122.505269483,37.741510964],[-122.505373075,37.74150639],[-122.50555436,37.741498386],[-122.505559863,37.741498141],[-122.505675214,37.741493],[-122.505678934,37.741545636],[-122.505690988,37.741716205],[-122.505704481,37.741907147],[-122.505709319,37.741975598],[-122.505588465,37.741980984],[-122.50538966,37.741989763],[-122.505394483,37.742058315],[-122.505308156,37.742062126],[-122.505312978,37.742130678],[-122.505226652,37.74213449],[-122.505183488,37.742136396],[-122.505140325,37.742138301],[-122.505053997,37.742142112],[-122.50496767,37.742145924],[-122.504855445,37.742150879],[-122.504769118,37.74215469],[-122.50464826,37.742160052],[-122.504648257,37.74216],[-122.504586887,37.742162723],[-122.504527402,37.742165362],[-122.504413988,37.742170368],[-122.504241334,37.74217799],[-122.504155006,37.742181801],[-122.504141071,37.741983162],[-122.504135769,37.741907591],[-122.504127112,37.741787016],[-122.50412747,37.741786999],[-122.504120379,37.741688222],[-122.504108359,37.741516902],[-122.504101141,37.741414013]]]]}},"NC-1","6:00AM-11:00PM",0.0000010942300378693758,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19772,0.004670448621293819,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000005545932207105318,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19565,"shape_length":0.018341197671801923,"gen":"Mixed Use","index":50},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.470788108,37.742788486],[-122.470792019,37.742788314],[-122.471202488,37.742770275],[-122.471323344,37.742764902],[-122.471329776,37.742856144],[-122.471450633,37.742850772],[-122.471718255,37.742839032],[-122.471754289,37.742837452],[-122.471754276,37.742837315],[-122.472029307,37.742825387],[-122.472063574,37.742823884],[-122.472336257,37.742811921],[-122.472453042,37.742806917],[-122.472453025,37.742806669],[-122.472577981,37.742801316],[-122.472690555,37.742796376],[-122.472949544,37.742785013],[-122.472991267,37.742783183],[-122.473035874,37.742781225],[-122.473122203,37.742777437],[-122.473208533,37.742773649],[-122.473294862,37.742769861],[-122.473405649,37.742764999],[-122.473526508,37.742759656],[-122.473526514,37.742759735],[-122.473647372,37.742754392],[-122.473759716,37.742749461],[-122.473846046,37.742745673],[-122.473932376,37.742741885],[-122.474061869,37.742736201],[-122.474105034,37.742734307],[-122.474191364,37.742730518],[-122.474364023,37.74272294],[-122.474476251,37.742718015],[-122.474597112,37.74271271],[-122.4746591,37.742709988],[-122.474717973,37.742707405],[-122.474838835,37.7427021],[-122.474925164,37.74269831],[-122.475097823,37.742690732],[-122.475102593,37.742759286],[-122.475107365,37.742827841],[-122.475455661,37.742812551],[-122.475459213,37.742812425],[-122.475566151,37.742808641],[-122.475630692,37.742806356],[-122.475644468,37.743051812],[-122.475671293,37.743440716],[-122.475611648,37.743443311],[-122.475500603,37.74344814],[-122.475420434,37.743451659],[-122.475414272,37.743451929],[-122.475327942,37.743455719],[-122.475241613,37.743459509],[-122.475186138,37.743461944],[-122.4751698,37.743462661],[-122.475155282,37.743463298],[-122.474982621,37.743470877],[-122.474896291,37.743474666],[-122.474891561,37.743406111],[-122.474766982,37.743411579],[-122.474757932,37.743411975],[-122.474646118,37.743416883],[-122.474650561,37.743480714],[-122.474529743,37.743486023],[-122.4745297,37.743486027],[-122.474529375,37.743486032],[-122.47411561,37.74350436],[-122.474120355,37.743574934],[-122.473706186,37.743593296],[-122.473585326,37.743598638],[-122.473580335,37.743527447],[-122.473459475,37.74353279],[-122.473369691,37.743536729],[-122.473286813,37.743540366],[-122.473261406,37.743541481],[-122.473203937,37.743544002],[-122.473121059,37.743547639],[-122.473042311,37.743551094],[-122.472940779,37.743555549],[-122.472939626,37.743539097],[-122.472836029,37.743543642],[-122.472728304,37.743548369],[-122.472625146,37.743552895],[-122.472614349,37.743553361],[-122.472504278,37.743558115],[-122.472498843,37.743478754],[-122.472377974,37.743483974],[-122.472274378,37.743488518],[-122.472188047,37.743492306],[-122.472101717,37.743496093],[-122.472015387,37.74349988],[-122.472020081,37.743568438],[-122.471942081,37.74357186],[-122.471938035,37.743505612],[-122.47193796,37.743503277],[-122.471929056,37.743503668],[-122.471842725,37.743507454],[-122.471756395,37.743511241],[-122.471670065,37.743515029],[-122.471583734,37.743518816],[-122.471497992,37.743522577],[-122.471490166,37.743522925],[-122.471377135,37.74352795],[-122.47138389,37.74362378],[-122.471263032,37.743629152],[-122.471153047,37.743633976],[-122.471050527,37.743638473],[-122.470964196,37.743642259],[-122.470877865,37.743646046],[-122.470822745,37.743648463],[-122.470774269,37.743650589],[-122.47071276,37.743653287],[-122.470602833,37.743658109],[-122.470492906,37.743662929],[-122.470382548,37.743667769],[-122.470261685,37.743673083],[-122.470261683,37.743673056],[-122.470188166,37.743676288],[-122.470140822,37.74367837],[-122.470035195,37.743683002],[-122.469931598,37.743687544],[-122.469828001,37.743692088],[-122.469726434,37.743696541],[-122.469638073,37.743700416],[-122.469551742,37.743704201],[-122.469546983,37.743635647],[-122.469542224,37.743567092],[-122.469537465,37.743498537],[-122.469295738,37.743509136],[-122.4692928,37.743509261],[-122.469177153,37.743514218],[-122.469191149,37.743720133],[-122.469068289,37.743725399],[-122.468964691,37.743729941],[-122.468861095,37.743734483],[-122.468705699,37.743741296],[-122.468653901,37.743743566],[-122.468550304,37.743748109],[-122.468236385,37.74376187],[-122.468104451,37.74376861],[-122.468073291,37.743383945],[-122.468280097,37.743374879],[-122.468278021,37.743345025],[-122.468273351,37.743277844],[-122.468272471,37.743265192],[-122.468310126,37.743178036],[-122.468339929,37.743109056],[-122.468365215,37.743050531],[-122.468394199,37.742983446],[-122.468440473,37.742981418],[-122.468797569,37.742965763],[-122.468803708,37.743054209],[-122.468809998,37.743144841],[-122.46902733,37.743135313],[-122.469031465,37.743135124],[-122.469150109,37.743129708],[-122.469130193,37.742854605],[-122.469207026,37.742851097],[-122.469249925,37.742849139],[-122.469666077,37.742830855],[-122.469672768,37.742926831],[-122.469776364,37.74292228],[-122.469879958,37.742917728],[-122.470087148,37.742908623],[-122.470099069,37.742908099],[-122.47020801,37.742903311],[-122.470328871,37.742898],[-122.470564836,37.74288763],[-122.470679941,37.742882572],[-122.470794385,37.742877543],[-122.470788588,37.742795281],[-122.470788108,37.742788486]]]]}},"NC-2","6:00AM-2:00AM",0.000005545932207105318,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19565,0.018341197671801923,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCD","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000039356676827566644,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_714.1","districtname":"BROADWAY NEIGHBORHOOD COMMERCIAL","zoning":"NCD-BROADWAY","codesection":714.1,"objectid":19822,"shape_length":0.012620308152784681,"gen":"Mixed Use","index":51},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.403959513,37.798704779],[-122.40393866,37.798600656],[-122.403830726,37.798614267],[-122.403644082,37.798637446],[-122.4036145,37.798640794],[-122.403594548,37.798643053],[-122.403587105,37.798643895],[-122.403539884,37.798381209],[-122.403519545,37.798268069],[-122.403075018,37.798323274],[-122.403051669,37.798208486],[-122.403017126,37.798038666],[-122.403012206,37.79801448],[-122.402976924,37.79784102],[-122.403007659,37.797837083],[-122.403011945,37.797836534],[-122.403189618,37.797813779],[-122.403387793,37.797788397],[-122.403421132,37.797784257],[-122.403421862,37.797787847],[-122.403430392,37.797829781],[-122.403431085,37.797833186],[-122.403455137,37.797830105],[-122.403461614,37.797829276],[-122.403464399,37.797828919],[-122.403464447,37.79782916],[-122.403669656,37.797803889],[-122.403669669,37.797803969],[-122.403670379,37.797803878],[-122.403776103,37.797790337],[-122.403765781,37.797739593],[-122.403872625,37.797725908],[-122.404342433,37.797665732],[-122.404428193,37.797654747],[-122.404527281,37.797642056],[-122.40455769,37.79763816],[-122.404595957,37.797633253],[-122.404605523,37.797632027],[-122.4048123,37.797605852],[-122.404815323,37.797620714],[-122.405077573,37.797587094],[-122.405278605,37.797561321],[-122.405409101,37.797544591],[-122.40531833,37.797089846],[-122.405512936,37.79706459],[-122.405815487,37.797028573],[-122.406174914,37.796985786],[-122.406186995,37.797049689],[-122.406209744,37.797162416],[-122.406241722,37.797320871],[-122.406311837,37.79731226],[-122.406346794,37.797307966],[-122.40644865,37.797295457],[-122.406468552,37.797394073],[-122.406520856,37.797387517],[-122.406531802,37.797441752],[-122.406542747,37.797495989],[-122.406547255,37.797518679],[-122.406699877,37.797499588],[-122.406704721,37.797523969],[-122.406715667,37.797578206],[-122.406748503,37.797740912],[-122.40676998,37.797852213],[-122.407016163,37.797822302],[-122.407104567,37.797811561],[-122.407563203,37.797755834],[-122.40758518,37.79786972],[-122.40765595,37.798223847],[-122.407659714,37.79824268],[-122.407463008,37.798267134],[-122.407281624,37.798289682],[-122.407117372,37.7983101],[-122.407039107,37.798319829],[-122.407038457,37.798316501],[-122.406826145,37.798343439],[-122.406706523,37.798358618],[-122.406638167,37.79836729],[-122.406569813,37.798375963],[-122.40637329,37.798400898],[-122.406334028,37.798406121],[-122.406333931,37.798405661],[-122.40629639,37.798410654],[-122.406099868,37.798435589],[-122.406095237,37.798413906],[-122.40607355,37.798312382],[-122.405892921,37.7983353],[-122.405876146,37.798256773],[-122.405840259,37.798261326],[-122.405583926,37.798293848],[-122.405551505,37.798298388],[-122.405508007,37.798304479],[-122.405517817,37.798348585],[-122.405521377,37.798364594],[-122.405437311,37.798375236],[-122.404971776,37.798434168],[-122.404966715,37.798410474],[-122.404955437,37.798357671],[-122.404876823,37.798367622],[-122.404877981,37.798373039],[-122.404799366,37.79838299],[-122.404720753,37.798392941],[-122.404735935,37.798464021],[-122.404765577,37.798602798],[-122.404608349,37.798622701],[-122.404531444,37.798632436],[-122.404446474,37.798643191],[-122.404445994,37.798643251],[-122.404208443,37.798673321],[-122.404065197,37.798691453],[-122.403959513,37.798704779]]]]}},"NCD","6:00AM-2:00AM",0.0000039356676827566644,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_714.1","BROADWAY NEIGHBORHOOD COMMERCIAL","NCD-BROADWAY",714.1,19822,0.012620308152784681,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":6.71980834853016e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19771,"shape_length":0.003686955291967268,"gen":"Mixed Use","index":52},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.498162958,37.741675995],[-122.498224624,37.741673279],[-122.498283816,37.741670666],[-122.498657166,37.741654202],[-122.498700329,37.741652299],[-122.498743493,37.741650396],[-122.498829819,37.741646589],[-122.498834311,37.741710701],[-122.498838949,37.741776906],[-122.498849029,37.7419208],[-122.498856538,37.742025509],[-122.49926207,37.742007167],[-122.499279741,37.742259391],[-122.499289345,37.742396479],[-122.499168488,37.742401818],[-122.498883605,37.742414381],[-122.498754114,37.742420091],[-122.498538294,37.742429608],[-122.498337546,37.74243846],[-122.498216687,37.742443789],[-122.498189527,37.742055675],[-122.498162958,37.741675995]]]]}},"NC-1","6:00AM-11:00PM",6.71980834853016e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19771,0.003686955291967268,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCT","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000012562816348316513,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_753","districtname":"SOMA NEIGHBORHOOD COMMERCIAL TRANSIT","zoning":"NCT-SOMA","codesection":753,"objectid":20551,"shape_length":0.007705692842547237,"gen":"Mixed Use","index":53},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.408951781,37.781628271],[-122.408904002,37.781589867],[-122.408708069,37.781434662],[-122.408511462,37.781278923],[-122.408415709,37.781202543],[-122.408422079,37.781197513],[-122.408422277,37.781197356],[-122.408316677,37.781113122],[-122.408123521,37.780958468],[-122.408000259,37.781054828],[-122.407805377,37.780898791],[-122.407753278,37.780857236],[-122.407785461,37.780831819],[-122.407796518,37.780823086],[-122.407813075,37.780810008],[-122.407767839,37.780773944],[-122.407581849,37.780625662],[-122.407643039,37.78057713],[-122.407582007,37.780528472],[-122.407520976,37.780479815],[-122.40744774,37.780421425],[-122.407405955,37.780388204],[-122.407406013,37.780388158],[-122.407362296,37.780353304],[-122.407181169,37.780208898],[-122.407171404,37.780201113],[-122.407110102,37.780249556],[-122.406912363,37.780091904],[-122.406813163,37.780012813],[-122.407159488,37.779738905],[-122.407691415,37.780162025],[-122.408160793,37.780535385],[-122.408708674,37.780971182],[-122.409245443,37.781398133],[-122.409693261,37.781754327],[-122.409551462,37.781868169],[-122.409548451,37.781870587],[-122.409448077,37.781951171],[-122.409403056,37.781987315],[-122.409358832,37.781952617],[-122.409294882,37.781901834],[-122.40926139,37.781875236],[-122.409239601,37.781857933],[-122.40918432,37.781814032],[-122.409191673,37.781808218],[-122.409069369,37.781711093],[-122.409008216,37.781662529],[-122.408958775,37.781622789],[-122.408958472,37.781623026],[-122.408951781,37.781628271]]]]}},"NCT","6:00AM-2:00AM",0.0000012562816348316513,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_753","SOMA NEIGHBORHOOD COMMERCIAL TRANSIT","NCT-SOMA",753,20551,0.007705692842547237,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCT-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000024362339038473785,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_751","districtname":"NEIGHBORHOOD COMMERCIAL TRANSIT-2","zoning":"NCT-2","codesection":751,"objectid":19851,"shape_length":0.008456209625370277,"gen":"Mixed Use","index":54},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.388081267,37.756147773],[-122.388091428,37.756151504],[-122.388151348,37.7561735],[-122.388193532,37.756188986],[-122.388201165,37.756191788],[-122.388248527,37.756209175],[-122.388625604,37.756347602],[-122.388592438,37.756410946],[-122.38863823,37.756428036],[-122.388986303,37.756557946],[-122.389071034,37.756589569],[-122.389130027,37.756611587],[-122.389164874,37.756986627],[-122.389196592,37.757327998],[-122.389234735,37.75773849],[-122.389285793,37.757735498],[-122.389372725,37.757730407],[-122.389717568,37.757708759],[-122.389711205,37.757640284],[-122.389704842,37.75757181],[-122.389698547,37.757504063],[-122.389775664,37.757499429],[-122.39003436,37.757483882],[-122.390173754,37.75747479],[-122.390200123,37.757729592],[-122.390210086,37.75782586],[-122.390242084,37.7581664],[-122.390104043,37.758174576],[-122.390017812,37.758179777],[-122.389931582,37.758184977],[-122.38984535,37.758190178],[-122.38975912,37.758195379],[-122.389672888,37.758200579],[-122.389586658,37.758205779],[-122.389500427,37.75821098],[-122.389417842,37.75821596],[-122.389279917,37.758224055],[-122.389282446,37.758251201],[-122.389144384,37.758259303],[-122.388971911,37.758269579],[-122.388799436,37.758279855],[-122.388805481,37.758344901],[-122.38880582,37.758348555],[-122.38880119,37.758348831],[-122.388528971,37.758365049],[-122.388428791,37.75837101],[-122.388356654,37.758375303],[-122.38831553,37.757939704],[-122.388301946,37.757841779],[-122.388287348,37.757736545],[-122.388127166,37.756581794],[-122.388094518,37.75627307],[-122.388086083,37.756193315],[-122.388081267,37.756147773]]]]}},"NCT-2","6:00AM-2:00AM",0.0000024362339038473785,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_751","NEIGHBORHOOD COMMERCIAL TRANSIT-2","NCT-2",751,19851,0.008456209625370277,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":6.896129450740903e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19660,"shape_length":0.004351999351483827,"gen":"Mixed Use","index":55},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.429925468,37.771694436],[-122.429938221,37.771692812],[-122.429924584,37.771625012],[-122.429910947,37.771557213],[-122.430002899,37.771545506],[-122.430088302,37.771534633],[-122.430040572,37.771297334],[-122.430037857,37.771283893],[-122.430021739,37.77120412],[-122.429865729,37.771223982],[-122.429846895,37.771130767],[-122.429834082,37.771067065],[-122.429831442,37.771053939],[-122.429820991,37.771001977],[-122.429806263,37.770928754],[-122.429794807,37.770871802],[-122.429787714,37.770836541],[-122.429781716,37.770806714],[-122.429772174,37.770759253],[-122.430041648,37.770725116],[-122.430167376,37.770709188],[-122.430547114,37.77066108],[-122.430562037,37.770659189],[-122.430571579,37.77070665],[-122.43057487,37.770724204],[-122.430577887,37.770740061],[-122.430584417,37.770772465],[-122.430597394,37.770836872],[-122.430610507,37.770901957],[-122.43061217,37.770910206],[-122.430623621,37.770967041],[-122.430555292,37.770975698],[-122.430568037,37.771038955],[-122.430572696,37.771062016],[-122.430578896,37.771092695],[-122.430586872,37.77113217],[-122.430500812,37.771143127],[-122.430484455,37.77114521],[-122.430503289,37.771238423],[-122.430542632,37.771433677],[-122.430628035,37.771422804],[-122.430640845,37.771421173],[-122.430653959,37.771486258],[-122.430659368,37.771513105],[-122.430667073,37.771551343],[-122.430676662,37.771598797],[-122.430480277,37.771623801],[-122.430354562,37.771639806],[-122.430378473,37.771780952],[-122.430306013,37.771788686],[-122.430264953,37.771793068],[-122.430095578,37.771814632],[-122.429953361,37.771832738],[-122.42993914,37.771762231],[-122.429925468,37.771694436]]]]}},"NC-1","6:00AM-11:00PM",6.896129450740903e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19660,0.004351999351483827,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":4.487855267207579e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19744,"shape_length":0.0033326784015947947,"gen":"Mixed Use","index":56},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.427235839,37.749666285],[-122.427216987,37.749471154],[-122.427103649,37.749478058],[-122.427078385,37.749479597],[-122.426727179,37.749500799],[-122.426719026,37.749414875],[-122.426710376,37.749325653],[-122.426716953,37.749325251],[-122.426713907,37.749293834],[-122.426708612,37.74923923],[-122.426694378,37.749098245],[-122.426687469,37.749029805],[-122.42703235,37.749008985],[-122.427171517,37.749000508],[-122.427168027,37.748964384],[-122.427284853,37.748957331],[-122.427313223,37.748955618],[-122.427606026,37.748937941],[-122.427612587,37.749006402],[-122.427619147,37.749074862],[-122.42749844,37.74908215],[-122.427508675,37.749188949],[-122.427509414,37.749196458],[-122.427517243,37.749276047],[-122.427438791,37.749280913],[-122.427439486,37.749287976],[-122.427447448,37.749368919],[-122.427474723,37.749653529],[-122.427477554,37.74968307],[-122.427384385,37.749688695],[-122.42723886,37.749697559],[-122.427235839,37.749666285]]]]}},"NC-1","6:00AM-11:00PM",4.487855267207579e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19744,0.0033326784015947947,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCD","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000002346783130156434,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=altmain-nf.htm$q=[field%20folio-destination-name:%27720%27]$x=Advanced#JD_720","districtname":"EXCELSIOR OUTER MISSION STREET NEIGHBORHOOD COMMERCIAL DISTRICT","zoning":"NCD-EXCELSIOR","codesection":720,"objectid":19807,"shape_length":0.008936706443346805,"gen":"Mixed Use","index":57},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.436023426,37.714621808],[-122.435917375,37.71457424],[-122.435959849,37.714514444],[-122.435855058,37.714467441],[-122.435673159,37.71438585],[-122.435552744,37.714331839],[-122.435510381,37.714391685],[-122.435359861,37.714324169],[-122.435284601,37.714290411],[-122.435207822,37.714255972],[-122.43517485,37.714241182],[-122.435101452,37.71420826],[-122.435171432,37.714109902],[-122.435202869,37.714065716],[-122.435236174,37.714018904],[-122.435360865,37.713843647],[-122.435310883,37.713821228],[-122.435325761,37.713800177],[-122.435394663,37.713702689],[-122.435565373,37.713461156],[-122.435639401,37.713494343],[-122.435640643,37.713494899],[-122.435714673,37.713528087],[-122.435715912,37.713528643],[-122.435789945,37.713561831],[-122.435865217,37.713595576],[-122.435866452,37.713596129],[-122.435940489,37.71362932],[-122.435941721,37.713629872],[-122.436015761,37.713663064],[-122.436183247,37.7134228],[-122.436225087,37.713362779],[-122.436181171,37.71334309],[-122.435804227,37.713174087],[-122.435846723,37.713114263],[-122.435911196,37.713023501],[-122.436011879,37.712995478],[-122.436027416,37.712991154],[-122.436141614,37.712959369],[-122.436173096,37.71303307],[-122.43625222,37.713218299],[-122.436367613,37.713189312],[-122.436557493,37.713141613],[-122.436739474,37.713220179],[-122.436845501,37.713265953],[-122.436879999,37.713217868],[-122.436890354,37.713203435],[-122.436919514,37.71316279],[-122.436955177,37.713113082],[-122.437060334,37.713160474],[-122.437176852,37.713212986],[-122.437339616,37.71328634],[-122.437298239,37.713344283],[-122.437296971,37.713346058],[-122.437254326,37.713405777],[-122.437284395,37.713419329],[-122.437241749,37.713479047],[-122.437238391,37.713483749],[-122.43720742,37.713527119],[-122.437201616,37.713535247],[-122.437160674,37.71359258],[-122.436907462,37.713659604],[-122.436690348,37.713967338],[-122.436765619,37.714001081],[-122.436840889,37.714034824],[-122.436916161,37.714068566],[-122.436991432,37.714102309],[-122.437029067,37.71411918],[-122.437066702,37.714136051],[-122.437141973,37.714169794],[-122.437217244,37.714203537],[-122.437219053,37.714204348],[-122.437292515,37.71423728],[-122.437367786,37.714271022],[-122.437226027,37.714471951],[-122.437198063,37.714511588],[-122.437167264,37.714555241],[-122.437143022,37.714589603],[-122.437114396,37.714630177],[-122.436991903,37.714575236],[-122.4368676,37.71474965],[-122.436831356,37.714800505],[-122.436800744,37.714843458],[-122.436767927,37.714889503],[-122.436732154,37.714939699],[-122.436625467,37.714891846],[-122.43655163,37.714858727],[-122.436476369,37.71482497],[-122.436401108,37.714791213],[-122.436325846,37.714757456],[-122.436250586,37.714723698],[-122.436175325,37.714689941],[-122.436100065,37.714656184],[-122.436023426,37.714621808]]]]}},"NCD","6:00AM-2:00AM",0.000002346783130156434,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=altmain-nf.htm$q=[field%20folio-destination-name:%27720%27]$x=Advanced#JD_720","EXCELSIOR OUTER MISSION STREET NEIGHBORHOOD COMMERCIAL DISTRICT","NCD-EXCELSIOR",720,19807,0.008936706443346805,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000035197280397698366,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19550,"shape_length":0.010638911418418225,"gen":"Mixed Use","index":58},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.440013116,37.788621432],[-122.440009063,37.788601416],[-122.440002822,37.78857059],[-122.439992529,37.788519749],[-122.440095038,37.788506712],[-122.440180464,37.788495847],[-122.440125566,37.788224692],[-122.440121169,37.788202975],[-122.44010234,37.788109973],[-122.440119747,37.788107767],[-122.440096309,37.787991997],[-122.440036031,37.787694249],[-122.439942068,37.787706214],[-122.439848105,37.78771818],[-122.439833009,37.787643612],[-122.439858636,37.787640349],[-122.43984975,37.787596457],[-122.439840864,37.787552565],[-122.439839284,37.787544762],[-122.439828444,37.787491215],[-122.43981335,37.787416648],[-122.439798254,37.787342079],[-122.439786395,37.787283497],[-122.439786025,37.787281673],[-122.439783158,37.787267511],[-122.439769368,37.787199389],[-122.43976429,37.787174301],[-122.439917848,37.787154747],[-122.439934228,37.787152661],[-122.439915358,37.787059452],[-122.439868534,37.786828164],[-122.439793364,37.786837726],[-122.439718192,37.786847289],[-122.43964302,37.786856851],[-122.439567849,37.786866413],[-122.439552479,37.786790489],[-122.439537932,37.786718634],[-122.439524298,37.786651284],[-122.439463553,37.78635122],[-122.439446813,37.786268526],[-122.439444684,37.78625801],[-122.439900738,37.786199996],[-122.440061199,37.786179582],[-122.440540693,37.786118584],[-122.440559563,37.786211794],[-122.440573287,37.786279583],[-122.44058701,37.786347371],[-122.440614458,37.786482949],[-122.440619508,37.786507896],[-122.440635044,37.786584633],[-122.44065563,37.786686316],[-122.440669353,37.786754105],[-122.440710667,37.786958173],[-122.440729537,37.787051382],[-122.440678286,37.787057909],[-122.440697156,37.787151119],[-122.440742445,37.787374823],[-122.440827865,37.787363944],[-122.440839291,37.787420379],[-122.440858059,37.787513079],[-122.440952021,37.787501113],[-122.441045984,37.787489148],[-122.441054526,37.78748806],[-122.441139947,37.787477182],[-122.441233909,37.787465215],[-122.441302245,37.787456512],[-122.441327872,37.787453249],[-122.441370582,37.78744781],[-122.441421834,37.787441282],[-122.441443189,37.787438562],[-122.441450275,37.78743766],[-122.441515796,37.787429315],[-122.441530894,37.787503883],[-122.441633398,37.787490828],[-122.441693734,37.78778883],[-122.441717313,37.787905286],[-122.441802744,37.787894458],[-122.441825822,37.788008446],[-122.441879234,37.788272247],[-122.441883468,37.788293159],[-122.441695536,37.788317062],[-122.441709903,37.788388028],[-122.441710684,37.788391885],[-122.441574006,37.78840927],[-122.441555212,37.78841166],[-122.441476621,37.788421655],[-122.441437326,37.788426653],[-122.441398031,37.788431652],[-122.441334818,37.788439691],[-122.441319441,37.788441647],[-122.44124085,37.788451643],[-122.441240389,37.788451701],[-122.441155426,37.788462508],[-122.441146884,37.788463594],[-122.441052916,37.788475545],[-122.441082013,37.788619257],[-122.441097024,37.788693402],[-122.441111115,37.788763],[-122.441126109,37.788837058],[-122.441134513,37.788878571],[-122.441140696,37.788909107],[-122.44114462,37.788928487],[-122.440785459,37.788974517],[-122.440623619,37.788995259],[-122.440209395,37.789048343],[-122.440102324,37.789062065],[-122.440085475,37.788978848],[-122.440083631,37.788969739],[-122.440069487,37.788899876],[-122.440055763,37.788832088],[-122.440040563,37.78875701],[-122.440013116,37.788621432]]]]}},"NC-2","6:00AM-2:00AM",0.0000035197280397698366,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19550,0.010638911418418225,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.7709927762053643e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19661,"shape_length":0.0021186468408041304,"gen":"Mixed Use","index":59},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.453726227,37.770098079],[-122.453816569,37.770588042],[-122.453831167,37.770667213],[-122.453746939,37.770677],[-122.45369929,37.770682535],[-122.453357659,37.770725919],[-122.453341106,37.770644199],[-122.453337656,37.770627171],[-122.453302733,37.770454767],[-122.453275271,37.770319192],[-122.453262134,37.770254339],[-122.453248358,37.770186115],[-122.453243404,37.770161581],[-122.453568495,37.770120217],[-122.453593183,37.770117077],[-122.453726227,37.770098079]]]]}},"NC-1","6:00AM-11:00PM",2.7709927762053643e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19661,0.0021186468408041304,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"RCD","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000013384648436660235,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_758","districtname":"REGIONAL COMMERCIAL","zoning":"RCD","codesection":758,"objectid":19805,"shape_length":0.005073832186861451,"gen":"Commercial","index":60},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.410667505,37.773650006],[-122.410625318,37.773616183],[-122.410604032,37.773599257],[-122.41059419,37.773591431],[-122.410437794,37.773467069],[-122.410458524,37.773450675],[-122.410446265,37.773440986],[-122.409882395,37.772995322],[-122.409828962,37.772953089],[-122.409825484,37.77295034],[-122.409683041,37.772837756],[-122.409823148,37.772726999],[-122.409865228,37.772693734],[-122.409874453,37.772686442],[-122.410076848,37.772526443],[-122.410270491,37.772373762],[-122.410279097,37.772366977],[-122.410315423,37.772338335],[-122.410324306,37.772331332],[-122.410420666,37.772255356],[-122.410421821,37.772254444],[-122.410522597,37.772334977],[-122.410730031,37.772500453],[-122.410727578,37.772502389],[-122.410996043,37.772716549],[-122.411038749,37.772750618],[-122.411081457,37.772784686],[-122.411227882,37.772901492],[-122.411327507,37.772980963],[-122.411388518,37.773029632],[-122.411432459,37.773064683],[-122.411477595,37.773100688],[-122.411532936,37.773144835],[-122.411428104,37.773227622],[-122.411287643,37.773338545],[-122.41118096,37.773421467],[-122.411292095,37.773511554],[-122.411296047,37.773514758],[-122.411292253,37.773517706],[-122.411199758,37.773589601],[-122.411078505,37.773684992],[-122.411017069,37.773733324],[-122.41086487,37.7736123],[-122.410843584,37.773595375],[-122.410833742,37.773587548],[-122.410790794,37.773553116],[-122.410745155,37.773588984],[-122.410734779,37.773597138],[-122.410712339,37.773614773],[-122.410667505,37.773650006]]]]}},"RCD","6:00AM-2:00AM",0.0000013384648436660235,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_758","REGIONAL COMMERCIAL","RCD",758,19805,0.005073832186861451,"Commercial"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":0.0000025242022383831013,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19766,"shape_length":0.009961923564764856,"gen":"Mixed Use","index":61},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.451470829,37.745040366],[-122.451637885,37.744936569],[-122.45179369,37.744839763],[-122.45179548,37.744838651],[-122.451890822,37.744779412],[-122.451791193,37.744675469],[-122.451789323,37.744673517],[-122.451626514,37.744503657],[-122.451625704,37.744502813],[-122.451626479,37.744502346],[-122.451782363,37.744408573],[-122.451784154,37.744407495],[-122.451836466,37.744376026],[-122.45188862,37.744344652],[-122.451917273,37.744374688],[-122.451951283,37.744410337],[-122.45216072,37.744628891],[-122.452229643,37.744587435],[-122.452298564,37.744545978],[-122.452367488,37.744504521],[-122.45243641,37.744463063],[-122.452505333,37.744421607],[-122.452546686,37.744396732],[-122.452574255,37.74438015],[-122.452643177,37.744338692],[-122.452712099,37.744297235],[-122.452725884,37.744288944],[-122.452794805,37.744247487],[-122.452863727,37.744206029],[-122.452946862,37.744156022],[-122.452943319,37.744152319],[-122.453019936,37.744096928],[-122.45309973,37.74403924],[-122.453164151,37.743992664],[-122.453227325,37.743946993],[-122.453229348,37.74394553],[-122.453292004,37.743900232],[-122.453292465,37.743899899],[-122.453358449,37.743852193],[-122.453358708,37.743852007],[-122.453436521,37.74379575],[-122.453438804,37.7437941],[-122.453514852,37.743739119],[-122.453354442,37.743566323],[-122.453321646,37.743530995],[-122.453292568,37.74349967],[-122.453444917,37.743407921],[-122.453600988,37.743526362],[-122.453637944,37.743554407],[-122.453661975,37.743572644],[-122.453681166,37.743587208],[-122.453738231,37.743630514],[-122.453808239,37.743570804],[-122.453808938,37.743570208],[-122.453859123,37.743527404],[-122.454004127,37.743403727],[-122.454015913,37.743393675],[-122.45402932,37.743403309],[-122.454379284,37.743654789],[-122.454380211,37.743655455],[-122.454467446,37.743718142],[-122.454513992,37.743751588],[-122.454204901,37.74398466],[-122.453906682,37.744232948],[-122.453827112,37.74428856],[-122.453810348,37.744300276],[-122.453752223,37.7443409],[-122.453701845,37.744373672],[-122.45336484,37.744592895],[-122.453143931,37.7447261],[-122.453083987,37.744762245],[-122.452985587,37.744821578],[-122.452992549,37.744905178],[-122.452994793,37.744932129],[-122.453000924,37.745005755],[-122.453022613,37.745266214],[-122.452736187,37.745266355],[-122.452736204,37.74526651],[-122.452764743,37.745540912],[-122.452770135,37.745592749],[-122.452772066,37.745611316],[-122.452776017,37.745649302],[-122.452596432,37.745650791],[-122.452172832,37.745646411],[-122.451877778,37.745617101],[-122.451623987,37.745534237],[-122.451820495,37.745449618],[-122.451790256,37.745414227],[-122.451645996,37.745245383],[-122.451470829,37.745040366]]]]}},"NC-1","6:00AM-11:00PM",0.0000025242022383831013,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19766,0.009961923564764856,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"RCD","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000028585284958904353,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_758","districtname":"REGIONAL COMMERCIAL","zoning":"RCD","codesection":758,"objectid":19803,"shape_length":0.00922203261422831,"gen":"Commercial","index":62},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.414078678,37.776232444],[-122.41389543,37.776087132],[-122.413852784,37.776053013],[-122.41382136,37.776027873],[-122.413810498,37.776019183],[-122.413810139,37.776018895],[-122.413809758,37.776019195],[-122.413683279,37.775918898],[-122.413621554,37.775869951],[-122.413596945,37.775889257],[-122.413413362,37.775743676],[-122.413383948,37.775720055],[-122.413370797,37.775709493],[-122.413370253,37.77570992],[-122.413327689,37.775675738],[-122.413135467,37.775523305],[-122.413089598,37.775486931],[-122.412913634,37.77534739],[-122.41281288,37.775267115],[-122.412862104,37.775228191],[-122.412761395,37.77514795],[-122.412675209,37.775078822],[-122.412553521,37.774981219],[-122.412492678,37.774932417],[-122.412431834,37.774883616],[-122.412385998,37.77484685],[-122.41237099,37.774834813],[-122.412328307,37.774800725],[-122.412328492,37.774800579],[-122.41228581,37.774766491],[-122.412212796,37.774707929],[-122.412097104,37.774615132],[-122.412109382,37.774605459],[-122.412078917,37.774581023],[-122.412048538,37.774556656],[-122.411926852,37.774459053],[-122.41189948,37.774437166],[-122.411884195,37.774424943],[-122.411868036,37.774437676],[-122.411846837,37.77445438],[-122.4118391,37.774460476],[-122.411822941,37.774473208],[-122.411807657,37.774460986],[-122.411780285,37.774439099],[-122.411594477,37.774290063],[-122.411655816,37.774241654],[-122.411717156,37.774193246],[-122.411837667,37.77409814],[-122.411934585,37.774018672],[-122.411961669,37.774039485],[-122.41206284,37.77395653],[-122.412262955,37.773798496],[-122.412308445,37.773762572],[-122.412371897,37.773813187],[-122.412430469,37.773859909],[-122.412491482,37.773908577],[-122.412527215,37.77393708],[-122.412552494,37.773957246],[-122.412613507,37.774005914],[-122.412615068,37.774007159],[-122.412674519,37.774054582],[-122.412737972,37.774105196],[-122.412814898,37.774166557],[-122.412817288,37.774168464],[-122.412859997,37.774202532],[-122.413070002,37.774036685],[-122.413119053,37.773997942],[-122.413377501,37.774204097],[-122.413407549,37.774228066],[-122.413424121,37.774241285],[-122.413408214,37.774253844],[-122.413375067,37.774280025],[-122.41331776,37.774325282],[-122.413173941,37.77443886],[-122.413417995,37.77463353],[-122.413517531,37.774714007],[-122.413586546,37.774660226],[-122.413728012,37.774773067],[-122.413731934,37.774776195],[-122.414104071,37.775073028],[-122.41411392,37.775080883],[-122.414154717,37.775113424],[-122.414199429,37.775149088],[-122.414429592,37.775332674],[-122.414742372,37.775582155],[-122.41478317,37.775614696],[-122.414784311,37.775615607],[-122.414827882,37.77565036],[-122.414829024,37.775651271],[-122.414827928,37.775652137],[-122.414786104,37.775685172],[-122.41450776,37.775905511],[-122.414405356,37.775986233],[-122.414349919,37.775941925],[-122.414249708,37.776020918],[-122.414079645,37.77615484],[-122.414140841,37.776203367],[-122.414091253,37.776242415],[-122.414078678,37.776232444]]]]}},"RCD","6:00AM-2:00AM",0.0000028585284958904353,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_758","REGIONAL COMMERCIAL","RCD",758,19803,0.00922203261422831,"Commercial"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":0.0000013951117608273253,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19681,"shape_length":0.0083550642102559,"gen":"Mixed Use","index":63},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.470110426,37.730308468],[-122.469949026,37.730238828],[-122.469876868,37.730207694],[-122.469643451,37.730106981],[-122.469341914,37.729976875],[-122.469170435,37.729920412],[-122.468904297,37.729832779],[-122.468807079,37.729755148],[-122.468610984,37.729598561],[-122.46853124,37.729523976],[-122.468430742,37.729429981],[-122.468404785,37.729405703],[-122.468207609,37.729221282],[-122.468302709,37.72917741],[-122.468481547,37.729094907],[-122.468521138,37.729142604],[-122.468739672,37.729405885],[-122.468843605,37.729311736],[-122.468880112,37.729278664],[-122.468882441,37.729278323],[-122.468960672,37.729343508],[-122.469040258,37.72940982],[-122.469104725,37.729463536],[-122.469139738,37.72949271],[-122.469237161,37.729573885],[-122.469268375,37.729599894],[-122.469347243,37.729631952],[-122.469440559,37.729669884],[-122.469471388,37.729682416],[-122.469494277,37.729691719],[-122.469593793,37.729732171],[-122.469617923,37.72974198],[-122.46972257,37.729784518],[-122.46972353,37.729784932],[-122.46983977,37.729835119],[-122.469962238,37.729887994],[-122.469985093,37.729897862],[-122.470082342,37.729939849],[-122.470170513,37.729977917],[-122.470204796,37.729989103],[-122.47023291,37.729998275],[-122.47033411,37.730031293],[-122.470463048,37.73007336],[-122.470508554,37.730088207],[-122.470591669,37.730115324],[-122.470719916,37.730157166],[-122.470735675,37.730162308],[-122.470736493,37.730162574],[-122.470919026,37.730167392],[-122.471092727,37.730171976],[-122.471183651,37.730174377],[-122.471259209,37.73017637],[-122.471449412,37.73018139],[-122.471538104,37.73018373],[-122.471553096,37.730184126],[-122.471587658,37.730185038],[-122.471554341,37.73079579],[-122.471547291,37.730925021],[-122.471260736,37.730802064],[-122.471257684,37.730800754],[-122.470396776,37.730431341],[-122.470110426,37.730308468]]]]}},"NC-1","6:00AM-11:00PM",0.0000013951117608273253,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19681,0.0083550642102559,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCD","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000066231014187774085,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_732","districtname":"IRVING STREET NEIGHBORHOOD COMMERCIAL DISTRICT","zoning":"NCD-IRVING","codesection":732,"objectid":19799,"shape_length":0.020652774779968228,"gen":"Mixed Use","index":64},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.477201586,37.763945894],[-122.477174111,37.763559498],[-122.477152879,37.763317548],[-122.47721985,37.763313845],[-122.477329979,37.763307754],[-122.477433617,37.763303195],[-122.477571641,37.763297121],[-122.47756684,37.763228568],[-122.477562042,37.763160015],[-122.477631124,37.763156976],[-122.477691571,37.763154316],[-122.477779649,37.76315044],[-122.478045616,37.763138736],[-122.478164441,37.763133552],[-122.478159689,37.763064903],[-122.478241012,37.763061356],[-122.478282602,37.763059542],[-122.478701194,37.763041119],[-122.478705995,37.763109672],[-122.478723265,37.763108911],[-122.478809617,37.76310511],[-122.478937418,37.763099486],[-122.479118927,37.763091496],[-122.47913081,37.763090971],[-122.479239819,37.76308616],[-122.479254224,37.763291847],[-122.479296695,37.763289968],[-122.479375116,37.763286511],[-122.479703256,37.763272067],[-122.479698454,37.763203515],[-122.479693653,37.763134961],[-122.479688852,37.763066409],[-122.479775205,37.763062608],[-122.479774378,37.763050816],[-122.480188503,37.763032585],[-122.480309396,37.763027248],[-122.480310224,37.763039067],[-122.480431115,37.763033731],[-122.48063836,37.763024606],[-122.480845606,37.763015481],[-122.480967638,37.763010107],[-122.481261236,37.762997179],[-122.481382127,37.762991841],[-122.481382129,37.762991869],[-122.481503021,37.762986531],[-122.481704209,37.762977672],[-122.481876914,37.762970066],[-122.481920436,37.76296815],[-122.481963265,37.762966263],[-122.482135969,37.762958657],[-122.482334925,37.762949895],[-122.482455815,37.762944556],[-122.482455632,37.762941926],[-122.482576524,37.762936587],[-122.482689039,37.762931631],[-122.48277539,37.762927827],[-122.482861743,37.762924023],[-122.48299127,37.762918319],[-122.483034447,37.762916416],[-122.483120798,37.762912613],[-122.483211468,37.762908618],[-122.483302137,37.762904624],[-122.483405759,37.762900059],[-122.48352665,37.762894719],[-122.483526652,37.762894748],[-122.483647545,37.762889408],[-122.48406436,37.762871044],[-122.48428024,37.762861533],[-122.484478848,37.762852781],[-122.48459974,37.76284744],[-122.484599742,37.762847468],[-122.484720633,37.762842127],[-122.484834362,37.762837116],[-122.484920714,37.76283331],[-122.485007066,37.762829505],[-122.485093417,37.7628257],[-122.485136593,37.762823798],[-122.485179769,37.762821895],[-122.48526612,37.762818089],[-122.485352472,37.762814284],[-122.485438825,37.762810478],[-122.485551082,37.762805531],[-122.485671973,37.762800189],[-122.485698891,37.763184096],[-122.485718117,37.763458292],[-122.485597224,37.763463635],[-122.485312262,37.763476194],[-122.485318029,37.763558456],[-122.485188501,37.763564165],[-122.484772536,37.763582494],[-122.484651644,37.763587835],[-122.484643952,37.763478123],[-122.48452306,37.763483465],[-122.484192594,37.763498024],[-122.484197399,37.763566578],[-122.484202205,37.76363513],[-122.484118179,37.763638832],[-122.484029499,37.763642739],[-122.483701359,37.763657196],[-122.483580465,37.763662537],[-122.483580463,37.763662508],[-122.483459572,37.763667848],[-122.483087997,37.763684216],[-122.483045078,37.763686107],[-122.483001645,37.76368802],[-122.482915291,37.763691824],[-122.482828939,37.763695628],[-122.482630327,37.763704376],[-122.482509433,37.763709715],[-122.482504814,37.763643791],[-122.482383921,37.76364913],[-122.482184965,37.763657894],[-122.482189769,37.763726446],[-122.482079237,37.763731313],[-122.481974232,37.763735939],[-122.481968705,37.763736182],[-122.481858174,37.76374105],[-122.481758003,37.763745461],[-122.481671651,37.763749265],[-122.481556813,37.763754322],[-122.48143592,37.76375966],[-122.481431123,37.763691192],[-122.481310231,37.76369653],[-122.480982094,37.763711048],[-122.480986884,37.763779418],[-122.48090053,37.763783221],[-122.480900053,37.763776387],[-122.480484425,37.763794774],[-122.480363532,37.763800111],[-122.480364002,37.763806829],[-122.480299567,37.763809673],[-122.480243109,37.763812166],[-122.480087674,37.763819009],[-122.479914966,37.763826612],[-122.479828614,37.763830414],[-122.479742261,37.763834216],[-122.47973746,37.763765662],[-122.479409683,37.763780091],[-122.479400771,37.763780484],[-122.479309871,37.763784496],[-122.47928879,37.763785427],[-122.479288827,37.763785956],[-122.479167934,37.763791292],[-122.478824084,37.763806498],[-122.47882884,37.763874422],[-122.478759758,37.763877463],[-122.478764604,37.763946659],[-122.478769404,37.764015211],[-122.478774203,37.764083764],[-122.478779004,37.764152317],[-122.478783804,37.764220869],[-122.478768923,37.764221528],[-122.478365213,37.76423938],[-122.478242741,37.764244868],[-122.478247606,37.764313274],[-122.478151991,37.764317559],[-122.478128225,37.764318623],[-122.477713733,37.76433695],[-122.477708934,37.764268397],[-122.477704134,37.764199844],[-122.477699336,37.764131291],[-122.477694535,37.764062739],[-122.477689736,37.763994185],[-122.477684937,37.763925633],[-122.477618859,37.763928554],[-122.477377074,37.763939243],[-122.47736515,37.763939778],[-122.477270153,37.763944035],[-122.477201672,37.763947104],[-122.477201586,37.763945894]]]]}},"NCD","6:00AM-2:00AM",0.0000066231014187774085,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_732","IRVING STREET NEIGHBORHOOD COMMERCIAL DISTRICT","NCD-IRVING",732,19799,0.020652774779968228,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":5.580559354823619e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19764,"shape_length":0.004388893279688195,"gen":"Mixed Use","index":65},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.413571132,37.747171019],[-122.413532074,37.74676565],[-122.413369031,37.746775474],[-122.413317335,37.746778589],[-122.41254705,37.746825],[-122.412543788,37.746791146],[-122.41251403,37.746482252],[-122.412601541,37.74647698],[-122.412739491,37.746468668],[-122.412825708,37.746463474],[-122.412911926,37.746458279],[-122.412977432,37.746454333],[-122.412975454,37.746433794],[-122.413078915,37.746427561],[-122.41308551,37.74649602],[-122.413171728,37.746490825],[-122.413257946,37.74648563],[-122.413361407,37.746479395],[-122.41337717,37.746478445],[-122.413503667,37.746470823],[-122.41351846,37.746624358],[-122.413559654,37.746621794],[-122.413660692,37.746615504],[-122.41391701,37.746599548],[-122.413936536,37.746598333],[-122.413943132,37.746666791],[-122.41394973,37.74673525],[-122.413955007,37.746790017],[-122.413937768,37.74679109],[-122.413943044,37.746845858],[-122.41394964,37.746914317],[-122.41395337,37.746953035],[-122.413956236,37.746982775],[-122.413958829,37.747009682],[-122.413952251,37.747042251],[-122.41393111,37.747146932],[-122.413914681,37.747228283],[-122.413704086,37.747201466],[-122.413571132,37.747171019]]]]}},"NC-1","6:00AM-11:00PM",5.580559354823619e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19764,0.004388893279688195,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-S","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000023177019989195675,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","districtname":"NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","zoning":"NC-S","codesection":713.1,"objectid":20437,"shape_length":0.007803338004657861,"gen":"Mixed Use","index":66},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.451662105,37.712279721],[-122.451729957,37.712227783],[-122.451764269,37.712201517],[-122.451954775,37.712055691],[-122.452012911,37.712009774],[-122.452143202,37.711906869],[-122.452155478,37.711897173],[-122.452345302,37.711747246],[-122.452470987,37.711647976],[-122.452719029,37.711482734],[-122.452832755,37.71140697],[-122.452889771,37.711372772],[-122.452938657,37.711343451],[-122.45314269,37.711221076],[-122.453323223,37.711365585],[-122.453353496,37.711389817],[-122.453445989,37.711463854],[-122.453464288,37.711478501],[-122.453525189,37.71152725],[-122.453467427,37.711597975],[-122.453176031,37.711954766],[-122.453127878,37.711992947],[-122.452696449,37.712335025],[-122.452703458,37.712340604],[-122.452733081,37.712364184],[-122.452610738,37.712461188],[-122.452553992,37.712506181],[-122.452537332,37.71251939],[-122.452554702,37.712533216],[-122.452630685,37.712593697],[-122.452557831,37.712652339],[-122.452501199,37.712697241],[-122.452102466,37.713013389],[-122.452000886,37.713048077],[-122.451850129,37.7131317],[-122.451789945,37.713179418],[-122.451641156,37.713297387],[-122.451578588,37.713346995],[-122.451543117,37.713375119],[-122.451403055,37.713486169],[-122.451322035,37.713550407],[-122.451248627,37.713608608],[-122.451178494,37.713552784],[-122.451088497,37.713481148],[-122.450967276,37.713384659],[-122.450873611,37.713310103],[-122.450816495,37.713264639],[-122.450630887,37.713116897],[-122.450586201,37.713081327],[-122.450807715,37.712930086],[-122.450938161,37.712841021],[-122.451097799,37.712713588],[-122.451156099,37.712667048],[-122.451552766,37.712363416],[-122.451662105,37.712279721]]]]}},"NC-S","6:00AM-2:00AM",0.0000023177019989195675,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","NC-S",713.1,20437,0.007803338004657861,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":8.434656794772734e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19549,"shape_length":0.005426433217414066,"gen":"Mixed Use","index":67},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.447158296,37.797515004],[-122.447303044,37.798459232],[-122.447154337,37.798477893],[-122.446952111,37.79850327],[-122.446303521,37.798584656],[-122.446110199,37.798608914],[-122.445973887,37.798626018],[-122.4458276,37.798644803],[-122.445680751,37.798663659],[-122.445581308,37.798676428],[-122.445579068,37.798665337],[-122.445562255,37.798582089],[-122.445545149,37.798497394],[-122.44582281,37.798462055],[-122.445937939,37.798447414],[-122.445892905,37.798223665],[-122.44601257,37.798208434],[-122.446390186,37.79816037],[-122.446376494,37.798092578],[-122.446470471,37.798080616],[-122.446490974,37.798078006],[-122.446564447,37.798068654],[-122.446626957,37.798060698],[-122.446720934,37.798048735],[-122.446706523,37.797977382],[-122.446696538,37.79792795],[-122.446686731,37.797879394],[-122.446786188,37.797866734],[-122.446885291,37.797854119],[-122.446983822,37.797841578],[-122.446942715,37.797638057],[-122.446940637,37.797627771],[-122.446927788,37.79756415],[-122.446923888,37.797544841],[-122.447009628,37.797533928],[-122.447158296,37.797515004]]]]}},"NC-2","6:00AM-2:00AM",8.434656794772734e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19549,0.005426433217414066,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":6.589618602042197e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19533,"shape_length":0.003684791139076567,"gen":"Mixed Use","index":68},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.481098884,37.776066451],[-122.481218992,37.776060981],[-122.481246845,37.776448754],[-122.481259365,37.776623069],[-122.481135915,37.77662869],[-122.48084805,37.776641797],[-122.480853024,37.776710342],[-122.480857998,37.776778887],[-122.480862972,37.776847432],[-122.480776613,37.776851364],[-122.480733434,37.776853329],[-122.480690254,37.776855295],[-122.480603895,37.776859227],[-122.480517537,37.776863159],[-122.480431177,37.776867091],[-122.480323813,37.776871978],[-122.48020291,37.776877483],[-122.480175348,37.776497608],[-122.480161732,37.776309954],[-122.480282633,37.776304427],[-122.480567615,37.776291453],[-122.480562841,37.77622565],[-122.480558066,37.776159846],[-122.480553092,37.776091302],[-122.480639451,37.77608737],[-122.480677727,37.776085628],[-122.480725808,37.776083438],[-122.480812167,37.776079507],[-122.480898525,37.776075574],[-122.480984882,37.776071643],[-122.481098884,37.776066451]]]]}},"NC-1","6:00AM-11:00PM",6.589618602042197e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19533,0.003684791139076567,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":0.0000013174799834003588,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19739,"shape_length":0.007125037167590002,"gen":"Mixed Use","index":69},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.50386802,37.753032103],[-122.503262841,37.753058856],[-122.503238892,37.752714211],[-122.503298941,37.75271158],[-122.503358284,37.75270898],[-122.503772709,37.752690616],[-122.503770031,37.752651827],[-122.503858954,37.752647887],[-122.503863525,37.752714097],[-122.503984399,37.752708741],[-122.504191612,37.752699558],[-122.504199545,37.75269921],[-122.504311279,37.752694305],[-122.504311435,37.752696549],[-122.50443352,37.752691189],[-122.504719225,37.752678526],[-122.504714491,37.75260997],[-122.504800829,37.752606144],[-122.504843212,37.752604265],[-122.504887167,37.752602317],[-122.505258422,37.752585861],[-122.505379301,37.752580599],[-122.505379288,37.752580408],[-122.505500168,37.752575145],[-122.505698693,37.752566344],[-122.505785031,37.752562517],[-122.505871369,37.75255869],[-122.505914593,37.752556773],[-122.505957708,37.752554862],[-122.50595857,37.752567343],[-122.505975322,37.752809889],[-122.505984346,37.752938522],[-122.505405788,37.752964109],[-122.505427547,37.753279881],[-122.505306715,37.75328513],[-122.505191573,37.753290234],[-122.505076432,37.753295337],[-122.504960572,37.753300473],[-122.504965306,37.753369029],[-122.504897021,37.753372055],[-122.504827164,37.753375151],[-122.504822429,37.753306595],[-122.504736089,37.753310422],[-122.504649751,37.753314249],[-122.504563412,37.753318076],[-122.504477073,37.753321901],[-122.504469236,37.753322239],[-122.504355311,37.75332723],[-122.504333368,37.753011529],[-122.50386802,37.753032103]]]]}},"NC-1","6:00AM-11:00PM",0.0000013174799834003588,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19739,0.007125037167590002,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCD","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":0.000006259334259502829,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_717.1","districtname":"OUTER CLEMENT STREET NEIGHBORHOOD COMMERCIAL","zoning":"NCD-OUTER CLEMENT","codesection":717.1,"objectid":19832,"shape_length":0.021356958610309507,"gen":"Mixed Use","index":70},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.486533675,37.781560357],[-122.486659622,37.781554648],[-122.486745989,37.781550734],[-122.486867582,37.781545222],[-122.48699158,37.781539486],[-122.486991597,37.781539709],[-122.487109407,37.781534259],[-122.487221,37.781529202],[-122.48722123,37.781532375],[-122.487234133,37.78170995],[-122.487240724,37.781800677],[-122.48724894,37.781913018],[-122.487019788,37.781923575],[-122.486288385,37.781958323],[-122.48629638,37.782064334],[-122.486319552,37.782383314],[-122.486319938,37.782388629],[-122.486305072,37.782389292],[-122.486233567,37.78239248],[-122.486097396,37.782398553],[-122.485978472,37.782404331],[-122.485974588,37.78235398],[-122.485851969,37.782359937],[-122.485661677,37.782368718],[-122.485488954,37.782376687],[-122.485445773,37.782378679],[-122.485402593,37.782380671],[-122.48531659,37.782384639],[-122.485229869,37.78238864],[-122.485143508,37.782392624],[-122.48502609,37.782398041],[-122.484902107,37.78240379],[-122.484902103,37.782403733],[-122.484784277,37.782409197],[-122.484672008,37.782414375],[-122.484585646,37.782418359],[-122.484499285,37.782422343],[-122.484504263,37.782490887],[-122.48437472,37.782496863],[-122.484369742,37.782428318],[-122.4842402,37.782434294],[-122.484153837,37.782438277],[-122.484067476,37.78244226],[-122.483949898,37.782447684],[-122.483937329,37.782448249],[-122.48383061,37.78245305],[-122.483830622,37.782453214],[-122.483708078,37.782458727],[-122.483599977,37.782463713],[-122.483297711,37.782477653],[-122.483254531,37.782479645],[-122.483168168,37.782483627],[-122.483081807,37.78248761],[-122.483048862,37.78248913],[-122.482995444,37.782491593],[-122.482883731,37.782496745],[-122.482762822,37.782502274],[-122.482752875,37.782365276],[-122.482631965,37.782370806],[-122.482346971,37.782383948],[-122.482351948,37.782452492],[-122.482356924,37.782521037],[-122.482270561,37.782525018],[-122.48222738,37.78252701],[-122.4821842,37.782529001],[-122.482011476,37.782536965],[-122.481925113,37.782540947],[-122.481809226,37.78254629],[-122.481687393,37.782551684],[-122.481687424,37.782552125],[-122.481567412,37.782557438],[-122.481464585,37.782562179],[-122.481378223,37.78256616],[-122.481205499,37.782574124],[-122.481148779,37.782576739],[-122.481148406,37.782576756],[-122.481119136,37.782578105],[-122.481032775,37.782582085],[-122.480946412,37.782586067],[-122.480739143,37.782595621],[-122.480618234,37.782601148],[-122.480618277,37.782601748],[-122.480497366,37.782607275],[-122.480385096,37.78261245],[-122.480298734,37.782616431],[-122.48012601,37.782624392],[-122.480082829,37.782626383],[-122.480039648,37.782628372],[-122.479953285,37.782632353],[-122.479866923,37.782636334],[-122.479812381,37.782638847],[-122.47978056,37.782640314],[-122.479769619,37.782489515],[-122.479654496,37.782494821],[-122.479648692,37.782495089],[-122.47953302,37.78250042],[-122.479543537,37.782645375],[-122.479422062,37.782651001],[-122.479309793,37.782656199],[-122.47913707,37.782664196],[-122.47905071,37.782668195],[-122.47900753,37.782670194],[-122.478964349,37.782672193],[-122.478877988,37.782676191],[-122.478705266,37.782684187],[-122.478592458,37.782689409],[-122.478471552,37.782695006],[-122.478465788,37.782615555],[-122.478364351,37.782620073],[-122.478344868,37.78262094],[-122.47824443,37.782625413],[-122.478148305,37.782629694],[-122.478134214,37.782435428],[-122.478125572,37.782323899],[-122.478167738,37.782321841],[-122.478160884,37.78223339],[-122.47815936,37.782213724],[-122.478147427,37.782049217],[-122.478302877,37.782042054],[-122.478423947,37.782036476],[-122.478430849,37.782132415],[-122.478551652,37.782126875],[-122.478793468,37.782115785],[-122.478788495,37.78204724],[-122.478783523,37.781978695],[-122.478778551,37.78191015],[-122.478864913,37.781906189],[-122.478951276,37.781902228],[-122.479037638,37.781898267],[-122.479124002,37.781894305],[-122.479366926,37.781883163],[-122.479489238,37.781877553],[-122.479489391,37.781879764],[-122.479608908,37.781874355],[-122.479695274,37.781870447],[-122.47978164,37.781866537],[-122.47979178,37.781866078],[-122.479868007,37.781862627],[-122.479954374,37.781858717],[-122.480023467,37.781855589],[-122.480127106,37.781850897],[-122.480131881,37.781916701],[-122.480136656,37.781982504],[-122.480141431,37.782048307],[-122.48045534,37.782034095],[-122.480458807,37.782033938],[-122.48057676,37.782028576],[-122.480577333,37.782036515],[-122.480698603,37.782031003],[-122.480983613,37.782018099],[-122.480978639,37.781949554],[-122.480973664,37.781881009],[-122.480968901,37.78181539],[-122.480968689,37.781812465],[-122.481055055,37.781808553],[-122.481098239,37.781806599],[-122.481141422,37.781804644],[-122.481227788,37.781800733],[-122.481511558,37.781787882],[-122.48163171,37.781782242],[-122.481633348,37.781804223],[-122.481636856,37.78185129],[-122.481758366,37.781845586],[-122.481866892,37.781840672],[-122.481953258,37.78183676],[-122.48195051,37.781798892],[-122.481948283,37.781768216],[-122.482034649,37.781764305],[-122.482121016,37.781760393],[-122.482163852,37.781758453],[-122.482207382,37.781756482],[-122.482380114,37.781748659],[-122.482475463,37.78174434],[-122.482585917,37.781739337],[-122.482706344,37.781733697],[-122.482706363,37.781733961],[-122.482828148,37.781728256],[-122.482940424,37.781723171],[-122.48302679,37.781719258],[-122.483113157,37.781715346],[-122.483199522,37.781711434],[-122.483285888,37.781707523],[-122.483311799,37.781706349],[-122.483458619,37.781699698],[-122.483553623,37.781695394],[-122.483656498,37.781690733],[-122.48377503,37.781685258],[-122.483775046,37.781685472],[-122.483898323,37.781679778],[-122.484010599,37.781674692],[-122.484105602,37.781670387],[-122.484183331,37.781666866],[-122.484269698,37.781662953],[-122.48431288,37.781660997],[-122.484356063,37.78165904],[-122.484442429,37.781655127],[-122.484528794,37.781651213],[-122.484615161,37.781647301],[-122.484728574,37.781642162],[-122.4848457,37.781636742],[-122.484845717,37.781636974],[-122.484970398,37.781631204],[-122.485074037,37.781626508],[-122.485160402,37.781622594],[-122.485246769,37.78161868],[-122.485333135,37.781614767],[-122.4854195,37.781610854],[-122.485505866,37.78160694],[-122.485528286,37.781605924],[-122.485592232,37.781603026],[-122.485687234,37.78159872],[-122.485796391,37.781593773],[-122.485917851,37.781588331],[-122.485917843,37.781588207],[-122.486038216,37.781582813],[-122.486210521,37.781575004],[-122.486296887,37.78157109],[-122.486383252,37.781567175],[-122.486533675,37.781560357]]]]}},"NCD","6:00AM-11:00PM",0.000006259334259502829,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_717.1","OUTER CLEMENT STREET NEIGHBORHOOD COMMERCIAL","NCD-OUTER CLEMENT",717.1,19832,0.021356958610309507,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":7.835054467994703e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19657,"shape_length":0.004192582525503941,"gen":"Mixed Use","index":71},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.43320864,37.771850833],[-122.433189816,37.771757617],[-122.432741639,37.771814644],[-122.432730437,37.77175917],[-122.432722816,37.771721429],[-122.432647778,37.771347821],[-122.43273318,37.771336946],[-122.432818228,37.771326116],[-122.432903987,37.771315196],[-122.432989389,37.77130432],[-122.433074791,37.771293446],[-122.433160194,37.77128257],[-122.43318062,37.771384273],[-122.433266024,37.771373398],[-122.433436829,37.771351648],[-122.433543582,37.771338053],[-122.433590976,37.771332049],[-122.433661352,37.771323132],[-122.433668137,37.771356885],[-122.433696639,37.771353273],[-122.433785248,37.771342047],[-122.43387713,37.771330346],[-122.433925212,37.771568428],[-122.433940209,37.771642577],[-122.433944057,37.771661601],[-122.433952535,37.771660521],[-122.433971396,37.771753773],[-122.434019315,37.771991048],[-122.433918192,37.772003917],[-122.433801222,37.772018736],[-122.433808064,37.772052762],[-122.433772803,37.77205723],[-122.433690138,37.772067703],[-122.433604733,37.772078571],[-122.43361018,37.772105692],[-122.433524775,37.77211656],[-122.433439371,37.772127427],[-122.433353965,37.772138295],[-122.433268561,37.772149162],[-122.43320864,37.771850833]]]]}},"NC-1","6:00AM-11:00PM",7.835054467994703e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19657,0.004192582525503941,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":4.473635429114719e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19747,"shape_length":0.004016271300955512,"gen":"Mixed Use","index":72},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.463141188,37.714688034],[-122.463141143,37.714684147],[-122.463137994,37.71441341],[-122.463136661,37.714303559],[-122.46260204,37.714307652],[-122.462603553,37.714458331],[-122.462499842,37.714458988],[-122.462365018,37.714459822],[-122.462360708,37.714113474],[-122.462360436,37.714089908],[-122.462359761,37.714031201],[-122.462588725,37.714029538],[-122.462575077,37.713978727],[-122.462704476,37.713977686],[-122.462727595,37.7139775],[-122.462749899,37.71397732],[-122.463048136,37.71397492],[-122.46321931,37.713973541],[-122.463219337,37.713975029],[-122.463219452,37.713985769],[-122.463221862,37.714193048],[-122.463223196,37.714302897],[-122.463499698,37.714300779],[-122.463504171,37.714685222],[-122.463504172,37.714685287],[-122.46340046,37.714686048],[-122.463314036,37.71468671],[-122.463227612,37.714687372],[-122.463141188,37.714688034]]]]}},"NC-1","6:00AM-11:00PM",4.473635429114719e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19747,0.004016271300955512,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":3.403063995814811e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19546,"shape_length":0.0030215858138244347,"gen":"Mixed Use","index":73},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.458241264,37.709927036],[-122.458266763,37.709944411],[-122.458308584,37.709972907],[-122.458357605,37.71000631],[-122.458388294,37.710027221],[-122.458268987,37.710028839],[-122.457937133,37.710033339],[-122.457764342,37.710050845],[-122.457068388,37.710110914],[-122.457278431,37.709911654],[-122.45746748,37.709732308],[-122.457670306,37.709539892],[-122.457889058,37.709673981],[-122.457925358,37.709703248],[-122.4579937,37.709758348],[-122.458241264,37.709927036]]]]}},"NC-1","6:00AM-11:00PM",3.403063995814811e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19546,0.0030215858138244347,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-3","commercial_hours_of_operation":"No Limit","shape_area":0.000013207254770094706,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","districtname":"NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","zoning":"NC-3","codesection":712.1,"objectid":20378,"shape_length":0.030594669694125488,"gen":"Mixed Use","index":74},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.42358024,37.739883704],[-122.423831388,37.739877292],[-122.423881392,37.739876015],[-122.423936919,37.739874598],[-122.424147154,37.739869229],[-122.424116084,37.740035744],[-122.424055177,37.740258724],[-122.424042981,37.740303374],[-122.424068519,37.740562787],[-122.424077375,37.74065274],[-122.424100892,37.740891613],[-122.423975091,37.740899417],[-122.423951116,37.740900904],[-122.423936737,37.740901797],[-122.423907997,37.740903579],[-122.423836385,37.740908022],[-122.423740684,37.74091396],[-122.423716031,37.740915489],[-122.423643829,37.740919968],[-122.423358876,37.740937645],[-122.423367146,37.740996789],[-122.423306091,37.741000576],[-122.423258544,37.741078574],[-122.423216418,37.741147682],[-122.423172568,37.741219616],[-122.423158185,37.741220508],[-122.423179074,37.741307427],[-122.423147872,37.741309363],[-122.423149634,37.741316698],[-122.423156551,37.741345474],[-122.423171551,37.741407883],[-122.423117917,37.741411211],[-122.42308281,37.741480273],[-122.422965829,37.741487529],[-122.422931308,37.741555436],[-122.422897734,37.741621482],[-122.422859767,37.741696167],[-122.422854303,37.741706917],[-122.422844719,37.741725767],[-122.422811912,37.741727478],[-122.422806966,37.741740097],[-122.422799897,37.74175813],[-122.422767973,37.741839573],[-122.422742352,37.741904934],[-122.422715483,37.741973482],[-122.422806818,37.741968058],[-122.422784122,37.742025961],[-122.422778288,37.742040845],[-122.422778729,37.742040819],[-122.422738634,37.742104172],[-122.422727011,37.74210481],[-122.422620656,37.742110652],[-122.422635616,37.742247368],[-122.422637513,37.7422647],[-122.422645081,37.742333866],[-122.422304846,37.74235476],[-122.422313135,37.742442776],[-122.422339732,37.742725207],[-122.422341242,37.742741246],[-122.422442245,37.742782018],[-122.422442744,37.742787317],[-122.422435788,37.742787722],[-122.422425454,37.742803919],[-122.42287107,37.742909663],[-122.422975469,37.742934436],[-122.423040518,37.742949871],[-122.422977629,37.74311806],[-122.422961213,37.743161959],[-122.422883011,37.743371098],[-122.422870198,37.743405367],[-122.422675875,37.743925047],[-122.422669445,37.74394224],[-122.422632347,37.744045167],[-122.422580202,37.744189839],[-122.422576593,37.744199852],[-122.422503899,37.744401535],[-122.422440967,37.744375654],[-122.422349633,37.744338092],[-122.422295204,37.744315708],[-122.422272779,37.744306485],[-122.422247779,37.744296204],[-122.422189181,37.744272106],[-122.422187528,37.744271426],[-122.422164927,37.744262132],[-122.422105582,37.744237726],[-122.421964376,37.744179655],[-122.421872188,37.744141742],[-122.42184652,37.744181577],[-122.421796805,37.744258727],[-122.421444139,37.744806006],[-122.421351002,37.744767934],[-122.421345287,37.744765597],[-122.421043501,37.744642234],[-122.421030323,37.744662625],[-122.420972448,37.744752189],[-122.421033282,37.744777057],[-122.42127995,37.744877889],[-122.421348919,37.744906082],[-122.421373243,37.744916024],[-122.421350105,37.744951929],[-122.421294468,37.745038267],[-122.421201004,37.745000061],[-122.421037318,37.74493315],[-122.420884275,37.74487059],[-122.420844801,37.744931676],[-122.420805327,37.744992763],[-122.420765853,37.745053849],[-122.420726378,37.745114934],[-122.420724194,37.745118316],[-122.420686905,37.745176021],[-122.42068472,37.745179402],[-122.420647431,37.745237107],[-122.420643009,37.745243949],[-122.420626195,37.745269967],[-122.420607956,37.745298193],[-122.420603535,37.745305034],[-122.420568482,37.745359279],[-122.420564061,37.745366121],[-122.420529008,37.745420364],[-122.420524586,37.745427206],[-122.420510181,37.745449498],[-122.420489588,37.745481364],[-122.420489532,37.745481451],[-122.420485111,37.745488292],[-122.420450058,37.745542536],[-122.420421952,37.74558603],[-122.420410583,37.745603623],[-122.420419808,37.745607393],[-122.420380334,37.745668479],[-122.420517288,37.745724464],[-122.420687839,37.745794181],[-122.420782427,37.745832846],[-122.420530206,37.746224237],[-122.420412712,37.746406557],[-122.420357621,37.746492045],[-122.420130343,37.746576031],[-122.42027883,37.748125283],[-122.419167513,37.74814711],[-122.418221171,37.748165688],[-122.417667153,37.748176607],[-122.417665309,37.748120955],[-122.417662757,37.748043924],[-122.417662372,37.748032324],[-122.417654502,37.747794796],[-122.417654609,37.747798944],[-122.417606553,37.747827399],[-122.417369098,37.747439721],[-122.417453753,37.747405674],[-122.417618952,37.747339234],[-122.417619274,37.747338845],[-122.417619766,37.747339655],[-122.417789529,37.747278637],[-122.417873437,37.747247471],[-122.417949596,37.747219183],[-122.418030627,37.747189086],[-122.41810767,37.74716047],[-122.41817389,37.747135873],[-122.41818494,37.747131769],[-122.418235426,37.747113016],[-122.41832733,37.747150454],[-122.418379908,37.747171872],[-122.41841918,37.747111084],[-122.418460995,37.747046361],[-122.418479262,37.747018087],[-122.418505939,37.746976795],[-122.418545405,37.746915706],[-122.418584872,37.746854617],[-122.41861629,37.746805989],[-122.4186647,37.746731062],[-122.418661532,37.746730756],[-122.418714518,37.746648741],[-122.418808646,37.746503044],[-122.418822854,37.746481052],[-122.418848113,37.746441955],[-122.41888758,37.746380864],[-122.418927047,37.746319775],[-122.418966515,37.746258684],[-122.419007001,37.746196017],[-122.419084914,37.746075415],[-122.419117242,37.74602521],[-122.419118399,37.746025679],[-122.419149053,37.745978072],[-122.419196097,37.745905178],[-122.419229222,37.745853852],[-122.419261273,37.745804191],[-122.419268658,37.745792749],[-122.419308092,37.745731646],[-122.419347527,37.745670544],[-122.419386961,37.745609441],[-122.419465829,37.745487235],[-122.419497169,37.74543827],[-122.419505514,37.745441638],[-122.419522249,37.745448392],[-122.41955359,37.745399426],[-122.41962776,37.745286236],[-122.419646367,37.74525784],[-122.419685481,37.745198148],[-122.419622743,37.745172913],[-122.419560005,37.745147679],[-122.419497268,37.745122445],[-122.419458149,37.745106282],[-122.419495383,37.745049461],[-122.419716402,37.744712164],[-122.419755714,37.74472803],[-122.419764874,37.744731714],[-122.419808499,37.744664494],[-122.419783671,37.744654508],[-122.419830992,37.744581184],[-122.419851047,37.74458925],[-122.419898367,37.744515926],[-122.419945687,37.744442603],[-122.419993007,37.744369279],[-122.420040328,37.744295955],[-122.420095536,37.744210408],[-122.420129111,37.744158381],[-122.420159293,37.744111613],[-122.420205946,37.74403932],[-122.420245379,37.743978218],[-122.42027248,37.743936224],[-122.420278254,37.743927277],[-122.420284813,37.743917114],[-122.420324245,37.743856011],[-122.420275904,37.743836371],[-122.420171215,37.743793837],[-122.420218425,37.74372109],[-122.420261486,37.743654738],[-122.420271311,37.743658648],[-122.420415754,37.743716127],[-122.420458317,37.743648259],[-122.420466203,37.743636039],[-122.420513522,37.743562715],[-122.420430443,37.743529298],[-122.420695254,37.743112455],[-122.420723042,37.743123631],[-122.420800174,37.743154656],[-122.420877308,37.74318568],[-122.420987716,37.74301459],[-122.421035069,37.742940689],[-122.421075766,37.742957132],[-122.42108688,37.742961623],[-122.421133679,37.742888585],[-122.421163703,37.742842501],[-122.421225274,37.742867532],[-122.421257058,37.742818746],[-122.421320628,37.742721177],[-122.421344268,37.742684507],[-122.421412208,37.742712126],[-122.421435847,37.742675457],[-122.421530481,37.742528809],[-122.421438127,37.742491265],[-122.421460442,37.742456684],[-122.421532959,37.74234431],[-122.421497617,37.742329986],[-122.421648008,37.742099151],[-122.421656537,37.742086059],[-122.421687981,37.742037136],[-122.421654926,37.74202374],[-122.421643781,37.742019222],[-122.421610726,37.742005825],[-122.42164217,37.741956901],[-122.421652776,37.741940621],[-122.421753413,37.741786153],[-122.421762655,37.741789898],[-122.421830425,37.741817365],[-122.421846752,37.741823981],[-122.421900633,37.741741277],[-122.421952565,37.741661568],[-122.421956255,37.741655903],[-122.421987698,37.74160698],[-122.422004188,37.741613663],[-122.422035631,37.741564739],[-122.422111673,37.741446898],[-122.422146371,37.741393127],[-122.422042932,37.741351082],[-122.421961043,37.741317796],[-122.421879156,37.74128451],[-122.421805942,37.741254751],[-122.421844085,37.741193125],[-122.421883514,37.74113202],[-122.421922944,37.741070918],[-122.421999906,37.741102201],[-122.42207687,37.741133485],[-122.422153833,37.741164768],[-122.422193263,37.741103665],[-122.422232692,37.741042562],[-122.422319436,37.740908135],[-122.422366709,37.740834792],[-122.422391687,37.740844945],[-122.422439002,37.740771621],[-122.4224763,37.740713821],[-122.422515729,37.740652718],[-122.422555158,37.740591615],[-122.422594586,37.740530511],[-122.422640905,37.740458729],[-122.4226379,37.740457503],[-122.422623972,37.740451822],[-122.42267267,37.74037712],[-122.422712419,37.740316146],[-122.423043031,37.740450892],[-122.423177883,37.740505853],[-122.423215245,37.740448081],[-122.423262394,37.740375177],[-122.423510934,37.739990868],[-122.42358024,37.739883704]]]]}},"NC-3","No Limit",0.000013207254770094706,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","NC-3",712.1,20378,0.030594669694125488,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCD","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000006818570718653218,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_729.1","districtname":"WEST PORTAL AVENUE NEIGHBORHOOD COMMERCIAL","zoning":"NCD-WEST PORTAL","codesection":729.1,"objectid":20486,"shape_length":0.01769401772235092,"gen":"Mixed Use","index":75},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.466207825,37.741087434],[-122.466122802,37.741043562],[-122.466078402,37.741020652],[-122.466064026,37.741013234],[-122.465960988,37.740960067],[-122.465829024,37.740891974],[-122.465750179,37.74085129],[-122.465629449,37.740788993],[-122.465601909,37.740778287],[-122.465554897,37.740854548],[-122.465359662,37.741090016],[-122.465302306,37.741159191],[-122.465244949,37.741228367],[-122.464949904,37.741062637],[-122.46482539,37.741011899],[-122.464860194,37.740958037],[-122.464738888,37.740908606],[-122.464641439,37.740869782],[-122.46441777,37.740780674],[-122.464425853,37.740766654],[-122.464433784,37.740752578],[-122.464432718,37.740740231],[-122.464427867,37.74068399],[-122.464605087,37.740674348],[-122.464604209,37.740664173],[-122.464599183,37.740605914],[-122.464573305,37.740325136],[-122.464611556,37.740318691],[-122.464650484,37.740312131],[-122.46470004,37.740161892],[-122.465041411,37.740223979],[-122.465127062,37.740243021],[-122.465176084,37.74025392],[-122.465188798,37.740217854],[-122.465222614,37.740098932],[-122.465232312,37.740064824],[-122.465361044,37.740087909],[-122.465741062,37.740178399],[-122.465747293,37.740161126],[-122.465753874,37.740143936],[-122.465754054,37.740143478],[-122.465754235,37.740143022],[-122.465765909,37.740114795],[-122.465774076,37.740096427],[-122.465782643,37.740078175],[-122.465791612,37.740060044],[-122.465800978,37.740042041],[-122.465810737,37.740024169],[-122.465820887,37.740006436],[-122.465826044,37.739997731],[-122.465831295,37.73998906],[-122.465850884,37.739951531],[-122.465880569,37.739894655],[-122.465883348,37.739889329],[-122.465884296,37.739887513],[-122.465968144,37.73983784],[-122.466053431,37.739787313],[-122.466182801,37.73971067],[-122.46612601,37.739673438],[-122.466342877,37.73947145],[-122.466398602,37.739414636],[-122.466416647,37.739396239],[-122.46647656,37.739433299],[-122.466533102,37.739468275],[-122.466574746,37.739494034],[-122.466601124,37.73946714],[-122.466636942,37.739430622],[-122.466788402,37.739302842],[-122.46680547,37.739288444],[-122.466926916,37.739185985],[-122.467048711,37.739083231],[-122.46716395,37.738986008],[-122.467187249,37.738966352],[-122.467203773,37.73895241],[-122.46722514,37.738934384],[-122.467281372,37.738886943],[-122.467323324,37.738851548],[-122.467338923,37.738838388],[-122.467399992,37.738786866],[-122.467520221,37.738685432],[-122.467569429,37.738643917],[-122.4676384,37.738585727],[-122.467754454,37.738487814],[-122.467804003,37.738446012],[-122.467872484,37.738388113],[-122.467909743,37.738356612],[-122.467993309,37.73828596],[-122.468112077,37.738185547],[-122.468130923,37.738169613],[-122.468227401,37.738088044],[-122.468322539,37.738007608],[-122.468419196,37.737925888],[-122.468464627,37.737887477],[-122.468512955,37.737846617],[-122.468610232,37.737764371],[-122.46868861,37.73769756],[-122.468679586,37.737690883],[-122.468742758,37.737637034],[-122.468857111,37.737543313],[-122.468976028,37.737445852],[-122.46903785,37.737395185],[-122.469099001,37.737345067],[-122.46916252,37.737293008],[-122.469219648,37.737246187],[-122.469235508,37.737233188],[-122.469280949,37.737195946],[-122.469342719,37.737145322],[-122.46946546,37.737044725],[-122.469469221,37.737041643],[-122.469583917,37.736947639],[-122.469587635,37.73694459],[-122.469707331,37.736846489],[-122.469711078,37.736843418],[-122.469769151,37.736795822],[-122.469827519,37.736747984],[-122.46982952,37.736746344],[-122.469945704,37.73665112],[-122.4699502,37.736647434],[-122.470033977,37.736578771],[-122.470120002,37.736508265],[-122.470195317,37.736446537],[-122.47025575,37.736386598],[-122.470260702,37.736389747],[-122.470321855,37.736428635],[-122.470346044,37.736444017],[-122.470382801,37.73646739],[-122.470574088,37.736589028],[-122.470679956,37.736646991],[-122.470773753,37.736741289],[-122.470805947,37.736773656],[-122.470869802,37.736951619],[-122.470875122,37.737012618],[-122.470795738,37.737079118],[-122.470782995,37.737089793],[-122.470724198,37.737139047],[-122.470603329,37.7372403],[-122.470524651,37.737306208],[-122.470482472,37.737341543],[-122.470426585,37.737388358],[-122.470407642,37.737404227],[-122.47036504,37.737439914],[-122.470329677,37.737469539],[-122.470247596,37.737538297],[-122.470237329,37.737546898],[-122.47022477,37.737557419],[-122.470157967,37.737613379],[-122.470139262,37.737629048],[-122.470125592,37.737640499],[-122.470065144,37.737691135],[-122.470007014,37.737739831],[-122.469981917,37.737760854],[-122.469960413,37.737778867],[-122.469943747,37.737792829],[-122.469931407,37.737803166],[-122.469904986,37.737825298],[-122.469899813,37.737829632],[-122.469887289,37.737840123],[-122.469807825,37.737906688],[-122.469804037,37.737909862],[-122.469770978,37.737937554],[-122.46972081,37.737979579],[-122.469653532,37.738035936],[-122.469638704,37.738048357],[-122.469453022,37.738203899],[-122.469381817,37.738255092],[-122.469403217,37.738273865],[-122.469320918,37.738333034],[-122.469236618,37.738406549],[-122.469165255,37.738468783],[-122.46910748,37.738519165],[-122.469092379,37.738532334],[-122.469022525,37.738593251],[-122.468993265,37.738618768],[-122.468963566,37.738644667],[-122.468944962,37.738660891],[-122.46893581,37.738668872],[-122.468867557,37.738728393],[-122.468863215,37.738732179],[-122.468842719,37.738750053],[-122.468788404,37.738797418],[-122.468757665,37.738824225],[-122.468706151,37.738869147],[-122.468642798,37.738924393],[-122.468641005,37.738925956],[-122.468628744,37.738936649],[-122.468537194,37.739016485],[-122.468445643,37.739096322],[-122.468411508,37.739126088],[-122.46834956,37.739180109],[-122.468321007,37.73920501],[-122.468294877,37.739227796],[-122.468265718,37.739253223],[-122.468182033,37.739326198],[-122.468172735,37.739334307],[-122.468090109,37.739406359],[-122.46808746,37.739408669],[-122.468023803,37.739464179],[-122.468006875,37.739478942],[-122.467948063,37.739530228],[-122.467923111,37.739551987],[-122.467914418,37.739559567],[-122.467820671,37.739641317],[-122.467806763,37.739653445],[-122.467712189,37.739735915],[-122.467600913,37.739832951],[-122.467525031,37.739899121],[-122.467462602,37.739881603],[-122.467422137,37.739972549],[-122.467339806,37.740046903],[-122.467256346,37.740122277],[-122.467238722,37.740138193],[-122.467168098,37.740201974],[-122.467162599,37.740206939],[-122.467086477,37.740275685],[-122.467054671,37.740304409],[-122.467010355,37.740344431],[-122.466940478,37.740407537],[-122.466934232,37.740413178],[-122.466858109,37.740481924],[-122.466826285,37.740510664],[-122.466792755,37.740540945],[-122.466781987,37.74055067],[-122.466778931,37.74055343],[-122.466712093,37.74061379],[-122.466705864,37.740619416],[-122.466654997,37.740665353],[-122.46662974,37.740688163],[-122.466597899,37.740716917],[-122.466589549,37.740724458],[-122.466553617,37.740756908],[-122.466483705,37.740820044],[-122.466477494,37.740825654],[-122.466413549,37.740883401],[-122.466369511,37.74092317],[-122.466265016,37.741017538],[-122.466207825,37.741087434]]]]}},"NCD","6:00AM-2:00AM",0.000006818570718653218,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_729.1","WEST PORTAL AVENUE NEIGHBORHOOD COMMERCIAL","NCD-WEST PORTAL",729.1,20486,0.01769401772235092,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.226737567772785e-8,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19716,"shape_length":0.0007855078159986039,"gen":"Mixed Use","index":76},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.419874007,37.758977327],[-122.419879714,37.759045833],[-122.419815397,37.75904921],[-122.419556703,37.759064837],[-122.41955513,37.759048406],[-122.419550149,37.758996376],[-122.419808842,37.758980749],[-122.419874007,37.758977327]]]]}},"NC-1","6:00AM-11:00PM",2.226737567772785e-8,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19716,0.0007855078159986039,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":4.665783648322014e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19780,"shape_length":0.003230504393851315,"gen":"Mixed Use","index":77},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.403850946,37.732420958],[-122.403850398,37.732415867],[-122.403843032,37.732347413],[-122.403835667,37.732278959],[-122.403823132,37.732162465],[-122.403814983,37.732086722],[-122.403807618,37.732018282],[-122.403795473,37.731905396],[-122.403781463,37.731871471],[-122.403935374,37.731830473],[-122.403935597,37.731830888],[-122.403935728,37.731830666],[-122.403998871,37.731815454],[-122.404036426,37.731806407],[-122.404060573,37.731800589],[-122.40406337,37.731805971],[-122.404245035,37.732155647],[-122.404415039,37.732482872],[-122.404482008,37.732611773],[-122.404519251,37.732683457],[-122.404657097,37.732948781],[-122.404493238,37.733051073],[-122.404427959,37.732987032],[-122.404125012,37.73268983],[-122.404018598,37.732585433],[-122.403875976,37.732445514],[-122.403850946,37.732420958]]]]}},"NC-1","6:00AM-11:00PM",4.665783648322014e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19780,0.003230504393851315,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":7.407412791466939e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19741,"shape_length":0.0037108519798086767,"gen":"Mixed Use","index":78},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.475780116,37.751947327],[-122.475839641,37.751944703],[-122.476088004,37.751933755],[-122.476199829,37.751928881],[-122.476260965,37.751926217],[-122.47629224,37.752378598],[-122.476319279,37.75276243],[-122.476255699,37.752765253],[-122.476146805,37.752770089],[-122.47583837,37.752783685],[-122.475792811,37.752785693],[-122.475781053,37.752786211],[-122.475637399,37.752792543],[-122.475542426,37.752796728],[-122.475423938,37.752801951],[-122.475303062,37.752807248],[-122.475276422,37.752423947],[-122.475263981,37.752245107],[-122.475384749,37.75223981],[-122.475626499,37.752229155],[-122.475621734,37.752160601],[-122.475616969,37.752092046],[-122.475612204,37.752023492],[-122.475784882,37.752015881],[-122.475780116,37.751947327]]]]}},"NC-1","6:00AM-11:00PM",7.407412791466939e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19741,0.0037108519798086767,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCT","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000025440229748254855,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_756","districtname":"GLEN PARK NEIGHBORHOOD COMMERCIAL TRANSIT","zoning":"NCT-GLEN PARK","codesection":756,"objectid":19862,"shape_length":0.012290279181042899,"gen":"Mixed Use","index":79},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.433403911,37.733794065],[-122.433487788,37.733810695],[-122.433571664,37.733827325],[-122.433591472,37.733831252],[-122.433609899,37.733772631],[-122.433612411,37.733764637],[-122.433667692,37.733588775],[-122.433687032,37.733527249],[-122.433707862,37.733460982],[-122.434144536,37.733550342],[-122.434187832,37.733402837],[-122.434273463,37.733111092],[-122.434347975,37.732857232],[-122.434348066,37.732856919],[-122.434442848,37.732533994],[-122.434478654,37.732518452],[-122.434679033,37.732431475],[-122.434992781,37.732295287],[-122.43527982,37.73217069],[-122.435304474,37.732159989],[-122.435386575,37.732124351],[-122.435457688,37.732093483],[-122.435763765,37.731954366],[-122.436048995,37.731824724],[-122.436061185,37.731819183],[-122.436059705,37.731949504],[-122.436058996,37.732011903],[-122.436059469,37.73201278],[-122.436060026,37.732110847],[-122.43606004,37.732113286],[-122.436061028,37.732286613],[-122.436061577,37.732383105],[-122.435412551,37.732385743],[-122.435365296,37.732536854],[-122.435359828,37.732554341],[-122.435347358,37.732594219],[-122.435315618,37.732587927],[-122.435296094,37.732584056],[-122.435263482,37.73257759],[-122.43516256,37.732557582],[-122.43492798,37.732511074],[-122.434907142,37.73257771],[-122.434884482,37.732650174],[-122.434864803,37.732713103],[-122.434844629,37.732777613],[-122.434823792,37.732844247],[-122.434823109,37.732846431],[-122.434802954,37.732910882],[-122.434782115,37.732977517],[-122.434761279,37.733044151],[-122.43474044,37.733110786],[-122.434719602,37.73317742],[-122.434698764,37.733244055],[-122.434614888,37.733227426],[-122.434531012,37.733210797],[-122.434447136,37.733194166],[-122.434382881,37.733399635],[-122.434363782,37.733460706],[-122.43434228,37.733529464],[-122.43432469,37.73358571],[-122.434366653,37.733593949],[-122.434349939,37.733647395],[-122.434334685,37.73369617],[-122.434327369,37.733719565],[-122.434304863,37.733791531],[-122.434497453,37.733829714],[-122.434474777,37.733905784],[-122.434462431,37.733947197],[-122.434454897,37.733972469],[-122.434412117,37.73396373],[-122.434399154,37.734005184],[-122.434363685,37.734118599],[-122.434348681,37.734166577],[-122.434342846,37.734185235],[-122.434324507,37.734243875],[-122.434275743,37.734399804],[-122.43426047,37.734448643],[-122.434236402,37.7345256],[-122.434262506,37.734526899],[-122.43430354,37.734528942],[-122.434343087,37.734537442],[-122.43446547,37.73456375],[-122.434444599,37.734630202],[-122.434379037,37.734838953],[-122.434360894,37.734896719],[-122.434258878,37.734874914],[-122.434251841,37.73487341],[-122.434218465,37.734866277],[-122.434185047,37.734859133],[-122.434169298,37.734903022],[-122.434163469,37.734919264],[-122.434137478,37.734913381],[-122.434096957,37.73490421],[-122.433847224,37.734847683],[-122.433777121,37.734831815],[-122.433763172,37.734828658],[-122.433752851,37.734857223],[-122.433751302,37.734861507],[-122.433733726,37.734857536],[-122.433669155,37.734842946],[-122.433502851,37.73480537],[-122.433419699,37.734786581],[-122.433336546,37.734767793],[-122.433312889,37.734833832],[-122.433301858,37.734864624],[-122.433299317,37.734871713],[-122.433285659,37.734864889],[-122.432784353,37.734614471],[-122.43278905,37.734608697],[-122.432778136,37.734603249],[-122.432763159,37.734603884],[-122.432762465,37.734603506],[-122.432647332,37.734540846],[-122.432652524,37.734526804],[-122.432716266,37.73435438],[-122.432774266,37.73419749],[-122.432809588,37.734101942],[-122.43282314,37.734065283],[-122.432837472,37.734026515],[-122.433007621,37.734062256],[-122.433168514,37.734096053],[-122.433300284,37.734123732],[-122.433309714,37.734093736],[-122.433321226,37.734057111],[-122.433357112,37.733942948],[-122.433403911,37.733794065]]]]}},"NCT","6:00AM-2:00AM",0.0000025440229748254855,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_756","GLEN PARK NEIGHBORHOOD COMMERCIAL TRANSIT","NCT-GLEN PARK",756,19862,0.012290279181042899,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.6344965044980234e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19745,"shape_length":0.0026334408723375285,"gen":"Mixed Use","index":80},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.426724608,37.748435337],[-122.426717284,37.74836279],[-122.426634503,37.748367679],[-122.426627593,37.74829924],[-122.42695872,37.748279682],[-122.427101041,37.748271012],[-122.427099159,37.748251537],[-122.427213128,37.748244595],[-122.427241263,37.748242881],[-122.427523098,37.748226234],[-122.427530447,37.748302911],[-122.42753832,37.748385064],[-122.427546446,37.748470381],[-122.427122759,37.748495825],[-122.427138464,37.748658389],[-122.427023439,37.748665395],[-122.426997818,37.748666956],[-122.426739159,37.74868257],[-122.426731949,37.748611155],[-122.426723249,37.748519816],[-122.426732601,37.748519254],[-122.426729848,37.748490352],[-122.426724608,37.748435337]]]]}},"NC-1","6:00AM-11:00PM",2.6344965044980234e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19745,0.0026334408723375285,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":0.000002535171642438443,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19722,"shape_length":0.01353439754077731,"gen":"Mixed Use","index":81},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.469523429,37.714646095],[-122.469523364,37.71464089],[-122.46951992,37.714364367],[-122.469518486,37.714249223],[-122.468896273,37.714256183],[-122.468881296,37.713938973],[-122.468988175,37.713935397],[-122.469299486,37.713924979],[-122.469412317,37.713921202],[-122.469425277,37.713920768],[-122.46942724,37.713922843],[-122.4694935,37.713992824],[-122.469616157,37.71412237],[-122.46971236,37.714206542],[-122.469798242,37.714281683],[-122.470463721,37.714277234],[-122.470466861,37.714545011],[-122.470468971,37.714724881],[-122.470551692,37.714722346],[-122.470553938,37.714722277],[-122.470586312,37.714721285],[-122.470899227,37.714711696],[-122.470901105,37.714782579],[-122.470902038,37.714817758],[-122.470902865,37.714849004],[-122.470903923,37.714888882],[-122.470904685,37.714917659],[-122.470905807,37.714960006],[-122.471044576,37.714927601],[-122.471068056,37.714965283],[-122.471084763,37.714992095],[-122.471087551,37.714996569],[-122.471069975,37.715006738],[-122.471069168,37.715007204],[-122.470819361,37.715151729],[-122.470707559,37.715216411],[-122.470824334,37.715339289],[-122.470976884,37.715499812],[-122.47098161,37.715504786],[-122.471085254,37.715613846],[-122.471281406,37.715820248],[-122.471482199,37.716031531],[-122.471572045,37.716126071],[-122.471707691,37.716056645],[-122.471925953,37.715944933],[-122.471975435,37.716077215],[-122.472118304,37.716459155],[-122.472119664,37.716462792],[-122.472127035,37.716482496],[-122.472265328,37.716852197],[-122.472298334,37.716886767],[-122.47231216,37.716901247],[-122.472303118,37.717067065],[-122.472302428,37.717079719],[-122.472285371,37.717392518],[-122.472165103,37.717393323],[-122.472164296,37.717324667],[-122.472077868,37.717325246],[-122.472077046,37.717255281],[-122.471912641,37.717257111],[-122.47173135,37.717259127],[-122.471625914,37.717259803],[-122.471622972,37.716970343],[-122.471617898,37.716471192],[-122.471617546,37.716436544],[-122.471514252,37.716437207],[-122.47125497,37.716438942],[-122.471251746,37.716164318],[-122.471251709,37.716159966],[-122.471251085,37.716085892],[-122.471097793,37.716086706],[-122.470713657,37.716088746],[-122.470708388,37.715599425],[-122.470604691,37.71560013],[-122.470258984,37.715602442],[-122.470258243,37.715533785],[-122.470257502,37.715465129],[-122.47025676,37.715396473],[-122.470256019,37.715327815],[-122.470255277,37.715259159],[-122.470254536,37.715190502],[-122.46991191,37.715192792],[-122.469808199,37.715193507],[-122.469807795,37.715156505],[-122.469802202,37.714644211],[-122.469698492,37.714644926],[-122.469523429,37.714646095]]]]}},"NC-1","6:00AM-11:00PM",0.000002535171642438443,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19722,0.01353439754077731,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":0.000003259740727056862,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19679,"shape_length":0.014937012252174354,"gen":"Mixed Use","index":82},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.450787462,37.731946824],[-122.45078724,37.731925009],[-122.450784677,37.731672718],[-122.450783723,37.731578735],[-122.450783307,37.731537823],[-122.449227182,37.731541994],[-122.449227596,37.731582906],[-122.449228559,37.73167788],[-122.44922864,37.731680903],[-122.449231375,37.73195076],[-122.449231407,37.731953903],[-122.448969622,37.731955091],[-122.448969613,37.7319547],[-122.448867525,37.731955163],[-122.448867526,37.731955553],[-122.448763878,37.731956025],[-122.44867743,37.731956418],[-122.448590983,37.731956811],[-122.448504535,37.731957202],[-122.448418088,37.731957595],[-122.44833164,37.731957987],[-122.448329625,37.731957996],[-122.448245194,37.731958378],[-122.448243177,37.731958387],[-122.448158027,37.731958773],[-122.448156729,37.731958779],[-122.448070283,37.731959172],[-122.447985851,37.731959554],[-122.447983836,37.731959564],[-122.447899404,37.731959946],[-122.447897388,37.731959955],[-122.447812957,37.731960338],[-122.447810941,37.731960347],[-122.44772651,37.731960729],[-122.447724493,37.731960738],[-122.447640063,37.73196112],[-122.447553615,37.731961512],[-122.447467168,37.731961904],[-122.44738089,37.731962294],[-122.447294443,37.731962686],[-122.447291821,37.731547152],[-122.447726017,37.731545998],[-122.448590497,37.731543695],[-122.448590223,37.731503424],[-122.448589583,37.731409398],[-122.448587684,37.731130694],[-122.448674131,37.731130351],[-122.448760578,37.731130008],[-122.448767241,37.731129981],[-122.448863449,37.7311296],[-122.448960918,37.731129213],[-122.448966321,37.731129191],[-122.449052674,37.731128847],[-122.449139121,37.731128504],[-122.449225567,37.73112816],[-122.449277435,37.731127954],[-122.449276967,37.731059296],[-122.449311545,37.731059159],[-122.449380703,37.731058884],[-122.449484438,37.731058471],[-122.449588174,37.731058059],[-122.44969191,37.731057646],[-122.449788007,37.731057264],[-122.449795646,37.731057233],[-122.449899381,37.73105682],[-122.449985828,37.731056476],[-122.450003118,37.731056407],[-122.450003352,37.731090736],[-122.450089798,37.731090392],[-122.450176245,37.731090048],[-122.450262692,37.731089703],[-122.450349138,37.731089359],[-122.450435585,37.731089014],[-122.450522031,37.73108867],[-122.450608478,37.731088325],[-122.450694925,37.731087981],[-122.450695159,37.731122309],[-122.451040946,37.73112093],[-122.451143818,37.73112052],[-122.451241339,37.73112013],[-122.451246689,37.731120109],[-122.451419722,37.731119418],[-122.451506168,37.731119073],[-122.451592615,37.731118727],[-122.451592415,37.731084398],[-122.451678862,37.731084053],[-122.451765309,37.731083707],[-122.451851755,37.731083361],[-122.451938202,37.731083016],[-122.452024649,37.731082671],[-122.452067872,37.731082498],[-122.452111095,37.731082324],[-122.452197542,37.731081979],[-122.452283989,37.731081633],[-122.452370434,37.731081287],[-122.452456881,37.731080942],[-122.452543327,37.731080595],[-122.452586551,37.731080422],[-122.452629774,37.731080249],[-122.452716221,37.731079903],[-122.452802667,37.731079557],[-122.452802629,37.73107292],[-122.452830307,37.731075593],[-122.45283033,37.731079446],[-122.45297556,37.731078865],[-122.452975761,37.731113193],[-122.453321547,37.731111807],[-122.453409985,37.731111453],[-122.453411344,37.731530646],[-122.451594196,37.731535624],[-122.451594578,37.731573272],[-122.451595552,37.731668983],[-122.451598297,37.731938978],[-122.451598339,37.731943127],[-122.451511891,37.731943521],[-122.451425444,37.731943916],[-122.451338997,37.73194431],[-122.451252549,37.731944704],[-122.451248131,37.731944778],[-122.45115023,37.731946399],[-122.451150219,37.731945171],[-122.451046804,37.731945642],[-122.450924049,37.731946202],[-122.450787462,37.731946824]]]]}},"NC-1","6:00AM-11:00PM",0.000003259740727056862,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19679,0.014937012252174354,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"MB-RA","commercial_hours_of_operation":null,"shape_area":0.00012097795923875469,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article9missionbaydistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_902","districtname":"MISSION BAY REDEVELOPMENT","zoning":"MB-RA","codesection":902,"objectid":20524,"shape_length":0.08808415353228229,"gen":"Mixed Use","index":83},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.391892211,37.778166967],[-122.391840525,37.778125697],[-122.391715475,37.778026156],[-122.391702056,37.778015474],[-122.391311734,37.777704771],[-122.391121419,37.777553276],[-122.391304196,37.777408777],[-122.391325503,37.777391933],[-122.39162362,37.777156248],[-122.392042324,37.776825226],[-122.392342778,37.776587688],[-122.392583458,37.776397406],[-122.393148216,37.775950902],[-122.393154813,37.775945686],[-122.393355125,37.775787315],[-122.393157742,37.775638544],[-122.393139911,37.775625104],[-122.392867075,37.775419461],[-122.392768989,37.775345531],[-122.392656986,37.77526111],[-122.392651648,37.775257087],[-122.392600503,37.775218538],[-122.392752686,37.775151212],[-122.3928096,37.775094999],[-122.39288133,37.775039239],[-122.392977624,37.775002913],[-122.393003813,37.774993033],[-122.393055973,37.774989431],[-122.393093333,37.774986066],[-122.393132831,37.774964003],[-122.393194903,37.77491445],[-122.393307793,37.774824328],[-122.39334001,37.77478994],[-122.393340747,37.774750528],[-122.393347041,37.77472416],[-122.393445052,37.774640329],[-122.393488794,37.77461405],[-122.393571023,37.774560195],[-122.393622282,37.774521354],[-122.393724021,37.774447139],[-122.393924409,37.774280097],[-122.394088565,37.774160641],[-122.394255761,37.774023854],[-122.394445907,37.773899141],[-122.394593792,37.773756442],[-122.39473053,37.773654707],[-122.394762904,37.773626536],[-122.39480926,37.773559526],[-122.394810775,37.773557335],[-122.394820644,37.773547257],[-122.394850666,37.773516602],[-122.394907024,37.773472839],[-122.394943653,37.773450099],[-122.394948173,37.773447293],[-122.394952631,37.773451369],[-122.394962051,37.773446424],[-122.395036843,37.773407159],[-122.395168358,37.773305506],[-122.395294184,37.773219844],[-122.395381439,37.773158303],[-122.395479303,37.773068942],[-122.395593495,37.772971024],[-122.395702869,37.772889081],[-122.39581699,37.772788398],[-122.395929793,37.772704327],[-122.395993932,37.772658365],[-122.39611398,37.772585237],[-122.39612074,37.772578923],[-122.396186276,37.772517715],[-122.396210602,37.77248138],[-122.396205263,37.772453599],[-122.396198551,37.772418671],[-122.39619634,37.772366172],[-122.396226795,37.77233112],[-122.396316535,37.7722647],[-122.396414997,37.772198831],[-122.396497344,37.772149811],[-122.396555441,37.772106019],[-122.3965973,37.772074241],[-122.396598124,37.772038283],[-122.396630177,37.771997675],[-122.396716235,37.771957582],[-122.39682239,37.771886058],[-122.396898396,37.771827462],[-122.396921422,37.771808429],[-122.396770862,37.771846104],[-122.396771909,37.771853],[-122.396739061,37.771862514],[-122.396722611,37.771866235],[-122.396642323,37.771927665],[-122.396612963,37.771903253],[-122.396695739,37.771836944],[-122.396758858,37.771819339],[-122.396761663,37.771826898],[-122.396993605,37.771770631],[-122.397007056,37.771751751],[-122.397037468,37.771749188],[-122.397072339,37.771750701],[-122.397080314,37.771756102],[-122.39717597,37.771682674],[-122.397171923,37.77166062],[-122.397197085,37.771622888],[-122.397341773,37.771525859],[-122.39740561,37.771468151],[-122.397588252,37.771361179],[-122.397590072,37.771360112],[-122.397752152,37.771262112],[-122.39795709,37.771069827],[-122.398214144,37.770828641],[-122.398343641,37.770724024],[-122.398394401,37.770674703],[-122.398420593,37.770650637],[-122.398477532,37.770625288],[-122.398492484,37.770609495],[-122.398505568,37.770595676],[-122.39851244,37.770553794],[-122.398511997,37.770536462],[-122.398563122,37.770516723],[-122.398590528,37.770501307],[-122.398597743,37.770472819],[-122.39860208,37.770448316],[-122.398572474,37.77041648],[-122.398543799,37.770382264],[-122.398528999,37.770347036],[-122.398516954,37.770303094],[-122.398514633,37.770251115],[-122.398525394,37.770206018],[-122.398548977,37.770157562],[-122.398540252,37.770126965],[-122.39844863,37.770077212],[-122.398414001,37.770043092],[-122.398403473,37.770019617],[-122.398368415,37.770007572],[-122.3983442,37.770038351],[-122.398337643,37.770046685],[-122.398244421,37.770128577],[-122.398145855,37.770195579],[-122.397623767,37.770641839],[-122.397602861,37.770629301],[-122.397531674,37.770699773],[-122.397553254,37.770714281],[-122.397544588,37.770716896],[-122.397524878,37.770702358],[-122.39745078,37.770756535],[-122.397300321,37.770875053],[-122.397258228,37.770906466],[-122.397246392,37.770915299],[-122.397217821,37.770901089],[-122.397218987,37.770927707],[-122.397214106,37.770927014],[-122.397212979,37.770901938],[-122.397135177,37.770959555],[-122.397115353,37.770976321],[-122.397031872,37.771046922],[-122.396939998,37.77112484],[-122.396824725,37.771219734],[-122.396746972,37.77127928],[-122.39665622,37.771344053],[-122.396589323,37.771390684],[-122.396571224,37.771405645],[-122.39662136,37.771445375],[-122.396652993,37.77143468],[-122.396665033,37.771454121],[-122.397271313,37.770979665],[-122.397289947,37.770999001],[-122.397280358,37.771010936],[-122.397312713,37.771050995],[-122.397201048,37.771140631],[-122.397173174,37.77116158],[-122.397101859,37.771220951],[-122.397094516,37.771216559],[-122.397076801,37.771230785],[-122.397083081,37.771233964],[-122.397078011,37.771237735],[-122.397024806,37.77119718],[-122.397010684,37.771210528],[-122.397061287,37.771250305],[-122.396951886,37.771335299],[-122.39690336,37.771295898],[-122.396883568,37.771309748],[-122.396945834,37.771361228],[-122.396924504,37.771375512],[-122.396929235,37.771378715],[-122.39689881,37.771400936],[-122.396893037,37.771397339],[-122.396840491,37.771443287],[-122.396788865,37.771403935],[-122.396793882,37.771398115],[-122.396779174,37.771388511],[-122.396756896,37.77140609],[-122.39677114,37.771417751],[-122.39677453,37.771429177],[-122.396782823,37.771430274],[-122.39681403,37.771458883],[-122.396780137,37.7714869],[-122.396764797,37.771472796],[-122.396741518,37.771491621],[-122.396728697,37.771475017],[-122.396715506,37.771464158],[-122.396717394,37.771457158],[-122.396703171,37.771446316],[-122.39666582,37.771480538],[-122.396743796,37.771540377],[-122.39668714,37.771587211],[-122.39659332,37.771513687],[-122.396560892,37.771538399],[-122.396656799,37.771612709],[-122.39660929,37.771653656],[-122.396557749,37.771617583],[-122.396546145,37.77162843],[-122.396494014,37.771589498],[-122.396470229,37.771608741],[-122.396561509,37.771683946],[-122.396512874,37.77172122],[-122.39642214,37.771647237],[-122.396411528,37.771656428],[-122.396442092,37.771680127],[-122.396422375,37.771696845],[-122.396485135,37.771747497],[-122.396471477,37.771758787],[-122.396376561,37.771682821],[-122.396313267,37.771732631],[-122.396412406,37.77181222],[-122.396362243,37.771850339],[-122.396260057,37.771772849],[-122.396232245,37.771796257],[-122.396325001,37.771868568],[-122.396311828,37.771878621],[-122.396219051,37.77180549],[-122.396202905,37.771820511],[-122.396285325,37.771892578],[-122.396235245,37.771933976],[-122.39624107,37.771939622],[-122.396233451,37.771944665],[-122.396138504,37.771867469],[-122.396074723,37.771918516],[-122.396178438,37.771995162],[-122.396156128,37.772011512],[-122.396142769,37.771994095],[-122.396103839,37.772027113],[-122.396088137,37.772039256],[-122.396080402,37.772039791],[-122.396066252,37.772031818],[-122.396049474,37.772042338],[-122.395983616,37.771991735],[-122.395920805,37.772040307],[-122.395991405,37.772094524],[-122.395976714,37.772105831],[-122.39590661,37.772050786],[-122.395883382,37.77207166],[-122.395974641,37.772146046],[-122.395934078,37.77217581],[-122.395912418,37.772156888],[-122.395898211,37.772166957],[-122.395829119,37.772111075],[-122.395766422,37.772164156],[-122.395836506,37.772218381],[-122.395821836,37.772230508],[-122.395750688,37.772175069],[-122.395716733,37.772200626],[-122.395823743,37.772285009],[-122.395786299,37.772315543],[-122.395755651,37.772288565],[-122.395744986,37.772295706],[-122.395671194,37.77223785],[-122.395613536,37.772285929],[-122.395680522,37.772340205],[-122.395668402,37.77235106],[-122.39559777,37.772295613],[-122.39554007,37.772342053],[-122.395609089,37.772395066],[-122.395594409,37.772406782],[-122.395526917,37.772352925],[-122.395503121,37.772371758],[-122.395582707,37.772434032],[-122.395552323,37.772457891],[-122.395541778,37.77244945],[-122.395524546,37.772462438],[-122.395514042,37.772455637],[-122.395503492,37.772467287],[-122.395439761,37.772419109],[-122.395385149,37.77246509],[-122.395451123,37.772520201],[-122.395436937,37.77253109],[-122.395369404,37.772475593],[-122.395345165,37.772497304],[-122.395414268,37.772553595],[-122.395370658,37.772585458],[-122.395353416,37.772598036],[-122.39528328,37.772541761],[-122.395219066,37.772596095],[-122.395289719,37.772652362],[-122.395276556,37.772662824],[-122.395202247,37.772604976],[-122.395177976,37.772625458],[-122.395197436,37.772639085],[-122.395195433,37.772641577],[-122.39527683,37.772714072],[-122.39523225,37.77274841],[-122.395222252,37.772741191],[-122.395206043,37.772753752],[-122.395112718,37.772679399],[-122.395051465,37.772728355],[-122.395144833,37.772804348],[-122.395130637,37.772814826],[-122.395138559,37.77282167],[-122.395103107,37.772849301],[-122.395003977,37.772770121],[-122.394958301,37.772802017],[-122.395034211,37.772861889],[-122.395064796,37.772886408],[-122.395051127,37.772897289],[-122.395064813,37.772907319],[-122.395025861,37.772939516],[-122.394907662,37.772841782],[-122.3948697,37.772872323],[-122.395009362,37.772981193],[-122.394949745,37.773030068],[-122.394947634,37.773031798],[-122.394939156,37.773024915],[-122.394809965,37.772920026],[-122.394778549,37.772943902],[-122.394850438,37.773000278],[-122.394920855,37.773055499],[-122.394925079,37.773058811],[-122.394922022,37.773060501],[-122.394935719,37.773070941],[-122.394919521,37.773083912],[-122.39493326,37.773095992],[-122.394899829,37.77312195],[-122.394867705,37.773097463],[-122.394867625,37.773097543],[-122.394859179,37.773107843],[-122.394856778,37.773106109],[-122.394849181,37.773100623],[-122.394853175,37.773095229],[-122.394792425,37.77304676],[-122.394717665,37.772987112],[-122.394670187,37.773029287],[-122.394741158,37.773087836],[-122.394798405,37.773135061],[-122.394788835,37.773144645],[-122.394795167,37.773149874],[-122.394756183,37.773180841],[-122.394742535,37.773192541],[-122.394601778,37.773081229],[-122.394589705,37.773090971],[-122.394452976,37.773201296],[-122.394430798,37.773182381],[-122.394538728,37.773100283],[-122.394530827,37.77309426],[-122.394521883,37.773087843],[-122.394514053,37.773084688],[-122.394544872,37.773055208],[-122.394555906,37.773044654],[-122.394577978,37.773025679],[-122.394581178,37.773022927],[-122.394601176,37.773037367],[-122.39465191,37.77300129],[-122.394855997,37.772841382],[-122.394939561,37.772776076],[-122.394927413,37.772765611],[-122.39494005,37.772754748],[-122.394769795,37.772622572],[-122.394649047,37.772728952],[-122.394593098,37.772761326],[-122.394518579,37.77280759],[-122.394443887,37.772882471],[-122.394445482,37.772909628],[-122.394354003,37.772997654],[-122.394311931,37.773044112],[-122.394288228,37.773068814],[-122.394196838,37.773089597],[-122.39412914,37.773120729],[-122.394043092,37.773174332],[-122.393996133,37.773205845],[-122.393934497,37.773262632],[-122.393840924,37.773339246],[-122.393776885,37.773372465],[-122.393755721,37.773390688],[-122.393745822,37.773426615],[-122.393712412,37.773459341],[-122.393590486,37.773555009],[-122.393471853,37.773638464],[-122.393333102,37.773745847],[-122.393299546,37.773772853],[-122.39326,37.773777065],[-122.393189247,37.773829706],[-122.393095581,37.773902744],[-122.392995328,37.77400021],[-122.392863691,37.774103901],[-122.392809779,37.774145541],[-122.392795468,37.774185115],[-122.392774394,37.774206913],[-122.392725986,37.77421699],[-122.392647933,37.77426617],[-122.39258937,37.774302162],[-122.392547223,37.774345759],[-122.392518206,37.774374123],[-122.392512129,37.774418572],[-122.392424768,37.774491508],[-122.392371374,37.774518117],[-122.392288753,37.774600277],[-122.392253631,37.774636608],[-122.39224779,37.774690352],[-122.392249485,37.774756851],[-122.39203233,37.774899828],[-122.39199433,37.774893999],[-122.391952082,37.774898254],[-122.391923947,37.774925888],[-122.391882501,37.774961605],[-122.391841335,37.774972996],[-122.391816011,37.775004877],[-122.391776238,37.77503556],[-122.391742644,37.775061135],[-122.39169995,37.775083281],[-122.391641459,37.775122133],[-122.391571567,37.775173327],[-122.391534514,37.775204682],[-122.391469254,37.775260809],[-122.391408388,37.775312576],[-122.391356239,37.775352756],[-122.391301443,37.775395125],[-122.391237638,37.775437637],[-122.391164214,37.775491751],[-122.391110446,37.77553911],[-122.391054894,37.775587213],[-122.390996621,37.775634645],[-122.390938403,37.775684222],[-122.390849237,37.775757186],[-122.390748523,37.775836773],[-122.390690305,37.77588635],[-122.39062396,37.775935342],[-122.390545021,37.775985251],[-122.390499287,37.77602962],[-122.390477957,37.776041407],[-122.390472798,37.776086556],[-122.390438211,37.776108571],[-122.390385369,37.776121579],[-122.39029755,37.776176638],[-122.390218292,37.776249442],[-122.390174696,37.776271602],[-122.390100832,37.776330564],[-122.389964462,37.776439423],[-122.38990126,37.776489874],[-122.389900499,37.776459944],[-122.389900003,37.776440456],[-122.389898631,37.776440478],[-122.389888833,37.776338395],[-122.389885916,37.776307997],[-122.389570161,37.773017619],[-122.389427433,37.773025479],[-122.38850306,37.773076382],[-122.38819806,37.773093176],[-122.387606428,37.77312575],[-122.387644932,37.773211824],[-122.387653565,37.773231124],[-122.387673445,37.773275563],[-122.387610618,37.773290647],[-122.387407384,37.77333944],[-122.387361315,37.773235803],[-122.387358326,37.773229081],[-122.387205154,37.773238303],[-122.386970328,37.772696426],[-122.386970139,37.772695989],[-122.386727202,37.772135634],[-122.386599352,37.771841544],[-122.386596652,37.771835329],[-122.386506485,37.771627421],[-122.386433166,37.77145781],[-122.386390886,37.77137624],[-122.386325169,37.771285224],[-122.386244792,37.77116498],[-122.386165006,37.771046806],[-122.385912574,37.770669915],[-122.385836448,37.770552818],[-122.385777041,37.77046661],[-122.385752694,37.770431206],[-122.385736221,37.770406611],[-122.385716074,37.770375547],[-122.385703334,37.770354797],[-122.385700339,37.770349695],[-122.385656998,37.770270129],[-122.385656877,37.770269893],[-122.38564947,37.770254564],[-122.38561659,37.770177015],[-122.385590476,37.770104723],[-122.385587157,37.770094143],[-122.385580623,37.77007165],[-122.385574586,37.770049071],[-122.385572631,37.770041073],[-122.385558924,37.769976616],[-122.385545674,37.769881077],[-122.385485485,37.769093939],[-122.385483438,37.769072446],[-122.385482771,37.769063761],[-122.385440723,37.768623601],[-122.385425819,37.768449191],[-122.3854137,37.768276297],[-122.385404668,37.768148792],[-122.385404463,37.768137872],[-122.385404482,37.768132381],[-122.385408842,37.768051803],[-122.385410154,37.76804024],[-122.385412353,37.768024037],[-122.385414908,37.768007866],[-122.385417818,37.767991734],[-122.385462779,37.767757094],[-122.385467688,37.767733511],[-122.385471471,37.767717493],[-122.385472344,37.767714119],[-122.385480087,37.767685626],[-122.385484921,37.767669788],[-122.3854901,37.767654017],[-122.385495627,37.767638322],[-122.385501497,37.767622705],[-122.38550771,37.767607173],[-122.385514264,37.767591728],[-122.385521155,37.767576378],[-122.385528384,37.767561123],[-122.385957314,37.766679407],[-122.386093549,37.766399356],[-122.386163468,37.766257221],[-122.386262639,37.766053272],[-122.38626634,37.76604566],[-122.386266231,37.766044379],[-122.386266756,37.766043299],[-122.386261771,37.765991113],[-122.386262107,37.765990655],[-122.386362037,37.765854648],[-122.386692395,37.765405026],[-122.386743875,37.76533496],[-122.386778582,37.765291965],[-122.386878559,37.765174107],[-122.386977211,37.765073683],[-122.38700384,37.765046888],[-122.387023085,37.765024226],[-122.387176462,37.764843613],[-122.38753121,37.764425866],[-122.387601521,37.764392029],[-122.38770971,37.76435865],[-122.387769367,37.764340245],[-122.387908929,37.764297186],[-122.387912839,37.764337947],[-122.387916811,37.76437937],[-122.387932125,37.764378427],[-122.387976474,37.764375697],[-122.388851283,37.764321834],[-122.389022145,37.764311313],[-122.38985196,37.764260214],[-122.390817277,37.764200763],[-122.391387159,37.764165662],[-122.391781009,37.764141402],[-122.392485618,37.764097997],[-122.392609522,37.764090364],[-122.392714334,37.764083906],[-122.39274474,37.764082033],[-122.392994681,37.764066634],[-122.393173807,37.764055598],[-122.393220461,37.764052724],[-122.393235304,37.76405181],[-122.393729796,37.764021342],[-122.393739592,37.76412789],[-122.393783884,37.764609596],[-122.393847983,37.765306724],[-122.393862072,37.765459947],[-122.393875975,37.765611152],[-122.394022229,37.7657264],[-122.394026617,37.765729857],[-122.394584164,37.766169198],[-122.394713154,37.76627084],[-122.394941348,37.766450652],[-122.394949259,37.766535194],[-122.39504665,37.766533628],[-122.395060545,37.766544576],[-122.395220365,37.766674242],[-122.395356449,37.766784649],[-122.395566933,37.766955416],[-122.39582644,37.767165956],[-122.396099681,37.767383766],[-122.396409309,37.767630579],[-122.396505609,37.767707342],[-122.396653409,37.767825156],[-122.396860613,37.767990322],[-122.397247456,37.768298678],[-122.39742241,37.768438134],[-122.397619954,37.768595595],[-122.397999184,37.768897875],[-122.398179219,37.769041377],[-122.39837169,37.769194858],[-122.398617492,37.769390865],[-122.398754147,37.769499834],[-122.399045712,37.76973233],[-122.399200167,37.769856068],[-122.399818746,37.770351625],[-122.399824334,37.770356101],[-122.400022816,37.770515107],[-122.400205522,37.770660691],[-122.400232585,37.770682255],[-122.400615107,37.770987055],[-122.400804277,37.771137787],[-122.400992983,37.771288181],[-122.401447777,37.771650636],[-122.40146244,37.771662323],[-122.401656681,37.771817124],[-122.401456095,37.771975568],[-122.401447082,37.771982687],[-122.400498063,37.772732305],[-122.399891887,37.773211105],[-122.399836016,37.773255235],[-122.399735613,37.773334538],[-122.399529077,37.773497672],[-122.399428733,37.773417627],[-122.398757584,37.772882293],[-122.39866678,37.772954021],[-122.397980167,37.773496381],[-122.397976317,37.773501898],[-122.397975388,37.773503219],[-122.397975227,37.773503449],[-122.397972442,37.773507404],[-122.397968545,37.7735129],[-122.397964623,37.773518385],[-122.397960679,37.773523859],[-122.39795671,37.773529323],[-122.397955314,37.77353123],[-122.397955159,37.773531444],[-122.397952719,37.773534776],[-122.397948702,37.773540217],[-122.397944664,37.773545649],[-122.397940602,37.773551068],[-122.397936517,37.773556477],[-122.397934693,37.773558872],[-122.397934479,37.773559157],[-122.397932407,37.773561875],[-122.397928276,37.773567262],[-122.39792412,37.773572637],[-122.397919942,37.773578002],[-122.39791574,37.773583354],[-122.397913427,37.773586278],[-122.397913192,37.773586579],[-122.397911516,37.773588695],[-122.397907269,37.773594025],[-122.397902998,37.773599343],[-122.397898705,37.77360465],[-122.397894389,37.773609945],[-122.397891443,37.773613533],[-122.397891305,37.773613703],[-122.397890051,37.773615229],[-122.39788569,37.7736205],[-122.397881305,37.77362576],[-122.397876898,37.773631008],[-122.397872469,37.773636243],[-122.397869033,37.773640274],[-122.397868826,37.773640519],[-122.397868012,37.773641464],[-122.397863542,37.773646678],[-122.397859046,37.773651878],[-122.397854527,37.773657065],[-122.397849985,37.77366224],[-122.397845828,37.773666943],[-122.397845761,37.77366702],[-122.39784542,37.773667402],[-122.397840836,37.773672553],[-122.397836229,37.77367769],[-122.397831598,37.773682815],[-122.397826945,37.773687928],[-122.397822271,37.773693027],[-122.397822116,37.773693197],[-122.397817575,37.773698115],[-122.397812857,37.773703189],[-122.397808118,37.773708251],[-122.397803356,37.7737133],[-122.397798569,37.773718333],[-122.397797897,37.773719042],[-122.397793768,37.773723358],[-122.397788941,37.773728368],[-122.397784094,37.773733364],[-122.397779224,37.773738347],[-122.397774327,37.773743314],[-122.397773116,37.773744549],[-122.397769421,37.773748274],[-122.397764488,37.773753218],[-122.397759533,37.773758149],[-122.397756743,37.773760906],[-122.397754558,37.773763065],[-122.39774956,37.773767968],[-122.397747963,37.773769524],[-122.397747777,37.773769707],[-122.397744542,37.773772858],[-122.397739503,37.773777734],[-122.397734442,37.773782596],[-122.397729361,37.773787444],[-122.397724259,37.773792278],[-122.397722102,37.773794308],[-122.397721888,37.773794511],[-122.397719136,37.7737971],[-122.397713992,37.773801906],[-122.397708828,37.773806699],[-122.397703644,37.773811478],[-122.397698438,37.773816243],[-122.397695711,37.773818722],[-122.397695459,37.773818953],[-122.397693212,37.773820993],[-122.397687966,37.773825729],[-122.3976827,37.773830451],[-122.397677413,37.77383516],[-122.397672106,37.773839853],[-122.397668715,37.773842832],[-122.397668496,37.773843025],[-122.397666779,37.773844531],[-122.397661432,37.773849197],[-122.397656064,37.773853846],[-122.397650676,37.773858482],[-122.397645268,37.773863102],[-122.39764123,37.77386653],[-122.397641008,37.77386672],[-122.397639838,37.773867705],[-122.397634395,37.7738723],[-122.397628928,37.773876876],[-122.397623442,37.773881438],[-122.397617936,37.773885985],[-122.397613205,37.773889864],[-122.397613004,37.77389003],[-122.397612407,37.773890514],[-122.397606865,37.773895034],[-122.397601301,37.773899535],[-122.397595716,37.773904022],[-122.397590114,37.773908493],[-122.397584492,37.77391295],[-122.397428953,37.774035807],[-122.3973754,37.774070563],[-122.396726752,37.774491538],[-122.39671556,37.774498802],[-122.396690505,37.774515063],[-122.396695647,37.774511001],[-122.396690292,37.77450673],[-122.396681049,37.774499357],[-122.396617422,37.774448603],[-122.396551338,37.774501444],[-122.39642643,37.77460132],[-122.396359139,37.774655124],[-122.396258774,37.774735374],[-122.396161932,37.774811966],[-122.395406171,37.775409685],[-122.395157422,37.775606414],[-122.394330768,37.77626018],[-122.394301522,37.776283308],[-122.394246213,37.77632705],[-122.394189689,37.776371609],[-122.394136183,37.776413788],[-122.394141926,37.776418378],[-122.39430836,37.776551389],[-122.394314163,37.776556027],[-122.394768816,37.776919377],[-122.394792034,37.776937932],[-122.394981481,37.777089332],[-122.394777266,37.777250607],[-122.394772163,37.777254637],[-122.393984795,37.777876437],[-122.393968692,37.777889154],[-122.393857286,37.777977132],[-122.393838367,37.777992072],[-122.393720224,37.778085371],[-122.393648405,37.778142086],[-122.393536575,37.778230398],[-122.393286996,37.77842749],[-122.393138462,37.778544786],[-122.392952725,37.77869146],[-122.392949036,37.778694373],[-122.392749787,37.778851717],[-122.392557036,37.778697813],[-122.392541723,37.778685586],[-122.392080332,37.778317178],[-122.392077217,37.778314691],[-122.391909944,37.778181126],[-122.391892211,37.778166967]],[[-122.395698062,37.772178665],[-122.39558991,37.772091886],[-122.395560174,37.772106528],[-122.395531848,37.772132652],[-122.395511335,37.772159095],[-122.395501265,37.772179616],[-122.395488932,37.772198845],[-122.395471391,37.772210635],[-122.395438575,37.772213819],[-122.395411266,37.772214258],[-122.395360954,37.772230999],[-122.395250032,37.772297843],[-122.39517816,37.7723437],[-122.395152552,37.772367126],[-122.395121141,37.77240348],[-122.395071157,37.772433052],[-122.395010116,37.772466342],[-122.394969437,37.772489125],[-122.394921147,37.772519555],[-122.394882675,37.772541417],[-122.394844496,37.772574782],[-122.394791383,37.772612813],[-122.394953633,37.772743866],[-122.394968388,37.772732121],[-122.394987198,37.772748195],[-122.394992353,37.772731736],[-122.395259667,37.772522522],[-122.395572381,37.77227894],[-122.395648327,37.772217969],[-122.395698062,37.772178665]],[[-122.395601726,37.772073479],[-122.39571618,37.772165551],[-122.39582683,37.772078173],[-122.395903187,37.772015054],[-122.396042764,37.771905964],[-122.396168253,37.771807261],[-122.396234051,37.771756013],[-122.396351095,37.771660833],[-122.396452301,37.771583459],[-122.396487321,37.771557339],[-122.396565641,37.771495113],[-122.396604642,37.771457844],[-122.3965294,37.771397472],[-122.396495147,37.771423271],[-122.396462184,37.771453977],[-122.396387237,37.771511531],[-122.396328515,37.771551272],[-122.396284458,37.771572919],[-122.39627895,37.771585016],[-122.396253916,37.77160728],[-122.396202901,37.771645051],[-122.396113201,37.771717313],[-122.396046359,37.771758109],[-122.396027006,37.771790135],[-122.395965022,37.771838858],[-122.395897719,37.771891977],[-122.395827536,37.771938677],[-122.395764279,37.77198311],[-122.395708571,37.772019416],[-122.395667371,37.772046559],[-122.395623032,37.772057125],[-122.395601726,37.772073479]]]]}},"MB-RA",null,0.00012097795923875469,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article9missionbaydistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_902","MISSION BAY REDEVELOPMENT","MB-RA",902,20524,0.08808415353228229,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCT","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000007879938497255143,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_763","districtname":"24TH-MISSION NEIGHBORHOOD COMMERCIAL TRANSIT","zoning":"NCT-24TH-MISSION","codesection":763,"objectid":19845,"shape_length":0.033238404909968114,"gen":"Mixed Use","index":84},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.405359437,37.753356994],[-122.405331104,37.753063831],[-122.404363177,37.753121411],[-122.40433502,37.752825321],[-122.404472985,37.752817049],[-122.404559212,37.752811874],[-122.404645438,37.752806698],[-122.404638927,37.752738234],[-122.404811382,37.752727882],[-122.404897608,37.752722706],[-122.404983835,37.75271753],[-122.405070062,37.752712355],[-122.405155197,37.752707244],[-122.405295814,37.752698677],[-122.405295829,37.752698829],[-122.405431114,37.752690586],[-122.405606472,37.752680417],[-122.405692715,37.752675415],[-122.405778958,37.752670413],[-122.405844502,37.752666612],[-122.405840059,37.752657672],[-122.405811242,37.752599699],[-122.405777982,37.752532786],[-122.405942052,37.752523271],[-122.406110881,37.752513479],[-122.406290443,37.75250313],[-122.406336238,37.75300403],[-122.406510132,37.752953764],[-122.407291183,37.752906611],[-122.407257008,37.752548102],[-122.407360479,37.752541883],[-122.407499502,37.75253361],[-122.407706456,37.752521294],[-122.408051379,37.752500768],[-122.40815485,37.752494549],[-122.408160084,37.752549441],[-122.408263555,37.752543222],[-122.408403918,37.752534868],[-122.408472903,37.752530763],[-122.408541887,37.752526657],[-122.408610872,37.752522551],[-122.40860565,37.75246778],[-122.408609459,37.752467554],[-122.408950572,37.752447252],[-122.409095863,37.752438518],[-122.409088046,37.752356533],[-122.409195365,37.752350082],[-122.409233336,37.7523478],[-122.409403747,37.752337656],[-122.40941158,37.752419811],[-122.409521956,37.752413242],[-122.409618534,37.752407493],[-122.409790133,37.752397278],[-122.409924203,37.752389298],[-122.409928964,37.752389014],[-122.409947646,37.752387891],[-122.410032435,37.752382793],[-122.410066406,37.752739024],[-122.410428114,37.752717177],[-122.410420809,37.752640939],[-122.410419717,37.752629547],[-122.41040563,37.752481816],[-122.410393093,37.752350368],[-122.410479324,37.752345234],[-122.410572453,37.752339691],[-122.410651784,37.752334967],[-122.410824245,37.7523247],[-122.410927716,37.752318478],[-122.410927727,37.752318601],[-122.410993663,37.752314636],[-122.411031199,37.752312379],[-122.411290753,37.752296925],[-122.411376984,37.75229179],[-122.411452687,37.752287284],[-122.411549444,37.752281522],[-122.411556015,37.752349983],[-122.411563112,37.75242392],[-122.411735573,37.752413651],[-122.411745087,37.752413073],[-122.411878285,37.752404985],[-122.41187204,37.752340156],[-122.412013878,37.752331543],[-122.412253508,37.752317108],[-122.412401814,37.752308173],[-122.412435711,37.75230616],[-122.412435705,37.752306102],[-122.412470793,37.752304018],[-122.412643242,37.752293629],[-122.412858803,37.752280642],[-122.41296602,37.752274045],[-122.412974063,37.752356453],[-122.413073523,37.752350333],[-122.413461533,37.752326955],[-122.413496856,37.752324832],[-122.413495601,37.752311677],[-122.413529269,37.752309654],[-122.413727929,37.752297684],[-122.413917278,37.752286274],[-122.414063145,37.752277083],[-122.414062648,37.752272113],[-122.414201274,37.752263378],[-122.414317593,37.752256368],[-122.414304993,37.752124648],[-122.414391217,37.752119452],[-122.414477442,37.752114257],[-122.414563666,37.75210906],[-122.414598155,37.752106982],[-122.414822338,37.752093472],[-122.414908562,37.752088275],[-122.415029276,37.752081001],[-122.415136286,37.752074352],[-122.415137672,37.752088426],[-122.41521114,37.75208386],[-122.415237524,37.752082221],[-122.415326321,37.752076869],[-122.415410821,37.752071777],[-122.41549532,37.752066684],[-122.41557982,37.752061591],[-122.415662596,37.752056603],[-122.415667835,37.752111371],[-122.415674386,37.752179833],[-122.415820966,37.752170999],[-122.416096884,37.752154368],[-122.416105935,37.752153806],[-122.416243083,37.752145282],[-122.416247753,37.752192651],[-122.416385906,37.752184065],[-122.416781635,37.752159862],[-122.41680883,37.752158206],[-122.41680037,37.752070665],[-122.416824989,37.752069165],[-122.416920691,37.752063397],[-122.416993119,37.75205903],[-122.417017262,37.752057574],[-122.41722075,37.752045307],[-122.417331594,37.752038457],[-122.41733327,37.752055559],[-122.417357817,37.752305978],[-122.417375156,37.752492862],[-122.417377627,37.752519488],[-122.417357112,37.752520688],[-122.417266749,37.752525973],[-122.416967422,37.752546636],[-122.416848714,37.752616231],[-122.416778106,37.752657625],[-122.41676613,37.752532476],[-122.41676337,37.752503624],[-122.416418332,37.752522961],[-122.416412679,37.752523292],[-122.416280192,37.752531041],[-122.416281706,37.752547362],[-122.416135305,37.752555925],[-122.415813697,37.75257527],[-122.415821556,37.752657424],[-122.415829417,37.752739577],[-122.415753655,37.752744134],[-122.415725945,37.752745801],[-122.415724636,37.752732109],[-122.415705666,37.75273325],[-122.415622889,37.752738229],[-122.415491826,37.752746112],[-122.415412498,37.752750883],[-122.415302129,37.752757522],[-122.415202317,37.752763359],[-122.415202378,37.752764016],[-122.415143345,37.752767469],[-122.415095217,37.752770283],[-122.414905807,37.752781866],[-122.414828211,37.75278661],[-122.414750614,37.752791355],[-122.414756322,37.752851605],[-122.414678726,37.752856349],[-122.414675234,37.752819493],[-122.414669515,37.752759129],[-122.414247049,37.75278496],[-122.414232622,37.752785802],[-122.414112581,37.75279281],[-122.414118906,37.752861133],[-122.413968927,37.752869887],[-122.413591598,37.752892576],[-122.413470882,37.752899836],[-122.413462258,37.752900353],[-122.41333292,37.752908131],[-122.413125976,37.752920574],[-122.413027533,37.752926254],[-122.413028582,37.752937709],[-122.412999583,37.752939382],[-122.412920081,37.75294397],[-122.412747629,37.752954338],[-122.412654297,37.75295995],[-122.412583798,37.752964188],[-122.412497572,37.752969373],[-122.41249574,37.752950204],[-122.412360139,37.752958356],[-122.412353592,37.752889894],[-122.412069045,37.752907],[-122.412055196,37.752907803],[-122.411926213,37.752915288],[-122.411934114,37.753001122],[-122.411872382,37.753004705],[-122.411792648,37.753009332],[-122.411706425,37.75301454],[-122.411620199,37.753019749],[-122.411533976,37.753024958],[-122.411447752,37.753030167],[-122.411361529,37.753035376],[-122.411206326,37.753044751],[-122.411196636,37.752943428],[-122.411091988,37.75294975],[-122.411079228,37.752950541],[-122.410989322,37.752956112],[-122.410993507,37.752998687],[-122.410972628,37.752999981],[-122.410889143,37.753005154],[-122.410802918,37.753010363],[-122.41080849,37.753068783],[-122.410722267,37.753073991],[-122.410549819,37.753084408],[-122.410463595,37.753089616],[-122.41037737,37.753094824],[-122.410371799,37.753036404],[-122.41036601,37.752975699],[-122.410194032,37.752986086],[-122.41018251,37.752986782],[-122.410090687,37.752992331],[-122.410102104,37.753111447],[-122.409998455,37.75311771],[-122.40991223,37.753122918],[-122.409826006,37.753128126],[-122.409741182,37.753133249],[-122.409653558,37.753138541],[-122.409567333,37.753143749],[-122.409481109,37.753148956],[-122.40931071,37.753159246],[-122.409165418,37.75316798],[-122.409172214,37.753239263],[-122.409081393,37.753244722],[-122.409026922,37.753247996],[-122.408682026,37.753268824],[-122.408675236,37.753197622],[-122.408669696,37.753139507],[-122.408648081,37.752912817],[-122.408639687,37.752825187],[-122.40846724,37.7528356],[-122.408475634,37.752923231],[-122.408496521,37.753142311],[-122.408481285,37.753143231],[-122.408321678,37.753152869],[-122.408218446,37.753159124],[-122.408224758,37.753224803],[-122.408121006,37.753231089],[-122.407948557,37.753241502],[-122.407862332,37.753246708],[-122.407776108,37.753251914],[-122.407689884,37.753257121],[-122.407603659,37.753262327],[-122.407517434,37.753267533],[-122.407430155,37.753272802],[-122.407327832,37.753279148],[-122.407313321,37.753131642],[-122.407209185,37.7531381],[-122.406950511,37.753153718],[-122.406956973,37.753221496],[-122.406963498,37.753289959],[-122.406877275,37.753295164],[-122.4068838,37.753363628],[-122.406890326,37.753432091],[-122.406892937,37.753459475],[-122.40688151,37.753460165],[-122.406549903,37.753480184],[-122.406380663,37.753489939],[-122.40640057,37.753707668],[-122.406225662,37.753717749],[-122.405973086,37.753733003],[-122.405914091,37.753736566],[-122.405880762,37.753738578],[-122.405874236,37.753670116],[-122.405841096,37.753672117],[-122.405834505,37.753603658],[-122.405827916,37.753535199],[-122.405821327,37.75346674],[-122.405855817,37.753464657],[-122.405849227,37.753396197],[-122.405676779,37.753406612],[-122.405670188,37.753338153],[-122.40549774,37.753348568],[-122.405483388,37.753349442],[-122.405359437,37.753356994]]]]}},"NCT","6:00AM-2:00AM",0.000007879938497255143,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_763","24TH-MISSION NEIGHBORHOOD COMMERCIAL TRANSIT","NCT-24TH-MISSION",763,19845,0.033238404909968114,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCD","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000024713066356719745,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=altmain-nf.htm$q=[field%20folio-destination-name:%27734%27]$x=Advanced#JD_734","districtname":"JUDAH STREET NEIGHBORHOOD COMMERCIAL DISTRICT","zoning":"NCD-JUDAH","codesection":734,"objectid":19801,"shape_length":0.009309680971936848,"gen":"Mixed Use","index":85},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.488222331,37.761520153],[-122.48820805,37.761316566],[-122.488200382,37.76120688],[-122.487708161,37.761228567],[-122.487695886,37.761050239],[-122.487818634,37.761044914],[-122.488015412,37.761036243],[-122.488010603,37.760967691],[-122.488005794,37.760899139],[-122.488000986,37.760830586],[-122.488173684,37.760822977],[-122.488216859,37.760821074],[-122.488346383,37.760815367],[-122.488631336,37.760802811],[-122.488752224,37.760797465],[-122.488752226,37.760797502],[-122.488873114,37.760792157],[-122.488988783,37.76078706],[-122.489161481,37.760779449],[-122.489291006,37.760773741],[-122.48933418,37.760771838],[-122.489705482,37.760755473],[-122.48982637,37.760750127],[-122.489826372,37.760750164],[-122.48994726,37.760744817],[-122.490058379,37.760739919],[-122.490231077,37.760732307],[-122.490317427,37.760728501],[-122.4903606,37.760726597],[-122.490403775,37.760724694],[-122.490490125,37.760720888],[-122.490576473,37.760717082],[-122.490777489,37.76070822],[-122.490896525,37.760703062],[-122.490896512,37.76070288],[-122.491019266,37.760697561],[-122.491219087,37.760688752],[-122.491305435,37.760684945],[-122.491391784,37.760681138],[-122.491435304,37.760679219],[-122.491478133,37.760677331],[-122.491564483,37.760673524],[-122.491565516,37.760688332],[-122.491583627,37.760947738],[-122.4915913,37.761057423],[-122.490922909,37.76108689],[-122.490949694,37.761468517],[-122.490828806,37.761473864],[-122.490629853,37.761482593],[-122.4905435,37.761486382],[-122.490457149,37.761490171],[-122.490415454,37.761492001],[-122.490370798,37.76149396],[-122.490284446,37.761497749],[-122.490199921,37.761501458],[-122.490000968,37.761510187],[-122.489880079,37.761515534],[-122.489880073,37.761515447],[-122.489759184,37.761520794],[-122.489474225,37.761533295],[-122.489344698,37.761538978],[-122.489301522,37.761540872],[-122.489128819,37.761548447],[-122.488926796,37.761557309],[-122.488805907,37.761562655],[-122.488805942,37.761563168],[-122.488732525,37.761566415],[-122.488685054,37.761568514],[-122.488486191,37.761577282],[-122.48839984,37.761581091],[-122.488313491,37.761584899],[-122.488270574,37.761586791],[-122.48822714,37.761588706],[-122.488222331,37.761520153]]]]}},"NCD","6:00AM-2:00AM",0.0000024713066356719745,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=altmain-nf.htm$q=[field%20folio-destination-name:%27734%27]$x=Advanced#JD_734","JUDAH STREET NEIGHBORHOOD COMMERCIAL DISTRICT","NCD-JUDAH",734,19801,0.009309680971936848,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCT","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000013318171999366722,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_759","districtname":"DIVISADERO STREET NEIGHBORHOOD COMMERCIAL TRANSIT DISTRICT","zoning":"NCT-DIVISADERO","codesection":759,"objectid":19824,"shape_length":0.03460545147672982,"gen":"Mixed Use","index":86},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.438738241,37.781946435],[-122.438782091,37.781940838],[-122.43878141,37.781940352],[-122.438728028,37.781665079],[-122.438709356,37.781568793],[-122.438629575,37.781578344],[-122.438611647,37.781488714],[-122.438590807,37.781384526],[-122.438557267,37.781216853],[-122.438550555,37.781183296],[-122.438550025,37.781183025],[-122.438456601,37.781195263],[-122.43844264,37.781125467],[-122.438456305,37.78112372],[-122.438490467,37.781119353],[-122.438536586,37.781113457],[-122.438584413,37.781107342],[-122.438577421,37.781072386],[-122.438576054,37.781065554],[-122.438560541,37.780987998],[-122.438509812,37.780734391],[-122.438503287,37.78070177],[-122.438491762,37.780644153],[-122.438486639,37.780644809],[-122.438467389,37.780548571],[-122.438428326,37.78035328],[-122.438424078,37.78033204],[-122.43839279,37.780175619],[-122.438329591,37.780183698],[-122.438314671,37.780109108],[-122.438311256,37.780109545],[-122.438251851,37.779812553],[-122.438234079,37.77972266],[-122.438377227,37.779704833],[-122.438358031,37.779607735],[-122.438345326,37.77954422],[-122.438331265,37.779473923],[-122.43831734,37.779404304],[-122.438231936,37.779415223],[-122.438218374,37.779347413],[-122.43820481,37.779279603],[-122.438202098,37.779266042],[-122.438191248,37.779211794],[-122.43818311,37.779171108],[-122.438179961,37.779155365],[-122.438177685,37.779143985],[-122.438280168,37.779130882],[-122.438345368,37.779122547],[-122.438382652,37.779117781],[-122.438329029,37.778849693],[-122.43832673,37.778838391],[-122.438309806,37.778755172],[-122.438071303,37.778785728],[-122.438052569,37.77869361],[-122.438025444,37.778557992],[-122.43801188,37.778490182],[-122.437998318,37.778422373],[-122.437912902,37.778433227],[-122.43789934,37.778365418],[-122.437892559,37.778331513],[-122.437872215,37.778229799],[-122.437957629,37.778218945],[-122.437944067,37.778151136],[-122.437930504,37.778083327],[-122.437916942,37.778015517],[-122.437903563,37.777948627],[-122.437895958,37.777910951],[-122.43788473,37.777855323],[-122.437863712,37.777857997],[-122.437844913,37.777764865],[-122.437811007,37.777595341],[-122.437797445,37.777527532],[-122.437770321,37.777391914],[-122.437753064,37.777394106],[-122.437739442,37.777326305],[-122.437725764,37.777258221],[-122.43771263,37.777192849],[-122.437757045,37.777187205],[-122.4377565,37.777184493],[-122.437789528,37.777180296],[-122.437754352,37.777005212],[-122.437747608,37.776971782],[-122.437735549,37.776911994],[-122.437731525,37.776912505],[-122.437712722,37.776819287],[-122.4376968,37.776739675],[-122.437681882,37.776665085],[-122.437666963,37.776590494],[-122.437652044,37.776515904],[-122.43757133,37.776526161],[-122.437486262,37.776536971],[-122.437476827,37.77649001],[-122.437472639,37.77646917],[-122.437456295,37.776387807],[-122.437410212,37.776158426],[-122.437397723,37.776096259],[-122.437381105,37.776013871],[-122.437378921,37.776003041],[-122.437404373,37.775999806],[-122.437420689,37.775997733],[-122.437401887,37.775904515],[-122.437346739,37.775633391],[-122.437278409,37.775642075],[-122.437246699,37.775486179],[-122.43719549,37.775234424],[-122.437181705,37.775166652],[-122.437162749,37.775073453],[-122.43734223,37.775050452],[-122.437342681,37.775050394],[-122.437359152,37.775048283],[-122.437340195,37.774955085],[-122.437298834,37.774751743],[-122.437216574,37.774762285],[-122.437202787,37.774694505],[-122.437202152,37.774694586],[-122.437185927,37.774628366],[-122.437185729,37.774628207],[-122.43718608,37.774628166],[-122.437178974,37.774593235],[-122.437172434,37.774561071],[-122.437158133,37.774490772],[-122.437144348,37.774422991],[-122.437130561,37.77435521],[-122.437116935,37.774288221],[-122.437103148,37.774220441],[-122.43708454,37.774129376],[-122.437059096,37.774132652],[-122.437039617,37.774037327],[-122.436985564,37.773771573],[-122.43698005,37.773744461],[-122.436956889,37.77363059],[-122.436939665,37.773545917],[-122.436921959,37.773546048],[-122.436921861,37.773545568],[-122.436834636,37.77354646],[-122.436834683,37.773546693],[-122.436659711,37.773547985],[-122.436615807,37.773332126],[-122.436596915,37.773238374],[-122.436704703,37.773224688],[-122.436901016,37.773199762],[-122.436917289,37.773197696],[-122.436898536,37.773104638],[-122.4368854,37.773039611],[-122.436871706,37.772971818],[-122.436858012,37.772904025],[-122.4368445,37.772837136],[-122.436830624,37.772768439],[-122.436823777,37.772734542],[-122.436816931,37.772700646],[-122.436803237,37.772632853],[-122.436789543,37.772565061],[-122.43677585,37.772497269],[-122.436748462,37.772361683],[-122.436734235,37.772291735],[-122.436729506,37.772268484],[-122.436749419,37.772265933],[-122.436730463,37.772172734],[-122.436716677,37.772104953],[-122.436702891,37.772037173],[-122.436689106,37.771969392],[-122.43667532,37.771901611],[-122.436611278,37.771909818],[-122.436547236,37.771918025],[-122.436526557,37.771816354],[-122.436519665,37.771782463],[-122.436690443,37.771760578],[-122.436676657,37.771692797],[-122.436762046,37.771681854],[-122.436847436,37.771670911],[-122.436791301,37.771394918],[-122.436788431,37.771380654],[-122.436782426,37.771350813],[-122.436772612,37.771302037],[-122.43653819,37.771331759],[-122.436519426,37.771238504],[-122.436506501,37.771174955],[-122.436868549,37.771128558],[-122.436964367,37.771115714],[-122.437011982,37.771109332],[-122.436983081,37.770973476],[-122.437027004,37.770967589],[-122.437031556,37.770966979],[-122.437122337,37.77095481],[-122.437207725,37.770943866],[-122.437249635,37.77114992],[-122.437267616,37.771239276],[-122.437293634,37.771235977],[-122.437313164,37.771333034],[-122.437361416,37.771570267],[-122.437455344,37.771558229],[-122.437549272,37.771546191],[-122.437563058,37.771613971],[-122.437648448,37.771603027],[-122.437662234,37.771670808],[-122.437747623,37.771659865],[-122.437777954,37.771808983],[-122.437713912,37.77181719],[-122.43764987,37.771825399],[-122.437664484,37.771897245],[-122.437677719,37.771962315],[-122.437695366,37.772049075],[-122.437703102,37.772087107],[-122.437714322,37.772142273],[-122.43773994,37.772138989],[-122.437758898,37.772232189],[-122.437775441,37.772313525],[-122.437807151,37.772469421],[-122.437812666,37.772496532],[-122.437915134,37.7724834],[-122.437937193,37.77259185],[-122.438022582,37.772580905],[-122.438107973,37.772569961],[-122.438193363,37.772559017],[-122.438278753,37.772548074],[-122.438286489,37.772586107],[-122.43835485,37.77292217],[-122.438373123,37.773012837],[-122.4390886,37.772921981],[-122.43911057,37.773029981],[-122.439122512,37.773088683],[-122.439243062,37.773681281],[-122.439243875,37.773685276],[-122.439247267,37.773701949],[-122.439276798,37.773847119],[-122.439142763,37.773864378],[-122.438598766,37.773934421],[-122.438335125,37.773968366],[-122.438129674,37.773994818],[-122.438113391,37.773996915],[-122.43813212,37.77408857],[-122.438145908,37.77415635],[-122.438159696,37.774224131],[-122.438173484,37.774291912],[-122.438187272,37.774359692],[-122.438201059,37.774427473],[-122.438207953,37.774461363],[-122.438214847,37.774495253],[-122.438228634,37.774563034],[-122.438242422,37.774630815],[-122.43815703,37.774641759],[-122.438170818,37.774709539],[-122.438184606,37.77477732],[-122.438198393,37.774845101],[-122.438204678,37.774876002],[-122.43821735,37.774938299],[-122.438238699,37.774935563],[-122.438257657,37.775028761],[-122.438296356,37.775218999],[-122.438357838,37.77521112],[-122.438382461,37.775332165],[-122.438491765,37.775318157],[-122.438504738,37.775381932],[-122.438518527,37.775449712],[-122.438424574,37.775461652],[-122.438438913,37.775532144],[-122.438467593,37.775673128],[-122.438463961,37.775673589],[-122.438482989,37.775767126],[-122.438491268,37.77580817],[-122.438501792,37.775860345],[-122.438860436,37.775814765],[-122.43887924,37.775907983],[-122.438953485,37.776279175],[-122.439038898,37.77626832],[-122.439167016,37.776252037],[-122.439209723,37.77624661],[-122.439246551,37.776241929],[-122.439252428,37.776241182],[-122.439259022,37.776274149],[-122.43925921,37.776275086],[-122.439272774,37.776342895],[-122.439286338,37.776410706],[-122.439299901,37.776478514],[-122.439310877,37.776533388],[-122.439327028,37.776614133],[-122.439345833,37.776707351],[-122.439329516,37.776709424],[-122.439166193,37.776730181],[-122.438878229,37.776766778],[-122.438784007,37.776778752],[-122.438802811,37.776871971],[-122.438861638,37.77716476],[-122.438878971,37.777251024],[-122.438880711,37.777259683],[-122.438898761,37.77734952],[-122.438806447,37.777361252],[-122.438708222,37.777373735],[-122.438709791,37.777381582],[-122.43872609,37.777463066],[-122.438743993,37.777552575],[-122.438763115,37.777648178],[-122.438769088,37.777678321],[-122.438775363,37.777709987],[-122.438781751,37.777742223],[-122.438844945,37.777734334],[-122.438863242,37.777826669],[-122.438890488,37.777962272],[-122.438904111,37.778030074],[-122.438917734,37.778097876],[-122.439003149,37.778087021],[-122.439016771,37.778154822],[-122.439023398,37.778187804],[-122.439030395,37.778222624],[-122.439044017,37.778290426],[-122.438958176,37.778301335],[-122.438971799,37.778369137],[-122.438875991,37.778381313],[-122.438780897,37.778393397],[-122.438821582,37.778595883],[-122.438824842,37.778611925],[-122.438840149,37.778687256],[-122.439121113,37.778651289],[-122.439140475,37.778746572],[-122.439166717,37.778877761],[-122.43917906,37.778939467],[-122.43919398,37.779014057],[-122.439214326,37.779115771],[-122.439221108,37.779149676],[-122.439248235,37.779285294],[-122.4392618,37.779353104],[-122.439288928,37.779488722],[-122.439305333,37.77956619],[-122.43930905,37.779583743],[-122.439193163,37.779599203],[-122.439176426,37.779601435],[-122.439195583,37.7796919],[-122.43922392,37.779832928],[-122.439237544,37.77990073],[-122.439320176,37.779890165],[-122.439319897,37.779888774],[-122.439320792,37.7798894],[-122.439412294,37.779877584],[-122.439450033,37.780036873],[-122.439425054,37.780041077],[-122.43942809,37.780049242],[-122.439427091,37.780049659],[-122.439450461,37.780144083],[-122.439343435,37.780162435],[-122.439375014,37.780316401],[-122.439398185,37.780429366],[-122.439398236,37.780429565],[-122.439417753,37.780524767],[-122.439409013,37.780525902],[-122.439427335,37.780617088],[-122.439461395,37.780786592],[-122.439481892,37.780783972],[-122.439495516,37.780851774],[-122.439560424,37.780843476],[-122.439574048,37.780911276],[-122.439583365,37.78095765],[-122.439588134,37.780981383],[-122.439468568,37.78099667],[-122.439483827,37.781072608],[-122.439543501,37.781369579],[-122.439550382,37.78140382],[-122.439562449,37.781463872],[-122.439663957,37.781451089],[-122.439682358,37.78154307],[-122.439731191,37.781787184],[-122.439738313,37.781822783],[-122.439757878,37.781920589],[-122.4396998,37.781928003],[-122.439707949,37.781968738],[-122.439712551,37.781991744],[-122.439725302,37.782055484],[-122.439738052,37.782119225],[-122.439774407,37.782300953],[-122.439789771,37.782377752],[-122.439791781,37.782387804],[-122.439461463,37.7824297],[-122.439297625,37.78245048],[-122.438850705,37.782507528],[-122.438833191,37.782421099],[-122.438792498,37.782217672],[-122.438772966,37.782120026],[-122.438764967,37.782080037],[-122.438751806,37.782014244],[-122.438745058,37.781980515],[-122.438738241,37.781946435]]]]}},"NCT","6:00AM-2:00AM",0.000013318171999366722,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_759","DIVISADERO STREET NEIGHBORHOOD COMMERCIAL TRANSIT DISTRICT","NCT-DIVISADERO",759,19824,0.03460545147672982,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":4.2889627875989764e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19763,"shape_length":0.003005523332625938,"gen":"Mixed Use","index":87},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.426989721,37.747118718],[-122.426983676,37.747056154],[-122.426856609,37.747063894],[-122.426836103,37.747065143],[-122.42650843,37.747084496],[-122.426501344,37.74701429],[-122.426492851,37.746925132],[-122.426555253,37.746921383],[-122.426554063,37.746909938],[-122.426546294,37.74683524],[-122.426538894,37.746764077],[-122.426531605,37.746694007],[-122.426524489,37.74662558],[-122.426516632,37.746550038],[-122.426792503,37.746533102],[-122.426932324,37.746524586],[-122.426945327,37.746659174],[-122.427065823,37.746651834],[-122.427091001,37.746650301],[-122.427372722,37.746633006],[-122.427379283,37.746701467],[-122.427387154,37.74678362],[-122.427395471,37.74687092],[-122.427395516,37.746870917],[-122.427396812,37.746884451],[-122.427403946,37.74695888],[-122.427410041,37.747022486],[-122.427416864,37.747093686],[-122.427126922,37.74711036],[-122.426989721,37.747118718]]]]}},"NC-1","6:00AM-11:00PM",4.2889627875989764e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19763,0.003005523332625938,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":4.6942634308141227e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19541,"shape_length":0.004044460184473512,"gen":"Mixed Use","index":88},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.446934993,37.775509695],[-122.446935035,37.77550969],[-122.446942636,37.775546808],[-122.446962428,37.775643471],[-122.446981242,37.775736687],[-122.446668055,37.775776511],[-122.44647083,37.77580159],[-122.446262872,37.775828033],[-122.445960499,37.775866481],[-122.445456559,37.775930556],[-122.445445344,37.775874983],[-122.445437747,37.77583734],[-122.445362791,37.775464435],[-122.445395552,37.775460269],[-122.445448236,37.775453571],[-122.445484379,37.775448975],[-122.445559518,37.775439421],[-122.445573207,37.775437681],[-122.445662033,37.775426386],[-122.44575086,37.775415092],[-122.445784541,37.77541081],[-122.445784892,37.775447336],[-122.44578556,37.775516785],[-122.445874669,37.775505454],[-122.445888544,37.775573224],[-122.445922708,37.775568879],[-122.445936584,37.775636649],[-122.446148403,37.775609716],[-122.44625679,37.775595934],[-122.446280596,37.775592918],[-122.446425172,37.775574596],[-122.446425144,37.775574452],[-122.446598432,37.775552492],[-122.446661972,37.775544413],[-122.446927348,37.775510668],[-122.446934993,37.775509695]]]]}},"NC-1","6:00AM-11:00PM",4.6942634308141227e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19541,0.004044460184473512,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCD","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.00000277695964967512,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_731","districtname":"NORIEGA STREET NEIGHBORHOOD COMMERCIAL DISTRICT","zoning":"NCD-NORIEGA","codesection":731,"objectid":19864,"shape_length":0.008931842298341354,"gen":"Mixed Use","index":89},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.488311579,37.754449473],[-122.48826408,37.753720901],[-122.488239328,37.753338659],[-122.488349723,37.753334152],[-122.488692715,37.753318997],[-122.488761787,37.753315946],[-122.488875756,37.753310909],[-122.488962096,37.753307094],[-122.489082971,37.753301752],[-122.489176219,37.753297633],[-122.489297097,37.753292322],[-122.48930187,37.753360814],[-122.489422747,37.753355503],[-122.48963624,37.753346068],[-122.48983718,37.753337188],[-122.489832402,37.753268634],[-122.490011357,37.753260725],[-122.490016136,37.753329279],[-122.490154279,37.753323173],[-122.490257887,37.753318594],[-122.490265881,37.753318242],[-122.490378764,37.753313282],[-122.490373982,37.753244667],[-122.49049486,37.753239355],[-122.490909291,37.753221035],[-122.491327647,37.753202541],[-122.491448526,37.753197228],[-122.491475167,37.753579325],[-122.491501965,37.753965053],[-122.491381181,37.753970343],[-122.491291387,37.753974313],[-122.491198139,37.753978435],[-122.491104892,37.753982558],[-122.491011644,37.753986679],[-122.490966746,37.753988664],[-122.490925303,37.753990496],[-122.490548385,37.754007157],[-122.490428261,37.754012583],[-122.490428245,37.75401235],[-122.490306631,37.754017843],[-122.490082145,37.754027764],[-122.489909464,37.754035396],[-122.489892196,37.754036159],[-122.489471484,37.754054751],[-122.489351638,37.754060217],[-122.489376408,37.754402604],[-122.489253619,37.754408205],[-122.488839181,37.754426518],[-122.48842711,37.754444725],[-122.488311579,37.754449473]]]]}},"NCD","6:00AM-2:00AM",0.00000277695964967512,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_731","NORIEGA STREET NEIGHBORHOOD COMMERCIAL DISTRICT","NCD-NORIEGA",731,19864,0.008931842298341354,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-3","commercial_hours_of_operation":"No Limit","shape_area":0.00004266352111164323,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","districtname":"NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","zoning":"NC-3","codesection":712.1,"objectid":19575,"shape_length":0.09167557020040676,"gen":"Mixed Use","index":90},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.438053437,37.785851091],[-122.438002418,37.785599044],[-122.437998596,37.785580159],[-122.437990006,37.785537723],[-122.437979934,37.785487965],[-122.438007546,37.785484475],[-122.437988434,37.785390233],[-122.437955182,37.78522627],[-122.437954094,37.785226407],[-122.437954384,37.785225939],[-122.438027966,37.78521687],[-122.438029208,37.785217181],[-122.438029172,37.785216998],[-122.438029142,37.785216851],[-122.4380292,37.78521685],[-122.438032313,37.785216799],[-122.438154575,37.785201729],[-122.438113582,37.784997892],[-122.438023779,37.785009147],[-122.437988007,37.78501363],[-122.437691764,37.785050754],[-122.437705512,37.785118541],[-122.437705633,37.785118526],[-122.437706592,37.785124289],[-122.437621253,37.785135139],[-122.437623377,37.785145613],[-122.437623388,37.785145665],[-122.437623453,37.785145985],[-122.437623488,37.785146158],[-122.437623652,37.785146968],[-122.43762351,37.785146985],[-122.437622597,37.785145683],[-122.43752492,37.785158595],[-122.437522493,37.785147323],[-122.437506808,37.785074456],[-122.437418305,37.78508455],[-122.437418224,37.78508456],[-122.43741152,37.785051507],[-122.437359467,37.784794832],[-122.437358318,37.784789167],[-122.437342709,37.784712198],[-122.437323486,37.78461741],[-122.43787889,37.784548409],[-122.438019672,37.784530918],[-122.437904761,37.783986719],[-122.437847943,37.783717637],[-122.437999118,37.783695042],[-122.438053152,37.783686967],[-122.438202173,37.783652887],[-122.43837609,37.78359149],[-122.438492288,37.78354709],[-122.438541998,37.783528095],[-122.438578399,37.783511202],[-122.438712342,37.783449043],[-122.438854085,37.783397782],[-122.438980266,37.783363594],[-122.439150798,37.783341862],[-122.439306356,37.78332611],[-122.439480381,37.783308487],[-122.439388964,37.782879305],[-122.439297625,37.78245048],[-122.439461463,37.7824297],[-122.439791781,37.782387804],[-122.439883152,37.782376215],[-122.440581192,37.782287676],[-122.440835874,37.782255371],[-122.44096313,37.78223923],[-122.441671639,37.782233946],[-122.441740706,37.782138447],[-122.441964805,37.782089197],[-122.441967282,37.782088745],[-122.44230627,37.782026984],[-122.442323449,37.782023854],[-122.442328626,37.78202291],[-122.442851703,37.781956869],[-122.443244994,37.781931182],[-122.443498461,37.781914626],[-122.4438312,37.781871641],[-122.444023174,37.781828903],[-122.444262126,37.781775705],[-122.444291078,37.781764223],[-122.444609593,37.781637903],[-122.44494553,37.781474448],[-122.445282743,37.781359781],[-122.445419238,37.781342057],[-122.44558381,37.781320687],[-122.446576255,37.78119181],[-122.446638843,37.781183682],[-122.44675823,37.781168178],[-122.447221387,37.78110803],[-122.447314735,37.781095907],[-122.447354043,37.781090802],[-122.447517983,37.78106951],[-122.447597601,37.781462391],[-122.447604421,37.781531074],[-122.447554559,37.781738506],[-122.447483113,37.781922915],[-122.447561397,37.781913025],[-122.447868042,37.781874285],[-122.448073077,37.781848381],[-122.44832937,37.781816003],[-122.448362118,37.781811866],[-122.448414802,37.781805209],[-122.448500233,37.781794417],[-122.448860356,37.781748919],[-122.448960147,37.781736311],[-122.448949,37.781679908],[-122.448946742,37.781668482],[-122.449051738,37.781655216],[-122.449461806,37.781603406],[-122.449475459,37.781671204],[-122.449663407,37.781647458],[-122.449748838,37.781636663],[-122.449888623,37.781619002],[-122.44994876,37.781611404],[-122.449989507,37.781606255],[-122.450093657,37.781593095],[-122.450351317,37.781560538],[-122.450503725,37.781541281],[-122.450522178,37.781538949],[-122.450650324,37.781522757],[-122.45077847,37.781506565],[-122.450915159,37.781489293],[-122.45101696,37.78147643],[-122.4510307,37.781544216],[-122.451133988,37.781531165],[-122.45130485,37.781509574],[-122.451291054,37.781441795],[-122.451376484,37.781430999],[-122.451461915,37.781420204],[-122.451530258,37.781411567],[-122.451547345,37.781409408],[-122.451632776,37.781398613],[-122.451718206,37.781387817],[-122.451940325,37.781359749],[-122.452025602,37.781348973],[-122.452041205,37.781347001],[-122.452052555,37.781403384],[-122.452054853,37.781414799],[-122.452159154,37.781401619],[-122.452270214,37.781387584],[-122.452441075,37.781365992],[-122.452526505,37.781355195],[-122.45256922,37.781349798],[-122.452611935,37.781344399],[-122.452697365,37.781333603],[-122.452782796,37.781322807],[-122.452868226,37.78131201],[-122.452980046,37.781297879],[-122.453057816,37.781288052],[-122.45308261,37.781284919],[-122.453094088,37.781341471],[-122.453096364,37.781352685],[-122.453198827,37.781339736],[-122.453455117,37.781307346],[-122.453441364,37.781239561],[-122.45342761,37.781171775],[-122.45351304,37.781160979],[-122.453523291,37.781159683],[-122.4536839,37.781139385],[-122.453880212,37.781114574],[-122.454047924,37.781093377],[-122.454058122,37.78114458],[-122.454232196,37.781121819],[-122.454473751,37.781090234],[-122.454645318,37.781067799],[-122.454643341,37.781058086],[-122.454631522,37.781000019],[-122.454624626,37.780966129],[-122.454638281,37.780964343],[-122.454709981,37.780954968],[-122.454716878,37.780988858],[-122.454730673,37.781056638],[-122.454974866,37.781024706],[-122.455083599,37.781010487],[-122.455134711,37.781003803],[-122.455169346,37.780999274],[-122.455186024,37.780997093],[-122.455186414,37.780998991],[-122.455188801,37.781010628],[-122.455291233,37.780997253],[-122.455632112,37.780952743],[-122.455632767,37.78095316],[-122.455632653,37.780952606],[-122.455618745,37.78088484],[-122.455661423,37.780879259],[-122.455647515,37.780811493],[-122.45602755,37.780761796],[-122.456171269,37.780743001],[-122.456156225,37.780665857],[-122.456284696,37.780649919],[-122.456531377,37.780619317],[-122.456626584,37.780607505],[-122.456675477,37.780850343],[-122.456891752,37.780844823],[-122.45689353,37.78091231],[-122.457106305,37.780903091],[-122.457398746,37.78089042],[-122.457388345,37.780680328],[-122.457493338,37.780674675],[-122.457543753,37.780671961],[-122.457543356,37.780602509],[-122.457553489,37.78060206],[-122.457782371,37.780591913],[-122.45778257,37.780591904],[-122.457881939,37.780587498],[-122.457977446,37.780583264],[-122.458004345,37.780582071],[-122.458240138,37.780571616],[-122.458308343,37.780568592],[-122.458303044,37.780497122],[-122.458298733,37.780438977],[-122.45829818,37.780431511],[-122.458299993,37.780431432],[-122.458304721,37.780431223],[-122.458640862,37.780416317],[-122.458802671,37.780409142],[-122.458829695,37.780818407],[-122.459015982,37.780809995],[-122.459301851,37.780797087],[-122.459388217,37.780793187],[-122.4594314,37.780791236],[-122.459474584,37.780789287],[-122.459560949,37.780785386],[-122.459647315,37.780781486],[-122.459733681,37.780777585],[-122.459847979,37.780772423],[-122.459967452,37.780767027],[-122.459967537,37.780768194],[-122.460089614,37.780762679],[-122.460196794,37.780757838],[-122.460283161,37.780753938],[-122.460369525,37.780750037],[-122.460455892,37.780746136],[-122.460498729,37.780744201],[-122.460542258,37.780742235],[-122.460918944,37.780725219],[-122.461032754,37.780720078],[-122.46102801,37.780650643],[-122.461154954,37.780644909],[-122.461484851,37.780630005],[-122.461566344,37.780626323],[-122.461561387,37.780557777],[-122.46155643,37.780489233],[-122.46197453,37.780470343],[-122.462093315,37.780464976],[-122.462103073,37.780602129],[-122.462224993,37.780596621],[-122.462553181,37.780581791],[-122.462639548,37.780577888],[-122.46305867,37.780558949],[-122.463174716,37.780553704],[-122.463179653,37.780624595],[-122.463305668,37.780618606],[-122.46413052,37.780579399],[-122.464131458,37.780579359],[-122.46424819,37.780573806],[-122.4642482,37.780573957],[-122.464373272,37.780568304],[-122.464569769,37.780559421],[-122.464656136,37.780555518],[-122.464742501,37.780551614],[-122.464787827,37.780549564],[-122.464828866,37.780547709],[-122.464915231,37.780543805],[-122.465001597,37.7805399],[-122.465204336,37.780530735],[-122.465320329,37.780525491],[-122.465320313,37.780525272],[-122.465446282,37.780519577],[-122.465720623,37.780507174],[-122.465810442,37.780503113],[-122.465856734,37.780501019],[-122.466274394,37.780482134],[-122.466394701,37.780476694],[-122.466394718,37.780476922],[-122.46651644,37.780471409],[-122.466628714,37.780466332],[-122.46671508,37.780462427],[-122.46688781,37.780454615],[-122.466930992,37.780452662],[-122.467339252,37.780434199],[-122.467456511,37.780429094],[-122.467456484,37.780428685],[-122.4675818,37.780423229],[-122.467863568,37.780410484],[-122.467949933,37.780406578],[-122.467997835,37.780404411],[-122.468412387,37.780385659],[-122.468532289,37.780380248],[-122.468628386,37.780375888],[-122.468653275,37.780374762],[-122.46876555,37.780369683],[-122.468851915,37.780365775],[-122.46893828,37.780361868],[-122.469024644,37.780357961],[-122.469067827,37.780356008],[-122.469111009,37.780354055],[-122.469197374,37.780350147],[-122.469202338,37.780418692],[-122.469207301,37.780487237],[-122.469489874,37.780474453],[-122.469496185,37.780474167],[-122.469606381,37.780469182],[-122.469596928,37.780332069],[-122.469722493,37.780326387],[-122.46983189,37.780321438],[-122.470090984,37.780309714],[-122.470134167,37.780307759],[-122.470177349,37.780305806],[-122.470263714,37.780301898],[-122.470350078,37.780297989],[-122.470436443,37.780294081],[-122.470554096,37.780288757],[-122.47068259,37.780282942],[-122.470780206,37.780278525],[-122.470795917,37.780277814],[-122.471078606,37.780265019],[-122.471164971,37.78026111],[-122.471210467,37.780259052],[-122.471251335,37.780257201],[-122.471337701,37.780253293],[-122.471342666,37.780321838],[-122.471347631,37.780390383],[-122.471352596,37.780458929],[-122.471357612,37.780528172],[-122.471363996,37.780628941],[-122.47136833,37.780697351],[-122.47177546,37.780681103],[-122.471807931,37.781126659],[-122.471687655,37.781132181],[-122.471315936,37.781148982],[-122.47127486,37.781150839],[-122.47122957,37.781152885],[-122.471143204,37.781156789],[-122.470970472,37.781164596],[-122.470860303,37.781169575],[-122.470746966,37.781174358],[-122.470747015,37.78117508],[-122.470617891,37.78118053],[-122.470506427,37.781185567],[-122.470247328,37.781197275],[-122.470198387,37.781199486],[-122.47020335,37.781268032],[-122.470208315,37.781336577],[-122.47007842,37.781342446],[-122.47007294,37.781266773],[-122.469789316,37.781279589],[-122.469772901,37.781280331],[-122.469665223,37.781285196],[-122.469660682,37.781223782],[-122.469542854,37.781229106],[-122.469429727,37.781234218],[-122.469343361,37.781238119],[-122.469256995,37.781242022],[-122.469170629,37.781245924],[-122.469127446,37.781247875],[-122.46904108,37.781251777],[-122.46891153,37.781257629],[-122.468718438,37.781266352],[-122.468596669,37.781271944],[-122.468601646,37.781340226],[-122.468481293,37.781345752],[-122.468066733,37.781364478],[-122.467647697,37.781383405],[-122.467525128,37.781389085],[-122.467520081,37.781320482],[-122.467432314,37.781324446],[-122.467400914,37.781325864],[-122.467288639,37.781330934],[-122.467115905,37.781338735],[-122.467096059,37.781064554],[-122.467089036,37.780967525],[-122.467083916,37.780896794],[-122.466426903,37.780924587],[-122.466462169,37.781424649],[-122.466381058,37.781428311],[-122.4663431,37.781430025],[-122.466165761,37.781438032],[-122.466079395,37.781441932],[-122.465925261,37.781448891],[-122.465921193,37.781392684],[-122.465902594,37.781393524],[-122.465816227,37.781397423],[-122.465729861,37.781401323],[-122.465506633,37.781411401],[-122.465494064,37.781411968],[-122.465385576,37.781416866],[-122.465405443,37.781691047],[-122.465284646,37.7816965],[-122.464871795,37.781715137],[-122.464876755,37.781783683],[-122.464881714,37.781852229],[-122.464885378,37.781902862],[-122.464886674,37.781920774],[-122.464891731,37.781990665],[-122.464477191,37.782009717],[-122.46435484,37.782015569],[-122.464348316,37.781929629],[-122.46431306,37.781465281],[-122.464246663,37.781468278],[-122.464196295,37.781470552],[-122.463997652,37.781479518],[-122.463911285,37.781483416],[-122.463824918,37.781487314],[-122.463779783,37.781489351],[-122.463738551,37.781491212],[-122.463652183,37.78149511],[-122.463565817,37.781499007],[-122.46347945,37.781502905],[-122.463475484,37.781448069],[-122.463361255,37.781453224],[-122.4633512,37.781453685],[-122.463239003,37.781458836],[-122.463242979,37.781513403],[-122.463124114,37.781518859],[-122.463011837,37.781523925],[-122.46292547,37.781527822],[-122.462752737,37.781535617],[-122.462708664,37.781537606],[-122.46266637,37.781539514],[-122.46258173,37.781543333],[-122.462495363,37.78154723],[-122.462408996,37.781551127],[-122.462294101,37.781556311],[-122.462171911,37.781561895],[-122.462054149,37.781567276],[-122.461919417,37.781573355],[-122.46183305,37.781577251],[-122.461736318,37.781581615],[-122.461639588,37.78158598],[-122.461644545,37.781654524],[-122.461649501,37.78172307],[-122.461653467,37.781777907],[-122.461515333,37.781784138],[-122.461235133,37.781796778],[-122.461111022,37.781802376],[-122.461096615,37.781610418],[-122.46098008,37.781615675],[-122.460751784,37.781625973],[-122.460622234,37.781631817],[-122.460627189,37.781700363],[-122.460629667,37.781734635],[-122.460570302,37.781737313],[-122.460572779,37.781771586],[-122.460158216,37.781790284],[-122.46004129,37.781795557],[-122.460031488,37.781658517],[-122.459907207,37.781664122],[-122.45979812,37.781669042],[-122.459711752,37.781672936],[-122.459625385,37.781676831],[-122.459539018,37.781680726],[-122.459495834,37.781682674],[-122.45950079,37.781751219],[-122.459505743,37.781819765],[-122.459510699,37.781888311],[-122.459515652,37.781956856],[-122.459520608,37.782025401],[-122.459525563,37.782093947],[-122.459530517,37.782162493],[-122.459535472,37.782231039],[-122.459510333,37.782232172],[-122.459114837,37.782250007],[-122.458931094,37.782258292],[-122.458891554,37.781711744],[-122.458729751,37.781718919],[-122.458456623,37.781731029],[-122.458387524,37.781734094],[-122.457903841,37.781755539],[-122.457766186,37.781761641],[-122.45762745,37.781767792],[-122.457315499,37.781781622],[-122.457211853,37.781786216],[-122.457108206,37.781790811],[-122.457004559,37.781795406],[-122.456900913,37.7818],[-122.456797266,37.781804594],[-122.45665668,37.781810826],[-122.456520875,37.781816846],[-122.456319339,37.781825778],[-122.456112046,37.781834966],[-122.456077496,37.781836497],[-122.455697457,37.78185334],[-122.455555493,37.781859631],[-122.455556452,37.781872681],[-122.455422061,37.781879211],[-122.455053042,37.781897143],[-122.455057845,37.781977746],[-122.455004287,37.781980001],[-122.454998604,37.78198024],[-122.454827022,37.781987466],[-122.454821513,37.781961025],[-122.45478768,37.781965582],[-122.454595894,37.781991411],[-122.454509202,37.782003086],[-122.454390103,37.782019126],[-122.45426371,37.782036148],[-122.45426382,37.782036692],[-122.454137566,37.782052776],[-122.453977827,37.782073126],[-122.453725186,37.782105312],[-122.453457278,37.782139443],[-122.453362824,37.782151476],[-122.45326222,37.782164292],[-122.45315783,37.78217759],[-122.452972188,37.78220124],[-122.452903857,37.782209944],[-122.452835526,37.782218649],[-122.452744484,37.782230247],[-122.452698863,37.782236058],[-122.452607754,37.782247665],[-122.452516645,37.782259271],[-122.452334439,37.782282481],[-122.452231943,37.782295538],[-122.452129446,37.782308595],[-122.45189201,37.782338839],[-122.451903221,37.782393029],[-122.451761922,37.782409429],[-122.451762237,37.782411],[-122.451676822,37.782421879],[-122.451665929,37.782367638],[-122.451580515,37.782378517],[-122.45139602,37.782402018],[-122.451309467,37.782413043],[-122.451262287,37.782419053],[-122.451208167,37.782425946],[-122.451104473,37.782439154],[-122.450897261,37.782465547],[-122.45070146,37.782490486],[-122.450696014,37.782463366],[-122.450272769,37.782517273],[-122.450172561,37.782530036],[-122.450176074,37.782548133],[-122.450071182,37.782561493],[-122.449733981,37.78260444],[-122.449663087,37.782613469],[-122.449676394,37.78268131],[-122.449645915,37.782685192],[-122.449269842,37.782733089],[-122.449166792,37.782746213],[-122.449167297,37.782748706],[-122.449226288,37.783040224],[-122.449242698,37.783121314],[-122.449228464,37.783123127],[-122.449139679,37.783134434],[-122.448729684,37.783186649],[-122.448725672,37.78316653],[-122.448712148,37.783098716],[-122.448702635,37.783051021],[-122.448659928,37.783056459],[-122.448655916,37.78303634],[-122.448642392,37.782968526],[-122.448628868,37.782900712],[-122.448600424,37.782758077],[-122.448233137,37.78280485],[-122.448186316,37.782810813],[-122.448175891,37.78281214],[-122.448130639,37.782817903],[-122.44818292,37.783080074],[-122.448194964,37.783140468],[-122.4482059,37.783195306],[-122.448302945,37.783681949],[-122.448303488,37.783684669],[-122.448200615,37.783686913],[-122.44819884,37.783686952],[-122.447898528,37.783693503],[-122.44743314,37.783703655],[-122.447367131,37.783704746],[-122.447302994,37.783705805],[-122.44729348,37.783705962],[-122.447149437,37.783030677],[-122.447173034,37.782710075],[-122.44718218,37.782686717],[-122.447225623,37.782575774],[-122.44727759,37.782449686],[-122.447283894,37.782434392],[-122.447301513,37.782391641],[-122.446800404,37.782457566],[-122.446768591,37.782461751],[-122.445938827,37.782570908],[-122.445840452,37.782583849],[-122.44596114,37.783163774],[-122.445840236,37.783179194],[-122.445549437,37.783216281],[-122.445505115,37.783221934],[-122.445493044,37.783162279],[-122.445366917,37.783178364],[-122.445337345,37.783032221],[-122.445334053,37.783015951],[-122.444987278,37.783060176],[-122.444973562,37.782992386],[-122.444959846,37.782924596],[-122.444946129,37.782856806],[-122.44460448,37.782900376],[-122.444592579,37.782901893],[-122.444488608,37.782915153],[-122.444486023,37.782915482],[-122.444475105,37.782860573],[-122.444458024,37.782774664],[-122.444438822,37.782678091],[-122.444437131,37.78266959],[-122.443268329,37.782822974],[-122.443268395,37.782825485],[-122.4427931,37.782885336],[-122.442562619,37.782914779],[-122.441500024,37.783050519],[-122.441144455,37.783095938],[-122.441144793,37.783097605],[-122.441158202,37.783163669],[-122.441193052,37.783335371],[-122.441231616,37.783525366],[-122.441255226,37.783641693],[-122.441130565,37.783657495],[-122.440839402,37.783694401],[-122.440672728,37.783715528],[-122.440666907,37.783716266],[-122.44067361,37.78374929],[-122.440680937,37.78378539],[-122.440742398,37.784088213],[-122.440761315,37.784181416],[-122.440744888,37.784183511],[-122.440664587,37.784193749],[-122.44061184,37.784200473],[-122.440630757,37.784293677],[-122.440698925,37.784629541],[-122.440705828,37.784663552],[-122.440855615,37.784644509],[-122.440931095,37.785017347],[-122.440949965,37.785110556],[-122.441112266,37.785089922],[-122.441131136,37.785183132],[-122.441175234,37.785400951],[-122.441188683,37.785467385],[-122.441202407,37.785535174],[-122.44120381,37.785542104],[-122.441206619,37.78555597],[-122.441162372,37.785561597],[-122.441172001,37.785609037],[-122.441189612,37.785695802],[-122.441238014,37.78593426],[-122.441256932,37.786027463],[-122.441240505,37.786029553],[-122.441043367,37.786054634],[-122.440653615,37.786104218],[-122.440557073,37.7861165],[-122.440540693,37.786118584],[-122.440061199,37.786179582],[-122.439900738,37.786199996],[-122.439444684,37.78625801],[-122.439349418,37.786270128],[-122.438600316,37.786365417],[-122.438521426,37.786375451],[-122.438393884,37.786391675],[-122.43837267,37.786286191],[-122.438352058,37.786183702],[-122.438295862,37.785904268],[-122.43827939,37.785822362],[-122.438238405,37.785827574],[-122.438154911,37.785838189],[-122.438053437,37.785851091]]]]}},"NC-3","No Limit",0.00004266352111164323,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","NC-3",712.1,19575,0.09167557020040676,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.005016066444307e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19703,"shape_length":0.0019301265258090416,"gen":"Mixed Use","index":91},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.423984489,37.724082498],[-122.423993744,37.724076538],[-122.424067005,37.724171606],[-122.424212748,37.724360732],[-122.424317522,37.724496693],[-122.424394655,37.724596785],[-122.424450314,37.724669011],[-122.424144179,37.724814098],[-122.424054657,37.724699763],[-122.423998615,37.724628188],[-122.423978613,37.724602641],[-122.423901588,37.724504266],[-122.423901511,37.724503488],[-122.423887737,37.724364417],[-122.42398347,37.724083155],[-122.423984489,37.724082498]]]]}},"NC-1","6:00AM-11:00PM",2.005016066444307e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19703,0.0019301265258090416,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCT-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":6.82342779152323e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_750","districtname":"NEIGHBORHOOD COMMERCIAL TRANSIT 1","zoning":"NCT-1","codesection":750,"objectid":19850,"shape_length":0.003606323749457579,"gen":"Mixed Use","index":92},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.44543229,37.721462221],[-122.445477662,37.721388746],[-122.445515726,37.721327103],[-122.445521681,37.72131746],[-122.445553791,37.72126546],[-122.445591855,37.721203817],[-122.44562992,37.721142174],[-122.445552392,37.721111817],[-122.445527382,37.721102023],[-122.445565782,37.721040512],[-122.445604182,37.720979],[-122.445642583,37.720917489],[-122.445652713,37.720901262],[-122.445696344,37.720831373],[-122.445750104,37.720745257],[-122.445803865,37.72065914],[-122.445852442,37.720581326],[-122.445867712,37.720556865],[-122.445907188,37.72049363],[-122.445929318,37.720458181],[-122.446136171,37.720539249],[-122.446168475,37.720551896],[-122.446227807,37.720575125],[-122.446401809,37.720643246],[-122.44660865,37.720724223],[-122.446410166,37.720962379],[-122.445955925,37.721507404],[-122.445854917,37.721628598],[-122.445669845,37.721555741],[-122.445563525,37.721513885],[-122.445526441,37.721499286],[-122.445480077,37.721481034],[-122.44543229,37.721462221]]]]}},"NCT-1","6:00AM-11:00PM",6.82342779152323e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_750","NEIGHBORHOOD COMMERCIAL TRANSIT 1","NCT-1",750,19850,0.003606323749457579,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":3.3046650747423856e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19779,"shape_length":0.0028096869924536675,"gen":"Mixed Use","index":93},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.413947903,37.733216288],[-122.414003744,37.733188295],[-122.414457394,37.732960875],[-122.414600926,37.732888921],[-122.414764585,37.732825855],[-122.414985872,37.732740581],[-122.415032989,37.732821492],[-122.415080586,37.732903227],[-122.415095925,37.732929567],[-122.415081468,37.732937453],[-122.41478158,37.733101042],[-122.41475705,37.733318376],[-122.414514838,37.733330563],[-122.414466981,37.733333],[-122.414446017,37.733334067],[-122.414377194,37.733337571],[-122.41413327,37.733349988],[-122.414070817,37.733353168],[-122.414070547,37.733353181],[-122.414061162,37.733342706],[-122.414006139,37.73328129],[-122.413947903,37.733216288]]]]}},"NC-1","6:00AM-11:00PM",3.3046650747423856e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19779,0.0028096869924536675,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCD","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000007990733363294238,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_728.1","districtname":"24TH STREET- NOE VALLEY NEIGHBORHOOD COMMERCIAL","zoning":"NCD-24TH-NOE-VALLEY","codesection":728.1,"objectid":20519,"shape_length":0.02900985913716566,"gen":"Mixed Use","index":94},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.428785785,37.75124301],[-122.428812679,37.751523588],[-122.428822042,37.751621275],[-122.429166936,37.751600491],[-122.429157572,37.751502803],[-122.429133948,37.751256345],[-122.42922017,37.751251149],[-122.429306394,37.751245953],[-122.429392617,37.751240756],[-122.42947884,37.75123556],[-122.42949526,37.75123457],[-122.429623758,37.751226827],[-122.429626538,37.751254199],[-122.429766002,37.751245795],[-122.429855638,37.751240393],[-122.429943298,37.75123511],[-122.429934373,37.751142004],[-122.430109982,37.751131419],[-122.430196201,37.751126222],[-122.430197784,37.751126127],[-122.430285587,37.751120835],[-122.430371809,37.751115638],[-122.430461195,37.75111025],[-122.430548281,37.751105001],[-122.430636804,37.751099665],[-122.430724606,37.751094372],[-122.430726185,37.751094277],[-122.430812408,37.751089079],[-122.430887674,37.751084543],[-122.430901218,37.751083726],[-122.430988017,37.751078495],[-122.431074239,37.751073297],[-122.431077692,37.751073089],[-122.431163625,37.751067909],[-122.431250137,37.751062694],[-122.431253011,37.75106252],[-122.431339233,37.751057322],[-122.431348161,37.751150429],[-122.431437546,37.75114504],[-122.431523769,37.751139843],[-122.431699378,37.751129255],[-122.431714664,37.75112827],[-122.431844252,37.751119918],[-122.431850809,37.751184054],[-122.431989953,37.751175086],[-122.432260408,37.75115878],[-122.432254092,37.751093059],[-122.432247777,37.751027337],[-122.432244195,37.750990061],[-122.432241725,37.750964352],[-122.432311278,37.750960159],[-122.432380257,37.750956],[-122.432382787,37.750982337],[-122.43238394,37.750994337],[-122.432401185,37.750993297],[-122.432452919,37.750990178],[-122.432487408,37.750988099],[-122.432521897,37.750986019],[-122.432573631,37.7509829],[-122.432590874,37.75098186],[-122.432659853,37.750977701],[-122.432746075,37.750972502],[-122.432828849,37.750967512],[-122.432915072,37.750962313],[-122.432917945,37.750962139],[-122.433004743,37.750956906],[-122.433024081,37.751158128],[-122.433034745,37.751269085],[-122.433044133,37.75136677],[-122.433216579,37.751356372],[-122.433207191,37.751258686],[-122.433197253,37.751155287],[-122.433177188,37.750946508],[-122.433187535,37.750945883],[-122.433263411,37.750941308],[-122.433277206,37.750940476],[-122.433349633,37.75093611],[-122.433363428,37.750935278],[-122.433423784,37.750931638],[-122.4334531,37.75092987],[-122.433452414,37.750922721],[-122.433423149,37.750618242],[-122.433421261,37.750598591],[-122.433414727,37.750530614],[-122.433759615,37.750509815],[-122.433758885,37.750502227],[-122.433751193,37.750422186],[-122.433728821,37.750189423],[-122.433832288,37.750183183],[-122.433975474,37.750174547],[-122.433969082,37.750108572],[-122.43396778,37.750095138],[-122.43408735,37.750087927],[-122.434109185,37.750086609],[-122.434384223,37.750070021],[-122.434386001,37.750088378],[-122.434392176,37.750152169],[-122.434401188,37.750245271],[-122.434414443,37.750382184],[-122.434422913,37.750469677],[-122.43442435,37.750469591],[-122.43443279,37.75055735],[-122.434442141,37.750653937],[-122.43444878,37.750722509],[-122.434455407,37.750790966],[-122.434462034,37.750859423],[-122.434462709,37.750866403],[-122.434463359,37.750873114],[-122.434549572,37.750867806],[-122.434633197,37.750862657],[-122.434644114,37.750861985],[-122.434718261,37.750857419],[-122.434739235,37.750856128],[-122.434802172,37.750852252],[-122.434842689,37.750849757],[-122.434886084,37.750847086],[-122.4349289,37.750844449],[-122.434969996,37.750841918],[-122.435015112,37.750839141],[-122.435053907,37.750836752],[-122.435084081,37.750834894],[-122.435137819,37.750831584],[-122.435153051,37.750830646],[-122.43522202,37.750826399],[-122.43529099,37.750822152],[-122.435308232,37.750821091],[-122.435394443,37.750815782],[-122.435480655,37.750810473],[-122.435566868,37.750805165],[-122.435622098,37.750801763],[-122.435658824,37.750799501],[-122.435669746,37.750798829],[-122.435750785,37.750793838],[-122.435752508,37.750793732],[-122.435842745,37.750788175],[-122.436118623,37.750771185],[-122.436140679,37.750769827],[-122.436261112,37.750762409],[-122.436380781,37.750755039],[-122.436403121,37.750753663],[-122.436678997,37.750736672],[-122.436679591,37.750742795],[-122.436685627,37.750805129],[-122.436692256,37.750873586],[-122.436675014,37.750874648],[-122.436682438,37.750951319],[-122.436691985,37.751049897],[-122.436693114,37.751061557],[-122.436699679,37.751129351],[-122.436702782,37.751161402],[-122.436708956,37.751225146],[-122.436715055,37.751288126],[-122.436456418,37.751304055],[-122.436314168,37.751312815],[-122.436318645,37.751359054],[-122.436338154,37.751560511],[-122.436217953,37.751567849],[-122.436195895,37.751569196],[-122.436092432,37.751575483],[-122.436006212,37.751580721],[-122.435919993,37.751585961],[-122.4358286,37.751591514],[-122.43581653,37.751592248],[-122.43573031,37.751597486],[-122.435644091,37.751602725],[-122.435540628,37.751609011],[-122.435454407,37.75161425],[-122.435368189,37.751619488],[-122.435281969,37.751624727],[-122.435195749,37.751629965],[-122.435092286,37.751636251],[-122.435095997,37.751674587],[-122.434992534,37.751680873],[-122.434988823,37.751642536],[-122.434954335,37.751644632],[-122.434902602,37.751647775],[-122.434816383,37.751653012],[-122.434738442,37.751657748],[-122.43471292,37.751659299],[-122.434660498,37.751662483],[-122.4346267,37.751664537],[-122.434582556,37.751667218],[-122.434540481,37.751669774],[-122.43453949,37.751659546],[-122.434531803,37.751580136],[-122.434257848,37.751597004],[-122.434243864,37.751597823],[-122.434117533,37.751605225],[-122.434119401,37.751625328],[-122.43397517,37.751633778],[-122.433785479,37.751645216],[-122.433791965,37.751713682],[-122.433781619,37.751714306],[-122.433705742,37.751718882],[-122.433619519,37.751724081],[-122.433533295,37.751729281],[-122.433447072,37.75173448],[-122.433360849,37.751739679],[-122.433274624,37.751744878],[-122.433188401,37.751750078],[-122.433102177,37.751755276],[-122.433015954,37.751760476],[-122.432929731,37.751765674],[-122.432843508,37.751770874],[-122.432757284,37.751776072],[-122.432671061,37.751781271],[-122.432584836,37.751786469],[-122.432498613,37.751791669],[-122.432433719,37.751795581],[-122.43241239,37.751796867],[-122.432409032,37.751761416],[-122.432402664,37.751694205],[-122.432396146,37.751625397],[-122.432389693,37.751557274],[-122.432234492,37.751566631],[-122.432028689,37.751579039],[-122.432023623,37.751579323],[-122.431889991,37.751586814],[-122.431898501,37.75168253],[-122.431753213,37.751690674],[-122.431577602,37.751701261],[-122.431584823,37.751776568],[-122.431591389,37.751845029],[-122.43152969,37.751848747],[-122.431440017,37.751854153],[-122.431357243,37.751859143],[-122.431326395,37.751861003],[-122.431252433,37.751865461],[-122.431240172,37.7518662],[-122.431141301,37.751872161],[-122.431123098,37.751873257],[-122.431153031,37.752185438],[-122.43115516,37.75220725],[-122.431161675,37.752274022],[-122.430664031,37.752304632],[-122.430655328,37.752215439],[-122.430625397,37.751903258],[-122.430623672,37.751903362],[-122.430537449,37.751908559],[-122.430448062,37.751913947],[-122.430361839,37.751919144],[-122.430275614,37.751924341],[-122.430272451,37.751924532],[-122.430186228,37.751929729],[-122.430100003,37.751934926],[-122.43001378,37.751940123],[-122.430006146,37.751860489],[-122.429896641,37.751867089],[-122.429896838,37.751869143],[-122.429826168,37.751873402],[-122.429809887,37.751874344],[-122.429687207,37.751881441],[-122.429686721,37.751876142],[-122.429541055,37.751884568],[-122.429345613,37.751896346],[-122.429353751,37.751981237],[-122.429201409,37.751990418],[-122.429115184,37.751995614],[-122.42902896,37.75200081],[-122.429021348,37.751921396],[-122.428935125,37.751926592],[-122.4288489,37.751931788],[-122.428762676,37.751936984],[-122.428676453,37.751942179],[-122.428660208,37.751943097],[-122.428575638,37.751947876],[-122.428573252,37.751921256],[-122.42846689,37.751927265],[-122.428380666,37.75193246],[-122.428294442,37.751937656],[-122.428298117,37.751975994],[-122.428211893,37.75198119],[-122.428218454,37.752049651],[-122.42813223,37.752054846],[-122.428046006,37.752060042],[-122.427959781,37.752065237],[-122.427885406,37.752069719],[-122.427873558,37.752070432],[-122.427787334,37.752075627],[-122.4276119,37.752086198],[-122.427471849,37.752094008],[-122.427470591,37.752079799],[-122.427461454,37.751976506],[-122.427316092,37.751984612],[-122.427146986,37.7519948],[-122.427005686,37.752003313],[-122.427012183,37.752071778],[-122.42701868,37.752140242],[-122.426984189,37.75214232],[-122.426991817,37.752222709],[-122.426920295,37.752227017],[-122.426819369,37.752233098],[-122.426812872,37.752164633],[-122.426806376,37.752096169],[-122.42679988,37.752027703],[-122.426799189,37.752027745],[-122.426792693,37.75195928],[-122.426710966,37.751964204],[-122.426704407,37.751895743],[-122.426445733,37.751911326],[-122.426440956,37.751911601],[-122.426346191,37.751917054],[-122.426332888,37.751771295],[-122.426316035,37.751605336],[-122.426307685,37.751523116],[-122.426305234,37.751498977],[-122.426405643,37.751492928],[-122.426540246,37.751484818],[-122.426643714,37.751478584],[-122.426747183,37.75147235],[-122.426740686,37.751403885],[-122.42673419,37.751335421],[-122.426820414,37.751330226],[-122.426885144,37.751326326],[-122.426906637,37.751325031],[-122.426913133,37.751393495],[-122.42691963,37.751461961],[-122.426924476,37.751513032],[-122.426925866,37.751527687],[-122.427260211,37.751507542],[-122.42727076,37.751506906],[-122.427416271,37.751498139],[-122.427402546,37.751364025],[-122.42754251,37.751354995],[-122.427776962,37.75134087],[-122.427803484,37.751339271],[-122.427796923,37.75127081],[-122.427883146,37.751265614],[-122.427969369,37.75126042],[-122.428055593,37.751255224],[-122.428141816,37.751250029],[-122.428148115,37.751315751],[-122.428234338,37.751310556],[-122.4282367,37.751335202],[-122.428322923,37.751330006],[-122.428409146,37.75132481],[-122.428420568,37.751324122],[-122.428515405,37.751318406],[-122.428509438,37.751259666],[-122.428586501,37.751255022],[-122.428610451,37.751253578],[-122.428699561,37.751248207],[-122.428785785,37.75124301]]]]}},"NCD","6:00AM-2:00AM",0.000007990733363294238,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_728.1","24TH STREET- NOE VALLEY NEIGHBORHOOD COMMERCIAL","NCD-24TH-NOE-VALLEY",728.1,20519,0.02900985913716566,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":5.358852346563067e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19532,"shape_length":0.004822205876248832,"gen":"Mixed Use","index":95},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.47696485,37.776643928],[-122.476946901,37.776396497],[-122.477067705,37.776390976],[-122.477389404,37.776376302],[-122.477384434,37.776307757],[-122.477379463,37.776239211],[-122.47746582,37.776235272],[-122.477552178,37.776231333],[-122.477557149,37.776299877],[-122.477562121,37.776368423],[-122.477898579,37.776353075],[-122.47790491,37.776352785],[-122.478015612,37.776347736],[-122.478020505,37.776416284],[-122.478073087,37.776413885],[-122.478145353,37.776410588],[-122.478483594,37.776395156],[-122.478488643,37.776464762],[-122.478496555,37.776574131],[-122.478607733,37.776569064],[-122.478614925,37.776668223],[-122.47861571,37.776679042],[-122.478635279,37.776948839],[-122.4785921,37.776950804],[-122.47854892,37.776952769],[-122.47846256,37.7769567],[-122.478457589,37.776888154],[-122.478452617,37.776819609],[-122.478167633,37.776832579],[-122.478161551,37.776832855],[-122.478050598,37.776837905],[-122.478033278,37.776595243],[-122.47696485,37.776643928]]]]}},"NC-1","6:00AM-11:00PM",5.358852346563067e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19532,0.004822205876248832,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":3.926102835029614e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19720,"shape_length":0.0029419654025003594,"gen":"Mixed Use","index":96},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.496834943,37.753342818],[-122.497298478,37.753322353],[-122.497902528,37.753295681],[-122.497924375,37.753612225],[-122.497803099,37.753617502],[-122.49751083,37.753630438],[-122.497515616,37.753698992],[-122.49739474,37.753704342],[-122.497395857,37.753720336],[-122.49730928,37.753724168],[-122.496983815,37.753738573],[-122.496861834,37.753743731],[-122.496834943,37.753342818]]]]}},"NC-1","6:00AM-11:00PM",3.926102835029614e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19720,0.0029419654025003594,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.631419262902792e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19672,"shape_length":0.0026210450249109164,"gen":"Mixed Use","index":97},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.426060029,37.761258667],[-122.426076502,37.761427133],[-122.426094083,37.761612663],[-122.425884007,37.761625209],[-122.425539072,37.761646062],[-122.425546945,37.761728215],[-122.425554291,37.761804891],[-122.425559014,37.761854183],[-122.42554449,37.761855061],[-122.425472781,37.761859396],[-122.425389996,37.761864401],[-122.4253693,37.761865652],[-122.425368499,37.761857296],[-122.425339912,37.761558948],[-122.425331561,37.761472485],[-122.42557653,37.761457572],[-122.425569945,37.761389394],[-122.425567964,37.761368886],[-122.42556032,37.761289118],[-122.425853513,37.761271394],[-122.426060029,37.761258667]]]]}},"NC-1","6:00AM-11:00PM",2.631419262902792e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19672,0.0026210450249109164,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":6.91770771946638e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19684,"shape_length":0.004481971680016819,"gen":"Mixed Use","index":98},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.473459719,37.782535034],[-122.473453228,37.782432504],[-122.47345257,37.78242211],[-122.473437667,37.782216475],[-122.473432699,37.78214793],[-122.473519062,37.782143955],[-122.473527698,37.782143557],[-122.473605423,37.782139978],[-122.473691786,37.782136003],[-122.473873146,37.782127653],[-122.473961247,37.782123598],[-122.474084654,37.782117918],[-122.474094551,37.78226717],[-122.474214013,37.78226167],[-122.474324544,37.782256581],[-122.474323352,37.78224013],[-122.474409714,37.782236154],[-122.474405342,37.782175834],[-122.474400969,37.782115515],[-122.474487332,37.782111538],[-122.474573693,37.782107561],[-122.474660056,37.782103585],[-122.474746417,37.782099608],[-122.474751682,37.782172236],[-122.474757505,37.782252568],[-122.47476602,37.782370022],[-122.474773953,37.782478532],[-122.474682697,37.782482734],[-122.474690833,37.782594029],[-122.474710637,37.782867226],[-122.474711553,37.782879861],[-122.474677007,37.782881451],[-122.47462519,37.782883837],[-122.474538828,37.782887814],[-122.474452464,37.78289179],[-122.474366105,37.782895766],[-122.474260459,37.78290063],[-122.474139381,37.78290616],[-122.474110594,37.782509077],[-122.473459719,37.782535034]]]]}},"NC-1","6:00AM-11:00PM",6.91770771946638e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19684,0.004481971680016819,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000012191252022226738,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19569,"shape_length":0.0061866285020826806,"gen":"Mixed Use","index":99},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.401296839,37.722697244],[-122.401421555,37.722369028],[-122.401569479,37.72272784],[-122.401612579,37.722832384],[-122.4016471,37.722916122],[-122.401773852,37.723223571],[-122.401877232,37.723474332],[-122.401879134,37.723478944],[-122.401888025,37.723500509],[-122.401995533,37.723472422],[-122.402215205,37.723415032],[-122.402391523,37.723368967],[-122.402418286,37.723434252],[-122.402471814,37.723564823],[-122.402525341,37.723695394],[-122.402578869,37.723825965],[-122.402610986,37.723904307],[-122.402611419,37.723904193],[-122.40264414,37.723982379],[-122.402698675,37.724112686],[-122.40275321,37.724242993],[-122.402651491,37.724269568],[-122.402355243,37.724346965],[-122.402247634,37.724375078],[-122.402289769,37.724477798],[-122.402180207,37.724505081],[-122.402152758,37.724511917],[-122.401895187,37.724576056],[-122.401868084,37.72449646],[-122.401814779,37.724339922],[-122.4016774,37.723936474],[-122.401669334,37.723912784],[-122.401637466,37.723819187],[-122.401636611,37.723818984],[-122.401628144,37.723796794],[-122.401623536,37.723784721],[-122.40160051,37.723724379],[-122.401599355,37.723724104],[-122.401573879,37.723651844],[-122.401547438,37.723576847],[-122.401542526,37.723562915],[-122.401518226,37.72349399],[-122.401490349,37.72341492],[-122.401463124,37.723337698],[-122.401435753,37.723260064],[-122.401408381,37.723182423],[-122.401381007,37.723104776],[-122.401353629,37.723027123],[-122.401326828,37.722951104],[-122.401318115,37.722926389],[-122.40132001,37.722921402],[-122.401317988,37.722921434],[-122.401249282,37.722922543],[-122.401215788,37.722923084],[-122.401210994,37.722923161],[-122.401213824,37.722915715],[-122.401246882,37.722828715],[-122.401285228,37.722727799],[-122.401296839,37.722697244]]]]}},"NC-2","6:00AM-2:00AM",0.0000012191252022226738,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19569,0.0061866285020826806,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":1.9803306984666115e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19033,"shape_length":0.0017967999846409451,"gen":"Mixed Use","index":100},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.415529133,37.711781613],[-122.41600028,37.711914555],[-122.415945528,37.712037245],[-122.41585925,37.712230581],[-122.415848885,37.712253806],[-122.415837463,37.712279401],[-122.415833814,37.71228758],[-122.41572127,37.712255882],[-122.415558223,37.712210291],[-122.415362566,37.712155583],[-122.415391369,37.712090849],[-122.41549361,37.711861069],[-122.415529133,37.711781613]]]]}},"NC-1","6:00AM-11:00PM",1.9803306984666115e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19033,0.0017967999846409451,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCD","commercial_hours_of_operation":"6:00AM-10:00PM","shape_area":0.000004435095242351461,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_726","districtname":"PACIFIC AVENUE NEIGHBORHOOD COMMERCIAL","zoning":"NCD-PACIFIC","codesection":726,"objectid":19847,"shape_length":0.01786429153075295,"gen":"Mixed Use","index":101},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.414769345,37.796124143],[-122.414740095,37.795978202],[-122.414726939,37.795912359],[-122.414626087,37.795925047],[-122.414612751,37.7958583],[-122.414609522,37.795841291],[-122.414557212,37.795565716],[-122.414818059,37.79553317],[-122.414932897,37.795518546],[-122.414960366,37.795654375],[-122.415076542,37.79563958],[-122.415258335,37.795616831],[-122.415241736,37.7955355],[-122.415420648,37.795513111],[-122.415532893,37.795499064],[-122.41551042,37.79538895],[-122.415504236,37.795358643],[-122.415581156,37.795349017],[-122.415613034,37.795345028],[-122.415659785,37.795339177],[-122.415690596,37.795335321],[-122.415738416,37.795329337],[-122.415784609,37.795323556],[-122.415817045,37.795319497],[-122.415878621,37.795311791],[-122.415895674,37.795309657],[-122.415961326,37.795301441],[-122.415974303,37.795299817],[-122.415982306,37.795339028],[-122.415989484,37.795374199],[-122.416066404,37.795364573],[-122.41607913,37.795426926],[-122.41623297,37.795407673],[-122.416245697,37.795470027],[-122.41631407,37.79546147],[-122.416399536,37.795450774],[-122.416485004,37.795440078],[-122.416517058,37.795436008],[-122.416603355,37.795425051],[-122.416628042,37.795547489],[-122.416745071,37.79553263],[-122.416950099,37.795506502],[-122.416954459,37.795505942],[-122.416979993,37.79550266],[-122.416950665,37.795358971],[-122.416945657,37.795334433],[-122.416915645,37.795187394],[-122.416914972,37.795184091],[-122.416932344,37.795181876],[-122.416944872,37.795180279],[-122.417235341,37.795143322],[-122.417384835,37.795124271],[-122.417385389,37.795126982],[-122.417558316,37.795104943],[-122.417557419,37.795100785],[-122.417558206,37.795100685],[-122.41761722,37.79509316],[-122.417586374,37.794950283],[-122.41764607,37.794942167],[-122.417851105,37.794916036],[-122.417837663,37.794853774],[-122.417769317,37.794862484],[-122.417729283,37.794677052],[-122.417727565,37.794668601],[-122.417723123,37.794646757],[-122.417717264,37.794617941],[-122.417981799,37.794584069],[-122.418112287,37.79456736],[-122.418415179,37.794527927],[-122.418427967,37.794589773],[-122.418476747,37.794826946],[-122.418490615,37.794894377],[-122.418584728,37.794883093],[-122.418678772,37.794871477],[-122.418765976,37.794860705],[-122.418784094,37.794948797],[-122.41878729,37.794948403],[-122.418790933,37.794947953],[-122.41880292,37.795006229],[-122.418814907,37.795064507],[-122.418826892,37.795122782],[-122.418914809,37.795111923],[-122.418983205,37.795103475],[-122.419026096,37.795098177],[-122.419035902,37.795096907],[-122.419061106,37.795093642],[-122.41906119,37.795094051],[-122.419096201,37.795089517],[-122.419244963,37.795071141],[-122.419313359,37.795062693],[-122.419301372,37.795004417],[-122.419289386,37.79494614],[-122.419277399,37.794887864],[-122.41930874,37.794883992],[-122.41949541,37.794860934],[-122.419506561,37.794915144],[-122.419520498,37.794982908],[-122.419534436,37.795050671],[-122.419552773,37.795138737],[-122.419787668,37.795109721],[-122.419793196,37.795109],[-122.41990597,37.795094305],[-122.419843688,37.79479335],[-122.419960545,37.794778122],[-122.420343292,37.794729506],[-122.420393198,37.794723166],[-122.42043727,37.794717568],[-122.420478633,37.794712314],[-122.420531247,37.794705631],[-122.420564067,37.794701462],[-122.420649501,37.79469061],[-122.420734936,37.794679758],[-122.420740918,37.794678997],[-122.420820369,37.794668905],[-122.420826568,37.794668118],[-122.420903742,37.794658314],[-122.420925155,37.794762412],[-122.420975923,37.795009212],[-122.420994823,37.795102419],[-122.420997728,37.795102048],[-122.421001553,37.795120901],[-122.421016642,37.795195252],[-122.421086901,37.795541462],[-122.421084317,37.795541793],[-122.421025801,37.795549263],[-122.420964605,37.795557077],[-122.420847147,37.795572076],[-122.420484096,37.795618432],[-122.420470572,37.79555179],[-122.420467589,37.795537089],[-122.42045108,37.795455749],[-122.420334906,37.795470581],[-122.420249482,37.795481489],[-122.420109386,37.795499376],[-122.420076996,37.795503514],[-122.419991793,37.795514401],[-122.41998181,37.795465202],[-122.419864217,37.795480227],[-122.419618568,37.79551088],[-122.419622425,37.795531248],[-122.419550626,37.795540208],[-122.419497632,37.795546821],[-122.419497837,37.795547907],[-122.41939732,37.79556045],[-122.419380396,37.795562562],[-122.419377053,37.795544908],[-122.419308844,37.795553419],[-122.419253457,37.79556033],[-122.419176188,37.795569972],[-122.419155534,37.795572399],[-122.41916462,37.795621079],[-122.419137473,37.79562427],[-122.419025215,37.795637656],[-122.418936337,37.795648253],[-122.418943128,37.795684183],[-122.418864568,37.795693986],[-122.418795307,37.795702627],[-122.418785932,37.795703797],[-122.418707295,37.79571361],[-122.418628659,37.795723421],[-122.418550021,37.795733233],[-122.418473095,37.795742832],[-122.418353053,37.795758115],[-122.418344587,37.795716247],[-122.418224906,37.795731507],[-122.418014488,37.795758338],[-122.417924556,37.795769805],[-122.417710573,37.79579709],[-122.417426081,37.795833365],[-122.417289055,37.795850836],[-122.417284877,37.795851369],[-122.417070899,37.795878652],[-122.417028936,37.795884002],[-122.416819205,37.795910743],[-122.416704242,37.795925401],[-122.416702312,37.795915829],[-122.416580559,37.795931288],[-122.416418988,37.795951758],[-122.416415726,37.795935484],[-122.416338102,37.795945318],[-122.416337121,37.795945442],[-122.416258514,37.795955401],[-122.416179908,37.79596536],[-122.416101303,37.795975318],[-122.416022697,37.795985276],[-122.415944091,37.795995234],[-122.415948983,37.796019644],[-122.415870378,37.796029603],[-122.415865486,37.796005192],[-122.41578688,37.796015151],[-122.415708273,37.796025108],[-122.415629667,37.796035067],[-122.415551061,37.796045024],[-122.415472456,37.796054983],[-122.415473814,37.796061763],[-122.415422355,37.796068282],[-122.415395208,37.796071721],[-122.41539385,37.796064941],[-122.41529132,37.796077929],[-122.415159397,37.796094641],[-122.415052168,37.796108296],[-122.415051634,37.79610566],[-122.414926533,37.796121591],[-122.41477271,37.796140936],[-122.414769345,37.796124143]]]]}},"NCD","6:00AM-10:00PM",0.000004435095242351461,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_726","PACIFIC AVENUE NEIGHBORHOOD COMMERCIAL","NCD-PACIFIC",726,19847,0.01786429153075295,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000002962218211656141,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19559,"shape_length":0.009959047747534483,"gen":"Mixed Use","index":102},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.428859318,37.772599554],[-122.428836015,37.772484006],[-122.428823518,37.772422038],[-122.428802102,37.772315845],[-122.428753152,37.772073121],[-122.428870587,37.772058198],[-122.429058476,37.772034279],[-122.429246365,37.77201036],[-122.429231325,37.771935785],[-122.429216285,37.77186121],[-122.429201245,37.771786636],[-122.42929519,37.771774676],[-122.429337891,37.771769239],[-122.429389133,37.771762717],[-122.429391867,37.771776275],[-122.429428186,37.771771652],[-122.429454711,37.771768275],[-122.429516274,37.771760437],[-122.429579755,37.771752356],[-122.429577021,37.771738797],[-122.429596607,37.771736304],[-122.429682011,37.77172543],[-122.429754283,37.77171623],[-122.429754968,37.771716142],[-122.429914548,37.771695826],[-122.429925468,37.771694436],[-122.42993914,37.771762231],[-122.429953361,37.771832738],[-122.430095578,37.771814632],[-122.430264953,37.771793068],[-122.430306013,37.771788686],[-122.430378473,37.771780952],[-122.430354562,37.771639806],[-122.430480277,37.771623801],[-122.430676662,37.771598797],[-122.431105824,37.771544156],[-122.431451632,37.771500127],[-122.431872518,37.771446537],[-122.431998248,37.771430528],[-122.432018732,37.771532181],[-122.432076874,37.771524799],[-122.43213617,37.77151727],[-122.43224119,37.771503898],[-122.432326593,37.771493022],[-122.432381196,37.771764896],[-122.432400019,37.771858112],[-122.432412632,37.771856507],[-122.432431455,37.771949723],[-122.432474509,37.772164091],[-122.432478299,37.772182963],[-122.432437658,37.772188134],[-122.432392895,37.772193829],[-122.432275516,37.772208764],[-122.432158077,37.772223676],[-122.432168472,37.772275262],[-122.432051034,37.772290173],[-122.431948548,37.772303213],[-122.431863142,37.772314079],[-122.431769196,37.772326032],[-122.43167525,37.772337984],[-122.431581305,37.772349937],[-122.431593053,37.772408242],[-122.431607322,37.772479056],[-122.431616937,37.772526773],[-122.431619328,37.772538637],[-122.43155442,37.772546896],[-122.431469014,37.772557762],[-122.431340761,37.772574079],[-122.431212796,37.77259036],[-122.431149593,37.772598401],[-122.431136432,37.772533091],[-122.431119356,37.772448345],[-122.431103145,37.772367892],[-122.430633473,37.772427645],[-122.430591064,37.772433247],[-122.430504441,37.772444688],[-122.430507285,37.772458252],[-122.430401562,37.772472216],[-122.430186338,37.772499596],[-122.429930121,37.772532191],[-122.429839591,37.772543708],[-122.429837882,37.772543925],[-122.42985152,37.772611725],[-122.429861066,37.772659184],[-122.429784201,37.772668963],[-122.429696943,37.772680063],[-122.429613388,37.772690693],[-122.429525703,37.772701848],[-122.429442575,37.772712422],[-122.429410434,37.772716511],[-122.429357169,37.772723287],[-122.42935035,37.772689386],[-122.429336713,37.772621587],[-122.429251308,37.772632451],[-122.429165901,37.772643316],[-122.429159355,37.772610772],[-122.429073949,37.772621636],[-122.429065494,37.7725796],[-122.42906228,37.772580009],[-122.429020688,37.7725853],[-122.429019457,37.772579198],[-122.428976755,37.772584631],[-122.428943392,37.77258887],[-122.428859318,37.772599554]]]]}},"NC-2","6:00AM-2:00AM",0.000002962218211656141,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19559,0.009959047747534483,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCT","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000015799791008965694,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_761","districtname":"HAYES NCT","zoning":"NCT-HAYES","codesection":761,"objectid":19839,"shape_length":0.02876365584143664,"gen":"Mixed Use","index":103},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.423165553,37.777815246],[-122.423034196,37.777831659],[-122.422843562,37.777855478],[-122.422184649,37.777937806],[-122.422007696,37.777959915],[-122.422003895,37.777940753],[-122.421989745,37.777869401],[-122.421963863,37.777741367],[-122.421956507,37.777704973],[-122.421947788,37.777661839],[-122.421937828,37.777612563],[-122.421924125,37.777544772],[-122.421914515,37.777497321],[-122.421426124,37.77755963],[-122.421367097,37.777270543],[-122.421352626,37.777199671],[-122.421330432,37.777090972],[-122.42123544,37.776625747],[-122.421179202,37.776323937],[-122.42116829,37.776265379],[-122.421148424,37.776158764],[-122.42105326,37.775695232],[-122.420959921,37.775232334],[-122.421091912,37.775219067],[-122.421097302,37.775218525],[-122.421174004,37.775208414],[-122.421360022,37.775183894],[-122.421352278,37.775146883],[-122.421339364,37.775085155],[-122.421306147,37.774920819],[-122.421272815,37.774755904],[-122.421263239,37.774708449],[-122.421271561,37.774707391],[-122.421410414,37.774689738],[-122.421961074,37.774619728],[-122.422382296,37.774566173],[-122.42250219,37.77455093],[-122.422633848,37.774534295],[-122.423059043,37.774480569],[-122.423380264,37.77443998],[-122.423722394,37.774396748],[-122.423730821,37.774395683],[-122.423721112,37.774347271],[-122.423655333,37.774021873],[-122.423636538,37.773928709],[-122.423562888,37.77393807],[-122.423544072,37.773844802],[-122.423526793,37.773759467],[-122.423520523,37.773728503],[-122.423496096,37.773607863],[-122.423478238,37.773519665],[-122.423468854,37.773472895],[-122.42346904,37.773472871],[-122.423459377,37.773424716],[-122.423426456,37.773262121],[-122.423422468,37.773242426],[-122.423393495,37.773099331],[-122.423378879,37.773026885],[-122.423374699,37.773006163],[-122.423366025,37.773007265],[-122.42334721,37.772913999],[-122.423314697,37.772747101],[-122.423322279,37.772728289],[-122.423276056,37.772545241],[-122.423425747,37.772524045],[-122.423508091,37.772513305],[-122.423605966,37.77250054],[-122.423662293,37.772493195],[-122.423662125,37.772492383],[-122.423720385,37.772484785],[-122.423821873,37.772471548],[-122.42382533,37.772471096],[-122.423890944,37.772462539],[-122.424189861,37.772424499],[-122.424193947,37.772444673],[-122.424208157,37.772514855],[-122.424210451,37.772526182],[-122.424123323,37.772537271],[-122.424037918,37.772548138],[-122.424053407,37.772624647],[-122.424092795,37.77281919],[-122.424095613,37.772833151],[-122.424111625,37.772912459],[-122.424127955,37.772910381],[-122.424146763,37.773003544],[-122.424197453,37.77325391],[-122.424211338,37.773329096],[-122.424221098,37.773377259],[-122.424376956,37.773357356],[-122.424386445,37.773404176],[-122.424415541,37.773547888],[-122.424419384,37.773566869],[-122.424452274,37.773729317],[-122.424471103,37.77382258],[-122.424411423,37.773830171],[-122.424430232,37.773923338],[-122.424452191,37.7740318],[-122.424467015,37.774105012],[-122.424481838,37.774178223],[-122.424496112,37.774248724],[-122.424505906,37.774297004],[-122.424449502,37.774304213],[-122.424458953,37.774350796],[-122.424491893,37.774513489],[-122.424573886,37.774503062],[-122.424607521,37.774669186],[-122.424626441,37.774761594],[-122.424564567,37.774769576],[-122.424583784,37.774863431],[-122.42465007,37.775188765],[-122.424659658,37.775236219],[-122.424659397,37.775236252],[-122.424668985,37.775283707],[-122.424703229,37.775446234],[-122.424735114,37.775606027],[-122.424754197,37.775697512],[-122.424642899,37.775712139],[-122.424662582,37.775806503],[-122.424705749,37.776019697],[-122.424799696,37.776007722],[-122.424817261,37.776005483],[-122.424893642,37.775995747],[-122.424900086,37.776027575],[-122.42491027,37.776077867],[-122.424912396,37.776088369],[-122.424916358,37.776107938],[-122.424925959,37.776155391],[-122.424821491,37.776168707],[-122.424780783,37.776173896],[-122.424790384,37.776221348],[-122.424817286,37.776354215],[-122.424826269,37.776353069],[-122.42490771,37.776342688],[-122.42494205,37.77633831],[-122.424944246,37.776349157],[-122.424986096,37.776343822],[-122.425062391,37.776334098],[-122.425152566,37.776322604],[-122.425150919,37.776314468],[-122.425244866,37.776302493],[-122.425338812,37.776290518],[-122.42543242,37.77627687],[-122.425436053,37.776294812],[-122.425529999,37.776282837],[-122.425623946,37.77627086],[-122.425717648,37.77625768],[-122.42581135,37.776244499],[-122.425808544,37.77623064],[-122.425901777,37.77621514],[-122.425995065,37.776199909],[-122.425976143,37.776106471],[-122.425968984,37.776071112],[-122.425966859,37.77606061],[-122.425959375,37.77602366],[-122.425949767,37.775976208],[-122.425926705,37.775862324],[-122.425883879,37.775650824],[-122.425869012,37.775579556],[-122.425863215,37.775551765],[-122.425943348,37.775541234],[-122.426070325,37.775524545],[-122.426288755,37.775497174],[-122.426308547,37.775596688],[-122.426346851,37.775786511],[-122.426374211,37.775922101],[-122.426383814,37.775969554],[-122.426383762,37.77596956],[-122.426393364,37.776017013],[-122.426422731,37.776162546],[-122.426429184,37.77619452],[-122.426459283,37.776343681],[-122.426478164,37.776436889],[-122.426621989,37.776418533],[-122.42664087,37.776511741],[-122.426676765,37.776688965],[-122.426680413,37.776706971],[-122.426719922,37.77670193],[-122.426739937,37.776801119],[-122.426746188,37.776832094],[-122.426755801,37.776879546],[-122.426486094,37.776913967],[-122.426359035,37.776930183],[-122.426395159,37.777107701],[-122.426313002,37.777118234],[-122.426278758,37.777122624],[-122.426184727,37.777134625],[-122.426005002,37.777157561],[-122.425991824,37.777092484],[-122.425984459,37.777056114],[-122.425978646,37.777027407],[-122.425969034,37.776979955],[-122.425541217,37.777034552],[-122.425282399,37.777067581],[-122.4250294,37.777099867],[-122.425021046,37.777100933],[-122.425030658,37.777148385],[-122.425048206,37.77723505],[-122.425069959,37.777342486],[-122.425096518,37.777473648],[-122.42511477,37.777562092],[-122.425113947,37.777562199],[-122.425134147,37.777660082],[-122.425163894,37.777807188],[-122.425177785,37.777875881],[-122.425199948,37.777985478],[-122.425209544,37.778032931],[-122.425226392,37.778030785],[-122.425235988,37.778078238],[-122.425268864,37.778240939],[-122.425301739,37.778403639],[-122.425312479,37.778456749],[-122.425320589,37.778496852],[-122.424998167,37.778537928],[-122.424883274,37.778552564],[-122.424864349,37.778554975],[-122.424783239,37.778565308],[-122.424024877,37.778661915],[-122.42394122,37.778672572],[-122.423939347,37.778663311],[-122.423922372,37.77857936],[-122.42391481,37.778541964],[-122.423874394,37.778342092],[-122.423847527,37.778209222],[-122.423823403,37.77808991],[-122.423809365,37.778020492],[-122.423771588,37.77783366],[-122.423752096,37.777739087],[-122.423165553,37.777815246]],[[-122.424324649,37.775753961],[-122.424179424,37.775772471],[-122.424192993,37.775839933],[-122.424215645,37.775952544],[-122.424273186,37.776238595],[-122.424354067,37.776636146],[-122.424355962,37.776645466],[-122.424368301,37.776706112],[-122.4245137,37.776687555],[-122.424659055,37.77666901],[-122.424646856,37.776608355],[-122.424605268,37.776401565],[-122.424565011,37.776201399],[-122.424484983,37.775808214],[-122.424483616,37.775801499],[-122.424470051,37.775734854],[-122.424324649,37.775753961]]]]}},"NCT","6:00AM-2:00AM",0.000015799791008965694,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_761","HAYES NCT","NCT-HAYES",761,19839,0.02876365584143664,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCT","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000011635031997051604,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_764","districtname":"UPPER MARKET NEIGHBORHOOD COMMERCIAL TRANSIT","zoning":"NCT-UPPER MARKET","codesection":764,"objectid":19873,"shape_length":0.0351426310941943,"gen":"Mixed Use","index":104},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.429053786,37.768674599],[-122.428968772,37.767729169],[-122.428657163,37.767734887],[-122.427864998,37.767792687],[-122.427828068,37.767407439],[-122.427931556,37.767401187],[-122.428092079,37.767391382],[-122.428104027,37.76739066],[-122.428190267,37.767385445],[-122.428276507,37.767380229],[-122.428269944,37.767311768],[-122.428340763,37.767255452],[-122.428350539,37.767247678],[-122.428349622,37.767238093],[-122.428343058,37.767169632],[-122.428336496,37.767101172],[-122.428329932,37.767032711],[-122.428323369,37.766964251],[-122.428316806,37.76689579],[-122.428310243,37.766827329],[-122.42830368,37.766758868],[-122.428297117,37.766690408],[-122.428290223,37.766618496],[-122.428283991,37.766553487],[-122.42837023,37.766548272],[-122.42840414,37.766546221],[-122.428713771,37.766527496],[-122.42885578,37.766519069],[-122.428819147,37.766130013],[-122.428418228,37.766154259],[-122.428412349,37.766093003],[-122.428409819,37.766066629],[-122.428403209,37.765997003],[-122.428502352,37.765991007],[-122.428552854,37.765987953],[-122.428661925,37.765981357],[-122.428804218,37.765972752],[-122.42878483,37.765768521],[-122.42884784,37.765764709],[-122.428927123,37.765759914],[-122.429011833,37.765754791],[-122.42902354,37.7658769],[-122.429033646,37.765982314],[-122.42903657,37.766012816],[-122.429038087,37.766028634],[-122.429046496,37.766116263],[-122.429133828,37.766110981],[-122.42913696,37.766143622],[-122.429142238,37.766198609],[-122.429142849,37.766205051],[-122.429168238,37.766472467],[-122.429254477,37.766467252],[-122.429340715,37.766462035],[-122.429416642,37.766457444],[-122.429426955,37.76645682],[-122.429402647,37.766200799],[-122.429400953,37.766182962],[-122.42939677,37.766139369],[-122.429392544,37.766095333],[-122.429926121,37.76606306],[-122.430460294,37.766033726],[-122.430453787,37.765959063],[-122.430453927,37.765959061],[-122.430452395,37.765943087],[-122.430425924,37.765667038],[-122.430449419,37.765665567],[-122.430512157,37.765661771],[-122.430565241,37.76565856],[-122.430598395,37.765656554],[-122.430632893,37.765654467],[-122.430632116,37.765646369],[-122.43063158,37.765640776],[-122.43070013,37.765636628],[-122.43071462,37.765635752],[-122.430859243,37.765627003],[-122.431001535,37.765618395],[-122.43094229,37.765000607],[-122.431048502,37.764994182],[-122.431084581,37.764991999],[-122.431245294,37.764982276],[-122.431298069,37.764979083],[-122.431350788,37.764937391],[-122.431409641,37.764890847],[-122.431420971,37.764881887],[-122.431415347,37.764823255],[-122.431408782,37.764754795],[-122.43140156,37.764679488],[-122.431394337,37.764604181],[-122.431374312,37.764605393],[-122.43123574,37.764614804],[-122.43104962,37.764627443],[-122.431038987,37.764628165],[-122.430907431,37.764637099],[-122.430882153,37.76437351],[-122.430549141,37.764393655],[-122.430546035,37.764361295],[-122.430538627,37.764284119],[-122.430514994,37.764037661],[-122.430601229,37.764032444],[-122.430705725,37.764026123],[-122.430848016,37.764017523],[-122.430864192,37.764186209],[-122.431006481,37.764177609],[-122.431337091,37.764157538],[-122.43135142,37.764156668],[-122.431351428,37.764156756],[-122.431352884,37.764171934],[-122.431358884,37.764234496],[-122.431369399,37.764344032],[-122.431700287,37.764324011],[-122.432279516,37.764288964],[-122.432241854,37.763896304],[-122.432295752,37.763893045],[-122.432468223,37.763882609],[-122.432571706,37.763876347],[-122.432565139,37.763807886],[-122.432558573,37.763739426],[-122.432552006,37.763670966],[-122.43254544,37.763602506],[-122.432538873,37.763534045],[-122.432573367,37.763531958],[-122.432887057,37.763512975],[-122.433035457,37.76350386],[-122.4330324,37.763472505],[-122.433168612,37.763464262],[-122.433444565,37.763447562],[-122.433437998,37.763379102],[-122.433518311,37.763374241],[-122.433524233,37.763373882],[-122.433517666,37.763305422],[-122.433603901,37.763300202],[-122.433597333,37.763231743],[-122.433590766,37.763163282],[-122.433584198,37.763094822],[-122.433577631,37.763026362],[-122.433681112,37.763020099],[-122.433749755,37.763015944],[-122.433767346,37.76301488],[-122.433815293,37.763011978],[-122.43383599,37.763010725],[-122.433887729,37.763007594],[-122.433922224,37.763005506],[-122.433956718,37.763003418],[-122.433949772,37.762931022],[-122.433948836,37.762921266],[-122.434000577,37.762918133],[-122.434086811,37.762912914],[-122.434060539,37.762639074],[-122.434057174,37.762603995],[-122.434052132,37.762551445],[-122.434062387,37.762550824],[-122.43450617,37.762526282],[-122.434939553,37.762502312],[-122.435187962,37.762670707],[-122.435311663,37.762588715],[-122.435498844,37.762495693],[-122.435563781,37.76246436],[-122.435586697,37.762453303],[-122.435604768,37.762476906],[-122.435664401,37.762554797],[-122.435697156,37.7626068],[-122.435725662,37.762652058],[-122.435743708,37.762844209],[-122.435703171,37.762837638],[-122.435639943,37.762827389],[-122.43556889,37.762753222],[-122.435591677,37.762825662],[-122.435652906,37.762852458],[-122.435669721,37.763028429],[-122.435638391,37.763056746],[-122.435362401,37.76307336],[-122.435223682,37.763081377],[-122.435226381,37.763110821],[-122.435249516,37.763363106],[-122.43510458,37.763371482],[-122.434882237,37.763384941],[-122.434877683,37.763388544],[-122.434799832,37.763450118],[-122.434800654,37.763458738],[-122.434807173,37.7635272],[-122.434691274,37.763534216],[-122.43469143,37.763535856],[-122.434697793,37.76360268],[-122.434702695,37.763654146],[-122.434704314,37.763671143],[-122.434647743,37.763674567],[-122.434609171,37.763676902],[-122.434495708,37.76368377],[-122.434468373,37.763685424],[-122.434367191,37.763691548],[-122.434164826,37.763703798],[-122.434179951,37.763862632],[-122.434136527,37.76386526],[-122.434093716,37.763867851],[-122.434093678,37.763867459],[-122.434093455,37.763865113],[-122.43409328,37.763865124],[-122.43400722,37.763870332],[-122.434008187,37.763880489],[-122.434019299,37.763997184],[-122.434026256,37.764070244],[-122.434026279,37.764070352],[-122.434028338,37.764091786],[-122.434036789,37.76417978],[-122.433536516,37.764210058],[-122.433546946,37.764319599],[-122.433558942,37.764445571],[-122.433564939,37.764508557],[-122.433570937,37.764571544],[-122.433571759,37.76458018],[-122.433577183,37.764637156],[-122.433628927,37.764634025],[-122.433636097,37.764709334],[-122.433643268,37.764784644],[-122.433650439,37.764859953],[-122.433578,37.764864337],[-122.433561152,37.764865357],[-122.433304507,37.764880889],[-122.433162217,37.7648895],[-122.433178408,37.765058286],[-122.433035983,37.765065507],[-122.433020191,37.765066307],[-122.432851766,37.765074848],[-122.432781132,37.76507843],[-122.432788244,37.765083999],[-122.432817928,37.765107246],[-122.432746116,37.765164789],[-122.432722168,37.765183979],[-122.432658987,37.765234606],[-122.432628384,37.765259127],[-122.432617777,37.765267627],[-122.43257394,37.765302753],[-122.432539309,37.765330503],[-122.432510773,37.765353369],[-122.43257379,37.76540262],[-122.432622275,37.765440514],[-122.43263804,37.765452834],[-122.432648066,37.76546067],[-122.432622842,37.765462319],[-122.432561685,37.765466318],[-122.432528905,37.76546846],[-122.432513793,37.765469448],[-122.432473153,37.765472105],[-122.432386987,37.765477738],[-122.432384625,37.765456989],[-122.432309473,37.765514062],[-122.432288406,37.76553006],[-122.432267932,37.76554645],[-122.432249358,37.765535713],[-122.432229852,37.765520232],[-122.432166274,37.765568071],[-122.432176899,37.765576326],[-122.432209048,37.765601304],[-122.432200586,37.765606752],[-122.43219201,37.765612273],[-122.432210145,37.765789433],[-122.432214753,37.765834458],[-122.432218961,37.765878118],[-122.432223414,37.765924319],[-122.43209378,37.765932193],[-122.431543645,37.765965606],[-122.43154539,37.765983706],[-122.431552052,37.766052837],[-122.431568899,37.766228501],[-122.431582255,37.766367755],[-122.431583997,37.766385921],[-122.431586268,37.766409596],[-122.431599399,37.766546517],[-122.431583621,37.766547471],[-122.431235772,37.766568516],[-122.431093478,37.766577116],[-122.431110248,37.766751984],[-122.430967953,37.766760584],[-122.430955236,37.766761325],[-122.430637212,37.766779859],[-122.430574976,37.766829295],[-122.430543918,37.766853965],[-122.430548964,37.766898834],[-122.430551821,37.7669234],[-122.430561575,37.767007274],[-122.43057333,37.767108342],[-122.430581106,37.767175215],[-122.430583582,37.767196498],[-122.430558582,37.767198165],[-122.430499672,37.767202096],[-122.430452969,37.767205213],[-122.430409758,37.767208097],[-122.430394864,37.767209075],[-122.430323793,37.767213797],[-122.430235541,37.767219722],[-122.430176238,37.767223679],[-122.430115516,37.767227731],[-122.430098333,37.767228877],[-122.430076433,37.767230338],[-122.430067611,37.767237278],[-122.430032693,37.767264741],[-122.430015772,37.76727805],[-122.429965213,37.767317816],[-122.429918831,37.767354296],[-122.429886864,37.767379439],[-122.429843205,37.767413778],[-122.429791438,37.767454493],[-122.429803596,37.76757703],[-122.429804946,37.767590647],[-122.429807851,37.767621021],[-122.429813326,37.767678278],[-122.430081454,37.76766212],[-122.430116114,37.768023574],[-122.430012625,37.768029828],[-122.429996165,37.76803082],[-122.429881536,37.768037727],[-122.429753897,37.768045419],[-122.429667654,37.768050617],[-122.429581412,37.768055813],[-122.429587977,37.768124274],[-122.42959449,37.768192209],[-122.429607669,37.768329655],[-122.429615237,37.768408585],[-122.429618253,37.76844004],[-122.429622589,37.76848526],[-122.429629942,37.768561937],[-122.429637865,37.768644574],[-122.429648418,37.768754638],[-122.429650469,37.768776018],[-122.4296566,37.768839957],[-122.429662902,37.768905679],[-122.429669203,37.768971401],[-122.429675767,37.769039862],[-122.429589522,37.769045034],[-122.429615609,37.769317099],[-122.429617215,37.769333428],[-122.429626247,37.769425241],[-122.429127986,37.769456127],[-122.429055125,37.768688713],[-122.429053786,37.768674599]]]]}},"NCT","6:00AM-2:00AM",0.000011635031997051604,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_764","UPPER MARKET NEIGHBORHOOD COMMERCIAL TRANSIT","NCT-UPPER MARKET",764,19873,0.0351426310941943,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"PM-MU2","commercial_hours_of_operation":null,"shape_area":2.447188592931429e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article2usedistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_249.64","districtname":"PARKMERCED-MIXED USE-NEIGHBORHOOD COMMONS","zoning":"PM-MU2","codesection":249.64,"objectid":20395,"shape_length":0.002336395758958163,"gen":"Mixed Use","index":105},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.474552705,37.718746547],[-122.474937467,37.718712245],[-122.474941411,37.718742195],[-122.475489797,37.718672128],[-122.475531898,37.718917229],[-122.475393799,37.718973196],[-122.475039285,37.719018485],[-122.474891045,37.719031702],[-122.474814153,37.719018684],[-122.474560113,37.718787636],[-122.474554834,37.71875901],[-122.474552705,37.718746547]]]]}},"PM-MU2",null,2.447188592931429e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article2usedistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_249.64","PARKMERCED-MIXED USE-NEIGHBORHOOD COMMONS","PM-MU2",249.64,20395,0.002336395758958163,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":0.000001280947005767147,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19664,"shape_length":0.005480192196454054,"gen":"Mixed Use","index":106},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.449552549,37.766192625],[-122.449551024,37.766185067],[-122.449538867,37.766124831],[-122.449533415,37.766097817],[-122.449504293,37.765953524],[-122.44948543,37.765860314],[-122.449480398,37.765860956],[-122.449461535,37.765767746],[-122.449436989,37.765646633],[-122.449396989,37.765449262],[-122.449390675,37.765449897],[-122.449311139,37.765457894],[-122.449225289,37.765466524],[-122.449140582,37.76547504],[-122.44913944,37.765475155],[-122.44913507,37.765453594],[-122.449113854,37.765348902],[-122.449284639,37.765327122],[-122.44938711,37.765314054],[-122.449383035,37.765293942],[-122.449347316,37.765117697],[-122.449327212,37.765018503],[-122.449319513,37.764980458],[-122.44930835,37.764925292],[-122.44931078,37.764924982],[-122.449291918,37.764831771],[-122.449275313,37.764749495],[-122.449289711,37.764747659],[-122.449616882,37.764705933],[-122.449734302,37.764690998],[-122.449769714,37.764866452],[-122.450228645,37.764807921],[-122.450247509,37.764901131],[-122.450274875,37.765036719],[-122.45030224,37.765172307],[-122.450322764,37.765273997],[-122.450343289,37.765375688],[-122.450370655,37.765511276],[-122.450394775,37.765630789],[-122.450398305,37.765648273],[-122.45041717,37.765741483],[-122.450419204,37.765741223],[-122.450438068,37.765834434],[-122.450455856,37.765922566],[-122.450112149,37.765966402],[-122.449994725,37.765981338],[-122.45001662,37.766089824],[-122.450039167,37.766201534],[-122.449998665,37.766206686],[-122.449921743,37.766216469],[-122.449815855,37.766229974],[-122.449814897,37.766225229],[-122.449768784,37.76623111],[-122.449749275,37.766225948],[-122.449632358,37.766240859],[-122.449620865,37.766183912],[-122.449576275,37.766189599],[-122.449552549,37.766192625]]]]}},"NC-1","6:00AM-11:00PM",0.000001280947005767147,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19664,0.005480192196454054,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000005167443544934632,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19582,"shape_length":0.01371105173068961,"gen":"Mixed Use","index":107},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.379109648,37.737680293],[-122.378932871,37.73757994],[-122.378858735,37.737537855],[-122.377404251,37.736712151],[-122.377086252,37.736146668],[-122.376897113,37.735810324],[-122.3768574,37.735739703],[-122.376805497,37.735647405],[-122.37674536,37.735329821],[-122.376844375,37.734503788],[-122.376862411,37.734436347],[-122.376862644,37.734435478],[-122.376872938,37.734396985],[-122.376926131,37.733985517],[-122.376945096,37.733838814],[-122.376973856,37.733616343],[-122.377280583,37.733785168],[-122.377365871,37.733832111],[-122.377801071,37.734071644],[-122.378016168,37.734190032],[-122.377955732,37.734256998],[-122.378237053,37.734416709],[-122.378175488,37.734484925],[-122.377841878,37.734854574],[-122.377723975,37.735725896],[-122.377702472,37.73588481],[-122.377708357,37.735888151],[-122.378907305,37.736568793],[-122.379301709,37.736792691],[-122.379409024,37.736853612],[-122.379409041,37.736851729],[-122.379507883,37.736909746],[-122.380105663,37.737260621],[-122.380246716,37.737343414],[-122.380278138,37.737392334],[-122.380275649,37.737394955],[-122.380265147,37.737406012],[-122.380271454,37.737417195],[-122.380274792,37.73742291],[-122.380278006,37.737428288],[-122.38028147,37.737433956],[-122.3802848,37.737439289],[-122.380288388,37.737444908],[-122.380291836,37.737450193],[-122.380295546,37.737455762],[-122.38029911,37.737460999],[-122.380302943,37.737466515],[-122.38030662,37.737471702],[-122.380314364,37.737482299],[-122.380322341,37.737492788],[-122.380330546,37.737503164],[-122.380338978,37.737513425],[-122.380347635,37.737523567],[-122.380356513,37.737533589],[-122.38036561,37.737543485],[-122.380374924,37.737553254],[-122.380384449,37.737562892],[-122.380394186,37.737572397],[-122.38040413,37.737581766],[-122.380414278,37.737590994],[-122.380424628,37.737600082],[-122.380435176,37.737609024],[-122.380445918,37.737617819],[-122.380451515,37.737622281],[-122.380456853,37.737626463],[-122.380462547,37.737630848],[-122.380467975,37.737634955],[-122.380473765,37.73763926],[-122.380479283,37.737643291],[-122.380485167,37.737647515],[-122.380488875,37.737650114],[-122.380493782,37.737653539],[-122.380499541,37.737657496],[-122.380499609,37.737657543],[-122.380505146,37.737661279],[-122.380508505,37.737663545],[-122.380469601,37.737759782],[-122.380454229,37.737797811],[-122.380397301,37.737938636],[-122.380324151,37.737897111],[-122.380120945,37.738119342],[-122.38007263,37.73817218],[-122.380040939,37.738206838],[-122.379892627,37.738122985],[-122.379517835,37.737911081],[-122.379348694,37.73781545],[-122.379283701,37.737778703],[-122.379284765,37.737778686],[-122.379263472,37.737766722],[-122.379109648,37.737680293]]]]}},"NC-2","6:00AM-2:00AM",0.000005167443544934632,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19582,0.01371105173068961,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCD","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.00003858719279505391,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=altmain-nf.htm$q=[field%20folio-destination-name:%27720%27]$x=Advanced#JD_720","districtname":"EXCELSIOR OUTER MISSION STREET NEIGHBORHOOD COMMERCIAL DISTRICT","zoning":"NCD-EXCELSIOR","codesection":720,"objectid":19810,"shape_length":0.11207335251536804,"gen":"Mixed Use","index":108},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.42834734,37.731231256],[-122.428324879,37.730953022],[-122.428319682,37.73088864],[-122.428311938,37.730792715],[-122.428389945,37.730788742],[-122.428355685,37.730364335],[-122.428441914,37.730359437],[-122.428516636,37.730355192],[-122.429304622,37.730315656],[-122.429299091,37.730247137],[-122.42938536,37.730242743],[-122.429377349,37.73014352],[-122.429368763,37.730037188],[-122.429367431,37.730020692],[-122.42936323,37.72996867],[-122.429967115,37.729937912],[-122.429965909,37.729922983],[-122.429961582,37.729869394],[-122.429943877,37.729650136],[-122.429857609,37.72965453],[-122.429771341,37.729658924],[-122.429685071,37.729663318],[-122.429598803,37.729667712],[-122.429592429,37.729588768],[-122.429587737,37.729530675],[-122.429674007,37.729526281],[-122.429760275,37.729521887],[-122.429846543,37.729517493],[-122.429932813,37.729513099],[-122.430019081,37.729508705],[-122.430016236,37.729473482],[-122.430013548,37.729440187],[-122.43011707,37.729434913],[-122.430220593,37.72942964],[-122.430206472,37.729254771],[-122.430205318,37.729240485],[-122.430200922,37.729186044],[-122.430335814,37.729179229],[-122.43048178,37.729171853],[-122.430485664,37.729171657],[-122.430479998,37.729103237],[-122.430472601,37.729013916],[-122.430461406,37.728878744],[-122.430461103,37.728875082],[-122.430460751,37.728870843],[-122.430377239,37.728874176],[-122.430280413,37.728878043],[-122.430279731,37.728869751],[-122.430260964,37.728641655],[-122.430259832,37.72862788],[-122.430257024,37.728593761],[-122.430253119,37.728546297],[-122.430390455,37.728547324],[-122.430749998,37.728619848],[-122.430813241,37.728632605],[-122.431079832,37.728686379],[-122.431293844,37.728729547],[-122.431406482,37.728622881],[-122.431473364,37.728559545],[-122.431531583,37.728504413],[-122.431691517,37.728352957],[-122.431800802,37.728249465],[-122.431962572,37.728096271],[-122.43224152,37.727832106],[-122.4322601,37.727814511],[-122.432363264,37.727716813],[-122.432447324,37.727637207],[-122.432253066,37.727543951],[-122.432201059,37.727518985],[-122.432145875,37.727492493],[-122.432089929,37.727465636],[-122.43214334,37.727395005],[-122.432245675,37.727259678],[-122.432276867,37.72721843],[-122.432321377,37.727159572],[-122.432365885,37.727100712],[-122.432439866,37.727136227],[-122.432484375,37.727077369],[-122.432528883,37.727018511],[-122.432573392,37.726959652],[-122.4326179,37.726900793],[-122.432662409,37.726841935],[-122.432706917,37.726783076],[-122.432751426,37.726724218],[-122.432795934,37.726665358],[-122.432840443,37.7266065],[-122.432884951,37.726547641],[-122.432929458,37.726488782],[-122.432973967,37.726429923],[-122.433022282,37.726366028],[-122.43306679,37.726307171],[-122.433111299,37.726248311],[-122.433200314,37.726130594],[-122.433253722,37.726059964],[-122.433254907,37.726060529],[-122.433308019,37.725990292],[-122.433352756,37.725931131],[-122.433397263,37.725872272],[-122.43344177,37.725813413],[-122.433486277,37.725754555],[-122.433499031,37.725737688],[-122.433530784,37.725695696],[-122.433575291,37.725636836],[-122.433619797,37.725577978],[-122.433664304,37.725519119],[-122.433708811,37.72546026],[-122.433775393,37.725372207],[-122.433797825,37.725342542],[-122.433842331,37.725283683],[-122.433886837,37.725224824],[-122.433895595,37.725213242],[-122.433931344,37.725165966],[-122.43397585,37.725107107],[-122.434020356,37.725048248],[-122.434064863,37.724989389],[-122.434109369,37.72493053],[-122.434153874,37.724871671],[-122.43419838,37.724812812],[-122.434242887,37.724753952],[-122.434287392,37.724695094],[-122.434331898,37.724636235],[-122.434376403,37.724577375],[-122.434430166,37.724506271],[-122.434418979,37.724500915],[-122.4344721,37.72443082],[-122.434516679,37.724371996],[-122.434528541,37.724377644],[-122.434573121,37.72431882],[-122.434617699,37.724259996],[-122.43466198,37.724201564],[-122.434662278,37.724201171],[-122.434674371,37.724185214],[-122.434706855,37.724142347],[-122.434742519,37.724095287],[-122.434751434,37.724083523],[-122.434795105,37.724025896],[-122.434795509,37.72402581],[-122.435019405,37.723730815],[-122.435018904,37.723730576],[-122.435020051,37.723729064],[-122.435063482,37.723671752],[-122.435072822,37.723659428],[-122.435108059,37.723612928],[-122.435152637,37.723554103],[-122.435197215,37.723495278],[-122.435241792,37.723436453],[-122.435286371,37.723377629],[-122.435330948,37.723318805],[-122.435375525,37.72325998],[-122.435420104,37.723201156],[-122.435464681,37.723142331],[-122.435465767,37.723142847],[-122.435465657,37.723141588],[-122.435555234,37.723025347],[-122.435570275,37.723005828],[-122.435609526,37.722954893],[-122.435552694,37.722927808],[-122.435452951,37.722880274],[-122.435366936,37.722839283],[-122.435208401,37.72276373],[-122.43530153,37.722640659],[-122.435306904,37.722633556],[-122.435321095,37.722640337],[-122.435362268,37.722660012],[-122.435409514,37.72268259],[-122.435705784,37.722824167],[-122.43575036,37.722765343],[-122.435794938,37.722706518],[-122.435839513,37.722647693],[-122.43588409,37.722588869],[-122.435928667,37.722530044],[-122.435973243,37.722471219],[-122.43601782,37.722412394],[-122.436060887,37.722355561],[-122.436062396,37.72235357],[-122.436106972,37.722294745],[-122.436151549,37.72223592],[-122.436196125,37.722177095],[-122.436240701,37.72211827],[-122.43624971,37.722106382],[-122.436285277,37.722059446],[-122.436329852,37.722000621],[-122.436374428,37.721941796],[-122.436295321,37.721903994],[-122.436339823,37.721845134],[-122.436384326,37.721786273],[-122.436310259,37.72175088],[-122.436239569,37.7217171],[-122.436167313,37.721682571],[-122.4360639,37.721633153],[-122.436231608,37.721411515],[-122.436291796,37.721331972],[-122.43638454,37.721209403],[-122.436478329,37.721084825],[-122.436534778,37.721009843],[-122.436618096,37.720899172],[-122.43672034,37.720947619],[-122.436868803,37.721017968],[-122.436992073,37.721076378],[-122.437017268,37.721088316],[-122.437026711,37.721075809],[-122.437061725,37.721029436],[-122.436943107,37.720973229],[-122.436987281,37.720914839],[-122.436987001,37.720914081],[-122.436987412,37.720914276],[-122.437031871,37.720855395],[-122.437150641,37.720911673],[-122.437195099,37.720852793],[-122.437239557,37.720793912],[-122.437284015,37.72073503],[-122.437328473,37.720676149],[-122.43737293,37.720617268],[-122.437372581,37.720617103],[-122.437372716,37.720617108],[-122.437417184,37.720558455],[-122.437417172,37.720558285],[-122.437417387,37.720558387],[-122.437424516,37.720548946],[-122.437461845,37.720499506],[-122.437506302,37.720440625],[-122.43755076,37.720381743],[-122.437595217,37.720322862],[-122.437622221,37.720287096],[-122.437639674,37.720263981],[-122.437684132,37.720205099],[-122.437728588,37.720146218],[-122.437773046,37.720087337],[-122.437817502,37.720028455],[-122.437861959,37.719969574],[-122.437906416,37.719910693],[-122.43795975,37.719840055],[-122.437961528,37.719840899],[-122.438014546,37.719770524],[-122.438067807,37.719699826],[-122.438077487,37.719686976],[-122.438163677,37.719572567],[-122.438114686,37.719549353],[-122.438129122,37.71953019],[-122.438143092,37.719511647],[-122.438160846,37.719488081],[-122.438181694,37.719460408],[-122.438207005,37.719426809],[-122.438213051,37.719418784],[-122.43823186,37.719393817],[-122.438280852,37.71941703],[-122.438302157,37.719388751],[-122.438348317,37.719327479],[-122.438299324,37.719304264],[-122.438345484,37.719242993],[-122.438391643,37.71918172],[-122.438440635,37.719204934],[-122.438485019,37.719146019],[-122.438493896,37.719134235],[-122.438502772,37.719122452],[-122.438543177,37.719068819],[-122.438587561,37.719009903],[-122.438597778,37.718996341],[-122.438631945,37.718950987],[-122.438676329,37.718892072],[-122.438720713,37.718833156],[-122.438734106,37.718815378],[-122.438765096,37.71877424],[-122.438809479,37.718715324],[-122.438853862,37.718656408],[-122.438898246,37.718597492],[-122.438942629,37.718538577],[-122.438987013,37.718479661],[-122.439027263,37.71842623],[-122.439075778,37.718361829],[-122.439129759,37.718290172],[-122.439103923,37.718277828],[-122.439156873,37.71820772],[-122.43920134,37.718148843],[-122.439231033,37.718162912],[-122.439275498,37.718104036],[-122.439319964,37.718045159],[-122.439364429,37.717986282],[-122.439378824,37.717967222],[-122.439398989,37.717940522],[-122.439408895,37.717927406],[-122.439453361,37.717868529],[-122.439465198,37.717852855],[-122.439480789,37.717832212],[-122.439497826,37.717809652],[-122.439542291,37.717750775],[-122.439586757,37.717691899],[-122.439631223,37.717633023],[-122.439675688,37.717574145],[-122.439720153,37.717515269],[-122.439764618,37.717456392],[-122.439798738,37.717411212],[-122.439809083,37.717397515],[-122.439851947,37.717340758],[-122.439896946,37.717281175],[-122.439977603,37.717174375],[-122.440031808,37.717102601],[-122.440024341,37.717099853],[-122.440074506,37.717028434],[-122.440119834,37.716963898],[-122.440170372,37.716891948],[-122.440220909,37.716819999],[-122.440263023,37.71676004],[-122.440305137,37.716700082],[-122.440347267,37.7166401],[-122.440389398,37.716580118],[-122.440244888,37.716515308],[-122.440172634,37.716482903],[-122.440100423,37.716450517],[-122.440058936,37.71643191],[-122.439995054,37.71640326],[-122.43999512,37.716403165],[-122.439889751,37.716355908],[-122.439813473,37.716321698],[-122.439738209,37.716287943],[-122.439662945,37.716254188],[-122.439657436,37.716251717],[-122.439631198,37.71623995],[-122.43958768,37.716220433],[-122.439512417,37.716186678],[-122.439437153,37.716152922],[-122.439361889,37.716119168],[-122.439283233,37.71608389],[-122.439179653,37.716037434],[-122.439072494,37.715989375],[-122.438996216,37.715955164],[-122.438920954,37.715921408],[-122.438845689,37.715887652],[-122.438770834,37.71585408],[-122.438695163,37.71582014],[-122.438770314,37.71571362],[-122.438864186,37.715580563],[-122.438925921,37.715493059],[-122.438932941,37.715483108],[-122.438952923,37.715454786],[-122.439013129,37.715481788],[-122.439220292,37.715574701],[-122.439237146,37.715582259],[-122.439265222,37.715594852],[-122.439294926,37.715552749],[-122.439348888,37.71547626],[-122.439490742,37.715275188],[-122.439518894,37.715235284],[-122.439603763,37.715273327],[-122.439607008,37.715274781],[-122.439693312,37.715313467],[-122.439692299,37.715314895],[-122.439783398,37.715355753],[-122.439933924,37.715423264],[-122.440009188,37.715457018],[-122.440084452,37.715490773],[-122.440151084,37.715520657],[-122.440159715,37.715524528],[-122.440234979,37.715558283],[-122.440310243,37.715592038],[-122.440385507,37.715625793],[-122.440460771,37.715659547],[-122.440536035,37.715693302],[-122.440611299,37.715727057],[-122.440686563,37.715760812],[-122.440761827,37.715794566],[-122.440837092,37.715828321],[-122.44100727,37.715587092],[-122.441049523,37.715527196],[-122.44112867,37.715562672],[-122.441173241,37.715503816],[-122.441233645,37.715424053],[-122.441304342,37.715330696],[-122.441351614,37.715268273],[-122.441372901,37.715240163],[-122.441499484,37.715162199],[-122.441559157,37.715125443],[-122.441645814,37.715072069],[-122.441580532,37.714920129],[-122.441678697,37.714893539],[-122.441760502,37.714871381],[-122.441830969,37.714852294],[-122.441842305,37.714849223],[-122.44183015,37.714820933],[-122.441814387,37.714784245],[-122.441786468,37.714719267],[-122.44201552,37.714657223],[-122.44203188,37.714652793],[-122.442003962,37.714587814],[-122.442085766,37.714565655],[-122.442192111,37.71453685],[-122.442298463,37.714508042],[-122.442380267,37.714485884],[-122.442478431,37.714459294],[-122.442401026,37.714279202],[-122.44249919,37.714252612],[-122.442711879,37.714194999],[-122.442680444,37.714121863],[-122.442649008,37.714048726],[-122.442747172,37.714022135],[-122.442817584,37.714003063],[-122.442828553,37.714000092],[-122.442816791,37.713972728],[-122.442800625,37.713935115],[-122.442772698,37.713870139],[-122.442750355,37.713818158],[-122.44274477,37.713805163],[-122.442716845,37.713740191],[-122.442798534,37.713717767],[-122.442798646,37.713718029],[-122.442847727,37.713704734],[-122.443109496,37.713633825],[-122.443207659,37.713607234],[-122.443143209,37.713457287],[-122.443241391,37.71343074],[-122.443372299,37.713395345],[-122.443454118,37.713373223],[-122.443535936,37.713351101],[-122.443507578,37.713285124],[-122.443480266,37.713221583],[-122.443627539,37.713181764],[-122.443781867,37.713140036],[-122.44384732,37.713122338],[-122.443793051,37.712997597],[-122.443845023,37.712948905],[-122.44385795,37.712936793],[-122.443867862,37.712927508],[-122.443923756,37.71287514],[-122.443979652,37.712822774],[-122.444026925,37.712778485],[-122.444029828,37.712775765],[-122.444035547,37.712770406],[-122.444091442,37.712718038],[-122.444104877,37.712705451],[-122.444096116,37.712685313],[-122.444067884,37.71262042],[-122.444076645,37.712618051],[-122.444172003,37.712592268],[-122.444389641,37.712533421],[-122.444455095,37.712515722],[-122.444401594,37.712392244],[-122.444466629,37.712374597],[-122.444467025,37.71237449],[-122.444697526,37.712311946],[-122.444674551,37.71224225],[-122.444652344,37.712174881],[-122.444631615,37.712111995],[-122.444629987,37.712107062],[-122.444608691,37.71204245],[-122.44460861,37.712042203],[-122.44460852,37.712041931],[-122.444608602,37.712041897],[-122.444650293,37.71202456],[-122.4446702,37.712016282],[-122.444706292,37.712001274],[-122.444729417,37.711991657],[-122.44471162,37.711951337],[-122.44470288,37.711931542],[-122.444703306,37.711931297],[-122.44470582,37.71192985],[-122.444706364,37.711929537],[-122.444774575,37.711890278],[-122.444848511,37.711847724],[-122.444874999,37.711832479],[-122.444889981,37.711823856],[-122.444923475,37.711804579],[-122.44501417,37.711752379],[-122.445005584,37.711736177],[-122.445003682,37.711732587],[-122.445086538,37.71171072],[-122.445168967,37.711688965],[-122.445164602,37.711680782],[-122.445241609,37.711652427],[-122.445240158,37.711649688],[-122.445316784,37.71162091],[-122.445395924,37.711591187],[-122.445396135,37.711591108],[-122.445390675,37.711580882],[-122.445471524,37.711552032],[-122.445480431,37.71156874],[-122.445558671,37.711541172],[-122.445562852,37.711549012],[-122.44563996,37.711523242],[-122.445710841,37.711499553],[-122.445705172,37.711488992],[-122.445611927,37.711315307],[-122.445571834,37.711240627],[-122.445837816,37.711150818],[-122.44603292,37.71108494],[-122.446168138,37.711039282],[-122.446261675,37.711006553],[-122.446301826,37.710992505],[-122.446492086,37.710925933],[-122.446580037,37.710895158],[-122.44685939,37.710797412],[-122.447491859,37.710576104],[-122.447515563,37.71056781],[-122.447490423,37.710521266],[-122.447478425,37.710499055],[-122.447325438,37.710215826],[-122.447481027,37.710162622],[-122.447569936,37.71013222],[-122.447575388,37.710142315],[-122.447734153,37.710088026],[-122.447883393,37.710036994],[-122.448051683,37.709979446],[-122.44814694,37.709946872],[-122.448150349,37.709953184],[-122.448245608,37.709920608],[-122.448334514,37.709890205],[-122.448413897,37.70986306],[-122.448493278,37.709835915],[-122.44857266,37.709808769],[-122.448652042,37.709781624],[-122.448731383,37.709754493],[-122.448810805,37.709727333],[-122.448905005,37.709695121],[-122.448761184,37.709428869],[-122.448759816,37.709426337],[-122.448764379,37.709424777],[-122.448832996,37.709401313],[-122.448854016,37.709394124],[-122.448928254,37.709368738],[-122.448948216,37.709361911],[-122.449033037,37.709332906],[-122.449043474,37.709329336],[-122.449115594,37.709304674],[-122.44919815,37.709276442],[-122.449230812,37.709265272],[-122.449277531,37.709249296],[-122.449356912,37.70922215],[-122.449436293,37.709195004],[-122.449515675,37.709167858],[-122.449554322,37.709239857],[-122.449589578,37.709305539],[-122.44962348,37.709368696],[-122.449660094,37.709436905],[-122.449739475,37.709409759],[-122.449898236,37.709355466],[-122.449977617,37.70932832],[-122.450056999,37.709301174],[-122.450225287,37.709243623],[-122.450320543,37.709211047],[-122.450290474,37.709155031],[-122.450277717,37.709131265],[-122.45037304,37.709098811],[-122.450664304,37.708999646],[-122.45065789,37.708987698],[-122.450668384,37.708984124],[-122.450687544,37.708977601],[-122.450655989,37.708918815],[-122.450652812,37.708919897],[-122.450620943,37.708860531],[-122.450620723,37.708860606],[-122.450590339,37.708802228],[-122.450837592,37.708718047],[-122.450926559,37.708687757],[-122.451005993,37.708660712],[-122.451085428,37.708633666],[-122.451164862,37.708606621],[-122.451209346,37.708591476],[-122.451244297,37.708579576],[-122.451323731,37.70855253],[-122.451368214,37.708537385],[-122.451403167,37.708525486],[-122.45146989,37.708502767],[-122.451591692,37.708461297],[-122.451606517,37.708456249],[-122.451681096,37.708430857],[-122.451685537,37.708439119],[-122.451712686,37.708489635],[-122.451825552,37.708699889],[-122.451904986,37.708672844],[-122.45198442,37.708645798],[-122.452063856,37.708618753],[-122.452143291,37.708591706],[-122.452391234,37.708507285],[-122.452486555,37.70847483],[-122.452477733,37.708458413],[-122.452505899,37.708448823],[-122.452573053,37.708425957],[-122.452674728,37.708391338],[-122.452890788,37.708317773],[-122.453089844,37.708249997],[-122.453092255,37.708249176],[-122.4531498,37.708249003],[-122.453481008,37.708248005],[-122.453548904,37.708247801],[-122.454266474,37.708245637],[-122.454285947,37.708245578],[-122.454677058,37.708244397],[-122.455206426,37.708242796],[-122.455211347,37.708246144],[-122.455352451,37.708342176],[-122.455296618,37.708394584],[-122.455240785,37.708446992],[-122.455184951,37.7084994],[-122.455104738,37.708574694],[-122.454881766,37.708406653],[-122.454880405,37.708407725],[-122.454808207,37.708464597],[-122.454795934,37.708474266],[-122.454787407,37.708467445],[-122.454726039,37.708515788],[-122.454664669,37.70856413],[-122.45441253,37.70836246],[-122.454286302,37.708261497],[-122.454280652,37.708256978],[-122.454278493,37.708261627],[-122.454230258,37.708365484],[-122.454212291,37.708404169],[-122.453959258,37.70860454],[-122.453853607,37.708688202],[-122.45354327,37.708933948],[-122.453614725,37.708990903],[-122.453654041,37.70902235],[-122.453691462,37.709052281],[-122.453495077,37.709206973],[-122.453396211,37.709284803],[-122.453392621,37.709281924],[-122.453295038,37.709358743],[-122.453114659,37.709500825],[-122.453084746,37.709524387],[-122.453037279,37.709561776],[-122.452964195,37.70950332],[-122.452894446,37.709447724],[-122.452870216,37.70946691],[-122.45279348,37.709405745],[-122.452566435,37.70922414],[-122.452527077,37.709255143],[-122.452498928,37.709277316],[-122.45249279,37.70928215],[-122.452431419,37.709330491],[-122.452414853,37.709317241],[-122.452353482,37.709365582],[-122.452338752,37.709377184],[-122.452292111,37.709413922],[-122.45223074,37.709462263],[-122.452169368,37.709510604],[-122.452161726,37.709516623],[-122.452107996,37.709558944],[-122.452108151,37.709559069],[-122.452107839,37.709559065],[-122.452046753,37.709606985],[-122.452046739,37.709607377],[-122.452046625,37.709607285],[-122.452030285,37.709620155],[-122.451985252,37.709655626],[-122.451923881,37.709703966],[-122.451902071,37.709721145],[-122.451875504,37.709699879],[-122.451814625,37.709651146],[-122.451753748,37.709602412],[-122.451630807,37.709699248],[-122.451590957,37.709730637],[-122.45150826,37.709795775],[-122.451434649,37.709853813],[-122.451365111,37.709798146],[-122.451287068,37.709735672],[-122.451217531,37.709680005],[-122.45114392,37.709738043],[-122.451102246,37.709770868],[-122.451021175,37.709834723],[-122.450959802,37.709883063],[-122.450900303,37.709929928],[-122.450839125,37.709881443],[-122.450777939,37.709832952],[-122.450716565,37.709881292],[-122.450655192,37.709929633],[-122.450611645,37.709963932],[-122.450581543,37.709987641],[-122.45053226,37.710026458],[-122.450485344,37.709989234],[-122.450456688,37.709966499],[-122.450409589,37.709929129],[-122.450361063,37.709967733],[-122.450361072,37.709968082],[-122.450360856,37.709968251],[-122.450330971,37.709991791],[-122.450299698,37.710016422],[-122.45022605,37.710074431],[-122.450164655,37.710122787],[-122.450103604,37.710074189],[-122.450042115,37.71012262],[-122.449984408,37.710168073],[-122.449980741,37.710170961],[-122.449972731,37.71017727],[-122.449919367,37.710219301],[-122.449858109,37.710267548],[-122.449783929,37.710326118],[-122.449713652,37.71026994],[-122.449605333,37.710183352],[-122.449594298,37.710174531],[-122.449524767,37.710118949],[-122.449462824,37.710069433],[-122.449323301,37.710179016],[-122.449317135,37.71018386],[-122.449311592,37.710188214],[-122.448487893,37.710835147],[-122.448281285,37.710997413],[-122.448273649,37.711003411],[-122.448129719,37.711116451],[-122.447987805,37.711002267],[-122.447980647,37.710996507],[-122.447973001,37.711002512],[-122.447906732,37.711054557],[-122.447871594,37.711082154],[-122.44783052,37.711114412],[-122.447769674,37.7111622],[-122.447707943,37.711210681],[-122.447743475,37.711239157],[-122.447784303,37.711271877],[-122.447857315,37.71133039],[-122.447463961,37.711639319],[-122.447390949,37.711580806],[-122.447248989,37.711467035],[-122.447126065,37.711563574],[-122.447081793,37.711528094],[-122.446995747,37.711595671],[-122.446971161,37.711614979],[-122.446950119,37.711598115],[-122.446932318,37.711612095],[-122.446931057,37.711613085],[-122.446930974,37.711613014],[-122.446790318,37.711723616],[-122.44680776,37.711737595],[-122.446611046,37.711892085],[-122.44658314,37.711914001],[-122.446537292,37.711950007],[-122.446494247,37.71191547],[-122.446468047,37.711894448],[-122.446425001,37.71185991],[-122.446379152,37.711895917],[-122.446351246,37.711917833],[-122.446252978,37.711995007],[-122.446154565,37.712072294],[-122.446152536,37.712070667],[-122.446054196,37.712147898],[-122.446018959,37.712175571],[-122.445980441,37.71220582],[-122.445906684,37.712263743],[-122.445885379,37.712280475],[-122.445869931,37.712292607],[-122.445832929,37.712321666],[-122.445759173,37.712379589],[-122.445704048,37.71242288],[-122.445693611,37.712431076],[-122.445754419,37.712479866],[-122.445688857,37.712531354],[-122.445623294,37.712582841],[-122.44559989,37.712564062],[-122.445574649,37.712543809],[-122.445509891,37.712594664],[-122.445509087,37.712595297],[-122.445508331,37.71259469],[-122.445506654,37.712593345],[-122.445504869,37.712594747],[-122.445441092,37.712644832],[-122.445443525,37.712646784],[-122.445377961,37.712698271],[-122.4453658,37.712688513],[-122.445166713,37.71284486],[-122.445092956,37.712902783],[-122.445080572,37.712892847],[-122.445006722,37.712950694],[-122.444868866,37.713058675],[-122.444807323,37.71310688],[-122.444868131,37.713155671],[-122.444904615,37.713184946],[-122.444843073,37.713233152],[-122.44478153,37.713281357],[-122.444719986,37.713329563],[-122.444658444,37.713377768],[-122.4445969,37.713425974],[-122.444553889,37.713459664],[-122.444535358,37.71347418],[-122.444473814,37.713522385],[-122.44441227,37.713570591],[-122.444360162,37.713611405],[-122.444350727,37.713618796],[-122.444298619,37.713659611],[-122.444289183,37.713667001],[-122.444115751,37.713802845],[-122.444041898,37.713860692],[-122.443999196,37.713826468],[-122.443925344,37.713884315],[-122.4438638,37.713932521],[-122.443802255,37.713980726],[-122.443740712,37.714028931],[-122.443789386,37.714067941],[-122.443727841,37.714116146],[-122.443666298,37.714164351],[-122.443610544,37.714208021],[-122.443604753,37.714212557],[-122.443543208,37.714260762],[-122.443481664,37.714308967],[-122.443420119,37.714357172],[-122.443438128,37.714371606],[-122.443376583,37.714419811],[-122.443315039,37.714468016],[-122.443306376,37.714474801],[-122.443253493,37.71451622],[-122.443191948,37.714564426],[-122.443210445,37.71457925],[-122.4431489,37.714627455],[-122.443087354,37.71467566],[-122.443014754,37.714732524],[-122.442940899,37.71479037],[-122.44298477,37.714825415],[-122.442910981,37.714883314],[-122.442837192,37.714941213],[-122.442763403,37.714999112],[-122.442699452,37.71504929],[-122.442665017,37.71507631],[-122.442725962,37.715124994],[-122.442696445,37.715148154],[-122.44266447,37.715173243],[-122.442632494,37.715198333],[-122.442602979,37.715221492],[-122.442568543,37.715248512],[-122.442541488,37.715269741],[-122.442504592,37.71529869],[-122.442479996,37.715317989],[-122.442440641,37.715348868],[-122.442418504,37.715366238],[-122.44237669,37.715399047],[-122.442357013,37.715414487],[-122.442312739,37.715449226],[-122.442295521,37.715462736],[-122.442248787,37.715499405],[-122.44223403,37.715510984],[-122.442191028,37.715544724],[-122.442268403,37.715606534],[-122.442207023,37.715654874],[-122.442121697,37.715722071],[-122.442072106,37.715761126],[-122.441998221,37.715819313],[-122.442075242,37.715881172],[-122.44211716,37.715914837],[-122.442077135,37.715953628],[-122.442051216,37.715978749],[-122.441875423,37.716149123],[-122.441883073,37.716155287],[-122.441936394,37.716198249],[-122.442004803,37.716253367],[-122.442066992,37.716303475],[-122.442086691,37.716319346],[-122.442127841,37.716352502],[-122.442188812,37.716401627],[-122.442198055,37.716409075],[-122.442249978,37.716450909],[-122.442311144,37.716500192],[-122.442372261,37.716549434],[-122.442372699,37.716549011],[-122.442420108,37.716587334],[-122.442454409,37.716615062],[-122.442643382,37.71676782],[-122.44259499,37.716805931],[-122.442594645,37.716806203],[-122.442599508,37.716810111],[-122.442619073,37.716825835],[-122.442648114,37.716849176],[-122.442675656,37.716871311],[-122.44269672,37.716888242],[-122.442735604,37.716919492],[-122.442745326,37.716927307],[-122.442793933,37.716966372],[-122.442798793,37.716970278],[-122.442842539,37.717005437],[-122.442861981,37.717021064],[-122.442891146,37.717044503],[-122.44292517,37.717071849],[-122.44298655,37.71702351],[-122.443049739,37.717074296],[-122.443119669,37.717130499],[-122.443121434,37.717131918],[-122.443172348,37.717172839],[-122.44307819,37.717246522],[-122.443054721,37.717264888],[-122.442635724,37.717592768],[-122.442687287,37.717634313],[-122.442693511,37.717639327],[-122.442757679,37.717691027],[-122.442842635,37.717759476],[-122.442910601,37.717814235],[-122.442978565,37.717868994],[-122.442994495,37.717881827],[-122.442784473,37.718047223],[-122.442767341,37.718060714],[-122.442730187,37.718089974],[-122.442723478,37.718095258],[-122.442686649,37.718124261],[-122.442595525,37.718050339],[-122.442569296,37.71802906],[-122.442565222,37.718025756],[-122.442328163,37.717833444],[-122.442002758,37.718089706],[-122.441809223,37.717934677],[-122.442030377,37.717760804],[-122.442136654,37.717677248],[-122.442102117,37.717649079],[-122.442098893,37.71764645],[-122.441967861,37.717539578],[-122.441712714,37.717331475],[-122.441622841,37.717258172],[-122.441552361,37.717186643],[-122.441552319,37.717185025],[-122.441462529,37.717091892],[-122.441402064,37.717029175],[-122.441387854,37.717014436],[-122.441371279,37.716990524],[-122.441335368,37.716938712],[-122.441291767,37.716972991],[-122.441267286,37.716992238],[-122.441216413,37.717032235],[-122.441020746,37.717186069],[-122.440959314,37.717234366],[-122.440922455,37.717263345],[-122.440988184,37.717315997],[-122.440963611,37.717335316],[-122.440921837,37.717368159],[-122.44090218,37.717383614],[-122.440884066,37.717397855],[-122.440840748,37.71743191],[-122.440904448,37.717482938],[-122.440833667,37.717538587],[-122.440806157,37.717560215],[-122.440707626,37.717637679],[-122.440839008,37.717743115],[-122.440873013,37.717770404],[-122.44092182,37.717809315],[-122.44093646,37.717820988],[-122.440970624,37.717848224],[-122.441094816,37.71794765],[-122.440849387,37.718140603],[-122.440774467,37.718199502],[-122.440751593,37.718181206],[-122.440703828,37.718143001],[-122.440433377,37.71792668],[-122.440364106,37.717871273],[-122.440320298,37.71790578],[-122.440290785,37.717929029],[-122.440272393,37.717943516],[-122.440256657,37.717955912],[-122.440168037,37.718025719],[-122.440260399,37.718099284],[-122.440261421,37.718100098],[-122.4402768,37.718112348],[-122.440323158,37.718149272],[-122.440326729,37.718152116],[-122.440265353,37.71820046],[-122.440263087,37.718202246],[-122.440203979,37.718248805],[-122.440239795,37.718277332],[-122.44019225,37.718325466],[-122.440186044,37.718331748],[-122.440132293,37.718386165],[-122.440110333,37.718408397],[-122.440078542,37.718440582],[-122.44002479,37.718494998],[-122.439971039,37.718549415],[-122.439917287,37.71860383],[-122.439863536,37.718658247],[-122.439809783,37.718712663],[-122.439756032,37.71876708],[-122.439724428,37.718799074],[-122.439710144,37.718813535],[-122.439700571,37.718823226],[-122.439678629,37.718845438],[-122.439645109,37.718879372],[-122.439594777,37.718930328],[-122.439589407,37.718935775],[-122.439584039,37.718941222],[-122.439525966,37.719000014],[-122.439524913,37.71900108],[-122.439465786,37.719060938],[-122.439448078,37.719078864],[-122.439576539,37.71922649],[-122.43962646,37.71928386],[-122.439648751,37.719309477],[-122.439658202,37.719355549],[-122.43966908,37.719408574],[-122.439685906,37.719490587],[-122.439798755,37.719588885],[-122.439655581,37.719725588],[-122.439528984,37.719861598],[-122.439464275,37.719943796],[-122.439425917,37.719992522],[-122.439373031,37.7200701],[-122.439278883,37.720025487],[-122.439143937,37.719954872],[-122.439064583,37.720087754],[-122.43895387,37.720265795],[-122.439169688,37.720375021],[-122.439168773,37.7203789],[-122.439124281,37.720448606],[-122.439020539,37.720625591],[-122.438968529,37.720714321],[-122.438959608,37.720729259],[-122.438883506,37.720856696],[-122.438838666,37.720838637],[-122.438773715,37.720947398],[-122.438546133,37.720857347],[-122.438545773,37.720857925],[-122.438447717,37.720819225],[-122.438413829,37.720880872],[-122.438414153,37.720881831],[-122.438414556,37.720881991],[-122.43841433,37.720882354],[-122.438374533,37.720945928],[-122.438334508,37.721009864],[-122.438296022,37.721071343],[-122.438257739,37.721132497],[-122.438277674,37.721140416],[-122.438354984,37.721171126],[-122.438509606,37.721232545],[-122.438470922,37.721292819],[-122.438388093,37.721421877],[-122.438382117,37.721431188],[-122.438334218,37.72150582],[-122.438390861,37.721528025],[-122.43864176,37.721626382],[-122.438767203,37.721424851],[-122.438812108,37.721352706],[-122.438821213,37.721338079],[-122.438880868,37.72136141],[-122.438977081,37.721399039],[-122.439031936,37.721420493],[-122.439233258,37.721499231],[-122.439232047,37.721501183],[-122.439095774,37.721720969],[-122.439073966,37.721756143],[-122.439053732,37.721788776],[-122.439096178,37.721805508],[-122.439097998,37.721806225],[-122.439113781,37.721812447],[-122.439166042,37.721833048],[-122.439116397,37.721912708],[-122.439101404,37.721936766],[-122.43901102,37.722081796],[-122.438993685,37.722109612],[-122.438951503,37.722177298],[-122.43891699,37.722232677],[-122.438550582,37.722089374],[-122.438456601,37.722052618],[-122.438404006,37.722032047],[-122.438387546,37.72202561],[-122.438199839,37.722320388],[-122.438206281,37.722320282],[-122.43814965,37.722410519],[-122.43808441,37.72238517],[-122.438023864,37.722361643],[-122.438003883,37.72235388],[-122.438002214,37.722353231],[-122.437929152,37.722324841],[-122.437693301,37.722233199],[-122.437731716,37.72217131],[-122.437554877,37.722102596],[-122.437529337,37.722146541],[-122.437518513,37.722165165],[-122.437518334,37.722165212],[-122.437518753,37.722165376],[-122.437491841,37.722208733],[-122.437473075,37.722238964],[-122.437445453,37.722294345],[-122.437426115,37.722333116],[-122.43741808,37.722349227],[-122.437406285,37.722372874],[-122.437406203,37.722372914],[-122.437406436,37.722373004],[-122.437364302,37.722440789],[-122.437294554,37.722413687],[-122.437216908,37.722383517],[-122.437140412,37.722353793],[-122.437095796,37.72241289],[-122.437051181,37.722471988],[-122.437006565,37.722531086],[-122.436958386,37.722594903],[-122.436922696,37.722642178],[-122.436915631,37.722639427],[-122.436879897,37.722686685],[-122.436832042,37.722749976],[-122.436787375,37.72280905],[-122.436742709,37.722868122],[-122.436698043,37.722927195],[-122.436653376,37.722986269],[-122.436608709,37.723045341],[-122.436532147,37.723146597],[-122.436516024,37.72316792],[-122.436480286,37.723215185],[-122.436517633,37.723229668],[-122.437042413,37.723433175],[-122.437084518,37.723449502],[-122.437123085,37.723464459],[-122.437161834,37.723479486],[-122.437162997,37.723479937],[-122.43719362,37.723430689],[-122.437318665,37.72322959],[-122.43734909,37.723180661],[-122.437468443,37.723227127],[-122.43754261,37.723256002],[-122.437604022,37.72327991],[-122.437737273,37.723067593],[-122.437791889,37.72298057],[-122.437850593,37.722887032],[-122.437924547,37.722915956],[-122.438017838,37.722952443],[-122.438084862,37.722978657],[-122.438329496,37.722584538],[-122.438479756,37.722643305],[-122.438572814,37.7226797],[-122.438665871,37.722716095],[-122.438757594,37.722751968],[-122.438755483,37.722752559],[-122.43851424,37.723146587],[-122.43888573,37.723291876],[-122.438978894,37.723328312],[-122.438890381,37.723470167],[-122.43888046,37.723486066],[-122.438845853,37.72354153],[-122.438832827,37.723562404],[-122.438808574,37.723601275],[-122.438355121,37.723644502],[-122.438214706,37.723647372],[-122.438110322,37.723655529],[-122.438089638,37.72369049],[-122.438063681,37.723734364],[-122.438054352,37.72375013],[-122.437880761,37.724043538],[-122.437956825,37.724071969],[-122.437987037,37.724083261],[-122.437981659,37.724092259],[-122.437943172,37.724155365],[-122.437902633,37.724221835],[-122.43789937,37.724227187],[-122.437532992,37.724100312],[-122.437447507,37.72407071],[-122.437375713,37.724045848],[-122.437370443,37.724080371],[-122.437287465,37.724334486],[-122.437265835,37.724378383],[-122.437200712,37.724347514],[-122.437191117,37.724342965],[-122.437170849,37.724333359],[-122.437114763,37.724306773],[-122.436894308,37.724202274],[-122.436884964,37.724197845],[-122.436785553,37.724150722],[-122.436781378,37.724148743],[-122.436737115,37.724207409],[-122.436711622,37.724241197],[-122.436711291,37.724241635],[-122.436694105,37.724264413],[-122.436647268,37.724242255],[-122.436620366,37.724229527],[-122.436610418,37.72422482],[-122.436531641,37.72418755],[-122.436521898,37.724182941],[-122.436453667,37.724150661],[-122.436425231,37.724150679],[-122.436331994,37.72415074],[-122.436257441,37.724248662],[-122.436180562,37.724349639],[-122.436140304,37.724402515],[-122.436035199,37.724352028],[-122.435834483,37.724255614],[-122.435826708,37.724251879],[-122.435729176,37.724205029],[-122.435689123,37.724258002],[-122.435612781,37.724358969],[-122.435600114,37.724375722],[-122.435590724,37.724388141],[-122.435572116,37.724412751],[-122.43551518,37.724488051],[-122.4355164,37.72448905],[-122.435476244,37.724541182],[-122.43542068,37.724613316],[-122.43541842,37.724613353],[-122.435354353,37.724698086],[-122.435332013,37.724727632],[-122.435287509,37.724786491],[-122.435334124,37.724808706],[-122.43539062,37.724835629],[-122.435437236,37.724857844],[-122.435392731,37.724916704],[-122.435338794,37.724988037],[-122.435214711,37.725152142],[-122.435036801,37.72538743],[-122.435003861,37.725430993],[-122.434992296,37.725446288],[-122.434961743,37.725431685],[-122.434874721,37.725390092],[-122.434844165,37.725375487],[-122.434832599,37.725390783],[-122.434799659,37.725434347],[-122.434666142,37.725610926],[-122.434647347,37.725635782],[-122.434621636,37.725669784],[-122.43457713,37.725728644],[-122.434532624,37.725787503],[-122.434444909,37.725903505],[-122.434412049,37.725946961],[-122.434401124,37.725961408],[-122.434392747,37.725972485],[-122.434355895,37.726021223],[-122.434310004,37.726081914],[-122.434299745,37.726095482],[-122.434265498,37.726140773],[-122.434220991,37.726199632],[-122.434176485,37.726258491],[-122.434131978,37.72631735],[-122.43408747,37.726376209],[-122.434042963,37.726435068],[-122.433953949,37.726552786],[-122.433909442,37.726611645],[-122.433864935,37.726670504],[-122.433820428,37.726729363],[-122.433775921,37.726788222],[-122.433731413,37.726847081],[-122.433597065,37.727024749],[-122.433552557,37.727083608],[-122.433468559,37.727043458],[-122.433366083,37.726994477],[-122.433256294,37.726942],[-122.43322098,37.72692512],[-122.433134086,37.726883586],[-122.433087824,37.726944764],[-122.433072729,37.726964726],[-122.432911793,37.72717755],[-122.433080378,37.727258816],[-122.433150273,37.727292509],[-122.433210886,37.727321728],[-122.433231556,37.727331692],[-122.433287687,37.727358749],[-122.433329324,37.72737882],[-122.433333636,37.727380899],[-122.433289769,37.727438796],[-122.433245197,37.727497624],[-122.433241951,37.727501909],[-122.433200624,37.727556452],[-122.433156053,37.727615281],[-122.43311148,37.727674109],[-122.433074447,37.727656408],[-122.432963348,37.727603305],[-122.432875161,37.727719695],[-122.432785124,37.727838528],[-122.432740281,37.727897712],[-122.43277203,37.727912945],[-122.43272502,37.727970065],[-122.43267771,37.728027549],[-122.432630379,37.72808506],[-122.432535719,37.728200079],[-122.432488387,37.728257588],[-122.432429093,37.728229247],[-122.432381762,37.728286756],[-122.432366938,37.728279671],[-122.432275095,37.728391265],[-122.432272276,37.72839469],[-122.432231772,37.728443904],[-122.432224945,37.728452201],[-122.432208389,37.728444287],[-122.432110189,37.728397349],[-122.432090877,37.728388118],[-122.432083551,37.728397786],[-122.432046303,37.728446945],[-122.431957156,37.728564601],[-122.43194027,37.728586886],[-122.432004019,37.728587],[-122.432014771,37.728595267],[-122.431996605,37.728613205],[-122.431721824,37.728884522],[-122.431656789,37.728948736],[-122.43166065,37.728951068],[-122.431596373,37.729015808],[-122.431407361,37.729206181],[-122.431327067,37.729287051],[-122.431222894,37.729391974],[-122.43122001,37.729394878],[-122.431167606,37.729447659],[-122.431112953,37.729502704],[-122.431066253,37.72954974],[-122.431062017,37.729554006],[-122.431008488,37.729607919],[-122.430954959,37.729661831],[-122.430941715,37.729675172],[-122.430937194,37.729679725],[-122.430901432,37.729715744],[-122.430880019,37.729737309],[-122.430847902,37.729769656],[-122.430815785,37.729802004],[-122.430794373,37.729823569],[-122.430751551,37.729866699],[-122.430740845,37.729877482],[-122.430687316,37.729931394],[-122.430633787,37.729985307],[-122.430580258,37.730039219],[-122.430553613,37.730066055],[-122.430537433,37.730082349],[-122.430494611,37.730125479],[-122.430441083,37.730179391],[-122.430387553,37.730233305],[-122.430280494,37.730341128],[-122.430305452,37.73035672],[-122.430287953,37.730370125],[-122.430219886,37.730422271],[-122.430179835,37.730452953],[-122.430150229,37.730470958],[-122.430108982,37.730496042],[-122.430063914,37.730523449],[-122.430038127,37.730539131],[-122.429967274,37.730582221],[-122.429874186,37.730638832],[-122.430031514,37.730737118],[-122.430051454,37.730749575],[-122.430150951,37.730811733],[-122.430215421,37.730852008],[-122.430100252,37.73088557],[-122.429706246,37.731000388],[-122.429570699,37.731039887],[-122.429028559,37.731196298],[-122.428939018,37.73122213],[-122.428820488,37.731256327],[-122.428782945,37.731267158],[-122.42879326,37.731256772],[-122.428850432,37.731199214],[-122.428874743,37.731174738],[-122.428936182,37.731112883],[-122.428981591,37.731067168],[-122.428935344,37.731080589],[-122.428726416,37.731141221],[-122.428529301,37.731198425],[-122.428529849,37.731204462],[-122.428530387,37.731210384],[-122.428534981,37.731261001],[-122.428536153,37.731273918],[-122.428541852,37.731336713],[-122.428548043,37.731404925],[-122.428508826,37.731416481],[-122.428365696,37.731458655],[-122.428359765,37.731385174],[-122.428354803,37.731323711],[-122.428349986,37.731264029],[-122.42834734,37.731231256]]]]}},"NCD","6:00AM-2:00AM",0.00003858719279505391,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=altmain-nf.htm$q=[field%20folio-destination-name:%27720%27]$x=Advanced#JD_720","EXCELSIOR OUTER MISSION STREET NEIGHBORHOOD COMMERCIAL DISTRICT","NCD-EXCELSIOR",720,19810,0.11207335251536804,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":6.69288903543618e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19775,"shape_length":0.003987405062059528,"gen":"Mixed Use","index":109},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.50005778,37.738239291],[-122.500024472,37.737714047],[-122.50015464,37.737708841],[-122.500349033,37.737700186],[-122.500528061,37.737692216],[-122.500569435,37.737690373],[-122.500707087,37.737684245],[-122.50098377,37.737671925],[-122.501104618,37.737666555],[-122.501114546,37.737807459],[-122.501141627,37.738191828],[-122.500908661,37.738202031],[-122.500916237,37.738311123],[-122.500926707,37.738459737],[-122.500935555,37.738585329],[-122.500676577,37.738596642],[-122.500667243,37.738464143],[-122.500657259,37.738322435],[-122.500649686,37.738213372],[-122.50005778,37.738239291]]]]}},"NC-1","6:00AM-11:00PM",6.69288903543618e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19775,0.003987405062059528,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCT-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":3.497168426827899e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_750","districtname":"NEIGHBORHOOD COMMERCIAL TRANSIT 1","zoning":"NCT-1","codesection":750,"objectid":19848,"shape_length":0.0029049023156611665,"gen":"Mixed Use","index":110},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.443857264,37.723017704],[-122.444017849,37.722999169],[-122.444381576,37.722955663],[-122.444482005,37.72294365],[-122.444542075,37.722944544],[-122.44461027,37.722951888],[-122.444746625,37.722966571],[-122.444669144,37.723059773],[-122.444511232,37.723249725],[-122.444368111,37.723421886],[-122.444317925,37.723482254],[-122.444180228,37.723424987],[-122.443908388,37.72331193],[-122.443857501,37.723371504],[-122.443730482,37.72332197],[-122.443667841,37.723417825],[-122.443661492,37.723415324],[-122.443570231,37.723379365],[-122.443778643,37.723116766],[-122.443812658,37.723073908],[-122.44383303,37.723048239],[-122.443836182,37.723044267],[-122.443857264,37.723017704]]]]}},"NCT-1","6:00AM-11:00PM",3.497168426827899e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_750","NEIGHBORHOOD COMMERCIAL TRANSIT 1","NCT-1",750,19848,0.0029049023156611665,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.9987678472752887e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19668,"shape_length":0.003141557095297154,"gen":"Mixed Use","index":111},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.423940425,37.762977699],[-122.423989743,37.762974622],[-122.424032572,37.762971951],[-122.424072012,37.762969491],[-122.424347335,37.76295285],[-122.424356518,37.763048695],[-122.424365576,37.763143304],[-122.424373147,37.763142847],[-122.424380426,37.763218872],[-122.424380869,37.763223498],[-122.424388418,37.763304528],[-122.424105787,37.763322026],[-122.424021902,37.76332672],[-122.42397359,37.763329422],[-122.423997359,37.763597151],[-122.423949047,37.763599854],[-122.423866569,37.763604469],[-122.423846726,37.763605579],[-122.423466425,37.763628563],[-122.423463276,37.763595699],[-122.423459867,37.763560103],[-122.423542653,37.763555099],[-122.423666833,37.763547595],[-122.4236601,37.763477307],[-122.423653497,37.763408388],[-122.423646807,37.763338558],[-122.423640074,37.76326827],[-122.423639343,37.763260636],[-122.423632346,37.763187549],[-122.423959243,37.763167824],[-122.423940425,37.762977699]]]]}},"NC-1","6:00AM-11:00PM",2.9987678472752887e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19668,0.003141557095297154,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":4.2420250781505977e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19673,"shape_length":0.0032771596968203124,"gen":"Mixed Use","index":112},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.423829494,37.761856893],[-122.423800671,37.761565672],[-122.423780868,37.761367067],[-122.423829147,37.761364033],[-122.423917676,37.76135847],[-122.424262609,37.761337622],[-122.42425605,37.76126916],[-122.424249492,37.7612007],[-122.424246835,37.761172962],[-122.424258326,37.761172267],[-122.424350282,37.76116671],[-122.42443265,37.76116173],[-122.424433067,37.761161705],[-122.424529648,37.761155868],[-122.424619331,37.761150447],[-122.424665321,37.761147667],[-122.424712464,37.761144817],[-122.424713711,37.761157141],[-122.424740199,37.761418925],[-122.424748798,37.761507961],[-122.424442103,37.76152663],[-122.424304914,37.761534981],[-122.424325483,37.761615024],[-122.42432681,37.761620188],[-122.424380475,37.761829025],[-122.424239074,37.761837571],[-122.42396516,37.761854127],[-122.423878553,37.76185953],[-122.423830054,37.761862556],[-122.423829494,37.761856893]]]]}},"NC-1","6:00AM-11:00PM",4.2420250781505977e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19673,0.0032771596968203124,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCT","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":1.0920737656524861e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_756","districtname":"GLEN PARK NEIGHBORHOOD COMMERCIAL TRANSIT","zoning":"NCT-GLEN PARK","codesection":756,"objectid":19863,"shape_length":0.001728771921344768,"gen":"Mixed Use","index":113},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.432435169,37.734755161],[-122.432353344,37.734808352],[-122.432240955,37.734881413],[-122.432234917,37.734810295],[-122.432220422,37.734639532],[-122.432214446,37.734569135],[-122.43202672,37.73458564],[-122.432021027,37.734537161],[-122.432019596,37.734524976],[-122.432003216,37.734385496],[-122.432285552,37.734364583],[-122.432300389,37.734490923],[-122.432305272,37.7345325],[-122.432308602,37.734560856],[-122.432416568,37.734551364],[-122.432435169,37.734755161]]]]}},"NCT","6:00AM-2:00AM",1.0920737656524861e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_756","GLEN PARK NEIGHBORHOOD COMMERCIAL TRANSIT","NCT-GLEN PARK",756,19863,0.001728771921344768,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"P70-MU","commercial_hours_of_operation":null,"shape_area":0.00001481242981341828,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article2usedistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_249.79","districtname":"PIER 70 MIXED USE","zoning":"P70-MU","codesection":249.79,"objectid":20522,"shape_length":0.021415847049537962,"gen":"Mixed","index":114},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.382188323,37.760880497],[-122.38218668,37.760878734],[-122.382184862,37.760879558],[-122.382183292,37.760880239],[-122.382181707,37.760880899],[-122.382180108,37.760881535],[-122.382178495,37.760882149],[-122.382176868,37.760882741],[-122.382175231,37.76088331],[-122.382173578,37.760883858],[-122.382171917,37.760884383],[-122.382170242,37.760884882],[-122.382168558,37.760885359],[-122.382166863,37.760885814],[-122.382165157,37.760886243],[-122.382163444,37.760886651],[-122.382161722,37.760887033],[-122.382159991,37.760887392],[-122.382158253,37.760887727],[-122.382156508,37.760888039],[-122.382154756,37.760888325],[-122.382152996,37.760888587],[-122.382151233,37.760888825],[-122.382149463,37.760889038],[-122.382147692,37.760889228],[-122.382145914,37.760889391],[-122.382144134,37.760889531],[-122.38214235,37.760889646],[-122.382140567,37.760889736],[-122.382138778,37.760889802],[-122.382136991,37.760889842],[-122.382135201,37.760889858],[-122.382133413,37.760889849],[-122.382131626,37.760889815],[-122.382129839,37.760889758],[-122.382128051,37.760889674],[-122.382126268,37.760889565],[-122.382124487,37.760889432],[-122.38212271,37.760889275],[-122.382120935,37.760889094],[-122.382119164,37.760888887],[-122.382117399,37.760888658],[-122.382115641,37.760888401],[-122.382113886,37.760888121],[-122.38211214,37.760887817],[-122.382110399,37.760887489],[-122.382108665,37.760887138],[-122.382106941,37.760886761],[-122.382105224,37.760886361],[-122.382103517,37.760885938],[-122.382101818,37.760885491],[-122.382100132,37.76088502],[-122.382098454,37.760884526],[-122.382096788,37.760884009],[-122.382095134,37.760883467],[-122.382093491,37.760882905],[-122.382091862,37.760882319],[-122.382090246,37.760881711],[-122.382088643,37.76088108],[-122.382087054,37.760880428],[-122.382085479,37.760879753],[-122.38208392,37.760879057],[-122.382082376,37.760878339],[-122.38208085,37.7608776],[-122.382079338,37.760876841],[-122.382077843,37.760876059],[-122.382076367,37.760875257],[-122.382074908,37.760874436],[-122.382073467,37.760873595],[-122.382072046,37.760872731],[-122.382070642,37.760871851],[-122.382069261,37.760870949],[-122.382067896,37.760870031],[-122.382066941,37.760869362],[-122.382066554,37.760869092],[-122.382065232,37.760868134],[-122.382063931,37.760867161],[-122.382062653,37.760866168],[-122.382061395,37.760865157],[-122.382060161,37.760864128],[-122.382058949,37.760863084],[-122.382057761,37.760862022],[-122.382056594,37.760860944],[-122.382055454,37.760859851],[-122.382054337,37.760858742],[-122.382053245,37.760857617],[-122.382052177,37.760856478],[-122.382051134,37.760855324],[-122.382050119,37.760854155],[-122.382049126,37.760852973],[-122.38204816,37.760851777],[-122.382047223,37.760850568],[-122.382046312,37.760849347],[-122.382045427,37.760848112],[-122.38204457,37.760846866],[-122.38204374,37.760845608],[-122.382039214,37.760841364],[-122.38203637,37.760838576],[-122.382033587,37.760835745],[-122.382030868,37.760832878],[-122.382028211,37.760829973],[-122.38202562,37.760827031],[-122.382023092,37.760824055],[-122.382020632,37.760821044],[-122.382018238,37.760817999],[-122.382015909,37.760814922],[-122.38201365,37.760811813],[-122.382011459,37.760808674],[-122.382009338,37.760805504],[-122.382007286,37.760802304],[-122.382005306,37.760799078],[-122.382003395,37.760795824],[-122.382001559,37.760792543],[-122.381999794,37.760789239],[-122.381998102,37.760785911],[-122.381996481,37.76078256],[-122.381994938,37.760779185],[-122.381993467,37.760775791],[-122.381992071,37.760772376],[-122.381990751,37.760768944],[-122.381989507,37.760765492],[-122.381988336,37.760762026],[-122.381987244,37.760758542],[-122.381986228,37.760755043],[-122.381985291,37.760751533],[-122.381984429,37.760748008],[-122.381983645,37.760744473],[-122.381982941,37.760740928],[-122.381982313,37.760737374],[-122.381981762,37.760733811],[-122.381981291,37.76073024],[-122.381980899,37.760726664],[-122.381980585,37.760723083],[-122.38198035,37.760719498],[-122.381980194,37.760715911],[-122.381980117,37.760712322],[-122.381980118,37.760708732],[-122.381980199,37.760705143],[-122.381980359,37.760701556],[-122.381980595,37.760697971],[-122.381980912,37.76069439],[-122.381981309,37.760690816],[-122.381981782,37.760687246],[-122.381982334,37.760683684],[-122.381982965,37.760680128],[-122.381983674,37.760676583],[-122.381984462,37.760673048],[-122.381985325,37.760669525],[-122.381986267,37.760666014],[-122.381987286,37.760662516],[-122.381988381,37.760659034],[-122.381989553,37.760655567],[-122.381990799,37.760652117],[-122.381992122,37.760648685],[-122.381993523,37.760645271],[-122.381994997,37.760641877],[-122.381995797,37.76064013],[-122.381996544,37.760638505],[-122.381869247,37.760642182],[-122.381837683,37.76052396],[-122.381725804,37.760245801],[-122.381763132,37.759900949],[-122.381318117,37.759923655],[-122.3813156,37.759909465],[-122.38118389,37.759903599],[-122.38117281,37.75987839],[-122.381249184,37.75983098],[-122.381347847,37.75977559],[-122.381742677,37.75975263],[-122.381747922,37.75964107],[-122.38125627,37.759667559],[-122.38125679,37.759583069],[-122.381469476,37.759573338],[-122.381446869,37.759307185],[-122.381446723,37.759305469],[-122.381389204,37.759310512],[-122.381305815,37.759308676],[-122.38130384,37.759308632],[-122.381248237,37.758767408],[-122.381202883,37.758325957],[-122.381201538,37.758317543],[-122.381200377,37.758309112],[-122.381199405,37.758300666],[-122.381198615,37.758292207],[-122.381198012,37.758283741],[-122.381197597,37.758275266],[-122.381197367,37.758266786],[-122.381197323,37.758258305],[-122.381197466,37.758249824],[-122.381197795,37.758241346],[-122.38119831,37.758232875],[-122.381199011,37.758224413],[-122.381199899,37.758215961],[-122.381200972,37.758207522],[-122.381202232,37.758199101],[-122.381203675,37.758190697],[-122.381205302,37.758182314],[-122.381207115,37.758173956],[-122.38120911,37.758165624],[-122.381211289,37.758157321],[-122.381213648,37.758149051],[-122.38121619,37.758140812],[-122.381218914,37.758132611],[-122.381221816,37.758124448],[-122.381224897,37.758116328],[-122.381228157,37.758108252],[-122.381231594,37.758100221],[-122.381235207,37.758092239],[-122.381238994,37.758084309],[-122.381242955,37.758076432],[-122.381248946,37.758065222],[-122.381262945,37.758047323],[-122.38127655,37.758029235],[-122.381289756,37.758010959],[-122.381302556,37.757992505],[-122.381314951,37.757973875],[-122.381326933,37.757955078],[-122.381338499,37.757936116],[-122.38134965,37.757916997],[-122.381360376,37.757897727],[-122.381363231,37.757892343],[-122.381370677,37.757878311],[-122.381380551,37.757858754],[-122.38138881,37.757841514],[-122.381423886,37.757837626],[-122.38152428,37.757831599],[-122.385125438,37.757616302],[-122.3852082,37.757756751],[-122.385510545,37.758017312],[-122.385519156,37.758107684],[-122.385524876,37.758167721],[-122.385527767,37.758198055],[-122.38621727,37.758156643],[-122.38635524,37.758148356],[-122.386493215,37.758140068],[-122.387183303,37.758098614],[-122.387268747,37.758998276],[-122.387408419,37.760468889],[-122.386718275,37.760509995],[-122.386442309,37.760526431],[-122.386341209,37.759461812],[-122.385046245,37.759538929],[-122.385074948,37.759842753],[-122.384680535,37.759866238],[-122.384760947,37.760717438],[-122.38251958,37.760850871],[-122.38243446,37.760759484],[-122.382202465,37.76089568],[-122.382188323,37.760880497]]]]}},"P70-MU",null,0.00001481242981341828,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article2usedistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_249.79","PIER 70 MIXED USE","P70-MU",249.79,20522,0.021415847049537962,"Mixed"],[{"type":"Feature","properties":{"zoning_sim":"NCD","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000008626412092005505,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_718.1","districtname":"UPPER FILLMORE NEIGHBORHOOD COMMERCIAL DISTRICT","zoning":"NCD-UPPER FILLMORE","codesection":718.1,"objectid":19833,"shape_length":0.020669201740390917,"gen":"Mixed Use","index":115},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.434090421,37.791947555],[-122.43404634,37.791729608],[-122.434041103,37.791703711],[-122.434027488,37.791636396],[-122.433875413,37.791655673],[-122.433862019,37.791589451],[-122.43385656,37.79156246],[-122.433802986,37.791297567],[-122.433724386,37.79130753],[-122.433707438,37.791223741],[-122.433622004,37.791234571],[-122.433613461,37.791235653],[-122.433607078,37.79120409],[-122.433593047,37.791134719],[-122.433678475,37.791123853],[-122.433763901,37.791112985],[-122.433849328,37.791102119],[-122.43381228,37.790918943],[-122.433799969,37.790858073],[-122.433793168,37.790824444],[-122.433781031,37.790764433],[-122.433770806,37.790765723],[-122.433751997,37.790672326],[-122.433745722,37.790641174],[-122.433696205,37.790395307],[-122.433701759,37.7903946],[-122.433702311,37.790397346],[-122.433702802,37.790395249],[-122.433699938,37.790384994],[-122.43369982,37.790384973],[-122.433688342,37.790327982],[-122.433674451,37.790259005],[-122.433661675,37.79019557],[-122.433656121,37.790196272],[-122.433619921,37.790016518],[-122.433613644,37.78998535],[-122.433594748,37.789891519],[-122.433556348,37.789896365],[-122.43353668,37.789803255],[-122.433489425,37.789579538],[-122.433461598,37.789441366],[-122.433457916,37.789423082],[-122.433448463,37.789376144],[-122.43343481,37.789308347],[-122.433408601,37.789178199],[-122.433389183,37.789081783],[-122.433365972,37.788966526],[-122.433446879,37.788956237],[-122.433423571,37.788840993],[-122.433375219,37.78860191],[-122.433310294,37.788610158],[-122.433296584,37.788542367],[-122.433282875,37.788474577],[-122.433269164,37.788406786],[-122.43326028,37.788362852],[-122.433255455,37.788338994],[-122.43332038,37.788330748],[-122.433272396,37.78809348],[-122.43326624,37.788063042],[-122.433253545,37.788000269],[-122.433252027,37.788000461],[-122.433233253,37.787907239],[-122.433206523,37.787774502],[-122.433196966,37.787727044],[-122.433179217,37.787638907],[-122.433164198,37.787564329],[-122.433158346,37.78753527],[-122.433158623,37.787535234],[-122.433153532,37.787510058],[-122.433148625,37.787485789],[-122.433126114,37.787374476],[-122.433083614,37.787164325],[-122.433064764,37.787071112],[-122.433459916,37.787020667],[-122.434196617,37.786926615],[-122.434215392,37.787019837],[-122.434255988,37.787221414],[-122.434277932,37.787330373],[-122.434279428,37.787337806],[-122.434284592,37.787363443],[-122.434290053,37.787390561],[-122.434535985,37.787359319],[-122.434835888,37.787321218],[-122.435077091,37.787290575],[-122.435199288,37.78727505],[-122.435259894,37.787576072],[-122.435271756,37.787634989],[-122.435293132,37.787741164],[-122.435906924,37.787663182],[-122.435925824,37.787756388],[-122.435980229,37.788024677],[-122.436001427,37.788129212],[-122.436090271,37.788117923],[-122.436166161,37.788492158],[-122.436189529,37.788607394],[-122.436571803,37.788558767],[-122.436595173,37.788674003],[-122.436661158,37.788999376],[-122.436665053,37.789018587],[-122.436665508,37.789020823],[-122.436668031,37.789033269],[-122.436662061,37.789034028],[-122.436005588,37.789117535],[-122.435704498,37.789155833],[-122.435581117,37.789171528],[-122.435578231,37.789157187],[-122.435552554,37.789029662],[-122.435435095,37.789044602],[-122.435333687,37.7890575],[-122.435251679,37.789067931],[-122.435266154,37.789139796],[-122.43508847,37.789162397],[-122.435099512,37.789217223],[-122.435102671,37.789232907],[-122.435017246,37.789243772],[-122.434931821,37.789254637],[-122.434846396,37.789265503],[-122.434760971,37.789276368],[-122.434661878,37.789288972],[-122.434586703,37.789298533],[-122.434501278,37.789309399],[-122.434415852,37.789320263],[-122.434431035,37.789395645],[-122.434445509,37.78946751],[-122.43448893,37.789683108],[-122.434496932,37.789722837],[-122.434507705,37.78977633],[-122.434550427,37.78977094],[-122.434569202,37.789864161],[-122.43463715,37.79020153],[-122.434639115,37.790211286],[-122.434741646,37.790198348],[-122.434810126,37.790538349],[-122.4348276,37.790625109],[-122.434828901,37.79063157],[-122.434423679,37.79068312],[-122.434407392,37.790685192],[-122.434426161,37.790778416],[-122.434473302,37.791012557],[-122.434558735,37.791001728],[-122.43456808,37.791048143],[-122.434653514,37.791037312],[-122.434749202,37.791025183],[-122.434754901,37.791053492],[-122.434762852,37.791092981],[-122.434772638,37.791091741],[-122.43478619,37.791159028],[-122.434827156,37.791362422],[-122.434842279,37.791437509],[-122.434861055,37.79153073],[-122.434750413,37.791544756],[-122.434630024,37.791560017],[-122.434613737,37.791562082],[-122.434632507,37.791655305],[-122.434688392,37.791932877],[-122.43477418,37.791921982],[-122.434862669,37.791910743],[-122.43494981,37.791899678],[-122.434952978,37.791915417],[-122.434963834,37.791969339],[-122.434945486,37.791971669],[-122.434959142,37.792039467],[-122.434976837,37.792127322],[-122.434994111,37.792213085],[-122.435015228,37.792317928],[-122.435034005,37.792411149],[-122.43502757,37.792411967],[-122.434690563,37.792454766],[-122.434557721,37.792471636],[-122.434603699,37.792700467],[-122.434485505,37.792715477],[-122.434145754,37.792758622],[-122.434108605,37.79276334],[-122.434094862,37.792695554],[-122.434081119,37.792627767],[-122.434066278,37.792554566],[-122.434062222,37.792534561],[-122.434115612,37.792527781],[-122.434096835,37.792434559],[-122.434074986,37.792326082],[-122.434058601,37.792244725],[-122.434042216,37.792163368],[-122.434028561,37.792095571],[-122.434026873,37.792087192],[-122.434116369,37.792075847],[-122.434104052,37.79201495],[-122.434090421,37.791947555]]]]}},"NCD","6:00AM-2:00AM",0.000008626412092005505,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_718.1","UPPER FILLMORE NEIGHBORHOOD COMMERCIAL DISTRICT","NCD-UPPER FILLMORE",718.1,19833,0.020669201740390917,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-S","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":3.028851059900278e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","districtname":"NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","zoning":"NC-S","codesection":713.1,"objectid":19794,"shape_length":0.002309352396953995,"gen":"Mixed Use","index":116},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.425869739,37.782252002],[-122.426317298,37.782194819],[-122.426327899,37.7822472],[-122.426336085,37.782287642],[-122.426401829,37.78261247],[-122.426402567,37.78261295],[-122.426401861,37.78261304],[-122.426406961,37.782638262],[-122.426446832,37.782835394],[-122.425950146,37.78289867],[-122.425914774,37.782723771],[-122.425963887,37.782717514],[-122.4259597,37.782696815],[-122.42588848,37.782344665],[-122.42587028,37.782254676],[-122.425869739,37.782252002]]]]}},"NC-S","6:00AM-2:00AM",3.028851059900278e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","NC-S",713.1,19794,0.002309352396953995,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-S","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":4.3232631426814303e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","districtname":"NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","zoning":"NC-S","codesection":713.1,"objectid":19795,"shape_length":0.00277313491152065,"gen":"Mixed Use","index":117},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.429786156,37.782230506],[-122.429252323,37.782298532],[-122.429134879,37.782313497],[-122.429128493,37.782281931],[-122.42912336,37.782256552],[-122.429120296,37.782241403],[-122.429055934,37.781923233],[-122.429040602,37.781847439],[-122.42994362,37.781731237],[-122.429951892,37.781772131],[-122.429962699,37.781825551],[-122.429979402,37.781908119],[-122.430031113,37.782163735],[-122.430038125,37.782198397],[-122.429936483,37.78221135],[-122.429786156,37.782230506]]]]}},"NC-S","6:00AM-2:00AM",4.3232631426814303e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","NC-S",713.1,19795,0.00277313491152065,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":9.429363491754888e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19666,"shape_length":0.004910982463808853,"gen":"Mixed Use","index":118},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.499649623,37.762884722],[-122.499627454,37.762569397],[-122.499600466,37.762185521],[-122.499721355,37.762180165],[-122.49983358,37.762175204],[-122.49991993,37.762171389],[-122.50000628,37.762167572],[-122.500092631,37.762163756],[-122.500135805,37.762161848],[-122.50017898,37.76215994],[-122.500265331,37.762156123],[-122.50035168,37.762152306],[-122.500438031,37.76214849],[-122.500550286,37.762143529],[-122.500671175,37.762138171],[-122.500685639,37.762343856],[-122.50073837,37.762341518],[-122.500806528,37.762338498],[-122.500987864,37.762330482],[-122.500992685,37.762399034],[-122.501000378,37.762508717],[-122.501105635,37.762504065],[-122.50111229,37.762598955],[-122.501113328,37.762613748],[-122.501132612,37.762887956],[-122.501046262,37.762891773],[-122.500846056,37.762900622],[-122.500725154,37.762905978],[-122.500710697,37.762700299],[-122.500589813,37.762705654],[-122.50026168,37.762720157],[-122.500266501,37.762788709],[-122.50027132,37.76285726],[-122.50027614,37.762925812],[-122.50018979,37.762929629],[-122.500103438,37.762933446],[-122.500017088,37.762937261],[-122.499930736,37.762941078],[-122.499822829,37.762945847],[-122.499775336,37.762947946],[-122.499654444,37.762953303],[-122.499649623,37.762884722]]]]}},"NC-1","6:00AM-11:00PM",9.429363491754888e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19666,0.004910982463808853,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-3","commercial_hours_of_operation":"No Limit","shape_area":9.198692635294006e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","districtname":"NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","zoning":"NC-3","codesection":712.1,"objectid":19590,"shape_length":0.00528670534245256,"gen":"Mixed Use","index":119},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.418993274,37.782169269],[-122.41890131,37.781704786],[-122.41883134,37.78135138],[-122.41883025,37.781345874],[-122.41880845,37.781235766],[-122.419535324,37.781138967],[-122.419767398,37.781108061],[-122.419788806,37.781209321],[-122.419854587,37.78153472],[-122.419863408,37.781578951],[-122.419864374,37.78158379],[-122.419855883,37.781584857],[-122.419447101,37.781636216],[-122.419343427,37.781649241],[-122.419352748,37.781695976],[-122.419369193,37.781777326],[-122.419266695,37.781790378],[-122.41931603,37.782034427],[-122.419321168,37.782059956],[-122.419329456,37.782101153],[-122.419334462,37.782126025],[-122.419560348,37.782097394],[-122.419573821,37.782095687],[-122.419574119,37.78209717],[-122.419592878,37.782190398],[-122.419668252,37.78256325],[-122.41919847,37.782623073],[-122.419087857,37.782637158],[-122.419020266,37.782302798],[-122.419015266,37.782278062],[-122.418993274,37.782169269]]]]}},"NC-3","No Limit",9.198692635294006e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","NC-3",712.1,19590,0.00528670534245256,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-3","commercial_hours_of_operation":"No Limit","shape_area":0.000002733019060058249,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","districtname":"NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","zoning":"NC-3","codesection":712.1,"objectid":19596,"shape_length":0.008814555944819138,"gen":"Mixed Use","index":120},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.395021974,37.722610357],[-122.395020205,37.722609353],[-122.394950423,37.722569748],[-122.395018996,37.72249356],[-122.395151552,37.722346284],[-122.395209067,37.722282382],[-122.395231984,37.722256919],[-122.395148059,37.722209292],[-122.395104915,37.722184808],[-122.395020989,37.72213718],[-122.395101423,37.722047814],[-122.395142771,37.722001874],[-122.395302503,37.721824401],[-122.395352774,37.721768548],[-122.395403044,37.721712694],[-122.395453313,37.721656841],[-122.395503544,37.721601031],[-122.395567386,37.721530099],[-122.395584114,37.721511514],[-122.395527232,37.721479197],[-122.395500043,37.72146375],[-122.395443504,37.721431628],[-122.395497689,37.721371424],[-122.395523745,37.721342473],[-122.395624284,37.721230767],[-122.395674553,37.721174914],[-122.395724823,37.721119059],[-122.395654491,37.721079147],[-122.39575503,37.72096744],[-122.395802948,37.720914199],[-122.3958053,37.720911587],[-122.395856349,37.720854866],[-122.395895179,37.720811722],[-122.395921698,37.720782256],[-122.395912335,37.720776943],[-122.395853791,37.720743719],[-122.39585351,37.720743559],[-122.39575385,37.720687002],[-122.39584921,37.720581047],[-122.39584936,37.72058088],[-122.395849641,37.72058104],[-122.396000447,37.720413478],[-122.395931792,37.720371705],[-122.395980385,37.720317712],[-122.396030653,37.720261858],[-122.396080922,37.720206004],[-122.396131191,37.720150151],[-122.39618198,37.720093718],[-122.396244422,37.720024338],[-122.396247328,37.720021109],[-122.396252781,37.720024203],[-122.396369944,37.720090693],[-122.396427479,37.720123344],[-122.396617026,37.720230912],[-122.396823791,37.720340532],[-122.396930687,37.720397204],[-122.397037811,37.720453997],[-122.39712143,37.720498329],[-122.397295211,37.72059046],[-122.39712851,37.720775687],[-122.397096622,37.720811118],[-122.397042708,37.720871023],[-122.397038984,37.720875161],[-122.397022726,37.720871345],[-122.396867125,37.720834821],[-122.396851473,37.720874103],[-122.396826293,37.720937296],[-122.396820357,37.720952195],[-122.396800776,37.721001339],[-122.396800177,37.721002844],[-122.396783839,37.721043847],[-122.396774059,37.721068392],[-122.39674732,37.7211355],[-122.396721236,37.721200967],[-122.396720614,37.721202527],[-122.39669515,37.721266433],[-122.396669066,37.721331899],[-122.396642982,37.721397366],[-122.396616896,37.721462833],[-122.396616763,37.721463167],[-122.396590811,37.721528299],[-122.396564726,37.721593766],[-122.39653864,37.721659232],[-122.396512556,37.721724698],[-122.396486471,37.721790164],[-122.396460613,37.721855063],[-122.396460385,37.721855631],[-122.396434301,37.721921097],[-122.396408215,37.721986564],[-122.396382259,37.722051705],[-122.396356044,37.722117497],[-122.396329959,37.722182963],[-122.396303873,37.722248429],[-122.396277788,37.722313896],[-122.396225617,37.722444829],[-122.396203134,37.722501253],[-122.396194314,37.722523388],[-122.396107791,37.722502787],[-122.395887235,37.722450275],[-122.395841853,37.72243947],[-122.395815866,37.722433283],[-122.395622761,37.722431603],[-122.395586725,37.722511173],[-122.395530719,37.722634837],[-122.395447781,37.722817969],[-122.395388009,37.722788614],[-122.395361348,37.72277552],[-122.395268315,37.72272983],[-122.395022918,37.722609309],[-122.395021974,37.722610357]]]]}},"NC-3","No Limit",0.000002733019060058249,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","NC-3",712.1,19596,0.008814555944819138,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-S","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000037608267998244307,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","districtname":"NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","zoning":"NC-S","codesection":713.1,"objectid":19792,"shape_length":0.01220733672840029,"gen":"Mixed Use","index":121},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.449980161,37.786134909],[-122.450092282,37.786120789],[-122.450391251,37.786083136],[-122.451049928,37.786000179],[-122.451240371,37.785976193],[-122.451646139,37.785925087],[-122.451675462,37.785921393],[-122.452069955,37.785871704],[-122.45255215,37.785810968],[-122.452909887,37.785765906],[-122.453255493,37.785722372],[-122.453305681,37.785716051],[-122.453406392,37.785703364],[-122.453578489,37.785681685],[-122.453630477,37.785646817],[-122.453641795,37.785639226],[-122.453661289,37.785626152],[-122.453687238,37.785608749],[-122.453754658,37.785644759],[-122.453771399,37.7856537],[-122.453833319,37.785686773],[-122.454222389,37.785637299],[-122.454225028,37.785636964],[-122.454231234,37.785722401],[-122.454239203,37.785832106],[-122.454240114,37.785844657],[-122.454249761,37.785977464],[-122.454265139,37.786189152],[-122.454273736,37.786307487],[-122.453908506,37.786353924],[-122.453406647,37.78641773],[-122.453529353,37.787028199],[-122.453537096,37.787066721],[-122.453451895,37.787077566],[-122.453419641,37.787081672],[-122.453289288,37.787098264],[-122.453267705,37.786990884],[-122.453182283,37.787001758],[-122.453096863,37.78701263],[-122.453011442,37.787023505],[-122.452997813,37.786955703],[-122.452912392,37.786966577],[-122.452910498,37.786957149],[-122.452840115,37.786606975],[-122.452816014,37.786487061],[-122.451757955,37.78661956],[-122.451841165,37.787032331],[-122.451724017,37.787047242],[-122.451255543,37.787106868],[-122.451269442,37.787176026],[-122.4512574,37.787177558],[-122.451176503,37.787187854],[-122.451082198,37.787199857],[-122.450987893,37.78721186],[-122.450905392,37.78722236],[-122.450893586,37.787223862],[-122.45088525,37.787182384],[-122.450821255,37.786863939],[-122.450797023,37.786743359],[-122.450225033,37.786817045],[-122.450118442,37.786837658],[-122.449980161,37.786134909]]]]}},"NC-S","6:00AM-2:00AM",0.0000037608267998244307,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","NC-S",713.1,19792,0.01220733672840029,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-S","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.00000229093193912245,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","districtname":"NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","zoning":"NC-S","codesection":713.1,"objectid":19798,"shape_length":0.006549139614341447,"gen":"Mixed Use","index":122},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.439087964,37.744451472],[-122.439006186,37.744403492],[-122.438757463,37.74425341],[-122.438208037,37.743921878],[-122.437979955,37.743785799],[-122.437943384,37.74376398],[-122.437884538,37.743728871],[-122.437682925,37.743608583],[-122.437839383,37.743430315],[-122.437850429,37.743417729],[-122.43785241,37.743417222],[-122.437876253,37.743411109],[-122.437969559,37.743387191],[-122.438253248,37.743314468],[-122.43895522,37.743134515],[-122.439329096,37.743161272],[-122.439330565,37.743144642],[-122.439333097,37.743115955],[-122.43992532,37.743167913],[-122.439887924,37.743522311],[-122.440116632,37.743547342],[-122.44008186,37.743807594],[-122.440032202,37.744179241],[-122.439982222,37.744553309],[-122.439592632,37.744508944],[-122.439459474,37.74449378],[-122.439282667,37.744473644],[-122.439087964,37.744451472]]]]}},"NC-S","6:00AM-2:00AM",0.00000229093193912245,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","NC-S",713.1,19798,0.006549139614341447,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.7920013098088407e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19742,"shape_length":0.002583266576710509,"gen":"Mixed Use","index":123},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.438666805,37.751012764],[-122.438473798,37.75102372],[-122.438502531,37.751323151],[-122.438505822,37.751357442],[-122.438429474,37.751362061],[-122.438402537,37.751363691],[-122.438223289,37.751374733],[-122.438230115,37.751445472],[-122.43815307,37.751450218],[-122.438141337,37.751329092],[-122.438122833,37.751138056],[-122.438113834,37.751045154],[-122.438197866,37.751040151],[-122.43819642,37.751025163],[-122.438189902,37.750957629],[-122.438166118,37.75071118],[-122.438338542,37.750700559],[-122.438442003,37.750694264],[-122.438443318,37.750707876],[-122.438463108,37.750706658],[-122.43854677,37.750701504],[-122.438636366,37.750695984],[-122.438659238,37.750928716],[-122.438666805,37.751012764]]]]}},"NC-1","6:00AM-11:00PM",2.7920013098088407e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19742,0.002583266576710509,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCD","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000020419458593839426,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_722.1","districtname":"NORTH BEACH NEIGHBORHOOD COMMERCIAL","zoning":"NCD-NORTH BEACH","codesection":722.1,"objectid":20475,"shape_length":0.04923191045803992,"gen":"Mixed Use","index":124},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.411733925,37.804732125],[-122.411614295,37.804129909],[-122.411602006,37.804068043],[-122.411581235,37.803963482],[-122.411713713,37.803947166],[-122.412265234,37.80387924],[-122.412544804,37.803844807],[-122.412850387,37.80380717],[-122.413091935,37.803777418],[-122.413222787,37.803761301],[-122.413353607,37.803743982],[-122.413877916,37.80367457],[-122.413964378,37.803663123],[-122.413946366,37.803577474],[-122.413871779,37.803201314],[-122.413793453,37.803211223],[-122.413766399,37.803214645],[-122.413715128,37.80322113],[-122.413708404,37.803187221],[-122.413684213,37.803065217],[-122.413632925,37.80307162],[-122.4134962,37.803088915],[-122.413485442,37.803034655],[-122.413344445,37.803052491],[-122.413203449,37.803070325],[-122.413175461,37.803073882],[-122.413086315,37.80308521],[-122.41307231,37.803015831],[-122.413055606,37.802933072],[-122.413034336,37.802827699],[-122.413039225,37.802827095],[-122.413003634,37.8026525],[-122.413001525,37.802642156],[-122.412908085,37.80218377],[-122.412880045,37.802046214],[-122.412876623,37.802029427],[-122.412848887,37.801893357],[-122.412541278,37.801930636],[-122.411600949,37.802050112],[-122.411600022,37.80205023],[-122.411334016,37.802084028],[-122.411202592,37.802100725],[-122.411181079,37.801991923],[-122.41117425,37.801957382],[-122.411051006,37.801334068],[-122.411038866,37.801272667],[-122.411018517,37.801169751],[-122.410991828,37.801030998],[-122.410987018,37.801005991],[-122.41095374,37.800832981],[-122.410833639,37.800239158],[-122.410206544,37.800315498],[-122.409189818,37.80044506],[-122.409209165,37.800544939],[-122.409223265,37.800617723],[-122.409330439,37.80117099],[-122.409348694,37.801265227],[-122.409369117,37.801370655],[-122.409578385,37.801345167],[-122.409596478,37.801438692],[-122.409635069,37.801624993],[-122.409737714,37.801612515],[-122.409750345,37.801673493],[-122.409852988,37.801661013],[-122.409938526,37.801650614],[-122.409951438,37.801712947],[-122.409963788,37.801772569],[-122.410049325,37.80176217],[-122.410060781,37.801817472],[-122.4100619,37.801822877],[-122.410062406,37.801825316],[-122.40989672,37.80184546],[-122.409909274,37.801906291],[-122.40984595,37.801914061],[-122.409845882,37.801914153],[-122.409845953,37.801914145],[-122.409858091,37.801973793],[-122.409871885,37.802041576],[-122.409881493,37.802088793],[-122.409884188,37.802102038],[-122.409896491,37.8021625],[-122.409901423,37.802187763],[-122.409915325,37.802258962],[-122.409561308,37.802302476],[-122.409211579,37.802346546],[-122.409146651,37.802354727],[-122.409127763,37.802260361],[-122.409089062,37.802073525],[-122.409053271,37.802078003],[-122.409048033,37.802078659],[-122.409009554,37.801892887],[-122.409017686,37.801891558],[-122.409020475,37.801891102],[-122.409005741,37.801816489],[-122.408991006,37.801741876],[-122.408976271,37.801667262],[-122.4089468,37.801518035],[-122.408936688,37.801467161],[-122.408928787,37.80142576],[-122.409002518,37.801416533],[-122.408984184,37.801324298],[-122.408963935,37.801226992],[-122.408946453,37.801142992],[-122.40888834,37.801150306],[-122.408810567,37.801160093],[-122.408732797,37.801169879],[-122.408721237,37.80111433],[-122.408718418,37.801100782],[-122.408701431,37.801019152],[-122.408693042,37.800978846],[-122.40886874,37.800956736],[-122.408832087,37.800780607],[-122.408791047,37.800583392],[-122.408785016,37.800551805],[-122.408774176,37.800495021],[-122.40883605,37.800487584],[-122.408815798,37.800387423],[-122.408772415,37.800172859],[-122.408741246,37.800018703],[-122.408702772,37.800023465],[-122.408506168,37.800047966],[-122.408503956,37.800037024],[-122.408495184,37.799993646],[-122.408484219,37.799939413],[-122.408474674,37.799892203],[-122.408473254,37.799885179],[-122.408291498,37.799907677],[-122.408268351,37.799910543],[-122.408232297,37.799915102],[-122.408239793,37.799952424],[-122.40823222,37.799953381],[-122.408204357,37.799956904],[-122.408137681,37.799965206],[-122.408069294,37.799973721],[-122.408004328,37.799981809],[-122.407995831,37.799939778],[-122.407984865,37.799885545],[-122.407982872,37.799885793],[-122.407914486,37.799894307],[-122.407841355,37.799903413],[-122.407783982,37.799910556],[-122.40775656,37.799914249],[-122.407751759,37.799914895],[-122.407757234,37.79994049],[-122.407766894,37.799985651],[-122.407788508,37.800086691],[-122.407853922,37.800392489],[-122.407877667,37.800503493],[-122.407898373,37.800600289],[-122.408009825,37.800586893],[-122.408129386,37.800572523],[-122.408142452,37.80064096],[-122.408146688,37.800663154],[-122.408171357,37.800786554],[-122.408173066,37.800786341],[-122.408180929,37.80082567],[-122.408202076,37.800931455],[-122.408223223,37.801037238],[-122.408125931,37.801049413],[-122.40810346,37.801052225],[-122.408098432,37.801052855],[-122.408114158,37.801131515],[-122.408114474,37.801131475],[-122.408130026,37.801208767],[-122.408115935,37.801210529],[-122.408123436,37.801248052],[-122.408041383,37.801258319],[-122.40807726,37.801437791],[-122.408082648,37.801464898],[-122.408095595,37.801530026],[-122.408079221,37.801532075],[-122.408076416,37.801532426],[-122.407860577,37.801559438],[-122.40776959,37.801570825],[-122.407461374,37.801611461],[-122.407441961,37.801514345],[-122.407408238,37.801345643],[-122.40737865,37.801197625],[-122.407368154,37.80114512],[-122.407339607,37.801148702],[-122.407312156,37.801011371],[-122.407340695,37.801007755],[-122.407335613,37.800982327],[-122.407335133,37.800982388],[-122.40733503,37.800981876],[-122.407330016,37.800956963],[-122.40729274,37.800770484],[-122.407274045,37.800677174],[-122.407201625,37.800686308],[-122.407183106,37.800593868],[-122.407174993,37.800553374],[-122.40714519,37.800404607],[-122.407060432,37.800415368],[-122.406982954,37.800425206],[-122.40696935,37.8003573],[-122.406958592,37.800303598],[-122.406945598,37.800238737],[-122.406929297,37.800157369],[-122.406918429,37.800103124],[-122.406909192,37.800057015],[-122.40690805,37.80005131],[-122.406904811,37.800035144],[-122.406870886,37.799865799],[-122.406852125,37.799772273],[-122.406897911,37.79976649],[-122.406905288,37.799765559],[-122.407110164,37.799739682],[-122.407126399,37.799737632],[-122.40710772,37.799644516],[-122.407070162,37.799458082],[-122.406981302,37.799469356],[-122.406977884,37.79946979],[-122.406960797,37.79947196],[-122.406880053,37.799071145],[-122.406868093,37.799011775],[-122.406848824,37.798916122],[-122.406848035,37.798912206],[-122.406830032,37.798822839],[-122.406933505,37.798810047],[-122.406914766,37.798714613],[-122.406904173,37.798660332],[-122.406893581,37.798606052],[-122.406882988,37.798551771],[-122.406877446,37.798524387],[-122.406864841,37.798525993],[-122.406859407,37.798499139],[-122.406836819,37.798393404],[-122.406836268,37.798390826],[-122.406826145,37.798343439],[-122.407038457,37.798316501],[-122.407039107,37.798319829],[-122.407117372,37.7983101],[-122.407281624,37.798289682],[-122.407463008,37.798267134],[-122.407659714,37.79824268],[-122.407745539,37.798232011],[-122.40777734,37.798228058],[-122.407834442,37.798220959],[-122.407834341,37.798220452],[-122.407862531,37.79821685],[-122.407890722,37.798213248],[-122.408012367,37.798197706],[-122.408129913,37.798182687],[-122.408206797,37.798172863],[-122.408285388,37.798162821],[-122.408280238,37.798137053],[-122.408358829,37.79812701],[-122.40834853,37.798075474],[-122.408326846,37.797966977],[-122.40856262,37.79793685],[-122.408677956,37.797922286],[-122.408678608,37.797925537],[-122.408760642,37.797915178],[-122.40879313,37.797911075],[-122.409025198,37.797881692],[-122.409094579,37.797872908],[-122.409107048,37.797935293],[-122.409150796,37.797929755],[-122.409288875,37.797912272],[-122.40942627,37.797894876],[-122.409433544,37.797931278],[-122.409450674,37.798016978],[-122.409532768,37.798006928],[-122.409515577,37.797920919],[-122.409751097,37.797891279],[-122.409761359,37.797890023],[-122.409768196,37.797889162],[-122.409762785,37.797862088],[-122.40975306,37.797813438],[-122.409770152,37.797811287],[-122.409858855,37.797800055],[-122.410001193,37.797782031],[-122.410012659,37.797780579],[-122.410209528,37.797755651],[-122.410328309,37.797740526],[-122.410313957,37.797669562],[-122.410428902,37.797654925],[-122.410638231,37.797628409],[-122.410660631,37.797625571],[-122.410671537,37.797682593],[-122.410682287,37.797738799],[-122.410694172,37.797800934],[-122.410773003,37.797790948],[-122.410935678,37.797770341],[-122.410947936,37.797832522],[-122.410963449,37.79791121],[-122.410985382,37.798022456],[-122.410882506,37.798035488],[-122.410779631,37.79804852],[-122.410798513,37.798144301],[-122.410815739,37.798231671],[-122.410821713,37.798261399],[-122.41082771,37.798291242],[-122.410834461,37.798324841],[-122.410766777,37.798333404],[-122.410750584,37.798335453],[-122.410769216,37.79842818],[-122.41080122,37.798581955],[-122.410812358,37.79863547],[-122.410962743,37.798616419],[-122.411031099,37.79860776],[-122.411099455,37.798599101],[-122.411110922,37.798654197],[-122.411122389,37.798709293],[-122.411133856,37.79876439],[-122.411136433,37.798764064],[-122.411161529,37.798886958],[-122.410961188,37.798912337],[-122.410974393,37.798975789],[-122.410936955,37.798980532],[-122.410975504,37.799169307],[-122.410980646,37.799194931],[-122.41099345,37.799258737],[-122.410999016,37.799258033],[-122.411018003,37.799352651],[-122.411034178,37.799434007],[-122.411059814,37.799430771],[-122.411070601,37.799485027],[-122.411081388,37.799539282],[-122.411092176,37.799593537],[-122.411194718,37.799580589],[-122.411297261,37.799567642],[-122.411323439,37.799699303],[-122.411335306,37.799758986],[-122.411337444,37.799769744],[-122.411219656,37.799784616],[-122.411176556,37.799790058],[-122.411106858,37.799798858],[-122.411108477,37.799806997],[-122.411125737,37.799893806],[-122.411141108,37.79997112],[-122.411166929,37.800100987],[-122.411172433,37.800128439],[-122.411185722,37.800194711],[-122.411318027,37.800178008],[-122.411335946,37.800267377],[-122.411373064,37.800455271],[-122.41147098,37.800442529],[-122.411489338,37.800535459],[-122.411508271,37.800631292],[-122.411597195,37.800620336],[-122.41168612,37.80060938],[-122.4117812,37.800597665],[-122.411795565,37.800595895],[-122.411879871,37.800585508],[-122.411900905,37.800582916],[-122.41197672,37.800573575],[-122.411978485,37.800573357],[-122.41199671,37.800665606],[-122.412052309,37.800947027],[-122.412070441,37.801038551],[-122.411995085,37.801047949],[-122.412013217,37.801139474],[-122.412046373,37.801302141],[-122.412047754,37.801308919],[-122.412125371,37.801299238],[-122.412134142,37.801342269],[-122.412139186,37.801367016],[-122.412153001,37.801434794],[-122.412166817,37.801502572],[-122.412236256,37.801493911],[-122.412363422,37.801478049],[-122.412374183,37.801476668],[-122.412401096,37.801473215],[-122.41240186,37.801473117],[-122.412442486,37.801672425],[-122.412443363,37.80167672],[-122.412481802,37.801671787],[-122.412678408,37.801647264],[-122.412795655,37.801632218],[-122.412797349,37.801640527],[-122.412914597,37.80162548],[-122.413118915,37.801600001],[-122.413147788,37.8015964],[-122.413226433,37.801586592],[-122.413305075,37.801576785],[-122.413337679,37.801736724],[-122.413356168,37.801830153],[-122.413172583,37.801853027],[-122.41319099,37.801946035],[-122.413201137,37.801996811],[-122.413218103,37.80208171],[-122.413235393,37.802168238],[-122.413323144,37.802157241],[-122.413410896,37.802146245],[-122.413498647,37.802135247],[-122.413526063,37.802272443],[-122.413528773,37.802286005],[-122.413540698,37.802345678],[-122.41371355,37.802324016],[-122.413765225,37.802317402],[-122.413769338,37.802316876],[-122.41377762,37.802315816],[-122.413814451,37.802496962],[-122.413878539,37.802488855],[-122.413963991,37.802478046],[-122.414049442,37.802467236],[-122.414076729,37.802601444],[-122.41409583,37.802695383],[-122.414681207,37.802621147],[-122.414776437,37.803069689],[-122.414824806,37.803063223],[-122.414886596,37.803054964],[-122.415130865,37.803024021],[-122.415158209,37.803020558],[-122.415242803,37.803009841],[-122.415321965,37.803403074],[-122.415337912,37.803487477],[-122.415920926,37.80341813],[-122.415939428,37.803516054],[-122.41597408,37.803686874],[-122.416005433,37.803841426],[-122.416007485,37.803851545],[-122.416010253,37.803865186],[-122.416015003,37.803888605],[-122.416028075,37.803953043],[-122.416061078,37.80411573],[-122.416129025,37.80410719],[-122.41615783,37.804249187],[-122.416175667,37.804340701],[-122.416051424,37.804355945],[-122.415052274,37.804480982],[-122.414919528,37.804497594],[-122.414384492,37.804564546],[-122.414069741,37.804603932],[-122.413561641,37.80466751],[-122.413428554,37.804684162],[-122.413516489,37.805152005],[-122.413394291,37.805167436],[-122.412970667,37.805220932],[-122.412408707,37.805291895],[-122.411984437,37.80534547],[-122.411858464,37.805361376],[-122.411800409,37.805067664],[-122.411786572,37.80499766],[-122.411766481,37.80489601],[-122.411745564,37.804790717],[-122.411733925,37.804732125]]]]}},"NCD","6:00AM-2:00AM",0.000020419458593839426,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_722.1","NORTH BEACH NEIGHBORHOOD COMMERCIAL","NCD-NORTH BEACH",722.1,20475,0.04923191045803992,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":6.964737803940434e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19556,"shape_length":0.0036507140045516757,"gen":"Mixed Use","index":125},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.509599123,37.774765277],[-122.509594123,37.774696734],[-122.509589123,37.77462819],[-122.509584122,37.774559646],[-122.509579122,37.774491102],[-122.509574122,37.774422559],[-122.509569121,37.774354015],[-122.509564121,37.774285471],[-122.50955912,37.774216928],[-122.50955372,37.774142901],[-122.50954832,37.774068874],[-122.50954692,37.774049681],[-122.509542919,37.773994846],[-122.509537519,37.773920819],[-122.509534072,37.773873572],[-122.509574947,37.773871741],[-122.509735917,37.773864531],[-122.509957429,37.773854607],[-122.509958118,37.773854596],[-122.51007858,37.7738492],[-122.510146499,37.774811473],[-122.510153467,37.774910187],[-122.510168808,37.775127525],[-122.509802218,37.775144307],[-122.509627358,37.775152312],[-122.509619357,37.775042642],[-122.509599123,37.774765277]]]]}},"NC-2","6:00AM-2:00AM",6.964737803940434e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19556,0.0036507140045516757,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCD","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":2.885138732796104e-8,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_728.1","districtname":"24TH STREET- NOE VALLEY NEIGHBORHOOD COMMERCIAL","zoning":"NCD-24TH-NOE-VALLEY","codesection":728.1,"objectid":20485,"shape_length":0.0009770908128911746,"gen":"Mixed Use","index":126},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.43396778,37.750095138],[-122.433830212,37.750103434],[-122.433824655,37.75010377],[-122.433548746,37.750120409],[-122.433542165,37.75005195],[-122.433645631,37.75004571],[-122.433818074,37.75003531],[-122.433828423,37.750034686],[-122.433961147,37.750026681],[-122.43396778,37.750095138]]]]}},"NCD","6:00AM-2:00AM",2.885138732796104e-8,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_728.1","24TH STREET- NOE VALLEY NEIGHBORHOOD COMMERCIAL","NCD-24TH-NOE-VALLEY",728.1,20485,0.0009770908128911746,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":3.3019892511668207e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19685,"shape_length":0.0028317383504259954,"gen":"Mixed Use","index":127},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.475877948,37.782112495],[-122.475887374,37.782112062],[-122.47596431,37.782108518],[-122.476050671,37.782104541],[-122.476162942,37.78209937],[-122.476284344,37.782093927],[-122.476284323,37.782093631],[-122.476404893,37.782088226],[-122.476491254,37.782084248],[-122.476577617,37.782080271],[-122.476654192,37.782076743],[-122.476740554,37.782072765],[-122.476819429,37.782069132],[-122.476814459,37.782000587],[-122.476904852,37.781996423],[-122.476910817,37.782078677],[-122.476910894,37.782079742],[-122.476924734,37.782270603],[-122.476932074,37.782379367],[-122.476306551,37.782405954],[-122.475901017,37.782425388],[-122.475892857,37.782318131],[-122.475879102,37.782128415],[-122.475877948,37.782112495]]]]}},"NC-1","6:00AM-11:00PM",3.3019892511668207e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19685,0.0028317383504259954,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000018740753846353717,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19563,"shape_length":0.008016362366680104,"gen":"Mixed Use","index":128},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.414722991,37.759243884],[-122.414618697,37.759250111],[-122.4145807,37.759252381],[-122.41425302,37.75927216],[-122.414241345,37.759148922],[-122.414229452,37.759023388],[-122.414228372,37.759011992],[-122.414219981,37.758924362],[-122.414220613,37.758924323],[-122.414214404,37.758859483],[-122.414212221,37.758836694],[-122.414196503,37.758672385],[-122.414523878,37.758652625],[-122.414666633,37.758644262],[-122.414657675,37.758547897],[-122.41479936,37.758539596],[-122.415219799,37.758514216],[-122.415312929,37.758508594],[-122.415435376,37.758501201],[-122.415556099,37.758493914],[-122.415642329,37.758488707],[-122.415745974,37.758482447],[-122.415753985,37.758566052],[-122.415770327,37.758565064],[-122.415857282,37.758559813],[-122.415952988,37.758554056],[-122.416282396,37.758534244],[-122.416290257,37.758616397],[-122.416712797,37.758590981],[-122.416719371,37.758590585],[-122.416855081,37.758582398],[-122.416872481,37.758764228],[-122.417361082,37.758734724],[-122.417367367,37.758800323],[-122.417369477,37.758822354],[-122.417383368,37.758967492],[-122.417037036,37.758988405],[-122.416894748,37.758996984],[-122.416912302,37.759180484],[-122.416770032,37.759189063],[-122.416501798,37.759205259],[-122.416344925,37.759214732],[-122.416338373,37.759146271],[-122.416252142,37.759151477],[-122.416079678,37.75916189],[-122.415915838,37.759171781],[-122.415897682,37.759172847],[-122.41581171,37.759177899],[-122.415820423,37.759271352],[-122.41573423,37.759276417],[-122.415717792,37.759277383],[-122.415295258,37.759302891],[-122.41529421,37.759291937],[-122.41528635,37.759209784],[-122.414865263,37.759235204],[-122.414847348,37.759236273],[-122.414722974,37.7592437],[-122.414722991,37.759243884]]]]}},"NC-2","6:00AM-2:00AM",0.0000018740753846353717,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19563,0.008016362366680104,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-S","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000001676090413171448,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","districtname":"NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","zoning":"NC-S","codesection":713.1,"objectid":19804,"shape_length":0.006411219055375267,"gen":"Mixed Use","index":129},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.397984949,37.729273042],[-122.398107321,37.729297389],[-122.39856282,37.729388014],[-122.399319892,37.729538634],[-122.400083155,37.729690481],[-122.40007139,37.729723474],[-122.400183488,37.729787242],[-122.400273445,37.729838415],[-122.400187255,37.729934581],[-122.400145669,37.72998098],[-122.399969582,37.730177447],[-122.399946233,37.730203498],[-122.399867343,37.730291517],[-122.399866975,37.730291929],[-122.39986441,37.730291564],[-122.399153479,37.730190605],[-122.398970458,37.730164613],[-122.39807431,37.730037343],[-122.397612236,37.729971716],[-122.397390194,37.72994018],[-122.397499782,37.729817256],[-122.397605271,37.729698929],[-122.397623413,37.729678579],[-122.397651699,37.729646851],[-122.397848639,37.729425942],[-122.397961145,37.729299744],[-122.397984949,37.729273042]]]]}},"NC-S","6:00AM-2:00AM",0.000001676090413171448,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","NC-S",713.1,19804,0.006411219055375267,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":6.285942935667209e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19547,"shape_length":0.004192782464241761,"gen":"Mixed Use","index":130},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.419114625,37.708346513],[-122.420197802,37.708343561],[-122.42054666,37.708441756],[-122.420733181,37.708494257],[-122.420750437,37.708499113],[-122.420926508,37.708548672],[-122.420847628,37.708726462],[-122.420761336,37.708920959],[-122.420759081,37.708926042],[-122.420745702,37.708956198],[-122.420644675,37.708927908],[-122.420563207,37.708904999],[-122.420558595,37.708903702],[-122.420481737,37.708882091],[-122.420414848,37.708863283],[-122.420400267,37.708859183],[-122.420311932,37.708834344],[-122.420004147,37.708747798],[-122.4199,37.708718512],[-122.419899425,37.70871979],[-122.419808137,37.708693889],[-122.419482259,37.708602254],[-122.419400789,37.708579345],[-122.41931932,37.708556435],[-122.41923785,37.708533527],[-122.419156381,37.708510616],[-122.419053729,37.708481752],[-122.419114625,37.708346513]]]]}},"NC-1","6:00AM-11:00PM",6.285942935667209e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19547,0.004192782464241761,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000013187855423461405,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19561,"shape_length":0.007692407028580575,"gen":"Mixed Use","index":131},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.3950619,37.762505539],[-122.395066989,37.762505232],[-122.395406841,37.762484721],[-122.395545729,37.762476284],[-122.395539141,37.762407933],[-122.395607679,37.76240377],[-122.39567615,37.76239961],[-122.395898544,37.762386188],[-122.396019273,37.762378901],[-122.396105509,37.762373696],[-122.396112155,37.762442151],[-122.396370861,37.762426536],[-122.396375949,37.76242623],[-122.396511458,37.762418107],[-122.396511448,37.762417994],[-122.396646813,37.762409879],[-122.396991755,37.762389057],[-122.396985108,37.762320601],[-122.39697845,37.76225203],[-122.397327394,37.762230965],[-122.397466218,37.762222534],[-122.397466239,37.762222748],[-122.397540782,37.762218221],[-122.397603356,37.762214421],[-122.397948297,37.762193596],[-122.397954866,37.762262055],[-122.397957198,37.762286356],[-122.397961436,37.762330516],[-122.397968271,37.762401739],[-122.397976928,37.762492106],[-122.397891075,37.76249729],[-122.397899732,37.762587659],[-122.397906245,37.762654745],[-122.397912627,37.762720463],[-122.397903139,37.762721035],[-122.397653775,37.76273609],[-122.397515617,37.762744144],[-122.397528355,37.762881874],[-122.397449829,37.762886451],[-122.397391135,37.762889872],[-122.397046185,37.762910629],[-122.39703954,37.762842174],[-122.397032893,37.762773719],[-122.397026246,37.762705262],[-122.396677529,37.762726245],[-122.396672926,37.762726514],[-122.396541137,37.762734205],[-122.396541562,37.762738786],[-122.396401965,37.762746933],[-122.396057023,37.762767753],[-122.396063669,37.762836209],[-122.396070314,37.762904665],[-122.396072973,37.762932046],[-122.395986737,37.762937251],[-122.3959005,37.762942456],[-122.395729846,37.762952757],[-122.395592118,37.762961033],[-122.395596041,37.763002182],[-122.395457878,37.763010485],[-122.395318443,37.763018901],[-122.395317846,37.763012737],[-122.395291865,37.762745078],[-122.395283211,37.762654709],[-122.395077467,37.762667126],[-122.395068813,37.762576757],[-122.3950619,37.762505539]]]]}},"NC-2","6:00AM-2:00AM",0.0000013187855423461405,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19561,0.007692407028580575,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":4.8421778065105795e-8,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19568,"shape_length":0.0012864582587967734,"gen":"Mixed Use","index":132},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.46162796,37.726058521],[-122.461712686,37.726058056],[-122.461803738,37.726057556],[-122.46189479,37.726057056],[-122.461985841,37.726056556],[-122.462076893,37.726056055],[-122.462163623,37.726055579],[-122.4621657,37.726055567],[-122.462166577,37.726114555],[-122.462168124,37.7262187],[-122.462168375,37.726235577],[-122.461803637,37.726116162],[-122.461712637,37.72608626],[-122.461645394,37.726064232],[-122.46162796,37.726058521]]]]}},"NC-2","6:00AM-2:00AM",4.8421778065105795e-8,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19568,0.0012864582587967734,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":1.668983702239286e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19762,"shape_length":0.001661438025262545,"gen":"Mixed Use","index":133},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.459174376,37.747286319],[-122.459256077,37.747222757],[-122.459323929,37.74716997],[-122.459435768,37.747082962],[-122.459475297,37.747115997],[-122.459535667,37.747166449],[-122.459770914,37.747363046],[-122.459793687,37.747382076],[-122.459772978,37.747397289],[-122.459659282,37.74748081],[-122.459572131,37.747544831],[-122.459488232,37.747606463],[-122.459260904,37.747405804],[-122.459164964,37.747321118],[-122.459149286,37.74730728],[-122.459174376,37.747286319]]]]}},"NC-1","6:00AM-11:00PM",1.668983702239286e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19762,0.001661438025262545,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCD","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":7.93003148015517e-8,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_715.1","districtname":"CASTRO STREET NEIGHBORHOOD COMMERCIAL","zoning":"NCD-CASTRO","codesection":715.1,"objectid":19823,"shape_length":0.0011550356174345896,"gen":"Mixed Use","index":134},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.432793505,37.76102131],[-122.432815339,37.761245338],[-122.432704419,37.761252152],[-122.432670401,37.761254242],[-122.432463437,37.761266719],[-122.432450339,37.761130146],[-122.432441939,37.76104256],[-122.432793505,37.76102131]]]]}},"NCD","6:00AM-2:00AM",7.93003148015517e-8,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_715.1","CASTRO STREET NEIGHBORHOOD COMMERCIAL","NCD-CASTRO",715.1,19823,0.0011550356174345896,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCT","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000005672706755619523,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_757","districtname":"FOLSOM STREET NEIGHBORHOOD COMMERCIAL TRANSIT","zoning":"NCT-FOLSOM","codesection":757,"objectid":19802,"shape_length":0.019463178945125552,"gen":"Mixed Use","index":135},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.407516417,37.776486635],[-122.407354178,37.776357363],[-122.407289658,37.776305952],[-122.407251075,37.776275209],[-122.407350059,37.776196945],[-122.407547336,37.776041274],[-122.407608529,37.776089801],[-122.407669721,37.776138328],[-122.407730915,37.776186856],[-122.407735768,37.776190704],[-122.407804346,37.776245089],[-122.408000646,37.776090187],[-122.40804972,37.776052912],[-122.408046418,37.776050174],[-122.408068382,37.776032842],[-122.408095818,37.776011192],[-122.40809688,37.776010354],[-122.408268098,37.775875245],[-122.408280367,37.775865563],[-122.408292605,37.775875269],[-122.408331782,37.775906336],[-122.408393125,37.775857929],[-122.408409967,37.775844639],[-122.408515308,37.775761513],[-122.408557878,37.775727334],[-122.408513535,37.775692539],[-122.408363733,37.775574988],[-122.40827856,37.775508152],[-122.408275063,37.775505408],[-122.408360286,37.775440846],[-122.408365419,37.775436957],[-122.408382755,37.775423823],[-122.408397915,37.775436431],[-122.40842456,37.77545859],[-122.408483493,37.775504834],[-122.408509231,37.775525032],[-122.408625626,37.775616368],[-122.408686971,37.77556796],[-122.40869924,37.775558278],[-122.408748316,37.775519551],[-122.408637449,37.775432553],[-122.40854976,37.775363743],[-122.408521378,37.775340139],[-122.408507955,37.775328975],[-122.40852084,37.775319214],[-122.408685506,37.775194467],[-122.408719526,37.775168694],[-122.408732041,37.775159213],[-122.408775118,37.775193016],[-122.408821519,37.775229427],[-122.408878753,37.775274339],[-122.408883034,37.775277698],[-122.40894455,37.77532597],[-122.409018164,37.77526788],[-122.409091806,37.775209766],[-122.409101386,37.775202206],[-122.409120464,37.775187424],[-122.409139332,37.775172803],[-122.409124451,37.775160704],[-122.409099804,37.775140663],[-122.408870526,37.774954239],[-122.408833434,37.774924079],[-122.408869042,37.774896488],[-122.409017413,37.77477974],[-122.409092064,37.774839511],[-122.409114849,37.774857755],[-122.409409709,37.774625738],[-122.409510123,37.774544817],[-122.409519521,37.774552165],[-122.409606497,37.774622551],[-122.409744115,37.774733919],[-122.409846855,37.774653931],[-122.409854102,37.774648229],[-122.410034092,37.774506634],[-122.410095529,37.774458302],[-122.410130939,37.774430445],[-122.410156966,37.77440997],[-122.410218402,37.774361639],[-122.410254615,37.774333151],[-122.410279839,37.774313308],[-122.410341276,37.774264975],[-122.410402712,37.774216644],[-122.410525585,37.774119981],[-122.41058702,37.774071649],[-122.410636042,37.774033082],[-122.410648455,37.774023316],[-122.410709891,37.773974984],[-122.410758269,37.773936925],[-122.410771327,37.773926652],[-122.410832763,37.77387832],[-122.410857337,37.773858987],[-122.410863481,37.773854153],[-122.410894199,37.773829988],[-122.410955635,37.773781656],[-122.411004782,37.773742991],[-122.411017069,37.773733324],[-122.411078505,37.773684992],[-122.411199758,37.773589601],[-122.411292253,37.773517706],[-122.411296047,37.773514758],[-122.411292095,37.773511554],[-122.41118096,37.773421467],[-122.411287643,37.773338545],[-122.411428104,37.773227622],[-122.411532936,37.773144835],[-122.41156667,37.773171744],[-122.411632563,37.773224306],[-122.411695958,37.773174242],[-122.411757277,37.773125819],[-122.411843122,37.773058024],[-122.411892173,37.773019281],[-122.411890175,37.773017687],[-122.411939225,37.772978944],[-122.411948616,37.772971526],[-122.412010731,37.772922473],[-122.412072049,37.77287405],[-122.412115977,37.77290909],[-122.412177295,37.772860666],[-122.412133367,37.772825625],[-122.412147707,37.7728143],[-122.412175535,37.772792323],[-122.412194686,37.7727772],[-122.412428536,37.772963742],[-122.41252964,37.773044509],[-122.412492973,37.773073429],[-122.412593083,37.773153402],[-122.412678295,37.773221374],[-122.412898682,37.773397172],[-122.413020707,37.773494508],[-122.41301052,37.773502554],[-122.412899093,37.77359055],[-122.412802038,37.773667198],[-122.412752987,37.773705942],[-122.412706363,37.773668751],[-122.412614124,37.773595174],[-122.412604256,37.773587303],[-122.412567501,37.773557983],[-122.412518451,37.773596727],[-122.412421394,37.773673374],[-122.412308445,37.773762572],[-122.412262955,37.773798496],[-122.41206284,37.77395653],[-122.411961669,37.774039485],[-122.411934585,37.774018672],[-122.411837667,37.77409814],[-122.411717156,37.774193246],[-122.411655816,37.774241654],[-122.411594477,37.774290063],[-122.411533137,37.774338472],[-122.411471798,37.77438688],[-122.411433403,37.77441718],[-122.411410458,37.774435288],[-122.41136888,37.774468101],[-122.411349117,37.774483697],[-122.411287777,37.774532105],[-122.411226437,37.774580515],[-122.411165096,37.774628923],[-122.411103756,37.774677331],[-122.411042415,37.774725739],[-122.410995182,37.774763014],[-122.410981075,37.774774148],[-122.410929546,37.774814813],[-122.410919735,37.774822556],[-122.410910467,37.774815122],[-122.410907565,37.774812795],[-122.410904493,37.774815219],[-122.410846225,37.774861203],[-122.410858393,37.774870964],[-122.410797052,37.774919372],[-122.410735712,37.77496778],[-122.410674371,37.775016188],[-122.41085946,37.775164651],[-122.410886831,37.775186537],[-122.410902117,37.77519876],[-122.410762706,37.775308605],[-122.410758337,37.775312047],[-122.410610729,37.775428351],[-122.410466453,37.775313407],[-122.410456671,37.775305614],[-122.410448046,37.775298742],[-122.410357981,37.775226987],[-122.410279206,37.775289283],[-122.410268565,37.775297698],[-122.410263462,37.775301733],[-122.410079437,37.775446957],[-122.410149417,37.775503205],[-122.41021252,37.775553927],[-122.41023749,37.775573997],[-122.410276477,37.775605334],[-122.410319131,37.775639442],[-122.410278184,37.775671704],[-122.41025774,37.775687811],[-122.410240053,37.775673668],[-122.410215086,37.775653703],[-122.410157311,37.775607265],[-122.410082003,37.775546734],[-122.410030251,37.775505136],[-122.409968909,37.775553544],[-122.409907566,37.775601952],[-122.410092304,37.775750441],[-122.410116275,37.775769609],[-122.410134958,37.775784549],[-122.410064609,37.775839975],[-122.410032019,37.775865653],[-122.409996797,37.775893403],[-122.409842201,37.776015206],[-122.409829922,37.77602488],[-122.409786973,37.775991002],[-122.409638947,37.775872021],[-122.409570243,37.775926238],[-122.40947883,37.775998375],[-122.409356138,37.776095195],[-122.409294226,37.77614509],[-122.409292904,37.776144056],[-122.409230992,37.776193952],[-122.409093576,37.776302389],[-122.409155208,37.77635057],[-122.409017792,37.776459008],[-122.408906855,37.776372283],[-122.408844137,37.776421774],[-122.40872145,37.776518589],[-122.408693877,37.77654018],[-122.408678346,37.776552342],[-122.408694524,37.776565359],[-122.408723245,37.776588466],[-122.408739423,37.776601482],[-122.408723892,37.776613644],[-122.40869632,37.776635235],[-122.408631811,37.776686139],[-122.40855833,37.776744125],[-122.408500019,37.776790138],[-122.408439267,37.776741262],[-122.408235435,37.776902108],[-122.408136259,37.776980523],[-122.40784206,37.776746108],[-122.407645617,37.776589582],[-122.407631932,37.776578678],[-122.407615032,37.776565211],[-122.407516417,37.776486635]]]]}},"NCT","6:00AM-2:00AM",0.000005672706755619523,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_757","FOLSOM STREET NEIGHBORHOOD COMMERCIAL TRANSIT","NCT-FOLSOM",757,19802,0.019463178945125552,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCD","commercial_hours_of_operation":"6:00AM-12:00AM","shape_area":0.000006074454757222555,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_724.1","districtname":"SACRAMENTO STREET NEIGHBORHOOD COMMERCIAL","zoning":"NCD-SACRAMENTO","codesection":724.1,"objectid":20477,"shape_length":0.021506396680832374,"gen":"Mixed Use","index":136},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.445956856,37.787851733],[-122.446030244,37.787842395],[-122.446041679,37.78784094],[-122.446149596,37.787827211],[-122.446241852,37.787815473],[-122.44633411,37.787803734],[-122.446419533,37.787792866],[-122.446469393,37.787786522],[-122.446761223,37.787749391],[-122.446885326,37.787733601],[-122.446884935,37.787731614],[-122.446995806,37.78771787],[-122.446996091,37.787717835],[-122.447505172,37.787654726],[-122.447846506,37.787611555],[-122.448026424,37.787589224],[-122.448144662,37.787574273],[-122.448147663,37.787573894],[-122.448147725,37.787574223],[-122.448164191,37.787661678],[-122.448463812,37.787626171],[-122.448510797,37.787620559],[-122.448582291,37.78761202],[-122.448581462,37.787607931],[-122.448698084,37.78759309],[-122.448776672,37.78758309],[-122.448974851,37.78755787],[-122.449082483,37.787544174],[-122.449166708,37.787533455],[-122.449167905,37.787533303],[-122.44916804,37.787533191],[-122.449149322,37.787445679],[-122.449355665,37.787419037],[-122.449355881,37.78741923],[-122.449432135,37.787409526],[-122.449440669,37.787408439],[-122.449526091,37.787397568],[-122.449620063,37.78738561],[-122.449675579,37.787378545],[-122.449689203,37.787446346],[-122.449731574,37.787440954],[-122.449745198,37.787508755],[-122.449788251,37.787503276],[-122.449787706,37.787500564],[-122.449915839,37.787484258],[-122.449916384,37.78748697],[-122.449930008,37.787554772],[-122.450135022,37.787528681],[-122.450162416,37.787525194],[-122.450252962,37.787513671],[-122.450272512,37.787611921],[-122.450389672,37.787597011],[-122.450603569,37.787569789],[-122.450591861,37.787511534],[-122.450580083,37.787452926],[-122.450568333,37.787394455],[-122.450556642,37.78733628],[-122.450642064,37.787325409],[-122.450727486,37.787314538],[-122.450812908,37.787303666],[-122.450907213,37.787291664],[-122.450893586,37.787223862],[-122.450905392,37.78722236],[-122.450987893,37.78721186],[-122.451082198,37.787199857],[-122.451176503,37.787187854],[-122.4512574,37.787177558],[-122.451269442,37.787176026],[-122.451277778,37.787217505],[-122.451287271,37.787264744],[-122.451372693,37.787253872],[-122.451458114,37.787242999],[-122.451543536,37.787232126],[-122.451628957,37.787221255],[-122.45171532,37.787210263],[-122.451728258,37.787208616],[-122.451755747,37.787205117],[-122.451803027,37.7871991],[-122.451872988,37.787190196],[-122.451872858,37.787189553],[-122.451990527,37.787174575],[-122.452118658,37.787158266],[-122.452204081,37.787147394],[-122.452289502,37.78713652],[-122.452374922,37.787125648],[-122.452460343,37.787114775],[-122.452442576,37.787026378],[-122.452485288,37.787020942],[-122.452570708,37.787010069],[-122.452647588,37.787000283],[-122.452656129,37.786999196],[-122.452774011,37.786984191],[-122.45281843,37.786978537],[-122.452849781,37.786974546],[-122.452912392,37.786966577],[-122.452997813,37.786955703],[-122.453011442,37.787023505],[-122.453096863,37.78701263],[-122.453182283,37.787001758],[-122.453267705,37.786990884],[-122.453289288,37.787098264],[-122.453419641,37.787081672],[-122.453451895,37.787077566],[-122.453537096,37.787066721],[-122.453529353,37.787028199],[-122.453646807,37.787013247],[-122.45375663,37.786999266],[-122.453757854,37.786999111],[-122.453760317,37.787011366],[-122.453802826,37.787222848],[-122.453818115,37.787298912],[-122.453821411,37.787315308],[-122.4538385,37.787313154],[-122.453857388,37.787407124],[-122.453898577,37.787612036],[-122.453913368,37.787685619],[-122.453797044,37.787700438],[-122.453785238,37.787701942],[-122.453667076,37.787716765],[-122.453661718,37.787689863],[-122.453544882,37.787704747],[-122.453329109,37.787732234],[-122.453243689,37.787743115],[-122.453158269,37.787753997],[-122.453177348,37.787848918],[-122.453091928,37.7878598],[-122.452997965,37.787871769],[-122.452895461,37.787884826],[-122.452878377,37.787887003],[-122.452716078,37.787907677],[-122.452707536,37.787908765],[-122.452622115,37.787919645],[-122.452536695,37.787930526],[-122.452521603,37.787855435],[-122.452436182,37.787866316],[-122.452350761,37.787877197],[-122.45226534,37.787888078],[-122.45213721,37.787904399],[-122.452089989,37.787910414],[-122.452020785,37.787919228],[-122.451984838,37.787742891],[-122.451866873,37.787758037],[-122.451662523,37.787784067],[-122.451681055,37.787876276],[-122.451697953,37.787960349],[-122.45165923,37.787965282],[-122.451674321,37.788040373],[-122.451575712,37.788052933],[-122.45144824,37.78806917],[-122.451354278,37.788081137],[-122.451260314,37.788093105],[-122.451127058,37.788110079],[-122.450978425,37.78812901],[-122.450893005,37.78813989],[-122.450877913,37.788064798],[-122.450792492,37.788075678],[-122.450707071,37.788086558],[-122.450693446,37.788018755],[-122.450608024,37.788029636],[-122.450598214,37.787980818],[-122.450470082,37.787997138],[-122.450443166,37.788000566],[-122.450352629,37.788012097],[-122.450355372,37.788025748],[-122.4502379,37.788040616],[-122.449951746,37.788077061],[-122.449972456,37.788180119],[-122.449987546,37.78825521],[-122.449902125,37.788266089],[-122.449860572,37.788271381],[-122.449799619,37.788279144],[-122.449794271,37.788252531],[-122.44967639,37.788267544],[-122.449558791,37.78828252],[-122.449441481,37.78829746],[-122.449390038,37.788304011],[-122.449324454,37.788312364],[-122.449329802,37.788338978],[-122.449325168,37.788339568],[-122.44924438,37.788349856],[-122.449145291,37.788362475],[-122.449131667,37.788294673],[-122.449126541,37.788295327],[-122.449112918,37.788227525],[-122.449099292,37.788159723],[-122.448819111,37.788195404],[-122.448794231,37.788198572],[-122.448703783,37.788210091],[-122.448688456,37.788135029],[-122.448569113,37.788150227],[-122.44826911,37.788188432],[-122.448282782,37.788256227],[-122.448296454,37.788324022],[-122.448310125,37.788391817],[-122.448224703,37.788402696],[-122.448139282,37.788413574],[-122.448154423,37.788488659],[-122.44806046,37.788500624],[-122.448051917,37.788501711],[-122.447966494,37.788512589],[-122.447919512,37.788518572],[-122.44787253,37.788524555],[-122.447803339,37.788533366],[-122.447778566,37.78853652],[-122.447756591,37.788427537],[-122.447666754,37.788438977],[-122.447662626,37.788439502],[-122.447491783,37.788461258],[-122.447484948,37.788427359],[-122.447472133,37.78842899],[-122.447416094,37.788436126],[-122.447147531,37.788470324],[-122.447111971,37.788474852],[-122.4470328,37.788484933],[-122.447046126,37.788552773],[-122.446926291,37.788568031],[-122.446817858,37.788581837],[-122.446817034,37.78857777],[-122.446680359,37.788595174],[-122.446681183,37.788599241],[-122.446584885,37.788611502],[-122.446600025,37.788686587],[-122.446554576,37.788692374],[-122.446497236,37.788699675],[-122.44645264,37.788705354],[-122.446354688,37.788717825],[-122.446292506,37.788725742],[-122.446265848,37.788729137],[-122.446180426,37.788740013],[-122.446166708,37.788672223],[-122.446093187,37.788681584],[-122.44591044,37.788704852],[-122.445899466,37.78865062],[-122.445771333,37.788666935],[-122.445731965,37.788671947],[-122.445649657,37.788682427],[-122.445614347,37.788498025],[-122.445609111,37.78847068],[-122.445588636,37.788363752],[-122.445723438,37.788346503],[-122.44599891,37.788311255],[-122.446048561,37.788304902],[-122.446037558,37.788250533],[-122.446029922,37.788212793],[-122.446013701,37.788132637],[-122.445999108,37.788060524],[-122.445985074,37.787991176],[-122.44603398,37.787984953],[-122.446019247,37.787912147],[-122.445970341,37.78791837],[-122.445956856,37.787851733]]]]}},"NCD","6:00AM-12:00AM",0.000006074454757222555,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_724.1","SACRAMENTO STREET NEIGHBORHOOD COMMERCIAL","NCD-SACRAMENTO",724.1,20477,0.021506396680832374,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-3","commercial_hours_of_operation":"No Limit","shape_area":3.7186511284715715e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","districtname":"NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","zoning":"NC-3","codesection":712.1,"objectid":19597,"shape_length":0.0029675046896954437,"gen":"Mixed Use","index":137},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.396954352,37.719476578],[-122.397012758,37.719340319],[-122.397055347,37.719294076],[-122.397118777,37.719330073],[-122.397200802,37.719376621],[-122.397427082,37.719505033],[-122.397476496,37.719533074],[-122.397429141,37.719585694],[-122.397377677,37.719642881],[-122.397339918,37.719684838],[-122.397432955,37.719735091],[-122.397488026,37.719764837],[-122.397604794,37.719827908],[-122.397624363,37.719838478],[-122.397642668,37.719848365],[-122.397491245,37.719890954],[-122.397092262,37.720003172],[-122.396874709,37.720064361],[-122.396817157,37.720080548],[-122.396752452,37.720098746],[-122.396665149,37.720123301],[-122.396712775,37.720016797],[-122.396780477,37.719865403],[-122.396864818,37.719676796],[-122.396876374,37.719650955],[-122.396954352,37.719476578]]]]}},"NC-3","No Limit",3.7186511284715715e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","NC-3",712.1,19597,0.0029675046896954437,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.3481057349918607e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19542,"shape_length":0.0027638578763734436,"gen":"Mixed Use","index":138},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.468182746,37.775511947],[-122.468158438,37.77517401],[-122.467706855,37.775194573],[-122.46769995,37.775099038],[-122.467698912,37.775084667],[-122.467692957,37.775002413],[-122.468024434,37.774987319],[-122.468144617,37.774981872],[-122.46814463,37.774982053],[-122.468194673,37.774979785],[-122.468266249,37.774976541],[-122.468542495,37.774963961],[-122.468548449,37.775046215],[-122.468556377,37.775155889],[-122.468368131,37.775164461],[-122.468374531,37.775252848],[-122.468376071,37.775274133],[-122.468392596,37.775502389],[-122.468301287,37.775506548],[-122.468182746,37.775511947]]]]}},"NC-1","6:00AM-11:00PM",2.3481057349918607e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19542,0.0027638578763734436,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000025102804250489762,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19554,"shape_length":0.014408359042685996,"gen":"Mixed Use","index":139},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.460358667,37.77757908],[-122.46035798,37.777569574],[-122.460353641,37.777509561],[-122.460345686,37.77740116],[-122.460796341,37.777380325],[-122.460783325,37.777201435],[-122.460902819,37.777195957],[-122.461233494,37.77718092],[-122.461228539,37.777112374],[-122.461223583,37.777043828],[-122.461218627,37.776975283],[-122.461304987,37.776971355],[-122.461303004,37.776943937],[-122.4613874,37.776940099],[-122.461389363,37.776940009],[-122.46139432,37.777008555],[-122.461399275,37.777077101],[-122.461404727,37.7771525],[-122.461732893,37.777137576],[-122.461736974,37.77713739],[-122.461853797,37.777132068],[-122.461855284,37.77715264],[-122.461976188,37.777147141],[-122.462303948,37.777132233],[-122.462298992,37.777063687],[-122.462294035,37.776995142],[-122.462289078,37.776926597],[-122.462375437,37.776922668],[-122.462461796,37.77691874],[-122.462466754,37.776987285],[-122.46247171,37.777055831],[-122.462476668,37.777124376],[-122.462575117,37.777119898],[-122.462649387,37.77711652],[-122.462804834,37.777109449],[-122.462807974,37.777109306],[-122.46292774,37.777103858],[-122.462927707,37.777103404],[-122.463046608,37.777097995],[-122.463376,37.77708301],[-122.463371041,37.777014464],[-122.463366084,37.776945919],[-122.463361126,37.776877374],[-122.463447485,37.776873444],[-122.463533844,37.776869515],[-122.463538803,37.776938061],[-122.46354376,37.777006607],[-122.463871926,37.776991675],[-122.463878232,37.776991388],[-122.463992604,37.776986185],[-122.463997702,37.7770566],[-122.464118827,37.777051102],[-122.464444922,37.777036301],[-122.464439963,37.776967756],[-122.464435005,37.77689921],[-122.464430006,37.776830116],[-122.464425047,37.77676157],[-122.464511406,37.776757651],[-122.464516406,37.776826745],[-122.464602765,37.776822825],[-122.464607724,37.77689137],[-122.464612683,37.776959915],[-122.464617643,37.777028461],[-122.46494581,37.777013564],[-122.464948888,37.777013424],[-122.465065796,37.777008117],[-122.465065288,37.777001191],[-122.465187116,37.776995646],[-122.465491863,37.776981777],[-122.465501289,37.776981348],[-122.465501944,37.776990398],[-122.465506649,37.777055435],[-122.465514495,37.777165226],[-122.465068461,37.777185305],[-122.465082195,37.777364692],[-122.465097922,37.77757011],[-122.464990544,37.777574985],[-122.464787813,37.777584188],[-122.464701453,37.777588108],[-122.464615093,37.777592028],[-122.464571912,37.777593988],[-122.464576871,37.777662534],[-122.464573729,37.777662676],[-122.464164412,37.777681255],[-122.464043323,37.777686751],[-122.464033415,37.777549894],[-122.463972402,37.777552663],[-122.463912702,37.777555373],[-122.463583305,37.777570322],[-122.463588264,37.777638867],[-122.463501903,37.777642787],[-122.463415542,37.777646705],[-122.463410584,37.77757816],[-122.463405626,37.777509615],[-122.463077264,37.777524516],[-122.46307051,37.777524822],[-122.46295882,37.777529891],[-122.462953819,37.777461346],[-122.462830288,37.777466952],[-122.462502517,37.777481825],[-122.462502876,37.777486781],[-122.462507475,37.777550371],[-122.462512431,37.777618917],[-122.462517389,37.777687462],[-122.462431027,37.77769138],[-122.462344667,37.777695299],[-122.46233971,37.777626753],[-122.462334753,37.777558207],[-122.462329796,37.777489662],[-122.462002031,37.777504533],[-122.461998841,37.777504678],[-122.461881126,37.777510018],[-122.461895002,37.777701924],[-122.461774099,37.777707432],[-122.461650685,37.777713031],[-122.461533233,37.777718359],[-122.461415782,37.777723687],[-122.461408103,37.777724036],[-122.461370874,37.777725724],[-122.461298332,37.777729015],[-122.46118088,37.777734343],[-122.46106343,37.777739671],[-122.460945689,37.777745012],[-122.460823284,37.777750623],[-122.460809311,37.777558583],[-122.460690002,37.777564052],[-122.460368092,37.777578653],[-122.460358667,37.77757908]]]]}},"NC-2","6:00AM-2:00AM",0.0000025102804250489762,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19554,0.014408359042685996,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":1.5196608824169037e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19535,"shape_length":0.0015613463067417432,"gen":"Mixed Use","index":140},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.462683796,37.773759751],[-122.463087252,37.77370837],[-122.463092979,37.773787541],[-122.46309431,37.773805961],[-122.463098665,37.773866172],[-122.463115443,37.774098149],[-122.462972213,37.774104665],[-122.462830589,37.774111108],[-122.462709826,37.774116601],[-122.462686317,37.773794312],[-122.462683796,37.773759751]]]]}},"NC-1","6:00AM-11:00PM",1.5196608824169037e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19535,0.0015613463067417432,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":6.002180548485662e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19663,"shape_length":0.004575355572906029,"gen":"Mixed Use","index":141},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.453101836,37.765981439],[-122.453113404,37.766038552],[-122.453143787,37.766188558],[-122.45315718,37.766254683],[-122.453175371,37.766345135],[-122.45377322,37.766269363],[-122.453949416,37.766247032],[-122.453958209,37.766290752],[-122.453968598,37.766342406],[-122.454012338,37.766558338],[-122.454007341,37.766558518],[-122.453953666,37.766560454],[-122.453634842,37.766571956],[-122.453222702,37.766586821],[-122.453111388,37.766590836],[-122.453020056,37.76659413],[-122.453035472,37.766670048],[-122.452973642,37.76667794],[-122.452890286,37.766688579],[-122.452521841,37.766735578],[-122.452508055,37.766667797],[-122.452494269,37.766600016],[-122.452492008,37.766588901],[-122.452480482,37.766532236],[-122.452461411,37.766438011],[-122.452401568,37.766445889],[-122.452382272,37.76635353],[-122.452368164,37.766283644],[-122.452797184,37.766228919],[-122.4529146,37.766213941],[-122.452879859,37.766042421],[-122.452873412,37.766010587],[-122.452919429,37.766004713],[-122.452990824,37.7659956],[-122.453101836,37.765981439]]]]}},"NC-1","6:00AM-11:00PM",6.002180548485662e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19663,0.004575355572906029,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":0.000002407727109711301,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19750,"shape_length":0.011550096311988556,"gen":"Mixed Use","index":142},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.45466524,37.712330723],[-122.454839202,37.71215384],[-122.455025629,37.71196428],[-122.455087556,37.711901313],[-122.455504028,37.711550886],[-122.455592237,37.711476665],[-122.455684467,37.711476454],[-122.455941761,37.711475866],[-122.456037598,37.711407964],[-122.455815738,37.711222853],[-122.455884065,37.711194256],[-122.456131853,37.711132845],[-122.456194746,37.711117257],[-122.456461559,37.711051129],[-122.45646599,37.711062412],[-122.456476083,37.711060337],[-122.456478967,37.711059744],[-122.456479733,37.711121637],[-122.456481536,37.71126752],[-122.456483234,37.711404871],[-122.456915527,37.711401868],[-122.456917038,37.711539109],[-122.456921284,37.711882389],[-122.456834862,37.711882996],[-122.456748441,37.711883603],[-122.456662018,37.71188421],[-122.456575596,37.711884817],[-122.456489175,37.711885424],[-122.456402752,37.711886031],[-122.456316331,37.711886637],[-122.456317049,37.711944756],[-122.456318536,37.712065143],[-122.456320571,37.712229708],[-122.456321688,37.712317419],[-122.456407967,37.712316726],[-122.456408916,37.712391238],[-122.456408951,37.712393953],[-122.456409654,37.712474046],[-122.456410376,37.712556435],[-122.456411099,37.712638824],[-122.456497523,37.712638294],[-122.456497631,37.712650599],[-122.456498365,37.712734415],[-122.456584799,37.712733884],[-122.456602074,37.712733778],[-122.456602286,37.712758],[-122.456605085,37.713077066],[-122.456606374,37.713189561],[-122.456258986,37.713192072],[-122.45626019,37.713297826],[-122.456260211,37.713298897],[-122.456262675,37.713498344],[-122.456160782,37.713498968],[-122.456155136,37.713499001],[-122.456055949,37.713499596],[-122.456056526,37.713560344],[-122.456057315,37.713643434],[-122.455955504,37.713644044],[-122.455869081,37.713644803],[-122.455867778,37.713557338],[-122.455863968,37.713301531],[-122.455863756,37.71328306],[-122.455862742,37.713194943],[-122.455729705,37.713195909],[-122.45560387,37.713196823],[-122.455602573,37.713084103],[-122.455601129,37.712919324],[-122.455600167,37.712809471],[-122.455599566,37.712740813],[-122.455598868,37.7126611],[-122.455598736,37.712646064],[-122.455597762,37.712534838],[-122.455596643,37.712407174],[-122.455595576,37.712323254],[-122.455596229,37.712323249],[-122.455595247,37.712246016],[-122.4555952,37.712242395],[-122.455594599,37.712173738],[-122.455593997,37.712105081],[-122.455593396,37.712036423],[-122.455592796,37.711967766],[-122.455592689,37.711955709],[-122.455592193,37.711899108],[-122.455505771,37.711899638],[-122.455419348,37.711900167],[-122.455419856,37.711958322],[-122.455420851,37.712071919],[-122.455247991,37.712071222],[-122.455249508,37.712244514],[-122.455249599,37.712251754],[-122.455250544,37.712326025],[-122.454888374,37.712328932],[-122.454889396,37.712409394],[-122.454889424,37.712411506],[-122.454891679,37.712669358],[-122.454892359,37.712747019],[-122.454839053,37.712747486],[-122.454752632,37.712748244],[-122.454719516,37.712748535],[-122.454718841,37.712671376],[-122.454716577,37.712412565],[-122.454716573,37.712412263],[-122.454715532,37.712330319],[-122.45466524,37.712330723]]]]}},"NC-1","6:00AM-11:00PM",0.000002407727109711301,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19750,0.011550096311988556,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000028411577635383168,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19576,"shape_length":0.0163148846178621,"gen":"Mixed Use","index":143},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.415822171,37.738685267],[-122.415801277,37.738949022],[-122.41589948,37.739001869],[-122.416519599,37.739061698],[-122.416461986,37.738978153],[-122.416479378,37.73876733],[-122.416556048,37.738774726],[-122.416579812,37.738777019],[-122.416880984,37.738806075],[-122.416891599,37.738737936],[-122.416896421,37.738706983],[-122.416982271,37.738715106],[-122.417068121,37.738723231],[-122.417153971,37.738731356],[-122.417239821,37.738739479],[-122.417325672,37.738747603],[-122.417411522,37.738755727],[-122.417406554,37.738787615],[-122.41749238,37.738795895],[-122.417578206,37.738804174],[-122.417664033,37.738812453],[-122.417749858,37.738820733],[-122.417833791,37.738828895],[-122.417823818,37.738893569],[-122.417911452,37.738901862],[-122.417997302,37.738909986],[-122.417992349,37.738941786],[-122.418078199,37.738949909],[-122.418050707,37.739126408],[-122.418039866,37.739196006],[-122.418037927,37.739208459],[-122.418460578,37.739248942],[-122.418584376,37.739297279],[-122.418729916,37.739356444],[-122.418840776,37.739401511],[-122.419053682,37.739488061],[-122.419165314,37.739533441],[-122.419301771,37.739588913],[-122.419334256,37.739602118],[-122.419286981,37.739675459],[-122.419234984,37.739755329],[-122.419205168,37.739801127],[-122.419097263,37.739757572],[-122.419060249,37.739742357],[-122.41903571,37.739732269],[-122.419018379,37.739758857],[-122.418992063,37.739799228],[-122.418974821,37.739825678],[-122.418913586,37.739800506],[-122.418833428,37.739768152],[-122.418818466,37.739762113],[-122.418765601,37.739740775],[-122.418695945,37.73971266],[-122.418716387,37.739680861],[-122.41875884,37.739614817],[-122.418543033,37.739527709],[-122.418458329,37.739493372],[-122.418456673,37.739495947],[-122.418435127,37.739529466],[-122.418434837,37.739529918],[-122.418430565,37.739536564],[-122.41832693,37.739531675],[-122.418319886,37.739531342],[-122.418274585,37.739529205],[-122.418195184,37.739525458],[-122.418115783,37.739521712],[-122.418036383,37.739517965],[-122.418036588,37.739515223],[-122.417936819,37.739510515],[-122.417794933,37.73950382],[-122.417725888,37.739500562],[-122.417727138,37.739483862],[-122.4176581,37.73948053],[-122.417561446,37.739475864],[-122.417464792,37.739471197],[-122.417416464,37.739468864],[-122.417368138,37.739466531],[-122.417180256,37.739457459],[-122.417111239,37.739453848],[-122.4171169,37.739385615],[-122.417047861,37.739382281],[-122.416961562,37.739378115],[-122.416889071,37.739374614],[-122.416806225,37.739370614],[-122.416726828,37.73936678],[-122.416651576,37.739363147],[-122.41656339,37.739358889],[-122.416495213,37.739355598],[-122.416427037,37.739352305],[-122.416261343,37.739344303],[-122.4161854,37.739340636],[-122.416064582,37.739334802],[-122.415942807,37.739328921],[-122.415873771,37.739325587],[-122.415879212,37.739257064],[-122.415810173,37.73925373],[-122.415706502,37.739248723],[-122.415617038,37.739244403],[-122.415568539,37.73924206],[-122.415520384,37.739239734],[-122.415430635,37.7392354],[-122.415326734,37.739230382],[-122.415259266,37.739227124],[-122.415264055,37.739166273],[-122.415195181,37.739162946],[-122.415006016,37.739153809],[-122.414953547,37.739151275],[-122.414955881,37.739121672],[-122.414798938,37.739114091],[-122.414715746,37.739110074],[-122.414647569,37.739106781],[-122.414647208,37.739111187],[-122.414640135,37.739197219],[-122.414589798,37.739194787],[-122.414571959,37.739193925],[-122.414491496,37.739190038],[-122.4144121,37.739186203],[-122.414332704,37.739182367],[-122.414249856,37.739178365],[-122.414170461,37.739174531],[-122.414091066,37.739170694],[-122.414022862,37.739167399],[-122.413969949,37.739164844],[-122.413952985,37.739164024],[-122.413866902,37.739159866],[-122.413787508,37.73915603],[-122.413708113,37.739152194],[-122.413702702,37.739220718],[-122.413619857,37.739216716],[-122.413540463,37.73921288],[-122.413459343,37.739208961],[-122.413392032,37.739205709],[-122.413381209,37.739342757],[-122.413355124,37.739341497],[-122.41331217,37.739339422],[-122.413225783,37.739335248],[-122.413238916,37.739152778],[-122.413244751,37.739071725],[-122.413245145,37.739066242],[-122.413250664,37.738989584],[-122.413185622,37.738997597],[-122.413063679,37.73907],[-122.413073517,37.738961588],[-122.41308999,37.738780072],[-122.413256311,37.738789387],[-122.413294476,37.738791524],[-122.413326208,37.738793301],[-122.413336656,37.738656227],[-122.413401766,37.738659873],[-122.413522524,37.738666636],[-122.413643281,37.738673399],[-122.413722636,37.738677843],[-122.413801992,37.738682286],[-122.413888054,37.738687105],[-122.413959818,37.738691123],[-122.413966145,37.738622648],[-122.41400573,37.738624865],[-122.414030327,37.738626243],[-122.414143939,37.738632604],[-122.414273664,37.738639869],[-122.414281124,37.738571457],[-122.414436379,37.73858015],[-122.414522633,37.738584979],[-122.414541103,37.738586014],[-122.414590773,37.738588795],[-122.414558859,37.738881488],[-122.41466598,37.738882851],[-122.415183627,37.738932912],[-122.41520552,37.738659555],[-122.415271658,37.738663258],[-122.415357902,37.738668086],[-122.415430346,37.738672142],[-122.415513138,37.738676777],[-122.415511431,37.738695403],[-122.415580425,37.738699265],[-122.41564942,37.738703128],[-122.41565193,37.738675737],[-122.41575019,37.738681238],[-122.415769592,37.738682324],[-122.415822171,37.738685267]]]]}},"NC-2","6:00AM-2:00AM",0.0000028411577635383168,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19576,0.0163148846178621,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":5.713031907889478e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19768,"shape_length":0.0046334653328569935,"gen":"Mixed Use","index":144},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.424366374,37.743641433],[-122.424450104,37.743636367],[-122.424538691,37.743631007],[-122.42457425,37.743628856],[-122.424839534,37.743612804],[-122.424849791,37.743720775],[-122.424858325,37.743809499],[-122.425028042,37.743799206],[-122.425031338,37.743833901],[-122.425036254,37.74388565],[-122.42506591,37.744197849],[-122.424975491,37.744203383],[-122.424972249,37.74416915],[-122.424965764,37.744100684],[-122.424620935,37.744121789],[-122.424606542,37.74412267],[-122.424496796,37.744129386],[-122.424412478,37.744134546],[-122.424399741,37.743997876],[-122.424318336,37.744002859],[-122.424194197,37.744010455],[-122.423988767,37.744023027],[-122.423849369,37.744031558],[-122.423855852,37.744100023],[-122.423862335,37.744168489],[-122.42386882,37.744236954],[-122.423872035,37.744270913],[-122.423777551,37.744276695],[-122.423684102,37.744282414],[-122.423590653,37.744288132],[-122.423566203,37.744029926],[-122.423561089,37.743975929],[-122.423552827,37.743888674],[-122.423920433,37.743866381],[-122.423916451,37.743824332],[-122.423912079,37.743778163],[-122.423905206,37.743705589],[-122.423980428,37.743700986],[-122.424163827,37.743689762],[-122.424287964,37.743682166],[-122.42436973,37.743677162],[-122.424366374,37.743641433]]]]}},"NC-1","6:00AM-11:00PM",5.713031907889478e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19768,0.0046334653328569935,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":1.740687668524444e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19042,"shape_length":0.001683762783880516,"gen":"Mixed Use","index":145},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.427045475,37.747695852],[-122.426572339,37.747723791],[-122.426570644,37.747705687],[-122.426564258,37.747637494],[-122.426556796,37.747563579],[-122.426549885,37.747495138],[-122.426542977,37.747426698],[-122.426536068,37.747358258],[-122.42686374,37.747338904],[-122.42701013,37.747329987],[-122.427045475,37.747695852]]]]}},"NC-1","6:00AM-11:00PM",1.740687668524444e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19042,0.001683762783880516,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":7.269220083185581e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19558,"shape_length":0.004160954227562605,"gen":"Mixed Use","index":146},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.464870845,37.774320068],[-122.464993131,37.774314503],[-122.46541092,37.774295488],[-122.465825429,37.77427662],[-122.465946328,37.774271117],[-122.465970838,37.774609819],[-122.465971128,37.774613845],[-122.465850229,37.774619348],[-122.465435718,37.774638215],[-122.465440678,37.774706761],[-122.465445638,37.774775306],[-122.465450597,37.774843851],[-122.465455557,37.774912397],[-122.465460516,37.774980943],[-122.465465476,37.775049489],[-122.465475395,37.775186579],[-122.465476266,37.775198615],[-122.465483317,37.775296055],[-122.46494209,37.775320946],[-122.464894456,37.774651771],[-122.464870845,37.774320068]]]]}},"NC-2","6:00AM-2:00AM",7.269220083185581e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19558,0.004160954227562605,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":6.777167410051409e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19718,"shape_length":0.0036159222398870284,"gen":"Mixed Use","index":147},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.416599912,37.755915962],[-122.416566641,37.755568277],[-122.416550277,37.755397267],[-122.416692552,37.755388685],[-122.417028845,37.755368455],[-122.417022063,37.755297597],[-122.417108292,37.75529241],[-122.41710197,37.755226347],[-122.417524054,37.755200954],[-122.41762954,37.755194594],[-122.417658993,37.755502498],[-122.41767785,37.755699624],[-122.417697494,37.75590498],[-122.417671227,37.755906564],[-122.417593884,37.755911228],[-122.417480378,37.755918057],[-122.417273429,37.755930507],[-122.417169953,37.755936732],[-122.417164712,37.755881962],[-122.417052613,37.755888707],[-122.416742187,37.755907379],[-122.416724032,37.755908475],[-122.416599912,37.755915962]]]]}},"NC-1","6:00AM-11:00PM",6.777167410051409e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19718,0.0036159222398870284,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCT-3","commercial_hours_of_operation":"No Limit","shape_area":0.000029892760803999008,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_752","districtname":"MODERATE SCALE NEIGHBORHOOD COMMERCIAL TRANSIT DISTRICT","zoning":"NCT-3","codesection":752,"objectid":20559,"shape_length":0.06633232046931424,"gen":"Mixed Use","index":148},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.420528551,37.771714957],[-122.420344368,37.771770249],[-122.420305735,37.771676765],[-122.420248622,37.771054956],[-122.420329442,37.771050278],[-122.420353227,37.771048901],[-122.42039096,37.771046718],[-122.420970969,37.771011924],[-122.420995595,37.771010447],[-122.421031343,37.771008302],[-122.421037852,37.771063841],[-122.42103825,37.771067232],[-122.42109729,37.771062872],[-122.421360927,37.771045541],[-122.421353628,37.770969338],[-122.421347432,37.770904649],[-122.421333531,37.770759512],[-122.421326188,37.770682836],[-122.421320418,37.77062259],[-122.421319574,37.770613777],[-122.421318776,37.770605447],[-122.421269472,37.770598842],[-122.420978793,37.770559907],[-122.420338366,37.770474119],[-122.420314582,37.770475496],[-122.420196029,37.770482357],[-122.420174963,37.770252992],[-122.420008321,37.770111448],[-122.420304229,37.770075041],[-122.420559212,37.770043669],[-122.421582535,37.769917758],[-122.421809379,37.769903242],[-122.421947319,37.769894415],[-122.42193603,37.769783257],[-122.421928559,37.769705271],[-122.421914132,37.769554639],[-122.421899524,37.769402125],[-122.421894458,37.76934923],[-122.421889711,37.769308207],[-122.421785726,37.769315789],[-122.421751886,37.769318257],[-122.421470178,37.769338797],[-122.421402816,37.768606439],[-122.421402552,37.768603568],[-122.421364522,37.76819011],[-122.422199174,37.768139682],[-122.422686071,37.768110361],[-122.422694436,37.768197894],[-122.422697305,37.76822785],[-122.422712798,37.768389585],[-122.42272198,37.76848543],[-122.422808221,37.76848022],[-122.422827362,37.768680039],[-122.42283112,37.768721127],[-122.423366837,37.768690254],[-122.423370595,37.768731341],[-122.423412627,37.769170088],[-122.423413677,37.769210647],[-122.423413702,37.76921162],[-122.423409595,37.769211866],[-122.422763421,37.769250486],[-122.422760623,37.769250653],[-122.422764477,37.769291281],[-122.422771451,37.769364071],[-122.422782993,37.769484562],[-122.42278483,37.769503732],[-122.422791518,37.769573562],[-122.422798208,37.769643392],[-122.422806602,37.769731022],[-122.422817033,37.769840562],[-122.42281829,37.769840488],[-122.422828721,37.769950028],[-122.422830305,37.769966562],[-122.422848395,37.770155411],[-122.422854954,37.770223872],[-122.422861511,37.770292332],[-122.42286807,37.770360794],[-122.423126812,37.770345267],[-122.42319581,37.770341127],[-122.423208927,37.770478048],[-122.423139929,37.770482189],[-122.422882914,37.770497612],[-122.42288628,37.770530103],[-122.422895431,37.770634569],[-122.422900862,37.770703098],[-122.422906426,37.770761174],[-122.42290742,37.770771559],[-122.422925986,37.770908181],[-122.422931236,37.770933015],[-122.422948794,37.7709521],[-122.422968911,37.770974459],[-122.423012583,37.771024834],[-122.423041917,37.771060074],[-122.423057345,37.771079332],[-122.423063133,37.771086555],[-122.42307263,37.771098409],[-122.423100517,37.771134597],[-122.423131505,37.771176325],[-122.423206017,37.771172044],[-122.423225021,37.771170897],[-122.423257633,37.771168928],[-122.423275014,37.77116788],[-122.423275799,37.771176078],[-122.42327609,37.771179112],[-122.423345087,37.771174947],[-122.423355641,37.771174314],[-122.423606134,37.771156935],[-122.423604786,37.771142837],[-122.423673254,37.771138728],[-122.423744678,37.771134442],[-122.42388078,37.771126274],[-122.423949776,37.771122117],[-122.423948451,37.771108254],[-122.423905706,37.770661204],[-122.423976199,37.770657674],[-122.424263609,37.770643284],[-122.424262576,37.770632476],[-122.424261646,37.770622744],[-122.424521309,37.770607159],[-122.424617139,37.770601243],[-122.424665735,37.770598243],[-122.42458109,37.769734696],[-122.424654648,37.769730281],[-122.425816687,37.769660527],[-122.425810796,37.769598696],[-122.425806251,37.769550986],[-122.42579651,37.769449341],[-122.425793671,37.769419726],[-122.42578235,37.769301597],[-122.425839219,37.769298091],[-122.425868221,37.769296302],[-122.425999303,37.769288221],[-122.425979973,37.769082817],[-122.425977241,37.769054987],[-122.425975041,37.769032587],[-122.425974569,37.769027778],[-122.426589405,37.768989736],[-122.42668982,37.768983522],[-122.426713227,37.768982074],[-122.42685829,37.769042389],[-122.426795611,37.768930243],[-122.426780364,37.768772278],[-122.426693184,37.767869018],[-122.427864998,37.767792687],[-122.428657163,37.767734887],[-122.428968772,37.767729169],[-122.429053786,37.768674599],[-122.429055125,37.768688713],[-122.429127986,37.769456127],[-122.429145641,37.76956088],[-122.429224619,37.770350618],[-122.429108299,37.770365353],[-122.428559948,37.770434815],[-122.42842618,37.770451759],[-122.428404778,37.770345629],[-122.428397726,37.770310659],[-122.428274808,37.769701121],[-122.428272161,37.769688567],[-122.428259873,37.769630304],[-122.428228002,37.769479178],[-122.428219914,37.769440829],[-122.42734664,37.769493592],[-122.426683978,37.769533625],[-122.426309438,37.769602596],[-122.426594115,37.76973858],[-122.426695966,37.770241472],[-122.426578545,37.770256457],[-122.426373553,37.770282421],[-122.426202727,37.770304056],[-122.426185645,37.77030622],[-122.426055845,37.770369796],[-122.426042189,37.770376485],[-122.425926513,37.770433142],[-122.425797648,37.77049626],[-122.425835722,37.770684267],[-122.425848968,37.770750172],[-122.42585446,37.770777494],[-122.42581556,37.77078242],[-122.425269289,37.770851602],[-122.425135508,37.770868545],[-122.425212477,37.771250061],[-122.425095048,37.771264988],[-122.424998559,37.771276693],[-122.424913064,37.771287108],[-122.424836209,37.771296841],[-122.424810395,37.77130011],[-122.424825101,37.771372747],[-122.424740316,37.771386669],[-122.424697708,37.771392064],[-122.424682234,37.771394024],[-122.424695307,37.771458589],[-122.424697332,37.771468592],[-122.424681645,37.771470578],[-122.424594834,37.771481571],[-122.424640809,37.771708653],[-122.424657546,37.771791315],[-122.424675004,37.77187775],[-122.424576869,37.771890239],[-122.423726329,37.77199848],[-122.423553211,37.772020511],[-122.423571107,37.772052658],[-122.423662125,37.772492383],[-122.423662293,37.772493195],[-122.423605966,37.77250054],[-122.423508091,37.772513305],[-122.423425747,37.772524045],[-122.423276056,37.772545241],[-122.423322279,37.772728289],[-122.423314697,37.772747101],[-122.42334721,37.772913999],[-122.423366025,37.773007265],[-122.423374699,37.773006163],[-122.423378879,37.773026885],[-122.423393495,37.773099331],[-122.423422468,37.773242426],[-122.423426456,37.773262121],[-122.423459377,37.773424716],[-122.42346904,37.773472871],[-122.423468854,37.773472895],[-122.423478238,37.773519665],[-122.423496096,37.773607863],[-122.423520523,37.773728503],[-122.423526793,37.773759467],[-122.423544072,37.773844802],[-122.423562888,37.77393807],[-122.423636538,37.773928709],[-122.423655333,37.774021873],[-122.423721112,37.774347271],[-122.423730821,37.774395683],[-122.423722394,37.774396748],[-122.423380264,37.77443998],[-122.423059043,37.774480569],[-122.422633848,37.774534295],[-122.42250219,37.77455093],[-122.422382296,37.774566173],[-122.421961074,37.774619728],[-122.421410414,37.774689738],[-122.421271561,37.774707391],[-122.421263239,37.774708449],[-122.42107363,37.774732554],[-122.421083206,37.77478001],[-122.421117987,37.774942468],[-122.421153174,37.77510885],[-122.42116178,37.775149987],[-122.421174004,37.775208414],[-122.421097302,37.775218525],[-122.421091912,37.775219067],[-122.420959921,37.775232334],[-122.42085915,37.774759822],[-122.420805126,37.774506498],[-122.420783144,37.774403424],[-122.420759893,37.774294397],[-122.420732904,37.774167844],[-122.420698774,37.774007805],[-122.420491039,37.774171784],[-122.420254279,37.774358674],[-122.420150055,37.774298218],[-122.420007676,37.774179658],[-122.42000326,37.774175982],[-122.419801771,37.774008199],[-122.419663576,37.773893123],[-122.419539518,37.773789819],[-122.419325464,37.773611572],[-122.419225838,37.77352861],[-122.419142618,37.77345931],[-122.419222486,37.773398879],[-122.419433282,37.773232875],[-122.41959337,37.773106803],[-122.419606064,37.77309746],[-122.419628069,37.77307997],[-122.419606577,37.773062934],[-122.419660957,37.773019841],[-122.419687233,37.772999018],[-122.419659856,37.772977251],[-122.419469145,37.772826075],[-122.419341597,37.772724967],[-122.419240765,37.772644794],[-122.419337543,37.772568104],[-122.419528112,37.772417091],[-122.419593407,37.772365348],[-122.41967183,37.772303203],[-122.419690185,37.772288658],[-122.420344368,37.771770249],[-122.420487651,37.771883828],[-122.420618634,37.771987656],[-122.420635712,37.772001194],[-122.420940504,37.772242797],[-122.421068075,37.772343919],[-122.421186709,37.772437957],[-122.421282528,37.772513909],[-122.421287409,37.772517778],[-122.421440817,37.77263938],[-122.421577248,37.772513054],[-122.421588145,37.772502964],[-122.421651069,37.7724447],[-122.421697318,37.772401876],[-122.421649285,37.772375751],[-122.421573569,37.771760713],[-122.421570161,37.771724918],[-122.421563302,37.771652883],[-122.421110073,37.771680073],[-122.420686719,37.771705469],[-122.420528551,37.771714957]],[[-122.420125349,37.773528542],[-122.42013253,37.773534236],[-122.420200909,37.773480249],[-122.420296885,37.773404473],[-122.42064123,37.773132599],[-122.420686598,37.77309601],[-122.420674814,37.773086804],[-122.420639329,37.773059082],[-122.420483223,37.772937122],[-122.420474535,37.772930334],[-122.4203998,37.772871946],[-122.420317239,37.772937131],[-122.420313755,37.772939882],[-122.420073084,37.773129901],[-122.420057625,37.773142106],[-122.419953388,37.773224405],[-122.419888835,37.773275371],[-122.419881689,37.773281013],[-122.419847964,37.773308435],[-122.419890542,37.77334143],[-122.419922413,37.773367638],[-122.420082511,37.773494577],[-122.420125349,37.773528542]],[[-122.422446014,37.773602197],[-122.422312068,37.773619129],[-122.422407117,37.774084974],[-122.422547675,37.774067109],[-122.422792879,37.774035943],[-122.423001577,37.774009417],[-122.422982767,37.773916173],[-122.422916936,37.773591038],[-122.422908315,37.773548074],[-122.42290747,37.773543864],[-122.422869105,37.773548714],[-122.422477608,37.773598203],[-122.422446014,37.773602197]]],[[[-122.420008321,37.770111448],[-122.41985347,37.770392811],[-122.41985242,37.770395905],[-122.419806147,37.770532262],[-122.419758525,37.770672595],[-122.41971236,37.77080863],[-122.419676043,37.770915647],[-122.419645458,37.771005771],[-122.419610664,37.771106737],[-122.419237859,37.771868914],[-122.419161436,37.771856123],[-122.41911568,37.771848464],[-122.419071928,37.77184114],[-122.419062922,37.771839629],[-122.419034546,37.77183487],[-122.418931572,37.771817647],[-122.418872678,37.77180779],[-122.418815376,37.771798199],[-122.41877961,37.771792212],[-122.418655111,37.771771373],[-122.418641488,37.771798139],[-122.418613026,37.771854045],[-122.418552915,37.771838745],[-122.418454008,37.771813571],[-122.418319472,37.771839156],[-122.418234425,37.77185533],[-122.41818301,37.77168498],[-122.418097615,37.771701072],[-122.418073473,37.771705622],[-122.417979159,37.771723394],[-122.417863392,37.771677513],[-122.417795207,37.77165049],[-122.417669338,37.77184145],[-122.41762236,37.771912958],[-122.417555857,37.772009297],[-122.41761162,37.772033552],[-122.417545116,37.772129891],[-122.417298552,37.772494589],[-122.417278885,37.772481705],[-122.417246411,37.772465709],[-122.417231381,37.772459458],[-122.417223255,37.772456078],[-122.417183778,37.772439659],[-122.417108594,37.772394976],[-122.416973164,37.772322697],[-122.416901915,37.772284672],[-122.416738179,37.772197286],[-122.416723349,37.772189371],[-122.416720369,37.77218778],[-122.416717882,37.772186454],[-122.416587026,37.772121598],[-122.416714479,37.771959567],[-122.416717325,37.771955949],[-122.416777334,37.771879661],[-122.416899819,37.771723946],[-122.416970528,37.771634052],[-122.417003343,37.771573513],[-122.417091049,37.771411703],[-122.417373972,37.770889735],[-122.417440178,37.770754126],[-122.417559332,37.770510061],[-122.417609443,37.770407417],[-122.417753194,37.769815078],[-122.418826936,37.769956195],[-122.419652955,37.770064749],[-122.419693271,37.770070047],[-122.420008321,37.770111448]]]]}},"NCT-3","No Limit",0.000029892760803999008,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_752","MODERATE SCALE NEIGHBORHOOD COMMERCIAL TRANSIT DISTRICT","NCT-3",752,20559,0.06633232046931424,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"C-3-G","commercial_hours_of_operation":"Unrestricted","shape_area":0.00006105165420606985,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article2usedistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_210.2","districtname":"DOWNTOWN- GENERAL","zoning":"C-3-G","codesection":210.2,"objectid":20558,"shape_length":0.09119005219049073,"gen":"Commercial","index":149},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.410336774,37.78947865],[-122.410309767,37.789346296],[-122.410242438,37.789016336],[-122.410221336,37.788910076],[-122.410205094,37.788828289],[-122.410149539,37.788548529],[-122.410097914,37.788554986],[-122.410030691,37.788563393],[-122.409774461,37.788596204],[-122.409569476,37.788622452],[-122.409560936,37.788623546],[-122.409415738,37.788642139],[-122.409264562,37.788661496],[-122.409250896,37.788663246],[-122.409171037,37.788673472],[-122.409113385,37.788680853],[-122.409087762,37.788684134],[-122.409010981,37.788311461],[-122.408992052,37.788217926],[-122.409008523,37.788215827],[-122.409096551,37.788204606],[-122.409188558,37.788192878],[-122.409181408,37.788157555],[-122.409169813,37.788100261],[-122.409092519,37.787724873],[-122.409170029,37.787714948],[-122.409093293,37.787342269],[-122.40908114,37.787282257],[-122.409074826,37.787251086],[-122.408663552,37.787303545],[-122.40865134,37.787243249],[-122.40864408,37.787207396],[-122.40859672,37.786976252],[-122.408567562,37.786833938],[-122.408723889,37.78681496],[-122.4086854,37.786627706],[-122.408464724,37.786655425],[-122.408440342,37.786536422],[-122.408426457,37.786468653],[-122.408405421,37.786363221],[-122.408585393,37.786340606],[-122.408569198,37.786259431],[-122.408556616,37.786196712],[-122.408531587,37.786071952],[-122.408505267,37.78594075],[-122.408494385,37.785886506],[-122.408376864,37.785901118],[-122.408325991,37.785647529],[-122.408302965,37.785532751],[-122.40828366,37.785436878],[-122.408225036,37.785444314],[-122.408212638,37.785382745],[-122.40820704,37.785354946],[-122.40818136,37.785224707],[-122.408159158,37.785112105],[-122.408228547,37.785103389],[-122.408216601,37.785042803],[-122.408490441,37.785008312],[-122.40859419,37.784996164],[-122.408493158,37.784452729],[-122.408720517,37.784423904],[-122.40870185,37.784331166],[-122.408627032,37.783958243],[-122.408597567,37.783811379],[-122.408570834,37.783790185],[-122.408481377,37.783719264],[-122.408445238,37.783690612],[-122.408591477,37.783574422],[-122.408636391,37.783538737],[-122.40881825,37.783394246],[-122.408927846,37.783307169],[-122.408952159,37.783287852],[-122.409061766,37.783201364],[-122.409024739,37.783171805],[-122.408922263,37.783090002],[-122.408521704,37.782771909],[-122.408473187,37.782733842],[-122.408423795,37.782773494],[-122.407803494,37.783271475],[-122.407626538,37.783413534],[-122.407623636,37.783415865],[-122.407482812,37.783528916],[-122.40718463,37.783291991],[-122.407348257,37.783162982],[-122.407353977,37.783158473],[-122.407454522,37.7830792],[-122.407611803,37.782955194],[-122.407734092,37.782858776],[-122.407830071,37.782783103],[-122.407871235,37.782750647],[-122.407728408,37.782637509],[-122.407696344,37.78261211],[-122.407583346,37.782522599],[-122.407337522,37.782327872],[-122.407331353,37.782322985],[-122.407326587,37.782319209],[-122.407164383,37.78219072],[-122.407254675,37.782119418],[-122.407320128,37.78206773],[-122.407330628,37.782059439],[-122.407390573,37.7820121],[-122.407808648,37.781681947],[-122.408314963,37.781282104],[-122.408320898,37.781277417],[-122.408415709,37.781202543],[-122.408511462,37.781278923],[-122.408708069,37.781434662],[-122.408904002,37.781589867],[-122.408951781,37.781628271],[-122.408958775,37.781622789],[-122.409008216,37.781662529],[-122.409069369,37.781711093],[-122.409191673,37.781808218],[-122.40918432,37.781814032],[-122.409239601,37.781857933],[-122.40926139,37.781875236],[-122.409294882,37.781901834],[-122.409358831,37.781952617],[-122.409403056,37.781987315],[-122.409448077,37.781951171],[-122.409548451,37.781870587],[-122.409551462,37.781868169],[-122.409693261,37.781754327],[-122.409811748,37.781688747],[-122.409852842,37.781656152],[-122.409856392,37.781653336],[-122.410076593,37.78147868],[-122.410117691,37.781446082],[-122.41007488,37.781412083],[-122.409884787,37.781261126],[-122.409843523,37.781293755],[-122.409774479,37.781348351],[-122.409620842,37.781226345],[-122.409591022,37.781202665],[-122.409542071,37.781163656],[-122.409617693,37.781103878],[-122.409664486,37.78106689],[-122.409615744,37.781028046],[-122.409459424,37.780903909],[-122.409421253,37.780873595],[-122.409337016,37.780806701],[-122.409289488,37.780768957],[-122.409225566,37.780718194],[-122.409153256,37.780660515],[-122.409127784,37.780640197],[-122.409189106,37.78059177],[-122.409283026,37.780517596],[-122.409932429,37.78000473],[-122.410036113,37.779922845],[-122.410134662,37.780001453],[-122.410342578,37.780166566],[-122.410766777,37.780503433],[-122.410993466,37.780683451],[-122.411036294,37.780717464],[-122.411042571,37.780712485],[-122.411080963,37.780682033],[-122.411570025,37.780294109],[-122.411787125,37.780121902],[-122.4117906,37.780119146],[-122.411933409,37.780005868],[-122.411784633,37.779887339],[-122.411136279,37.779370793],[-122.411134217,37.77936915],[-122.410936574,37.779211684],[-122.411128289,37.77906027],[-122.411148235,37.779044517],[-122.411306322,37.778919661],[-122.411406845,37.778840269],[-122.411517012,37.77875326],[-122.412287677,37.778144582],[-122.412413344,37.778045328],[-122.412546901,37.777939841],[-122.412957641,37.777615427],[-122.412960167,37.777613432],[-122.413157692,37.777457419],[-122.413355309,37.777301332],[-122.413372286,37.777287922],[-122.414106896,37.776707687],[-122.414511499,37.776388102],[-122.414511615,37.776388011],[-122.414711004,37.776230519],[-122.414906258,37.776070917],[-122.414919412,37.776060165],[-122.414988538,37.776003662],[-122.415127953,37.775889702],[-122.414986432,37.775776824],[-122.41498261,37.775773775],[-122.414896834,37.775705357],[-122.414869822,37.775683813],[-122.414829024,37.775651271],[-122.414827882,37.77565036],[-122.414784311,37.775615607],[-122.41478317,37.775614696],[-122.414784265,37.775613831],[-122.414826089,37.775580796],[-122.414892271,37.775528405],[-122.41495424,37.77547935],[-122.414997925,37.775444768],[-122.41509714,37.775366227],[-122.415140059,37.775332326],[-122.415126307,37.775321358],[-122.415095347,37.775296663],[-122.41508168,37.775285763],[-122.415124604,37.775251864],[-122.415407499,37.775028447],[-122.415505608,37.774950965],[-122.415371609,37.774844084],[-122.415508372,37.774736074],[-122.415512088,37.774733139],[-122.415514572,37.774731177],[-122.415652044,37.774622607],[-122.415678748,37.774601517],[-122.415721123,37.774568052],[-122.415726001,37.774564199],[-122.415764651,37.774533675],[-122.415807024,37.774500209],[-122.416191303,37.774196716],[-122.416229953,37.774166191],[-122.416272326,37.774132725],[-122.416427716,37.774010001],[-122.41643657,37.774003009],[-122.416466638,37.773979262],[-122.416575669,37.773906251],[-122.416700911,37.77400556],[-122.41681287,37.774094335],[-122.416902187,37.774023364],[-122.416915878,37.774012485],[-122.416918658,37.77401028],[-122.417026024,37.773925122],[-122.417134238,37.773836251],[-122.417163963,37.773811289],[-122.417193535,37.773786214],[-122.416984799,37.773619725],[-122.416938474,37.773586597],[-122.416942895,37.773582702],[-122.416979796,37.773550189],[-122.417170405,37.773382249],[-122.417216662,37.773415328],[-122.41729406,37.773477061],[-122.417365876,37.773534341],[-122.4174248,37.773581339],[-122.417453045,37.773555192],[-122.41748113,37.773528936],[-122.417509077,37.77350255],[-122.417536863,37.773476057],[-122.417575906,37.773438164],[-122.417607874,37.773407138],[-122.417629691,37.773385414],[-122.41767779,37.773337518],[-122.417719752,37.773292416],[-122.417675962,37.773266746],[-122.417567055,37.773202903],[-122.417451103,37.773134932],[-122.417384613,37.773095602],[-122.41742596,37.773051559],[-122.41757643,37.772862276],[-122.417622775,37.772803974],[-122.417669893,37.772744703],[-122.417564127,37.772688694],[-122.417528835,37.772670004],[-122.41749487,37.772652018],[-122.417479873,37.772644077],[-122.417459279,37.772633171],[-122.41743337,37.772666301],[-122.41741646,37.77265646],[-122.417318059,37.772599193],[-122.417272529,37.772572696],[-122.417272447,37.772572648],[-122.417225721,37.772545305],[-122.417225555,37.772545208],[-122.417185928,37.772522933],[-122.417178486,37.77251875],[-122.417185613,37.772510761],[-122.41719859,37.772496215],[-122.417223568,37.772468216],[-122.417231381,37.772459458],[-122.417246411,37.772465709],[-122.417278885,37.772481705],[-122.417298552,37.772494589],[-122.417545116,37.772129891],[-122.41761162,37.772033552],[-122.417555857,37.772009297],[-122.41762236,37.771912958],[-122.417669338,37.77184145],[-122.417795207,37.77165049],[-122.417863392,37.771677513],[-122.417979159,37.771723394],[-122.418073473,37.771705622],[-122.418097615,37.771701072],[-122.41818301,37.77168498],[-122.418234425,37.77185533],[-122.418319472,37.771839156],[-122.418454008,37.771813571],[-122.418552915,37.771838745],[-122.418613026,37.771854045],[-122.418641488,37.771798139],[-122.418655111,37.771771373],[-122.41877961,37.771792212],[-122.418815376,37.771798199],[-122.418872678,37.77180779],[-122.418931572,37.771817647],[-122.419034546,37.77183487],[-122.419071928,37.77184114],[-122.41911568,37.771848464],[-122.419161436,37.771856123],[-122.419237859,37.771868914],[-122.419610664,37.771106737],[-122.419645458,37.771005771],[-122.419676043,37.770915647],[-122.41971236,37.77080863],[-122.419758525,37.770672595],[-122.419806147,37.770532262],[-122.41985242,37.770395905],[-122.41985347,37.770392811],[-122.420008321,37.770111448],[-122.420174963,37.770252992],[-122.420196029,37.770482357],[-122.420246395,37.771030705],[-122.420248622,37.771054956],[-122.420305735,37.771676765],[-122.420344368,37.771770249],[-122.419690185,37.772288658],[-122.41967183,37.772303203],[-122.419593407,37.772365348],[-122.419528112,37.772417091],[-122.419337543,37.772568104],[-122.419240765,37.772644794],[-122.419341597,37.772724967],[-122.419469145,37.772826075],[-122.419659856,37.772977251],[-122.419687233,37.772999018],[-122.419660957,37.773019841],[-122.419606577,37.773062934],[-122.419628069,37.77307997],[-122.419606064,37.77309746],[-122.41959337,37.773106803],[-122.419433282,37.773232875],[-122.419222486,37.773398879],[-122.419142618,37.77345931],[-122.419225838,37.77352861],[-122.419325464,37.773611572],[-122.419539518,37.773789819],[-122.419663576,37.773893123],[-122.419801771,37.774008199],[-122.42000326,37.774175982],[-122.420007676,37.774179658],[-122.420150055,37.774298218],[-122.420254279,37.774358674],[-122.420491039,37.774171784],[-122.420698774,37.774007805],[-122.420732904,37.774167844],[-122.420759893,37.774294397],[-122.420783144,37.774403424],[-122.420805126,37.774506498],[-122.42085915,37.774759822],[-122.420959921,37.775232334],[-122.42105326,37.775695232],[-122.421148424,37.776158764],[-122.421011466,37.776176289],[-122.42055877,37.776234211],[-122.420190686,37.776281306],[-122.419730606,37.77634017],[-122.419506294,37.776368869],[-122.419693566,37.777299855],[-122.419883231,37.778251016],[-122.419672474,37.778304991],[-122.419064803,37.778382376],[-122.419037123,37.778245438],[-122.418972175,37.777921355],[-122.418968762,37.777904485],[-122.418960943,37.777865841],[-122.418612243,37.777910288],[-122.418460017,37.777929691],[-122.418266459,37.777954361],[-122.418138568,37.777970663],[-122.418078607,37.777682201],[-122.418065386,37.777618601],[-122.418043168,37.77751171],[-122.417905249,37.777529436],[-122.417579318,37.777571326],[-122.417087742,37.777634503],[-122.416534247,37.777705636],[-122.416401071,37.77772275],[-122.416555471,37.778528118],[-122.416559196,37.77854755],[-122.416580344,37.778657854],[-122.416419268,37.778678265],[-122.416281672,37.778695701],[-122.415622924,37.778779173],[-122.415070546,37.778849163],[-122.414969894,37.778861916],[-122.414741222,37.778719428],[-122.41494297,37.778880916],[-122.415126955,37.779788526],[-122.414526401,37.779862964],[-122.41437726,37.77988145],[-122.41434683,37.779726794],[-122.414334549,37.779664374],[-122.414354677,37.779648457],[-122.414110463,37.7794539],[-122.413996622,37.779363109],[-122.413961306,37.779334945],[-122.41380428,37.779458871],[-122.413747173,37.77950394],[-122.413438116,37.779747844],[-122.413062313,37.780044422],[-122.412905223,37.780168394],[-122.412770599,37.780274636],[-122.412747508,37.780292858],[-122.412512256,37.780478511],[-122.412757675,37.780677409],[-122.412850251,37.780605451],[-122.412850381,37.78060535],[-122.4128505,37.780605447],[-122.413101255,37.780409061],[-122.413441728,37.780366568],[-122.413441986,37.780366536],[-122.413442207,37.780366508],[-122.41344225,37.780366726],[-122.413455777,37.780365004],[-122.413560141,37.780351719],[-122.413637989,37.780736968],[-122.413676361,37.780926854],[-122.413148049,37.780993782],[-122.412689385,37.781051884],[-122.41261148,37.781061752],[-122.412630757,37.781157616],[-122.412708619,37.781530151],[-122.412580927,37.781546434],[-122.412238852,37.781590052],[-122.412122575,37.781605426],[-122.412220736,37.782073067],[-122.412254054,37.782235467],[-122.412259094,37.78226003],[-122.412316037,37.782537579],[-122.412266405,37.782543993],[-122.412199842,37.782552595],[-122.411964973,37.782582613],[-122.411918165,37.782588642],[-122.411730148,37.782612856],[-122.411683183,37.782618904],[-122.411606719,37.782245965],[-122.411589402,37.782160401],[-122.411588052,37.782153731],[-122.411527908,37.782161398],[-122.411353168,37.782183676],[-122.411366563,37.782249858],[-122.411371887,37.782276166],[-122.411448358,37.782649146],[-122.41143128,37.782651346],[-122.411260498,37.782673339],[-122.410787951,37.782734195],[-122.410671046,37.782749037],[-122.410700604,37.782895684],[-122.410764827,37.783214312],[-122.410634794,37.78323091],[-122.410083968,37.783301219],[-122.409826192,37.783334121],[-122.40971183,37.783348717],[-122.409730612,37.783441407],[-122.409806422,37.783814205],[-122.409695412,37.783828499],[-122.409334113,37.783875023],[-122.409216526,37.783889964],[-122.409239942,37.784006042],[-122.409121437,37.7840211],[-122.408865117,37.784053386],[-122.408915451,37.784304261],[-122.408920156,37.784327632],[-122.408934083,37.784396826],[-122.409309181,37.784349268],[-122.409557817,37.784317744],[-122.409708478,37.784298641],[-122.409727502,37.784393148],[-122.409751356,37.784512521],[-122.409764906,37.784580332],[-122.409952905,37.784556808],[-122.409984072,37.784712773],[-122.410019302,37.784889081],[-122.409831302,37.784912605],[-122.409861112,37.78506179],[-122.40957786,37.785097231],[-122.409463011,37.785111825],[-122.409497526,37.785282916],[-122.409630258,37.78526608],[-122.410180664,37.785196264],[-122.410487428,37.785157351],[-122.411006499,37.785091506],[-122.411139801,37.785074596],[-122.411161124,37.785180375],[-122.411174846,37.785248454],[-122.411296352,37.78585123],[-122.411306872,37.785903417],[-122.411325582,37.785996235],[-122.411827611,37.785933135],[-122.411848617,37.786038395],[-122.411895861,37.786275757],[-122.411981269,37.786264826],[-122.411967771,37.786197009],[-122.412063429,37.786184765],[-122.412159087,37.786172523],[-122.41220358,37.786166785],[-122.412218887,37.786241539],[-122.412219732,37.786245669],[-122.412272961,37.78650563],[-122.41222658,37.786511612],[-122.412225843,37.786511705],[-122.412035264,37.786536097],[-122.412082508,37.786773455],[-122.412092963,37.786825073],[-122.412101058,37.786865035],[-122.411515767,37.786939706],[-122.411572254,37.787219922],[-122.411516946,37.787226977],[-122.411240366,37.787262258],[-122.411176875,37.787270357],[-122.411172694,37.787270891],[-122.411177499,37.787294616],[-122.411210915,37.787457248],[-122.411491942,37.787421401],[-122.411521853,37.787417603],[-122.411609852,37.78740643],[-122.411642193,37.787566865],[-122.411644088,37.787577006],[-122.411526313,37.787590864],[-122.411220098,37.787629926],[-122.411261911,37.78783343],[-122.411280646,37.787925699],[-122.411534097,37.787893287],[-122.411699232,37.787872168],[-122.412343613,37.787790337],[-122.412363469,37.78788669],[-122.412367268,37.787905129],[-122.412394679,37.788038142],[-122.412398463,37.788056507],[-122.412404683,37.788086691],[-122.412420177,37.788084714],[-122.412425669,37.78811183],[-122.412457784,37.788267675],[-122.412461604,37.788267187],[-122.41253631,37.7886297],[-122.412554536,37.788720497],[-122.412555022,37.788722919],[-122.412285597,37.788756981],[-122.412304243,37.788849868],[-122.412362375,37.789127844],[-122.412082121,37.78916339],[-122.411961417,37.789178899],[-122.411955271,37.789148773],[-122.41184171,37.789163364],[-122.411771157,37.789172312],[-122.411698895,37.789181478],[-122.411546114,37.789200854],[-122.411542698,37.789201288],[-122.411555624,37.789263385],[-122.411569404,37.789329584],[-122.411415576,37.789348852],[-122.41139485,37.789351447],[-122.411329262,37.789359663],[-122.411242948,37.789370475],[-122.41109852,37.789388564],[-122.410927601,37.789409973],[-122.410756681,37.789431381],[-122.410755427,37.789425358],[-122.410608173,37.789444032],[-122.410454397,37.789463534],[-122.410336774,37.78947865]]]]}},"C-3-G","Unrestricted",0.00006105165420606985,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article2usedistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_210.2","DOWNTOWN- GENERAL","C-3-G",210.2,20558,0.09119005219049073,"Commercial"],[{"type":"Feature","properties":{"zoning_sim":"PM-MU1","commercial_hours_of_operation":null,"shape_area":0.0000011635935521462674,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article2usedistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_249.64","districtname":"PARKMERCED-MIXED USE-SOCIAL HEART","zoning":"PM-MU1","codesection":249.64,"objectid":19613,"shape_length":0.005238436674770689,"gen":"Mixed Use","index":150},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.474163241,37.718900724],[-122.474446392,37.718736127],[-122.474496506,37.718706996],[-122.474500821,37.718704487],[-122.47454148,37.718680851],[-122.47455096,37.718736336],[-122.474552705,37.718746547],[-122.474554834,37.71875901],[-122.474560113,37.718787636],[-122.474814153,37.719018684],[-122.474891045,37.719031702],[-122.475039285,37.719018485],[-122.475393799,37.718973196],[-122.475531898,37.718917229],[-122.476330616,37.719490424],[-122.476184371,37.719578721],[-122.47610881,37.719615757],[-122.475974641,37.719650199],[-122.475503673,37.719718903],[-122.47521153,37.7197529],[-122.475054296,37.719771197],[-122.474959165,37.719776724],[-122.474889637,37.719780764],[-122.474837191,37.71969179],[-122.4748226,37.719667038],[-122.474796675,37.719623055],[-122.474739808,37.719526583],[-122.474516212,37.719283872],[-122.474163241,37.718900724]]]]}},"PM-MU1",null,0.0000011635935521462674,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article2usedistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_249.64","PARKMERCED-MIXED USE-SOCIAL HEART","PM-MU1",249.64,19613,0.005238436674770689,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCT","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000013312242317226474,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_755","districtname":"OCEAN AVENUE NEIGHBORHOOD COMMERCIAL TRANSIT","zoning":"NCT-OCEAN","codesection":755,"objectid":19859,"shape_length":0.04087602708366401,"gen":"Mixed Use","index":151},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.464397721,37.726525549],[-122.464341935,37.726503609],[-122.464322936,37.726534238],[-122.464208146,37.72671929],[-122.464198216,37.726735298],[-122.464188492,37.726750973],[-122.464188116,37.726751581],[-122.464108352,37.726720954],[-122.463812846,37.726607485],[-122.463667496,37.726551674],[-122.463658001,37.726548028],[-122.463533373,37.726500172],[-122.463456364,37.726470602],[-122.463529557,37.726355748],[-122.463631274,37.726196135],[-122.463549146,37.726164412],[-122.463524248,37.726154794],[-122.463401298,37.726107302],[-122.463323536,37.726077265],[-122.463245774,37.726047228],[-122.463171557,37.72601856],[-122.463088439,37.725986453],[-122.462757725,37.725858707],[-122.462686496,37.725831194],[-122.462680475,37.725828868],[-122.46267709,37.725858092],[-122.462673239,37.72585662],[-122.462588785,37.725824351],[-122.462369428,37.725740534],[-122.462282703,37.725707395],[-122.462159829,37.725660444],[-122.462161253,37.725756296],[-122.462162738,37.725856199],[-122.462164596,37.725981249],[-122.4621657,37.726055567],[-122.462163623,37.726055579],[-122.462076893,37.726056055],[-122.461985841,37.726056556],[-122.46189479,37.726057056],[-122.461803738,37.726057556],[-122.461712686,37.726058056],[-122.46162796,37.726058521],[-122.461619982,37.726055913],[-122.461528793,37.726026089],[-122.461440096,37.725997081],[-122.461352589,37.725968462],[-122.461262298,37.725938931],[-122.461169512,37.725908585],[-122.461068258,37.72587547],[-122.461022167,37.725860395],[-122.460985336,37.72584835],[-122.460892095,37.725817855],[-122.46088202,37.72581456],[-122.460880696,37.725818044],[-122.460880183,37.725819398],[-122.460778306,37.725819749],[-122.460358187,37.725821197],[-122.46035801,37.725788757],[-122.460357607,37.725714979],[-122.46035726,37.725651458],[-122.460356833,37.72557322],[-122.460356394,37.725492846],[-122.460355943,37.725410448],[-122.460355505,37.725330143],[-122.460355077,37.725251796],[-122.460354638,37.725171486],[-122.460354594,37.725163312],[-122.460354594,37.725163216],[-122.460199287,37.725129594],[-122.46001908,37.725090582],[-122.460011482,37.725088937],[-122.459925412,37.725070304],[-122.459922804,37.72508082],[-122.459841505,37.725063603],[-122.459498253,37.724990915],[-122.459442251,37.724979055],[-122.459387058,37.724967367],[-122.459259891,37.724940438],[-122.459123525,37.72491156],[-122.459105936,37.724907835],[-122.458993562,37.724884037],[-122.458905987,37.724865492],[-122.458857196,37.724855158],[-122.458768005,37.724836271],[-122.458700008,37.72482187],[-122.458657459,37.72481286],[-122.458659405,37.724659774],[-122.458489621,37.724661396],[-122.458331182,37.72466291],[-122.45824545,37.724663728],[-122.45819248,37.724664235],[-122.458192522,37.724677399],[-122.458137724,37.724677569],[-122.458054645,37.724677827],[-122.457728185,37.724678838],[-122.45772771,37.724613545],[-122.457543334,37.724578955],[-122.457436712,37.724558952],[-122.457357013,37.724544],[-122.457272868,37.724528213],[-122.457272933,37.7245196],[-122.457274077,37.724513184],[-122.457236506,37.724505487],[-122.457188442,37.724495641],[-122.457045354,37.724466328],[-122.456942934,37.724445347],[-122.456841433,37.724424553],[-122.456837236,37.724423694],[-122.456746094,37.724405022],[-122.456622563,37.724379715],[-122.456531991,37.724361161],[-122.456450593,37.724344485],[-122.456453191,37.724327249],[-122.45643334,37.724324092],[-122.456418935,37.724321801],[-122.456364096,37.724313079],[-122.456019098,37.724258208],[-122.456019734,37.724381639],[-122.456019876,37.72440916],[-122.455916031,37.724386679],[-122.455372189,37.724268948],[-122.454101503,37.723993856],[-122.4539959,37.723970993],[-122.4539872,37.723996476],[-122.453982745,37.724009526],[-122.452611868,37.72401991],[-122.452476231,37.724048059],[-122.452429054,37.724057849],[-122.452341946,37.724075926],[-122.452336445,37.723548444],[-122.452331561,37.723080242],[-122.452188755,37.723053889],[-122.4519983,37.723018743],[-122.451965277,37.723014447],[-122.451786239,37.722991155],[-122.451595166,37.722991783],[-122.450118227,37.722969693],[-122.44955862,37.722961319],[-122.449633873,37.722843179],[-122.449741105,37.722674837],[-122.44974406,37.722670199],[-122.449761528,37.722642775],[-122.449854148,37.722680033],[-122.450095602,37.722776158],[-122.450097183,37.722703648],[-122.450098702,37.722633979],[-122.450123261,37.722634324],[-122.450197084,37.72263536],[-122.450262488,37.722530489],[-122.450306441,37.722540369],[-122.450348666,37.722549859],[-122.450396435,37.722560596],[-122.450433405,37.722568905],[-122.450489919,37.722581608],[-122.450518077,37.722587937],[-122.450543088,37.722593558],[-122.450581656,37.722602226],[-122.450650348,37.722617665],[-122.450671118,37.722622333],[-122.450713232,37.722631799],[-122.450765927,37.722653408],[-122.450868836,37.722695606],[-122.450957718,37.722559188],[-122.450964768,37.722548368],[-122.451003514,37.7224889],[-122.451030128,37.72244805],[-122.451206676,37.722518763],[-122.451322634,37.722518411],[-122.451493184,37.722517892],[-122.451500902,37.722517868],[-122.451530461,37.722517779],[-122.451616897,37.722517515],[-122.451703334,37.722517252],[-122.451789772,37.722516989],[-122.451876208,37.722516724],[-122.451962646,37.722516461],[-122.452049083,37.722516198],[-122.45213552,37.722515933],[-122.452221957,37.72251567],[-122.452308394,37.722515406],[-122.452394831,37.722515142],[-122.452481268,37.722514878],[-122.452567705,37.722514614],[-122.452654143,37.72251435],[-122.45265431,37.722548404],[-122.452654648,37.722617063],[-122.452654986,37.722685722],[-122.452655324,37.72275438],[-122.45265566,37.72282281],[-122.452747303,37.722822759],[-122.453001412,37.722821982],[-122.453105188,37.722821664],[-122.453105551,37.722897679],[-122.453209236,37.722897417],[-122.453223893,37.722897381],[-122.453386215,37.72289697],[-122.453559091,37.722896532],[-122.45360231,37.722896424],[-122.453645528,37.722896313],[-122.453645959,37.722964972],[-122.453732397,37.722964753],[-122.453818835,37.722964535],[-122.453819265,37.723033193],[-122.453992142,37.723032755],[-122.45411332,37.723032447],[-122.454113713,37.723101107],[-122.454234599,37.723100801],[-122.454321037,37.723100581],[-122.454450694,37.723100252],[-122.454537133,37.723100033],[-122.454621807,37.723099817],[-122.454666789,37.723099704],[-122.454667221,37.723168361],[-122.454753659,37.723168142],[-122.45501128,37.723167488],[-122.455133269,37.723167179],[-122.455133504,37.72321694],[-122.455133919,37.723304505],[-122.455254307,37.723304196],[-122.455637906,37.723303212],[-122.455681125,37.723303101],[-122.455681427,37.72337176],[-122.455767865,37.72337154],[-122.45602718,37.723370879],[-122.456148193,37.72337057],[-122.456148798,37.723507966],[-122.456269812,37.723507592],[-122.456397493,37.723507197],[-122.456441132,37.723507063],[-122.456614007,37.723506529],[-122.456656882,37.723506396],[-122.456700446,37.723506262],[-122.456700658,37.72357492],[-122.45670087,37.723643579],[-122.457046624,37.72364251],[-122.457167798,37.723642135],[-122.457167978,37.723710836],[-122.457288864,37.723710437],[-122.457462732,37.723709862],[-122.45754917,37.723709577],[-122.457635608,37.723709291],[-122.457678828,37.723709148],[-122.457722047,37.723709005],[-122.457722353,37.723777664],[-122.457722661,37.723846322],[-122.4578091,37.723846037],[-122.457895538,37.723845751],[-122.457981977,37.723845464],[-122.458068415,37.723845179],[-122.458189862,37.723844777],[-122.458190188,37.72394571],[-122.458310894,37.723945302],[-122.458399992,37.723945],[-122.458486432,37.723944708],[-122.458572871,37.723944414],[-122.45865931,37.723944122],[-122.458659294,37.724012781],[-122.458745733,37.724012489],[-122.458832173,37.724012196],[-122.458918612,37.724011902],[-122.459005053,37.72401161],[-122.459091492,37.724011317],[-122.45921114,37.724010911],[-122.459211564,37.724143908],[-122.459333491,37.7241439],[-122.459419726,37.724143894],[-122.459679045,37.724143878],[-122.459722266,37.724143874],[-122.459765485,37.724143872],[-122.459765739,37.724212531],[-122.459765992,37.72428119],[-122.459852431,37.724281184],[-122.459997735,37.724281174],[-122.460111753,37.724281166],[-122.46023285,37.724280903],[-122.460233089,37.724350118],[-122.460354037,37.724349855],[-122.460615204,37.724347513],[-122.460701642,37.724346738],[-122.460744515,37.724346353],[-122.46078808,37.724345962],[-122.460788236,37.724414625],[-122.460788394,37.724483286],[-122.460874832,37.724482511],[-122.461134147,37.724480185],[-122.461254354,37.724479838],[-122.461254986,37.724618349],[-122.461370491,37.724616426],[-122.461376491,37.724616326],[-122.461765815,37.724614819],[-122.461795539,37.724614704],[-122.461795917,37.724683363],[-122.461796295,37.724752021],[-122.461890238,37.724751657],[-122.461984181,37.724751293],[-122.46215706,37.724750623],[-122.4622785,37.724750152],[-122.462279017,37.724866228],[-122.462279072,37.724878547],[-122.462399799,37.724878208],[-122.462620917,37.724878826],[-122.46262393,37.724993406],[-122.462714525,37.725025487],[-122.462704486,37.725042498],[-122.462783859,37.725071916],[-122.462863148,37.725101302],[-122.462941489,37.725130336],[-122.46301596,37.725162964],[-122.463015962,37.725163027],[-122.463016913,37.725163382],[-122.463094198,37.725192225],[-122.463254163,37.725251921],[-122.463398963,37.725305958],[-122.463411481,37.72531063],[-122.463410629,37.725312002],[-122.463423143,37.725316688],[-122.463493883,37.725343179],[-122.463634477,37.725395828],[-122.463651378,37.725402157],[-122.463810665,37.725461808],[-122.463885417,37.725489801],[-122.463886948,37.725490247],[-122.463888092,37.72549058],[-122.463967863,37.725513836],[-122.463905928,37.725616808],[-122.464225001,37.725751498],[-122.464219733,37.725783777],[-122.464216433,37.725800618],[-122.464212764,37.72581741],[-122.464208728,37.72583415],[-122.464204324,37.725850831],[-122.464203052,37.725850374],[-122.464202385,37.725850151],[-122.464201713,37.725849938],[-122.464201036,37.725849733],[-122.464200355,37.725849537],[-122.464199669,37.725849351],[-122.46419898,37.725849175],[-122.464198287,37.725849008],[-122.464197591,37.725848851],[-122.464196891,37.725848704],[-122.464196188,37.725848567],[-122.464195482,37.725848439],[-122.464194773,37.725848321],[-122.464194061,37.725848213],[-122.464193348,37.725848114],[-122.464192632,37.725848026],[-122.464191915,37.725847947],[-122.464191196,37.725847878],[-122.464190475,37.725847821],[-122.464189754,37.725847772],[-122.464189032,37.725847733],[-122.464188309,37.725847705],[-122.464187584,37.725847686],[-122.464186861,37.725847678],[-122.464186136,37.725847679],[-122.464185413,37.725847691],[-122.464184689,37.725847712],[-122.464183965,37.725847744],[-122.464183243,37.725847786],[-122.464182522,37.725847838],[-122.464181802,37.725847899],[-122.464181083,37.725847971],[-122.464180366,37.725848053],[-122.464179651,37.725848144],[-122.464178939,37.725848245],[-122.464178228,37.725848357],[-122.46417752,37.725848478],[-122.464176816,37.725848609],[-122.464176112,37.725848749],[-122.464175414,37.7258489],[-122.464174718,37.72584906],[-122.464174026,37.72584923],[-122.464173339,37.725849409],[-122.464172654,37.725849598],[-122.464171975,37.725849796],[-122.4641713,37.725850003],[-122.464170629,37.72585022],[-122.464169962,37.725850447],[-122.464169302,37.725850682],[-122.464168647,37.725850926],[-122.464167997,37.72585118],[-122.464167353,37.725851442],[-122.464166714,37.725851714],[-122.464166082,37.725851994],[-122.464165455,37.725852283],[-122.464164835,37.725852581],[-122.464164222,37.725852886],[-122.464163616,37.725853201],[-122.464163017,37.725853524],[-122.464162425,37.725853856],[-122.464161841,37.725854195],[-122.464161263,37.725854542],[-122.464160694,37.725854897],[-122.464160132,37.725855261],[-122.464159579,37.725855632],[-122.464159034,37.72585601],[-122.464158496,37.725856396],[-122.464157969,37.725856789],[-122.464157449,37.72585719],[-122.464156938,37.725857599],[-122.464156436,37.725858013],[-122.464155944,37.725858435],[-122.464155461,37.725858864],[-122.464154987,37.725859299],[-122.464154523,37.72585974],[-122.46415407,37.725860188],[-122.464153625,37.725860643],[-122.46415319,37.725861102],[-122.464152767,37.725861569],[-122.464152354,37.725862041],[-122.46415195,37.725862519],[-122.464151557,37.725863002],[-122.464151174,37.725863491],[-122.464150804,37.725863984],[-122.464150443,37.725864483],[-122.464150094,37.725864987],[-122.464149756,37.725865495],[-122.464149429,37.725866009],[-122.464149112,37.725866527],[-122.464148808,37.725867049],[-122.464148516,37.725867574],[-122.464148235,37.725868105],[-122.464147965,37.725868638],[-122.464147707,37.725869176],[-122.464147462,37.725869717],[-122.464147228,37.725870262],[-122.464147006,37.725870809],[-122.464146796,37.725871359],[-122.464146599,37.725871913],[-122.464146412,37.725872469],[-122.46414624,37.725873028],[-122.464146079,37.725873588],[-122.464097645,37.725956269],[-122.464220184,37.726001556],[-122.464243109,37.726010028],[-122.464385486,37.726062645],[-122.464397074,37.726066928],[-122.464572579,37.726131787],[-122.464961428,37.72627549],[-122.465143805,37.726342888],[-122.465312619,37.726405275],[-122.465214482,37.726551263],[-122.465192875,37.726583405],[-122.465151781,37.726644537],[-122.465122843,37.726687582],[-122.465100888,37.726720244],[-122.4650797,37.726751763],[-122.465057367,37.726784985],[-122.464977243,37.726753472],[-122.464901224,37.726723575],[-122.464759329,37.726667768],[-122.464700938,37.726644804],[-122.464415871,37.726532688],[-122.464409316,37.72653011],[-122.464397721,37.726525549]],[[-122.453107198,37.723244036],[-122.45270861,37.723159865],[-122.452708475,37.723188254],[-122.452708147,37.723257168],[-122.452708056,37.723276364],[-122.452706457,37.723612412],[-122.453171352,37.723613806],[-122.453172495,37.723373268],[-122.453172907,37.723286329],[-122.453173043,37.72325794],[-122.453135811,37.723250078],[-122.453107198,37.723244036]]]]}},"NCT","6:00AM-2:00AM",0.000013312242317226474,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_755","OCEAN AVENUE NEIGHBORHOOD COMMERCIAL TRANSIT","NCT-OCEAN",755,19859,0.04087602708366401,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":3.7891047124860455e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19545,"shape_length":0.0032077713388301387,"gen":"Mixed Use","index":152},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.453935939,37.710801593],[-122.453965838,37.710744397],[-122.453971062,37.710734403],[-122.454063179,37.710558184],[-122.454230522,37.71043674],[-122.454284036,37.710397904],[-122.454293408,37.710391102],[-122.454368776,37.710336406],[-122.45437818,37.71032958],[-122.454392159,37.710319436],[-122.45454674,37.710207253],[-122.454724264,37.710067319],[-122.454797704,37.71000943],[-122.454801907,37.710006117],[-122.454874993,37.710064572],[-122.454996803,37.710161997],[-122.455125965,37.710265302],[-122.455210678,37.710333056],[-122.455222486,37.710342501],[-122.455275186,37.71038465],[-122.455212433,37.710399756],[-122.454885126,37.710478553],[-122.454380907,37.710641356],[-122.454304498,37.710666027],[-122.454237171,37.710689686],[-122.454087205,37.710742383],[-122.453987951,37.71077726],[-122.453940125,37.710801524],[-122.453935939,37.710801593]]]]}},"NC-1","6:00AM-11:00PM",3.7891047124860455e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19545,0.0032077713388301387,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":3.375763633619177e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19765,"shape_length":0.002648452473582444,"gen":"Mixed Use","index":153},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.42654617,37.74595688],[-122.426551265,37.745956576],[-122.426740688,37.745945283],[-122.426877339,37.745937866],[-122.42687523,37.745913379],[-122.427023039,37.745905356],[-122.427333681,37.745886622],[-122.427370654,37.745884393],[-122.427379921,37.745980702],[-122.42738853,37.746067762],[-122.427318706,37.746072115],[-122.427320193,37.74608715],[-122.427327411,37.746160157],[-122.427335197,37.74624141],[-122.427341758,37.74630987],[-122.427057407,37.746327327],[-122.426914112,37.746336056],[-122.426912717,37.74632161],[-122.426787218,37.746329315],[-122.426771408,37.746330285],[-122.42651278,37.746346162],[-122.426505833,37.746279377],[-122.426498652,37.746210319],[-122.426489654,37.746123797],[-122.426561942,37.746119291],[-122.426553188,37.746030742],[-122.426546504,37.745960395],[-122.42654617,37.74595688]]]]}},"NC-1","6:00AM-11:00PM",3.375763633619177e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19765,0.002648452473582444,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-3","commercial_hours_of_operation":"No Limit","shape_area":7.146250399733415e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","districtname":"NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","zoning":"NC-3","codesection":712.1,"objectid":19588,"shape_length":0.003845930221340127,"gen":"Mixed Use","index":154},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.42230925,37.784613101],[-122.422810622,37.784550062],[-122.422838086,37.784546609],[-122.42293382,37.785014423],[-122.422974825,37.785219077],[-122.422994609,37.785317822],[-122.423006621,37.785377772],[-122.423027553,37.785482243],[-122.422065217,37.785602113],[-122.422046693,37.78550844],[-122.422030244,37.78542709],[-122.422013795,37.78534574],[-122.42200113,37.785283107],[-122.421981171,37.785184395],[-122.421972497,37.785141395],[-122.421971548,37.785136691],[-122.421979909,37.785135628],[-122.422387343,37.78508386],[-122.422395447,37.78508283],[-122.422403743,37.785081776],[-122.422394194,37.785034441],[-122.422328652,37.784710296],[-122.42230925,37.784613101]]]]}},"NC-3","No Limit",7.146250399733415e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","NC-3",712.1,19588,0.003845930221340127,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":3.9766968003951847e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19683,"shape_length":0.0032389364866039034,"gen":"Mixed Use","index":155},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.402698219,37.730266427],[-122.402871486,37.730363129],[-122.402943682,37.730403422],[-122.403140709,37.730513384],[-122.403243853,37.730570949],[-122.403400462,37.730658352],[-122.403285447,37.730688947],[-122.403146154,37.730726],[-122.402989462,37.730767681],[-122.402866113,37.730800494],[-122.402577767,37.730877195],[-122.402505862,37.730896322],[-122.402137681,37.730994258],[-122.402026168,37.73102392],[-122.402140009,37.730895607],[-122.402266931,37.730752549],[-122.402283756,37.730733585],[-122.402532218,37.730453535],[-122.402571342,37.730409435],[-122.402698219,37.730266427]]]]}},"NC-1","6:00AM-11:00PM",3.9766968003951847e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19683,0.0032389364866039034,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":0.0000010169203379520137,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19669,"shape_length":0.0060918680263852346,"gen":"Mixed Use","index":156},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.485860964,37.760924857],[-122.485947313,37.760921054],[-122.486033663,37.76091725],[-122.486077608,37.760915315],[-122.486120012,37.760913447],[-122.486205964,37.760909661],[-122.486292712,37.760905841],[-122.486296557,37.760960683],[-122.486374272,37.76095726],[-122.486497762,37.76095182],[-122.486507269,37.76095141],[-122.486617323,37.760946649],[-122.48662766,37.761097283],[-122.486750118,37.761091986],[-122.48694414,37.761083439],[-122.486953052,37.761083047],[-122.486953439,37.761088558],[-122.48695786,37.761151599],[-122.486965526,37.761261284],[-122.487708161,37.761228567],[-122.487720458,37.761403885],[-122.48759957,37.761409229],[-122.487400962,37.761417939],[-122.487405769,37.761486491],[-122.487410577,37.761555044],[-122.48741501,37.761618242],[-122.487415386,37.761623596],[-122.487277223,37.761629655],[-122.487199507,37.761633062],[-122.487156331,37.761634956],[-122.487069979,37.761638742],[-122.486787494,37.761651129],[-122.486666606,37.761656472],[-122.486656985,37.761519281],[-122.486536095,37.761524624],[-122.486337487,37.761533332],[-122.486342294,37.761601885],[-122.486255942,37.76160567],[-122.486260749,37.761674223],[-122.486174398,37.761678009],[-122.486137163,37.761679641],[-122.486131222,37.761679901],[-122.486088046,37.761681794],[-122.486001695,37.76168558],[-122.485996888,37.761617027],[-122.485910535,37.761620813],[-122.485905729,37.76155226],[-122.485900923,37.761483708],[-122.485701544,37.761492448],[-122.485698715,37.761492573],[-122.485580653,37.76149779],[-122.485568386,37.761322821],[-122.48555589,37.761144602],[-122.48567678,37.76113926],[-122.485875384,37.761130514],[-122.485870577,37.761061961],[-122.48586577,37.760993409],[-122.485863987,37.760967972],[-122.485860964,37.760924857]]]]}},"NC-1","6:00AM-11:00PM",0.0000010169203379520137,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19669,0.0060918680263852346,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":3.4143843364870796e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19785,"shape_length":0.0026037405766104115,"gen":"Mixed Use","index":157},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.442065862,37.790615576],[-122.4421585,37.790603593],[-122.442154695,37.790584802],[-122.442140753,37.790515943],[-122.442108532,37.79035681],[-122.442246088,37.790339415],[-122.442260431,37.790410254],[-122.442399697,37.790392642],[-122.442399148,37.790389931],[-122.442500894,37.790377063],[-122.442516881,37.790375042],[-122.44261837,37.790362206],[-122.442654353,37.790539453],[-122.442727197,37.790910677],[-122.442679369,37.790916764],[-122.442606714,37.790926011],[-122.442521287,37.790936883],[-122.442443584,37.790946772],[-122.442371793,37.790955908],[-122.442386982,37.791030984],[-122.442269522,37.791045932],[-122.442237488,37.791050009],[-122.442153036,37.791060757],[-122.442085181,37.790714238],[-122.442065862,37.790615576]]]]}},"NC-1","6:00AM-11:00PM",3.4143843364870796e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19785,0.0026037405766104115,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCT-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000010879161000792316,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_751","districtname":"NEIGHBORHOOD COMMERCIAL TRANSIT-2","zoning":"NCT-2","codesection":751,"objectid":19853,"shape_length":0.004669701769986109,"gen":"Mixed Use","index":158},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.44660865,37.720724223],[-122.446744236,37.720566591],[-122.446809096,37.720491185],[-122.447096027,37.720157595],[-122.44712057,37.72012264],[-122.447185223,37.720030551],[-122.447316317,37.719843828],[-122.447344072,37.719804296],[-122.44736867,37.719767829],[-122.447403911,37.719715582],[-122.447562063,37.719481119],[-122.447575328,37.719462154],[-122.447618572,37.719400325],[-122.447768007,37.719458968],[-122.447768069,37.719458981],[-122.447894347,37.719508536],[-122.447899351,37.719510499],[-122.447926543,37.719521167],[-122.447977302,37.719541082],[-122.447931409,37.719706861],[-122.447927518,37.719720914],[-122.447759275,37.720328645],[-122.447757763,37.720433455],[-122.447602771,37.720970742],[-122.447581859,37.721023892],[-122.447558764,37.72108259],[-122.447276527,37.720976136],[-122.446817261,37.720802908],[-122.44660865,37.720724223]]]]}},"NCT-2","6:00AM-2:00AM",0.0000010879161000792316,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_751","NEIGHBORHOOD COMMERCIAL TRANSIT-2","NCT-2",751,19853,0.004669701769986109,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"P","commercial_hours_of_operation":"Unrestricted","shape_area":5.639003837953577e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article2usedistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_211","districtname":"PUBLIC","zoning":"P","codesection":211,"objectid":20560,"shape_length":0.0033157097495589774,"gen":"Public","index":159},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.420246395,37.771030705],[-122.420196029,37.770482357],[-122.420314582,37.770475496],[-122.420338366,37.770474119],[-122.420978793,37.770559907],[-122.421269472,37.770598842],[-122.421318776,37.770605447],[-122.421319574,37.770613777],[-122.421320418,37.77062259],[-122.421326188,37.770682836],[-122.421333531,37.770759512],[-122.421347432,37.770904649],[-122.421353628,37.770969338],[-122.421360927,37.771045541],[-122.42109729,37.771062872],[-122.42103825,37.771067232],[-122.421037852,37.771063841],[-122.421031343,37.771008302],[-122.420995595,37.771010447],[-122.420970969,37.771011924],[-122.42039096,37.771046718],[-122.420353227,37.771048901],[-122.420329442,37.771050278],[-122.420248622,37.771054956],[-122.420246395,37.771030705]]]]}},"P","Unrestricted",5.639003837953577e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article2usedistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_211","PUBLIC","P",211,20560,0.0033157097495589774,"Public"],[{"type":"Feature","properties":{"zoning_sim":"NC-3","commercial_hours_of_operation":"No Limit","shape_area":0.00001286713145827607,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","districtname":"NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","zoning":"NC-3","codesection":712.1,"objectid":20377,"shape_length":0.03838125606469479,"gen":"Mixed Use","index":160},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.473448218,37.781046836],[-122.473353221,37.781051208],[-122.473348253,37.780982663],[-122.473343287,37.780914118],[-122.47298814,37.780930467],[-122.472982102,37.780930745],[-122.472866294,37.780936076],[-122.472843994,37.780630786],[-122.472826248,37.780378447],[-122.47295265,37.780372724],[-122.473310472,37.780356523],[-122.473305505,37.780287978],[-122.473300537,37.780219433],[-122.473297618,37.780179147],[-122.473480121,37.780170896],[-122.473484232,37.78022762],[-122.47365696,37.780219799],[-122.473824618,37.780212208],[-122.47383396,37.780211785],[-122.473953764,37.78020636],[-122.473947919,37.780131227],[-122.474060993,37.780126107],[-122.474349339,37.780113049],[-122.474418332,37.780109924],[-122.474419349,37.780113812],[-122.474556897,37.780107583],[-122.474643261,37.780103671],[-122.474942713,37.780090109],[-122.475054246,37.780085058],[-122.475054213,37.780084548],[-122.475184529,37.780079118],[-122.47549544,37.780065035],[-122.475581804,37.780061123],[-122.475599078,37.78006034],[-122.475754533,37.780053298],[-122.475840897,37.780049386],[-122.476013808,37.780041553],[-122.476136255,37.780036006],[-122.476151651,37.78024162],[-122.476270538,37.780236234],[-122.47655554,37.780223321],[-122.47655057,37.780154777],[-122.476545599,37.780086232],[-122.47654063,37.780017687],[-122.476626994,37.780013774],[-122.476670175,37.780011818],[-122.476799722,37.780005949],[-122.476804691,37.780074493],[-122.476809662,37.780143038],[-122.476814633,37.780211583],[-122.477101418,37.780198589],[-122.477104608,37.780198444],[-122.477222044,37.780193089],[-122.477207161,37.779987487],[-122.477328324,37.779981997],[-122.47743541,37.779977144],[-122.477608138,37.779969317],[-122.477694501,37.779965405],[-122.477737684,37.779963447],[-122.477780866,37.779961491],[-122.477910411,37.77995562],[-122.47815075,37.779944729],[-122.478273016,37.779939193],[-122.478273028,37.779939376],[-122.478380406,37.779934341],[-122.478392569,37.779933771],[-122.478516918,37.779927939],[-122.478613635,37.779923404],[-122.47871726,37.779918545],[-122.478807069,37.779914333],[-122.478910693,37.779909474],[-122.478915798,37.779979841],[-122.47892077,37.780048386],[-122.479007135,37.780044476],[-122.479236819,37.78003408],[-122.479243103,37.780033796],[-122.479360374,37.780028488],[-122.479350867,37.779899681],[-122.479350179,37.779890365],[-122.479468617,37.779884996],[-122.479649062,37.779876817],[-122.479738642,37.779872756],[-122.479741644,37.77987262],[-122.479834226,37.779868422],[-122.479879135,37.779866387],[-122.48011059,37.779855893],[-122.480297103,37.779847437],[-122.480418631,37.779841849],[-122.480418643,37.779842004],[-122.48053892,37.779836474],[-122.480631019,37.779832298],[-122.480724568,37.779828056],[-122.480818117,37.779823815],[-122.480907935,37.779819742],[-122.480953465,37.779817678],[-122.480997753,37.779815669],[-122.481091578,37.779811415],[-122.481365989,37.779798972],[-122.481485228,37.779793671],[-122.481485213,37.779793455],[-122.481599844,37.77978836],[-122.481607807,37.779788006],[-122.481697024,37.77978396],[-122.481789123,37.779779783],[-122.48188122,37.779775606],[-122.481973319,37.77977143],[-122.482019471,37.779769336],[-122.482065416,37.779767253],[-122.482070391,37.779835798],[-122.482243119,37.779827964],[-122.482443928,37.779818856],[-122.482453406,37.779818427],[-122.482564479,37.779813395],[-122.482569408,37.779881929],[-122.482690721,37.779876433],[-122.482978497,37.779863379],[-122.48297352,37.779794834],[-122.482968545,37.77972629],[-122.483054908,37.779722373],[-122.48309809,37.779720414],[-122.483141271,37.779718455],[-122.483227635,37.779714537],[-122.483313998,37.77971062],[-122.483400361,37.779706702],[-122.483512077,37.779701634],[-122.483630324,37.77969636],[-122.483630311,37.779696177],[-122.483753895,37.779690664],[-122.484038894,37.779677734],[-122.484125257,37.779673816],[-122.484168438,37.779671856],[-122.48421162,37.779669897],[-122.484297983,37.779665979],[-122.484384347,37.77966206],[-122.484470709,37.779658142],[-122.484581238,37.779653127],[-122.484700628,37.779647778],[-122.484700618,37.779647639],[-122.484823055,37.779642154],[-122.485007876,37.779633768],[-122.48517542,37.779626164],[-122.485259468,37.779622351],[-122.485343517,37.779618537],[-122.485427565,37.779614722],[-122.485427964,37.779620206],[-122.485654172,37.77960994],[-122.48577593,37.779604342],[-122.485776541,37.779612709],[-122.485896586,37.77960719],[-122.486041162,37.779600629],[-122.486317524,37.779588086],[-122.48631366,37.779534902],[-122.486312545,37.779519541],[-122.486311549,37.779505832],[-122.486415185,37.779501128],[-122.48651882,37.779496424],[-122.486521362,37.779531402],[-122.486523799,37.779564969],[-122.486722379,37.779555955],[-122.486734699,37.779555389],[-122.486845685,37.779550284],[-122.486850698,37.779618944],[-122.486969174,37.779613495],[-122.487124627,37.779606438],[-122.487119647,37.779537893],[-122.487292373,37.779530053],[-122.487291528,37.779518422],[-122.487287392,37.779461508],[-122.487373756,37.779457586],[-122.487374754,37.779471323],[-122.48737807,37.779516963],[-122.487379734,37.779539868],[-122.487792701,37.779521119],[-122.48780441,37.779520579],[-122.487914333,37.779515514],[-122.487945907,37.779947132],[-122.487972491,37.780315446],[-122.487978199,37.780394533],[-122.487856568,37.780400063],[-122.487745868,37.780405082],[-122.48757314,37.780412913],[-122.487486776,37.780416829],[-122.487443594,37.780418786],[-122.487314047,37.780424659],[-122.487227683,37.780428575],[-122.487035708,37.780437277],[-122.486911058,37.780443044],[-122.486910976,37.780441923],[-122.486793826,37.780447343],[-122.486589401,37.780457676],[-122.486588598,37.780457092],[-122.48658863,37.780457542],[-122.486319329,37.780469749],[-122.486110759,37.780479203],[-122.485958551,37.780486101],[-122.48583983,37.780491421],[-122.485839839,37.780491544],[-122.48571673,37.78049706],[-122.485602106,37.780502254],[-122.485515742,37.780506168],[-122.485429377,37.780510082],[-122.485343013,37.780513997],[-122.485305299,37.780515705],[-122.485256648,37.78051791],[-122.485170284,37.780521824],[-122.485083919,37.780525737],[-122.484997554,37.780529651],[-122.48489075,37.780534491],[-122.484765151,37.780540303],[-122.484765135,37.780540071],[-122.484648928,37.780545448],[-122.484535517,37.780550586],[-122.484449153,37.7805545],[-122.484362788,37.780558413],[-122.484276423,37.780562326],[-122.484233242,37.780564282],[-122.484190059,37.780566238],[-122.484103694,37.780570152],[-122.48381869,37.780583064],[-122.483694633,37.780588794],[-122.48366195,37.780143059],[-122.482591529,37.780189471],[-122.482618673,37.780554559],[-122.482500369,37.7805601],[-122.482500312,37.780560102],[-122.482499635,37.780560134],[-122.482180504,37.780574771],[-122.482186037,37.780642824],[-122.482083211,37.78064748],[-122.482084246,37.780661738],[-122.481997881,37.780665649],[-122.481773332,37.780675818],[-122.48167379,37.780680326],[-122.481550026,37.780686136],[-122.481549988,37.780685626],[-122.481482233,37.780688807],[-122.48143196,37.780691167],[-122.481329561,37.780695804],[-122.481260469,37.780698933],[-122.481191377,37.780702061],[-122.481018647,37.780709883],[-122.481017652,37.780696174],[-122.480931287,37.780700084],[-122.480844923,37.780703995],[-122.480843928,37.780690286],[-122.480602105,37.780701235],[-122.480590778,37.78070175],[-122.480481395,37.780706721],[-122.480483395,37.780734426],[-122.480361433,37.780739969],[-122.480133894,37.780750271],[-122.480047528,37.780754181],[-122.479943891,37.780758872],[-122.479874799,37.780762],[-122.479762483,37.780767085],[-122.479702069,37.78076982],[-122.479529338,37.780777638],[-122.479413842,37.780782866],[-122.479412767,37.780767252],[-122.479286365,37.780772736],[-122.479043445,37.780783879],[-122.479048417,37.780852424],[-122.478962055,37.780856386],[-122.478875694,37.780860346],[-122.47887818,37.780894619],[-122.47872273,37.780901748],[-122.478716265,37.780812641],[-122.478629904,37.780816601],[-122.47845718,37.780824523],[-122.478444687,37.780825096],[-122.478337164,37.780830027],[-122.478332196,37.780760957],[-122.478210361,37.780766571],[-122.477942299,37.780778922],[-122.477947271,37.780847467],[-122.477800803,37.780854215],[-122.477805775,37.78092276],[-122.477810746,37.780991305],[-122.477815718,37.78105985],[-122.477820689,37.781128395],[-122.477825661,37.78119694],[-122.477830633,37.781265485],[-122.477830672,37.781266019],[-122.477835603,37.78133403],[-122.477840575,37.781402574],[-122.477845546,37.781471119],[-122.477850502,37.781539428],[-122.477850518,37.781539664],[-122.477456364,37.781557824],[-122.477437466,37.781558694],[-122.47731858,37.781564171],[-122.477300794,37.78131001],[-122.477285038,37.781084849],[-122.477205517,37.781088512],[-122.477160899,37.781090567],[-122.476749841,37.781109502],[-122.476744871,37.781040958],[-122.476572151,37.781048913],[-122.476566186,37.780966659],[-122.476560221,37.780884406],[-122.476318412,37.780895543],[-122.476307087,37.780896051],[-122.476199437,37.780900877],[-122.47620141,37.780928594],[-122.476078453,37.780934105],[-122.475663947,37.780953195],[-122.475668916,37.781021741],[-122.475254386,37.781040831],[-122.475124436,37.781046815],[-122.475118897,37.780976544],[-122.475061335,37.780979403],[-122.475007233,37.780982089],[-122.474862139,37.780988651],[-122.474682498,37.780996775],[-122.474639691,37.780998712],[-122.474573173,37.780738481],[-122.474570253,37.780727057],[-122.474570181,37.780726776],[-122.474563774,37.780625966],[-122.474558701,37.780550867],[-122.474547539,37.780551341],[-122.47455298,37.780626398],[-122.474560269,37.780726942],[-122.474560289,37.780727224],[-122.474575929,37.780942996],[-122.474580041,37.780999711],[-122.474580163,37.781001404],[-122.474545616,37.781002966],[-122.474550585,37.781071511],[-122.474498766,37.781073854],[-122.474488829,37.780936765],[-122.47438519,37.780941451],[-122.474229732,37.780948481],[-122.474234699,37.781017026],[-122.474124165,37.781022025],[-122.474111594,37.781022549],[-122.474012358,37.781026689],[-122.473998352,37.780815187],[-122.473866857,37.780821241],[-122.473614672,37.780832851],[-122.47361964,37.780901397],[-122.473624607,37.780969941],[-122.473629575,37.781038486],[-122.473543214,37.781042462],[-122.473498493,37.781044521],[-122.473448218,37.781046836]]]]}},"NC-3","No Limit",0.00001286713145827607,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","NC-3",712.1,20377,0.03838125606469479,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000001089959840962952,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19562,"shape_length":0.0074689411444651905,"gen":"Mixed Use","index":161},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.39606024,37.760039192],[-122.396054161,37.75997573],[-122.396051592,37.759948903],[-122.396025011,37.759675081],[-122.396111242,37.759669875],[-122.39621588,37.759663749],[-122.396215831,37.759663225],[-122.39623746,37.759661958],[-122.396387183,37.759653192],[-122.396473414,37.759647978],[-122.396559645,37.759642764],[-122.396645877,37.75963755],[-122.396731118,37.759632397],[-122.396818339,37.759627122],[-122.396826579,37.759712008],[-122.39683615,37.759810584],[-122.397093648,37.759795013],[-122.397100002,37.759794627],[-122.397231508,37.75978664],[-122.397231411,37.759785638],[-122.397220643,37.75967388],[-122.39735876,37.759665492],[-122.397444995,37.759660305],[-122.397634708,37.759648892],[-122.397628138,37.759580431],[-122.397698086,37.759576224],[-122.39778432,37.759571036],[-122.397790869,37.759639496],[-122.39779742,37.759707958],[-122.397803969,37.75977642],[-122.398062672,37.759760855],[-122.398067297,37.759760576],[-122.398177361,37.75975394],[-122.398200521,37.759752543],[-122.398180538,37.759544765],[-122.39831873,37.759536388],[-122.398405344,37.759531149],[-122.398431418,37.759805002],[-122.39844009,37.759895371],[-122.398439785,37.759895389],[-122.39844589,37.759959005],[-122.398448457,37.759985756],[-122.398461558,37.760122679],[-122.398375326,37.760127894],[-122.398237425,37.760136254],[-122.398215564,37.75990895],[-122.397731859,37.759938203],[-122.397559395,37.759948633],[-122.397248925,37.759967407],[-122.397283905,37.760330453],[-122.397145829,37.760338838],[-122.396973364,37.76034925],[-122.396887132,37.760354456],[-122.396800899,37.760359661],[-122.396714666,37.760364867],[-122.396628433,37.760370073],[-122.3965422,37.760375278],[-122.396456114,37.760380474],[-122.396318415,37.76038873],[-122.396283883,37.760025691],[-122.39606024,37.760039192]]]]}},"NC-2","6:00AM-2:00AM",0.000001089959840962952,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19562,0.0074689411444651905,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.8422805219535044e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19707,"shape_length":0.0025977331439575716,"gen":"Mixed Use","index":162},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.454826717,37.721491407],[-122.454913152,37.721491169],[-122.454996492,37.72149094],[-122.455125335,37.721490556],[-122.455125342,37.721491883],[-122.455238513,37.721491547],[-122.45532495,37.72149129],[-122.455411386,37.721491033],[-122.455411378,37.721499311],[-122.455411119,37.721765818],[-122.45541104,37.721847839],[-122.455127029,37.72184861],[-122.455127938,37.72204065],[-122.455128721,37.722205955],[-122.455004283,37.722206273],[-122.454917847,37.722206494],[-122.454916664,37.722044156],[-122.454915847,37.721931861],[-122.454915245,37.721849184],[-122.45482788,37.72184942],[-122.454827528,37.721767302],[-122.454826724,37.721493757],[-122.454826717,37.721491407]]]]}},"NC-1","6:00AM-11:00PM",2.8422805219535044e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19707,0.0025977331439575716,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":6.651073444260722e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19566,"shape_length":0.003738489846997711,"gen":"Mixed Use","index":163},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.405783536,37.731574853],[-122.405808095,37.731634354],[-122.405810465,37.731640096],[-122.405837393,37.731705339],[-122.405864321,37.731770583],[-122.40589125,37.731835825],[-122.405941822,37.731967171],[-122.406043879,37.732214436],[-122.406076791,37.732294177],[-122.406070521,37.732296108],[-122.406107016,37.732371696],[-122.406172866,37.732508087],[-122.406199871,37.732564018],[-122.406293388,37.732757712],[-122.406330383,37.732834336],[-122.406295627,37.73284498],[-122.406268005,37.732853438],[-122.406062187,37.732916467],[-122.406047923,37.732920835],[-122.405909421,37.732963249],[-122.405850122,37.732860199],[-122.405751443,37.732688717],[-122.405652347,37.732516507],[-122.405607548,37.732438657],[-122.405561974,37.732333674],[-122.405415616,37.731996525],[-122.40528879,37.731704368],[-122.405387715,37.731678471],[-122.40540733,37.731673336],[-122.405633016,37.731614257],[-122.405783536,37.731574853]]]]}},"NC-2","6:00AM-2:00AM",6.651073444260722e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19566,0.003738489846997711,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-S","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000020910979227436776,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","districtname":"NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","zoning":"NC-S","codesection":713.1,"objectid":20441,"shape_length":0.0066293518880907384,"gen":"Mixed Use","index":164},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.425164078,37.710549319],[-122.425186161,37.710499745],[-122.425189864,37.710491431],[-122.425224696,37.710413232],[-122.425262061,37.710329348],[-122.425302175,37.710239292],[-122.425419168,37.709976641],[-122.425174752,37.709907926],[-122.425232413,37.709778475],[-122.425476416,37.709848117],[-122.4256487,37.709461334],[-122.426089918,37.709585375],[-122.427002004,37.709841786],[-122.427180379,37.709891931],[-122.427038309,37.7102109],[-122.427013042,37.710267626],[-122.427012014,37.710269933],[-122.42701311,37.710270242],[-122.42701584,37.710271009],[-122.427013169,37.710272499],[-122.427011575,37.710273389],[-122.426997323,37.71030097],[-122.426867146,37.710552898],[-122.427021586,37.710597211],[-122.427053038,37.710606235],[-122.427065801,37.710609897],[-122.4270539,37.710639479],[-122.427024571,37.710712377],[-122.427011017,37.710746068],[-122.426972877,37.710735096],[-122.426891615,37.71071172],[-122.426810354,37.710688345],[-122.426676396,37.710982256],[-122.426633905,37.711075483],[-122.426612186,37.711123136],[-122.426467779,37.711069187],[-122.426239085,37.710989409],[-122.425861446,37.710857673],[-122.425545766,37.710751142],[-122.425305206,37.710623244],[-122.425191738,37.710563807],[-122.425164078,37.710549319]]]]}},"NC-S","6:00AM-2:00AM",0.0000020910979227436776,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","NC-S",713.1,20441,0.0066293518880907384,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.3381734755769604e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19539,"shape_length":0.0025488343734158137,"gen":"Mixed Use","index":165},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.505386948,37.775236327],[-122.505366747,37.774959211],[-122.505453102,37.774955251],[-122.505458099,37.775023795],[-122.505463095,37.775092339],[-122.50554945,37.775088379],[-122.505635805,37.775084419],[-122.505746771,37.775079331],[-122.505753191,37.775079037],[-122.505865868,37.77507387],[-122.505865853,37.775073658],[-122.505919437,37.775071207],[-122.50598855,37.775068046],[-122.506262174,37.775055529],[-122.506272401,37.775195806],[-122.506280397,37.775305477],[-122.505884209,37.775323601],[-122.505394941,37.775345984],[-122.505387907,37.77524948],[-122.505386948,37.775236327]]]]}},"NC-1","6:00AM-11:00PM",2.3381734755769604e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19539,0.0025488343734158137,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.3270827259223927e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19706,"shape_length":0.0022984418700534035,"gen":"Mixed Use","index":166},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.461693444,37.722188855],[-122.461692692,37.722052443],[-122.461692026,37.721931523],[-122.46169193,37.721914216],[-122.461691477,37.721829736],[-122.461842117,37.721829226],[-122.461841682,37.721748243],[-122.461840863,37.721616572],[-122.461840833,37.721611787],[-122.461843603,37.721611785],[-122.462143364,37.721611534],[-122.462264373,37.721611058],[-122.462264896,37.721694985],[-122.462265487,37.721827794],[-122.462265906,37.721921965],[-122.462266466,37.722047632],[-122.462144733,37.722047974],[-122.462142145,37.722047981],[-122.461917415,37.722049758],[-122.461796408,37.722050716],[-122.461796786,37.722119375],[-122.461797165,37.722188034],[-122.461753947,37.722188376],[-122.461693444,37.722188855]]]]}},"NC-1","6:00AM-11:00PM",2.3270827259223927e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19706,0.0022984418700534035,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-3","commercial_hours_of_operation":"No Limit","shape_area":4.429257453025144e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","districtname":"NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","zoning":"NC-3","codesection":712.1,"objectid":19579,"shape_length":0.0033586677809662,"gen":"Mixed Use","index":167},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.413815474,37.75573423],[-122.413806985,37.755646172],[-122.413797906,37.75555032],[-122.413804506,37.755549924],[-122.414220429,37.755524914],[-122.414369923,37.755515841],[-122.414370729,37.755524213],[-122.41449294,37.755516796],[-122.414505763,37.755516018],[-122.414852902,37.755495141],[-122.414861286,37.755582772],[-122.414869658,37.755670446],[-122.414849977,37.755671631],[-122.414856166,37.755736438],[-122.414858341,37.755759219],[-122.414875205,37.755937229],[-122.414970058,37.755931525],[-122.414977323,37.756008205],[-122.414554798,37.756033615],[-122.414420556,37.756041762],[-122.414408322,37.755914689],[-122.41434741,37.755918386],[-122.414258216,37.755923799],[-122.414011889,37.755938611],[-122.413999668,37.755810856],[-122.413991252,37.755723549],[-122.413815474,37.75573423]]]]}},"NC-3","No Limit",4.429257453025144e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","NC-3",712.1,19579,0.0033586677809662,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-S","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":7.957016373790306e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","districtname":"NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","zoning":"NC-S","codesection":713.1,"objectid":20442,"shape_length":0.004275478096181937,"gen":"Mixed Use","index":168},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.423678278,37.708577929],[-122.423783732,37.708358054],[-122.423795153,37.708334239],[-122.423795419,37.708333686],[-122.423835864,37.708333574],[-122.423877624,37.708333459],[-122.424023223,37.708333057],[-122.424377257,37.708332078],[-122.42535241,37.708329377],[-122.425417053,37.708329198],[-122.425359743,37.708612506],[-122.425331838,37.708750453],[-122.425310551,37.708855678],[-122.42527378,37.709037451],[-122.423885495,37.708637612],[-122.423790256,37.708610181],[-122.423678278,37.708577929]]]]}},"NC-S","6:00AM-2:00AM",7.957016373790306e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","NC-S",713.1,20442,0.004275478096181937,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":7.672291549356216e-8,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19746,"shape_length":0.001211672167357053,"gen":"Mixed Use","index":169},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.427045475,37.747695852],[-122.427470049,37.747670779],[-122.427471457,37.747685817],[-122.427477824,37.747753785],[-122.427487094,37.74785052],[-122.427203341,37.747867281],[-122.427062863,37.747875839],[-122.427045475,37.747695852]]]]}},"NC-1","6:00AM-11:00PM",7.672291549356216e-8,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19746,0.001211672167357053,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-S","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000021003032148164924,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","districtname":"NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","zoning":"NC-S","codesection":713.1,"objectid":19811,"shape_length":0.006368650002563624,"gen":"Mixed Use","index":170},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.473425561,37.718099958],[-122.472916612,37.717547472],[-122.472628184,37.717234367],[-122.472572454,37.717173868],[-122.472543085,37.717122705],[-122.472564037,37.717120436],[-122.472585214,37.717118142],[-122.472971226,37.717034646],[-122.474234362,37.71689133],[-122.474241027,37.716935437],[-122.474241233,37.716936655],[-122.474258696,37.717039758],[-122.474323217,37.71742071],[-122.474338688,37.717512052],[-122.474368617,37.71768876],[-122.474397449,37.717853425],[-122.474427504,37.718025067],[-122.474444436,37.718121765],[-122.474455645,37.71818578],[-122.474487492,37.718367659],[-122.474492657,37.718397157],[-122.474500132,37.718439843],[-122.474507275,37.718480639],[-122.47454148,37.718680851],[-122.474500821,37.718704487],[-122.474496506,37.718706996],[-122.474446392,37.718736127],[-122.474163241,37.718900724],[-122.474018221,37.718743303],[-122.473519079,37.718201475],[-122.473425561,37.718099958]]]]}},"NC-S","6:00AM-2:00AM",0.0000021003032148164924,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","NC-S",713.1,19811,0.006368650002563624,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":6.967082000557673e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19783,"shape_length":0.004275197934043608,"gen":"Mixed Use","index":171},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.421911125,37.805031051],[-122.42197024,37.805023401],[-122.422039939,37.805014383],[-122.422284314,37.804983299],[-122.422503213,37.804955455],[-122.422588657,37.804944587],[-122.422691187,37.804931545],[-122.422731344,37.804926436],[-122.422793717,37.804918502],[-122.422879161,37.804907633],[-122.422959477,37.804897417],[-122.422973147,37.804895678],[-122.423058589,37.80488481],[-122.423101311,37.804879374],[-122.423144032,37.80487394],[-122.423157778,37.804941727],[-122.423171525,37.805009513],[-122.423187472,37.805088145],[-122.423486521,37.805050103],[-122.423514487,37.805046532],[-122.423603994,37.805035106],[-122.423620089,37.805114473],[-122.423633539,37.805180792],[-122.423655075,37.805286984],[-122.423521158,37.805304019],[-122.422981648,37.805372649],[-122.422694357,37.805409194],[-122.422140626,37.805479628],[-122.422006822,37.805496648],[-122.421911125,37.805031051]]]]}},"NC-1","6:00AM-11:00PM",6.967082000557673e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19783,0.004275197934043608,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":0.000002313613676229324,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19787,"shape_length":0.008392902712641743,"gen":"Mixed Use","index":172},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.462441444,37.785266125],[-122.462416302,37.784906862],[-122.463483168,37.784855819],[-122.46415243,37.784815752],[-122.464146441,37.784732974],[-122.464145267,37.784716741],[-122.464125431,37.784442559],[-122.464211793,37.784438559],[-122.464300602,37.784434446],[-122.464407082,37.784429515],[-122.464526309,37.784424391],[-122.46452643,37.784426161],[-122.464633317,37.78442121],[-122.464648186,37.784420522],[-122.465063799,37.784401273],[-122.465083482,37.784673289],[-122.46508973,37.784759631],[-122.465490638,37.784735625],[-122.465632312,37.784852532],[-122.465658326,37.785213164],[-122.465663268,37.785281668],[-122.465541897,37.785287183],[-122.465429615,37.785292265],[-122.465344108,37.785296135],[-122.465257737,37.785300045],[-122.465171367,37.785303954],[-122.465131968,37.785305736],[-122.465084996,37.785307863],[-122.464998627,37.785311772],[-122.464912256,37.785315681],[-122.464817248,37.78531998],[-122.464717389,37.7853245],[-122.464596474,37.785330011],[-122.464600639,37.785387595],[-122.464480419,37.785402723],[-122.464362975,37.785417503],[-122.464276909,37.785428334],[-122.464191465,37.785439086],[-122.464020579,37.785460591],[-122.464022956,37.785493466],[-122.463936587,37.785497374],[-122.463850216,37.785501282],[-122.463763845,37.78550519],[-122.463651563,37.78551027],[-122.463530837,37.785515732],[-122.463530835,37.785515702],[-122.463409447,37.785521224],[-122.463296821,37.785526321],[-122.46321045,37.785530229],[-122.463124079,37.785534136],[-122.463037708,37.785538044],[-122.462999212,37.785539786],[-122.462951338,37.785541952],[-122.462864967,37.785545859],[-122.462778596,37.785549766],[-122.462580812,37.785558714],[-122.462462296,37.785564075],[-122.462441444,37.785266125]]]]}},"NC-1","6:00AM-11:00PM",0.000002313613676229324,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19787,0.008392902712641743,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000010411301942814997,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19551,"shape_length":0.006641444244876734,"gen":"Mixed Use","index":173},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.445821681,37.78738498],[-122.446556498,37.787291811],[-122.446548916,37.787254347],[-122.44653251,37.787173275],[-122.446477533,37.786901609],[-122.446589062,37.7868874],[-122.446718501,37.786870909],[-122.446664322,37.786585755],[-122.446652307,37.786522514],[-122.446815559,37.786620621],[-122.446870885,37.786653904],[-122.447524774,37.787046855],[-122.447692667,37.787147747],[-122.447339295,37.787192556],[-122.446920636,37.787245641],[-122.44679278,37.787261852],[-122.446884935,37.787731614],[-122.446885326,37.787733601],[-122.446761223,37.787749391],[-122.446469393,37.787786522],[-122.446419533,37.787792866],[-122.44633411,37.787803734],[-122.446241852,37.787815473],[-122.446149596,37.787827211],[-122.446041679,37.78784094],[-122.446030244,37.787842395],[-122.445956856,37.787851733],[-122.445943138,37.787783943],[-122.445927996,37.78770912],[-122.44575715,37.787730856],[-122.445671728,37.787741724],[-122.445586305,37.787752592],[-122.445548218,37.787757437],[-122.445468549,37.787767573],[-122.44543543,37.787603149],[-122.445427458,37.787563573],[-122.445402198,37.787438165],[-122.445539397,37.78742077],[-122.44564803,37.787406997],[-122.445821681,37.78738498]]]]}},"NC-2","6:00AM-2:00AM",0.0000010411301942814997,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19551,0.006641444244876734,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":0.0000017693072831586692,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19671,"shape_length":0.008815326416315473,"gen":"Mixed Use","index":174},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.503444094,37.760217908],[-122.503452716,37.760217527],[-122.503642404,37.760209144],[-122.503762995,37.760203726],[-122.50377278,37.760341],[-122.503893825,37.760335562],[-122.504135863,37.760324865],[-122.50413104,37.760256313],[-122.504126216,37.760187761],[-122.504212563,37.760183945],[-122.504207741,37.760115393],[-122.504294088,37.760111576],[-122.504380436,37.76010776],[-122.50438526,37.760176311],[-122.504390083,37.760244863],[-122.504718469,37.760230348],[-122.504724409,37.760230085],[-122.504839355,37.760224986],[-122.504834612,37.760157591],[-122.504955497,37.760152229],[-122.505068075,37.760147252],[-122.505154424,37.760143434],[-122.505240771,37.760139617],[-122.505235868,37.760069946],[-122.505322215,37.760066129],[-122.505365063,37.760064235],[-122.505408563,37.760062312],[-122.50549491,37.760058494],[-122.505499814,37.760128165],[-122.505586161,37.760124348],[-122.505672509,37.76012053],[-122.505785107,37.760115551],[-122.50579397,37.760115157],[-122.505905992,37.760110187],[-122.505901091,37.760040556],[-122.506021976,37.760035192],[-122.506134611,37.760030212],[-122.506220959,37.760026394],[-122.506307307,37.760022576],[-122.506393654,37.760018758],[-122.506394364,37.760028854],[-122.506412956,37.760292965],[-122.506420651,37.760402649],[-122.506333972,37.760406482],[-122.506341667,37.760516165],[-122.506359929,37.760775586],[-122.50636097,37.760790372],[-122.506188273,37.760798008],[-122.506076019,37.760802971],[-122.505955133,37.760808334],[-122.505955131,37.760808297],[-122.50589348,37.760811033],[-122.505834244,37.76081366],[-122.505419771,37.760831984],[-122.50536729,37.760834305],[-122.505298212,37.760837358],[-122.505292809,37.76076058],[-122.505275538,37.760761344],[-122.50520646,37.760764398],[-122.505202987,37.76071504],[-122.505185716,37.760715804],[-122.505184172,37.760693868],[-122.504994206,37.760702265],[-122.50498874,37.760702508],[-122.504873319,37.760707628],[-122.504869305,37.760650585],[-122.504748418,37.760655947],[-122.50442029,37.760670385],[-122.504425114,37.760738936],[-122.504429938,37.760807488],[-122.504434762,37.76087604],[-122.504348412,37.760879839],[-122.504262062,37.760883638],[-122.504257239,37.760815086],[-122.504252415,37.760746534],[-122.503923759,37.760760993],[-122.503917799,37.760761257],[-122.503802872,37.760766354],[-122.503798043,37.760697717],[-122.503745292,37.760700056],[-122.503677156,37.760703078],[-122.503349028,37.760717511],[-122.503344183,37.760648665],[-122.503336493,37.760538981],[-122.503465963,37.760533259],[-122.503458273,37.760423575],[-122.503443804,37.76021792],[-122.503444094,37.760217908]]]]}},"NC-1","6:00AM-11:00PM",0.0000017693072831586692,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19671,0.008815326416315473,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"MUG","commercial_hours_of_operation":"Unrestricted","shape_area":0.000008152951397099856,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article8mixedusedistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_840","districtname":"MIXED USE-GENERAL","zoning":"MUG","codesection":840,"objectid":20563,"shape_length":0.013871338182446704,"gen":"Mixed Use","index":175},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.372304356,37.733432903],[-122.372034504,37.733278863],[-122.3720304,37.733280291],[-122.372026672,37.733281524],[-122.372022917,37.733282705],[-122.372019138,37.733283834],[-122.372015334,37.733284911],[-122.372011506,37.733285933],[-122.372007658,37.733286904],[-122.372003787,37.73328782],[-122.371999898,37.733288683],[-122.371995989,37.733289493],[-122.371992065,37.733290247],[-122.371988124,37.733290947],[-122.371984167,37.733291592],[-122.371980198,37.733292183],[-122.371976216,37.733292719],[-122.371972224,37.733293198],[-122.371968221,37.733293623],[-122.371964209,37.733293992],[-122.37196019,37.733294306],[-122.371956165,37.733294563],[-122.371952135,37.733294765],[-122.3719481,37.733294911],[-122.371944064,37.733295001],[-122.371940025,37.733295035],[-122.371935987,37.733295013],[-122.37193195,37.733294935],[-122.371927915,37.733294801],[-122.371923883,37.733294612],[-122.371919858,37.733294366],[-122.371915836,37.733294064],[-122.371911823,37.733293707],[-122.371907818,37.733293295],[-122.371903823,37.733292827],[-122.371899839,37.733292304],[-122.371720827,37.733188946],[-122.371718575,37.733185272],[-122.371716821,37.733182264],[-122.371715134,37.733179233],[-122.371713513,37.733176178],[-122.371711961,37.733173102],[-122.371710476,37.733170003],[-122.371709058,37.733166886],[-122.371707711,37.733163749],[-122.371706432,37.733160594],[-122.371705222,37.733157422],[-122.371704083,37.733154233],[-122.371703012,37.73315103],[-122.371702014,37.733147811],[-122.371701087,37.733144579],[-122.371700229,37.733141336],[-122.371699443,37.73313808],[-122.37169873,37.733134815],[-122.371698089,37.733131539],[-122.371697519,37.733128256],[-122.371697022,37.733124965],[-122.371696596,37.733121667],[-122.371696243,37.733118365],[-122.371695963,37.733115057],[-122.371695756,37.733111748],[-122.371695621,37.733108434],[-122.371695561,37.73310512],[-122.370791798,37.732585626],[-122.370706381,37.732480222],[-122.370608484,37.732427028],[-122.369994843,37.73227289],[-122.36989086,37.732213685],[-122.371444409,37.730492509],[-122.371727433,37.73018057],[-122.371830536,37.730239115],[-122.371900859,37.730279047],[-122.371971182,37.730318978],[-122.372041504,37.73035891],[-122.372111828,37.730398841],[-122.372182151,37.730438772],[-122.372252475,37.730478704],[-122.372322798,37.730518634],[-122.372393121,37.730558566],[-122.372463445,37.730598496],[-122.372533769,37.730638427],[-122.372674417,37.730718289],[-122.372815064,37.730798151],[-122.372885388,37.730838081],[-122.372955711,37.730878012],[-122.373026036,37.730917943],[-122.37309636,37.730957873],[-122.373307333,37.731077666],[-122.373518307,37.731197457],[-122.373698339,37.731299678],[-122.373909315,37.731419468],[-122.373979639,37.731459399],[-122.374049964,37.731499329],[-122.37412029,37.731539259],[-122.374190614,37.731579189],[-122.374331266,37.731659049],[-122.374542243,37.731778838],[-122.374753221,37.731898627],[-122.374823548,37.731938556],[-122.374964199,37.732018415],[-122.375036399,37.732059409],[-122.3751086,37.732100402],[-122.3751808,37.732141395],[-122.375386159,37.732257992],[-122.375476177,37.7323091],[-122.375194136,37.732621602],[-122.374238104,37.732078791],[-122.37415752,37.732168076],[-122.37405679,37.732279683],[-122.373603409,37.73252866],[-122.373361561,37.73266142],[-122.373357408,37.732659063],[-122.373245137,37.732722978],[-122.373029667,37.732992343],[-122.372943945,37.733099506],[-122.372580232,37.733163074],[-122.372632392,37.73319269],[-122.372304356,37.733432903]]]]}},"MUG","Unrestricted",0.000008152951397099856,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article8mixedusedistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_840","MIXED USE-GENERAL","MUG",840,20563,0.013871338182446704,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCD","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000142600364290288,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_730.1","districtname":"INNER SUNSET NEIGHBORHOOD COMMERCIAL","zoning":"NCD-INNER SUNSET","codesection":730.1,"objectid":20487,"shape_length":0.04905600871092205,"gen":"Mixed Use","index":176},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.463116641,37.764387616],[-122.462995745,37.764392936],[-122.462667279,37.764407505],[-122.462672065,37.764476059],[-122.46267685,37.764544612],[-122.462681636,37.764613165],[-122.462595284,37.764616996],[-122.462508932,37.764620825],[-122.462504146,37.764552272],[-122.462499361,37.764483719],[-122.462494575,37.764415166],[-122.462166109,37.764429734],[-122.462161869,37.764429921],[-122.462045214,37.764435052],[-122.462030541,37.764224837],[-122.462018286,37.76404927],[-122.462139181,37.764043952],[-122.462467986,37.764029526],[-122.462463201,37.763960973],[-122.462458416,37.763892419],[-122.46245363,37.763823866],[-122.462539985,37.763820077],[-122.462626338,37.763816288],[-122.462631124,37.763884842],[-122.462635909,37.763953395],[-122.462640695,37.764021949],[-122.462968841,37.76400755],[-122.462971811,37.76400742],[-122.463089736,37.764002231],[-122.463089738,37.76400226],[-122.463210632,37.763996941],[-122.463538013,37.763982574],[-122.463533226,37.763914021],[-122.46352844,37.763845467],[-122.463523655,37.763776914],[-122.463610008,37.763773124],[-122.463605222,37.763704571],[-122.463608192,37.76370444],[-122.464019719,37.763686381],[-122.464140613,37.76368106],[-122.464135829,37.763612535],[-122.464203248,37.763609568],[-122.464256723,37.763607215],[-122.464673301,37.763588931],[-122.464678089,37.763657484],[-122.464738536,37.763654831],[-122.464743324,37.763723384],[-122.464916031,37.763715802],[-122.465002384,37.763712012],[-122.465097374,37.763707843],[-122.465109257,37.76370732],[-122.465218268,37.763702522],[-122.465208694,37.763565443],[-122.465329589,37.763560122],[-122.46573902,37.763542148],[-122.465734232,37.763473594],[-122.465729443,37.763405041],[-122.465724655,37.763336488],[-122.465719866,37.763267935],[-122.465717953,37.763240534],[-122.465715078,37.763199381],[-122.46571029,37.763130828],[-122.465705501,37.763062274],[-122.465700713,37.762993721],[-122.465695925,37.762925168],[-122.465691136,37.762856615],[-122.465686348,37.762788062],[-122.46568156,37.762719508],[-122.465676772,37.762650955],[-122.465671983,37.762582402],[-122.465585631,37.762586193],[-122.465580843,37.762517639],[-122.465576055,37.762449086],[-122.465566481,37.762312002],[-122.465565534,37.7622984],[-122.465558846,37.762202317],[-122.465114853,37.762221793],[-122.465127284,37.762399777],[-122.465062846,37.762402614],[-122.465006392,37.762405099],[-122.464709336,37.762418068],[-122.464704569,37.76234981],[-122.464696935,37.762240124],[-122.464794971,37.762235824],[-122.464788532,37.762143305],[-122.464787337,37.762126137],[-122.464768188,37.761851924],[-122.464962721,37.761843391],[-122.465087277,37.761837753],[-122.465087301,37.76183809],[-122.465204506,37.761832785],[-122.465399385,37.761824236],[-122.465513044,37.761819251],[-122.465575182,37.761816525],[-122.465618358,37.76181463],[-122.465747885,37.761808948],[-122.465834237,37.76180516],[-122.466032846,37.761796446],[-122.466153737,37.761791124],[-122.466153741,37.761791161],[-122.466274631,37.761785839],[-122.46647506,37.761777044],[-122.466561412,37.761773256],[-122.466682305,37.761767952],[-122.46669094,37.761767572],[-122.466820467,37.761761889],[-122.466906819,37.7617581],[-122.46699317,37.761754311],[-122.467102922,37.761749495],[-122.467226055,37.761744021],[-122.467253141,37.762127978],[-122.467267503,37.762333544],[-122.46721375,37.762335911],[-122.467146612,37.762338867],[-122.466799382,37.762354115],[-122.466804172,37.762422668],[-122.466736911,37.762425622],[-122.466741701,37.762494175],[-122.466744573,37.762535307],[-122.46674649,37.762562728],[-122.466749362,37.762603861],[-122.466751279,37.762631281],[-122.466754152,37.762672413],[-122.466756069,37.762699835],[-122.466758941,37.762740967],[-122.466760857,37.762768388],[-122.46676373,37.76280952],[-122.466765646,37.762836942],[-122.46676852,37.762878073],[-122.466770435,37.762905495],[-122.466773309,37.762946627],[-122.466778098,37.76301518],[-122.466780014,37.763042601],[-122.466785761,37.763124865],[-122.466790234,37.763188888],[-122.46679055,37.763193418],[-122.466792466,37.763220839],[-122.46679534,37.763261971],[-122.466797255,37.763289392],[-122.466802045,37.763357946],[-122.466804918,37.763399077],[-122.466806834,37.763426499],[-122.466809708,37.763467631],[-122.466811624,37.763495052],[-122.466814497,37.763536184],[-122.466816413,37.763563606],[-122.466819287,37.763604738],[-122.46690564,37.763600945],[-122.466910429,37.763669499],[-122.466915218,37.763738052],[-122.466920008,37.763806606],[-122.467248152,37.763792195],[-122.467252311,37.763792012],[-122.467369046,37.763786872],[-122.467356594,37.763608662],[-122.467477488,37.763603338],[-122.467583394,37.763598687],[-122.467583202,37.763595945],[-122.467673009,37.763592],[-122.467673201,37.763594743],[-122.467759555,37.76359095],[-122.467889085,37.763585261],[-122.468018615,37.763579572],[-122.468104969,37.763575779],[-122.468191322,37.763571986],[-122.468303581,37.763567056],[-122.468424475,37.763561731],[-122.468424478,37.76356176],[-122.468545371,37.763556435],[-122.468744042,37.763547707],[-122.468830395,37.763543914],[-122.468916749,37.763540121],[-122.468959926,37.763538224],[-122.469003102,37.763536327],[-122.469089455,37.763532533],[-122.469175808,37.76352874],[-122.469262162,37.763524946],[-122.469374421,37.763520014],[-122.469495315,37.763514689],[-122.469509692,37.763720377],[-122.469630586,37.763715051],[-122.469917889,37.763702428],[-122.469913096,37.763633875],[-122.469908305,37.763565321],[-122.469903513,37.763496769],[-122.470033042,37.763491076],[-122.470076219,37.763489179],[-122.470162572,37.763485386],[-122.470248925,37.763481591],[-122.470253718,37.763550144],[-122.470258511,37.763618697],[-122.470263303,37.76368725],[-122.470461915,37.763678522],[-122.470464886,37.763678391],[-122.470582809,37.763673195],[-122.470595086,37.76384879],[-122.471667795,37.763801647],[-122.471649542,37.763540617],[-122.471705822,37.763538136],[-122.471770435,37.763535289],[-122.472115163,37.763520136],[-122.47211037,37.763451582],[-122.472105575,37.76338303],[-122.472200563,37.763378854],[-122.472201746,37.763395765],[-122.472296734,37.76339159],[-122.472301529,37.763460143],[-122.472306323,37.763528696],[-122.472479029,37.763521103],[-122.472651736,37.763513511],[-122.472657677,37.763513249],[-122.472772629,37.763508182],[-122.472763041,37.763371105],[-122.472883934,37.763365776],[-122.472978922,37.763361599],[-122.473065275,37.763357803],[-122.473151628,37.763354007],[-122.473237981,37.76335021],[-122.47330243,37.763347377],[-122.47332513,37.763346379],[-122.473410687,37.763342616],[-122.473497039,37.763338819],[-122.473583393,37.763335022],[-122.473584722,37.763354044],[-122.473585086,37.763359244],[-122.473767224,37.763351236],[-122.473778057,37.763350758],[-122.473888117,37.763345905],[-122.473886239,37.763319059],[-122.474007132,37.763313729],[-122.474119392,37.76330882],[-122.474205747,37.763305043],[-122.474292101,37.763301265],[-122.474378455,37.763297489],[-122.474392921,37.763296856],[-122.474421633,37.7632956],[-122.474464809,37.763293712],[-122.474551164,37.763289934],[-122.474552189,37.763304599],[-122.474552771,37.76331291],[-122.474639123,37.763309112],[-122.474839055,37.763300319],[-122.474850051,37.763299833],[-122.474959948,37.763294987],[-122.474958518,37.763274565],[-122.475079411,37.763269234],[-122.475190077,37.763264366],[-122.475276429,37.763260569],[-122.47536415,37.76325671],[-122.475450502,37.763252912],[-122.475492311,37.763251073],[-122.475536855,37.763249113],[-122.475623207,37.763245315],[-122.475709561,37.763241517],[-122.475795913,37.763237718],[-122.475906803,37.76323284],[-122.476027696,37.763227507],[-122.476054379,37.763608761],[-122.477174111,37.763559498],[-122.477201586,37.763945894],[-122.477141081,37.763948606],[-122.477031595,37.763953512],[-122.476617099,37.763971749],[-122.476599828,37.763972508],[-122.476427121,37.763980107],[-122.476426162,37.763966396],[-122.476313902,37.763971335],[-122.476201368,37.763976285],[-122.476190079,37.763976783],[-122.476080475,37.763981618],[-122.476069438,37.763823918],[-122.475948544,37.76382925],[-122.475789654,37.76383624],[-122.475603131,37.763844444],[-122.475610327,37.763947273],[-122.475615125,37.764015826],[-122.475546041,37.764018865],[-122.475478552,37.764021834],[-122.475473754,37.763953281],[-122.475468957,37.763884728],[-122.475123543,37.76389992],[-122.475117602,37.763900185],[-122.475002812,37.763905293],[-122.475003771,37.763918878],[-122.474935655,37.763921909],[-122.474882713,37.763924265],[-122.474683754,37.763933016],[-122.474692388,37.764056411],[-122.474606035,37.764060209],[-122.474519681,37.764064006],[-122.47447685,37.764065889],[-122.474433327,37.764067804],[-122.474346974,37.764071601],[-122.47426062,37.764075398],[-122.474255824,37.764006845],[-122.474248342,37.763899903],[-122.474189622,37.763902485],[-122.474188662,37.763888775],[-122.474047795,37.763894969],[-122.474044111,37.763895131],[-122.473926902,37.763900299],[-122.473913094,37.763702937],[-122.473446808,37.76372344],[-122.473454645,37.763835783],[-122.473467416,37.764018338],[-122.473468073,37.764027731],[-122.473472868,37.764096284],[-122.473377429,37.764100481],[-122.473383183,37.764182744],[-122.473296829,37.764186541],[-122.473291075,37.764104277],[-122.473161199,37.764109987],[-122.473074845,37.764113784],[-122.472936679,37.764119859],[-122.47292539,37.764120359],[-122.472815966,37.764125216],[-122.472813641,37.764092211],[-122.472692587,37.764097583],[-122.472534521,37.764104532],[-122.472356778,37.764112345],[-122.472360038,37.764158962],[-122.472255097,37.764163574],[-122.472161138,37.764167704],[-122.471815722,37.764182888],[-122.471694827,37.764188216],[-122.471733176,37.764736611],[-122.471612281,37.764741939],[-122.471197779,37.764760156],[-122.470781352,37.764778457],[-122.470660455,37.764783784],[-122.470622111,37.764235331],[-122.470546913,37.764238645],[-122.470501216,37.764240658],[-122.470414862,37.764244453],[-122.470328508,37.764248247],[-122.470242153,37.764252041],[-122.4701558,37.764255836],[-122.470086716,37.764258872],[-122.470069445,37.76425963],[-122.469983092,37.764263425],[-122.469978299,37.764194872],[-122.469973507,37.764126319],[-122.469968715,37.764057766],[-122.469870557,37.764062078],[-122.469655504,37.764071526],[-122.469652534,37.764071657],[-122.46953461,37.764076852],[-122.469534608,37.764076824],[-122.469413713,37.76408215],[-122.469258277,37.764088978],[-122.469272652,37.764294638],[-122.469186238,37.764298434],[-122.469099884,37.764302228],[-122.469013588,37.764306019],[-122.468927176,37.764309815],[-122.46859903,37.76432423],[-122.468478135,37.764329555],[-122.468478133,37.764329526],[-122.468357238,37.764334851],[-122.468158623,37.764343575],[-122.468072269,37.764347367],[-122.467985914,37.76435116],[-122.467942737,37.764353056],[-122.46789956,37.764354953],[-122.467813205,37.764358746],[-122.46772685,37.764362539],[-122.467640497,37.764366331],[-122.467531137,37.764371135],[-122.467410242,37.764376458],[-122.46741045,37.764379448],[-122.467289555,37.764384771],[-122.467175474,37.764389805],[-122.467089122,37.764393616],[-122.467002769,37.764397425],[-122.46687506,37.764403061],[-122.466879849,37.764471614],[-122.466884638,37.764540167],[-122.466889429,37.76460872],[-122.466894217,37.764677273],[-122.466899007,37.764745826],[-122.466903797,37.764814379],[-122.466908586,37.764882933],[-122.466913375,37.764951486],[-122.466918165,37.76502004],[-122.466922954,37.765088592],[-122.466927744,37.765157146],[-122.466932534,37.765225699],[-122.466937323,37.765294252],[-122.466941625,37.765355826],[-122.466942113,37.765362805],[-122.466946903,37.765431358],[-122.466951692,37.765499912],[-122.466733985,37.765509516],[-122.466744376,37.765658248],[-122.466753143,37.765783729],[-122.466753523,37.765789172],[-122.466758746,37.765863922],[-122.466762002,37.765910538],[-122.46644249,37.765924662],[-122.465777481,37.765952913],[-122.465774226,37.765906297],[-122.465769233,37.765834826],[-122.465768697,37.765827157],[-122.465758047,37.765674701],[-122.465749543,37.765552944],[-122.465835898,37.765549134],[-122.465879075,37.76554723],[-122.465873958,37.765473978],[-122.46586917,37.765405425],[-122.465866958,37.765373755],[-122.465864381,37.765336872],[-122.465859593,37.765268319],[-122.465854804,37.765199765],[-122.465850015,37.765131212],[-122.465845227,37.765062659],[-122.465840438,37.764994106],[-122.465835745,37.764926924],[-122.465833255,37.764891276],[-122.465830957,37.764858371],[-122.465828467,37.764822723],[-122.465826169,37.764789817],[-122.46582138,37.764721264],[-122.46581889,37.764685616],[-122.465802226,37.764447051],[-122.465798772,37.764447202],[-122.465715871,37.764450842],[-122.465713382,37.764415194],[-122.465709928,37.764415345],[-122.465390301,37.764429378],[-122.465379962,37.764429833],[-122.465269405,37.764434699],[-122.465262317,37.764333212],[-122.465141422,37.764338533],[-122.464813275,37.764352937],[-122.464818061,37.764421491],[-122.46482285,37.764490044],[-122.464736495,37.764493834],[-122.46465014,37.764497625],[-122.464645353,37.764429072],[-122.464640566,37.764360518],[-122.464630203,37.764360973],[-122.464492035,37.764367038],[-122.464310338,37.764375012],[-122.464304396,37.764375273],[-122.464189442,37.764380332],[-122.464186636,37.764340147],[-122.464065741,37.764345468],[-122.463737987,37.764360009],[-122.463742773,37.764428562],[-122.46374756,37.764497116],[-122.463752346,37.764565669],[-122.463665994,37.7645695],[-122.463579642,37.764573331],[-122.463574857,37.764504777],[-122.463570071,37.764436224],[-122.463565284,37.76436767],[-122.46323753,37.76438221],[-122.463233311,37.764382395],[-122.463116634,37.764387529],[-122.463116641,37.764387616]]]]}},"NCD","6:00AM-2:00AM",0.0000142600364290288,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_730.1","INNER SUNSET NEIGHBORHOOD COMMERCIAL","NCD-INNER SUNSET",730.1,20487,0.04905600871092205,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.628232215944769e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19743,"shape_length":0.0026164339953397586,"gen":"Mixed Use","index":177},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.427696987,37.750228042],[-122.427692273,37.750228326],[-122.427437051,37.750243704],[-122.427292476,37.750252511],[-122.427292855,37.750256433],[-122.427152909,37.750264957],[-122.426920913,37.750278935],[-122.426911487,37.750279503],[-122.426910483,37.750268921],[-122.426904694,37.750207916],[-122.426896355,37.750119684],[-122.427048336,37.750110628],[-122.427046292,37.750088999],[-122.427040098,37.750023468],[-122.427023445,37.74984797],[-122.427066628,37.749845364],[-122.427067007,37.749849356],[-122.427113207,37.749846567],[-122.427125015,37.749845848],[-122.427252437,37.749838087],[-122.427262406,37.749941268],[-122.427390734,37.749933451],[-122.427407513,37.749932429],[-122.427763882,37.749910913],[-122.427770444,37.749979375],[-122.427778737,37.750067101],[-122.427682231,37.750072852],[-122.427690513,37.750160474],[-122.427696987,37.750228042]]]]}},"NC-1","6:00AM-11:00PM",2.628232215944769e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19743,0.0026164339953397586,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-3","commercial_hours_of_operation":"No Limit","shape_area":3.658764363023566e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","districtname":"NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","zoning":"NC-3","codesection":712.1,"objectid":19578,"shape_length":0.0029190159780889896,"gen":"Mixed Use","index":178},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.416501295,37.760848788],[-122.416491259,37.760743913],[-122.416466856,37.760488909],[-122.416458462,37.760401279],[-122.416538662,37.760396437],[-122.417025815,37.760367022],[-122.417419642,37.760343241],[-122.417426525,37.760342825],[-122.417432439,37.76040455],[-122.417434921,37.760430455],[-122.417448025,37.760567378],[-122.417189644,37.76058298],[-122.417047296,37.760591564],[-122.417072449,37.760854479],[-122.417001799,37.760858739],[-122.416930235,37.760863055],[-122.416576683,37.760884402],[-122.416574104,37.760884557],[-122.416570282,37.760844622],[-122.416501295,37.760848788]]]]}},"NC-3","No Limit",3.658764363023566e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","NC-3",712.1,19578,0.0029190159780889896,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":1.638345502855037e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19674,"shape_length":0.002199495351487796,"gen":"Mixed Use","index":179},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.416523379,37.76023681],[-122.416528403,37.760236506],[-122.416868308,37.760215983],[-122.417010545,37.760207407],[-122.417005134,37.760150845],[-122.417066938,37.760147119],[-122.417147464,37.760142263],[-122.417398946,37.760127077],[-122.417411247,37.760255611],[-122.417419642,37.760343241],[-122.417025815,37.760367022],[-122.416538662,37.760396437],[-122.416530268,37.760308806],[-122.416523379,37.76023681]]]]}},"NC-1","6:00AM-11:00PM",1.638345502855037e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19674,0.002199495351487796,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":1.6059606683819815e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19753,"shape_length":0.0016911076783117684,"gen":"Mixed Use","index":180},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.435616265,37.781009345],[-122.435677134,37.781296301],[-122.435650773,37.781299368],[-122.435553579,37.781310677],[-122.435123869,37.781360674],[-122.435085806,37.781172584],[-122.435069953,37.781094241],[-122.435066944,37.781079373],[-122.435479327,37.781026802],[-122.435616265,37.781009345]]]]}},"NC-1","6:00AM-11:00PM",1.6059606683819815e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19753,0.0016911076783117684,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.6018568434547304e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19788,"shape_length":0.002512847328318493,"gen":"Mixed Use","index":181},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.481766373,37.783675401],[-122.481764482,37.78364851],[-122.481873118,37.783643701],[-122.481888831,37.783643005],[-122.482013357,37.783637264],[-122.482027476,37.783831779],[-122.482032973,37.783907514],[-122.482040855,37.784016905],[-122.482032343,37.784017292],[-122.482038849,37.784107591],[-122.482040281,37.784127461],[-122.482053946,37.784315808],[-122.481933954,37.784321255],[-122.481813381,37.784326903],[-122.481819675,37.784411546],[-122.481761136,37.784414288],[-122.481698291,37.784417231],[-122.481577376,37.784422722],[-122.481572193,37.78435132],[-122.481557745,37.784152275],[-122.481549599,37.784039201],[-122.481791172,37.784028237],[-122.481766373,37.783675401]]]]}},"NC-1","6:00AM-11:00PM",2.6018568434547304e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19788,0.002512847328318493,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-3","commercial_hours_of_operation":"No Limit","shape_area":2.7516256907914865e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","districtname":"NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","zoning":"NC-3","codesection":712.1,"objectid":19591,"shape_length":0.0021116798658215455,"gen":"Mixed Use","index":182},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.421319801,37.779961687],[-122.421764511,37.779906013],[-122.421891571,37.779890105],[-122.421992561,37.780354983],[-122.421915935,37.780364743],[-122.42186678,37.780371004],[-122.421842575,37.780374087],[-122.421413892,37.780428684],[-122.421404298,37.78038123],[-122.42133851,37.780055833],[-122.421320232,37.779963857],[-122.421319801,37.779961687]]]]}},"NC-3","No Limit",2.7516256907914865e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","NC-3",712.1,19591,0.0021116798658215455,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":6.950553333162127e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19721,"shape_length":0.0037145215221748543,"gen":"Mixed Use","index":183},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.472572454,37.717173868],[-122.472628184,37.717234367],[-122.472916612,37.717547472],[-122.473425561,37.718099958],[-122.47325129,37.718205961],[-122.472974804,37.718374137],[-122.47293913,37.718395836],[-122.472725348,37.718525871],[-122.472722541,37.718527579],[-122.472602122,37.718600825],[-122.472469927,37.71848642],[-122.472503128,37.717915085],[-122.472572454,37.717173868]]]]}},"NC-1","6:00AM-11:00PM",6.950553333162127e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19721,0.0037145215221748543,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-S","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000035095476054350973,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","districtname":"NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","zoning":"NC-S","codesection":713.1,"objectid":20450,"shape_length":0.008303183105759235,"gen":"Mixed Use","index":184},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.466261856,37.710681905],[-122.46624389,37.710663068],[-122.466075663,37.710486684],[-122.466035257,37.710444318],[-122.466074246,37.710433103],[-122.466085057,37.710429993],[-122.466079567,37.710424276],[-122.466073856,37.710418328],[-122.466085368,37.710414899],[-122.466096869,37.71041145],[-122.466108362,37.710407979],[-122.466119844,37.710404489],[-122.466131317,37.710400978],[-122.46614278,37.710397447],[-122.466154232,37.710393895],[-122.466154706,37.710393746],[-122.466162776,37.710391227],[-122.466163073,37.710391136],[-122.466163329,37.710391055],[-122.466165674,37.710390322],[-122.466177107,37.710386729],[-122.466188529,37.710383117],[-122.466199941,37.710379483],[-122.466211342,37.710375829],[-122.466222733,37.710372154],[-122.466234115,37.71036846],[-122.466245486,37.710364746],[-122.466251327,37.710362825],[-122.466251677,37.710362711],[-122.466252019,37.710362597],[-122.466256846,37.710361011],[-122.466268195,37.710357255],[-122.466279533,37.71035348],[-122.466290861,37.710349684],[-122.466302179,37.710345868],[-122.466313485,37.710342032],[-122.466324781,37.710338176],[-122.466336064,37.7103343],[-122.466339376,37.710333155],[-122.466339645,37.710333063],[-122.466339939,37.710332961],[-122.466347338,37.710330403],[-122.466358602,37.710326486],[-122.466369853,37.710322549],[-122.466381093,37.710318593],[-122.466392322,37.710314616],[-122.46640354,37.710310619],[-122.466414746,37.710306601],[-122.466425939,37.710302562],[-122.46642695,37.710302201],[-122.466427081,37.710302152],[-122.466437125,37.710298508],[-122.466448297,37.710294431],[-122.466459458,37.710290335],[-122.466470607,37.710286218],[-122.466481744,37.710282081],[-122.46649287,37.710277926],[-122.466503984,37.710273749],[-122.466513362,37.710270205],[-122.466513561,37.71027013],[-122.466515082,37.710269548],[-122.466526176,37.710265337],[-122.466537254,37.710261102],[-122.46654832,37.710256846],[-122.466559374,37.710252571],[-122.466570416,37.710248276],[-122.466581447,37.710243962],[-122.466592464,37.710239628],[-122.46659912,37.710236995],[-122.466599454,37.710236863],[-122.466599766,37.71023674],[-122.466603469,37.710235274],[-122.466614462,37.710230901],[-122.466625443,37.710226508],[-122.466636411,37.710222095],[-122.466647367,37.710217663],[-122.46665831,37.710213211],[-122.46666924,37.710208741],[-122.466680159,37.71020425],[-122.466684291,37.71020254],[-122.466684603,37.710202413],[-122.466684933,37.710202275],[-122.466691064,37.71019974],[-122.466701956,37.71019521],[-122.466712836,37.710190661],[-122.466723701,37.710186093],[-122.466734556,37.710181505],[-122.466745397,37.710176898],[-122.466756224,37.710172272],[-122.466767039,37.710167625],[-122.466768829,37.710166852],[-122.466768985,37.710166785],[-122.466769167,37.710166706],[-122.46677784,37.710162961],[-122.466788628,37.710158276],[-122.466799403,37.710153573],[-122.466810165,37.71014885],[-122.466820913,37.710144108],[-122.466831647,37.710139347],[-122.466842368,37.710134566],[-122.466852486,37.710130031],[-122.466852569,37.710129994],[-122.466853074,37.710129764],[-122.466863771,37.710124949],[-122.46687445,37.710120111],[-122.466885118,37.710115255],[-122.466895771,37.71011038],[-122.46690641,37.710105485],[-122.466917035,37.710100571],[-122.466927647,37.710095639],[-122.466938244,37.710090687],[-122.466948828,37.710085717],[-122.466959397,37.710080728],[-122.466969953,37.71007572],[-122.46698173,37.710069946],[-122.466993493,37.710064153],[-122.467005243,37.710058341],[-122.467016977,37.71005251],[-122.467028696,37.710046661],[-122.467040401,37.710040794],[-122.467052092,37.710034908],[-122.467063768,37.710029004],[-122.467072924,37.710024354],[-122.467073105,37.710024263],[-122.467073261,37.710024183],[-122.467075429,37.710023082],[-122.467087074,37.710017141],[-122.467098706,37.710011182],[-122.467110323,37.710005204],[-122.467121924,37.709999209],[-122.467133511,37.709993195],[-122.467145082,37.709987162],[-122.467156638,37.709981112],[-122.467168179,37.709975044],[-122.467174803,37.709971545],[-122.467175112,37.709971383],[-122.467175406,37.709971227],[-122.467179705,37.709968957],[-122.467191216,37.709962852],[-122.467202711,37.709956729],[-122.467214193,37.709950588],[-122.467225657,37.709944428],[-122.467237107,37.709938251],[-122.467248541,37.709932056],[-122.467259959,37.709925842],[-122.467271362,37.709919611],[-122.467275646,37.70991726],[-122.467275942,37.709917098],[-122.467276261,37.709916922],[-122.467282749,37.709913362],[-122.467294121,37.709907095],[-122.467305477,37.709900809],[-122.467316818,37.709894507],[-122.467328143,37.709888185],[-122.467339451,37.709881846],[-122.467350745,37.70987549],[-122.467362021,37.709869116],[-122.467373282,37.709862724],[-122.467375392,37.709861521],[-122.467375563,37.709861424],[-122.467375758,37.709861313],[-122.467384528,37.709856314],[-122.467395758,37.709849886],[-122.46740697,37.709843442],[-122.467418168,37.709836978],[-122.467429348,37.709830498],[-122.467440513,37.709824],[-122.467451662,37.709817485],[-122.467462793,37.709810952],[-122.467473909,37.7098044],[-122.467473948,37.709804377],[-122.467485009,37.709797832],[-122.467496092,37.709791247],[-122.467507158,37.709784643],[-122.467518209,37.709778023],[-122.467529242,37.709771385],[-122.467540259,37.70976473],[-122.467551259,37.709758057],[-122.467562243,37.709751367],[-122.467570882,37.709746084],[-122.467571062,37.709745973],[-122.467571169,37.709745908],[-122.46757321,37.70974466],[-122.467584159,37.709737935],[-122.467595092,37.709731194],[-122.467606009,37.709724434],[-122.467616908,37.709717658],[-122.467627791,37.709710865],[-122.467638657,37.709704054],[-122.467649506,37.709697226],[-122.467660336,37.709690383],[-122.467671152,37.70968352],[-122.467681948,37.709676642],[-122.467692729,37.709669746],[-122.467703492,37.709662833],[-122.467714201,37.709655926],[-122.467714237,37.709655904],[-122.467724334,37.709648851],[-122.467734416,37.709641786],[-122.467744483,37.709634707],[-122.467754534,37.709627614],[-122.467764571,37.709620508],[-122.467774593,37.709613387],[-122.467784598,37.709606254],[-122.467794589,37.709599107],[-122.467886796,37.709598434],[-122.467900131,37.709599653],[-122.467902675,37.709599885],[-122.468048551,37.709613222],[-122.468312221,37.709637327],[-122.468313817,37.709637462],[-122.468315417,37.709637579],[-122.468317018,37.709637676],[-122.46831862,37.709637752],[-122.468320225,37.70963781],[-122.468321829,37.709637848],[-122.468323434,37.709637866],[-122.468847589,37.709640441],[-122.46884767,37.709649347],[-122.468848035,37.709689079],[-122.468848665,37.709757737],[-122.468849294,37.709826394],[-122.468849924,37.709895052],[-122.468850554,37.709963709],[-122.468851184,37.710032366],[-122.468851813,37.710101024],[-122.468852443,37.710169681],[-122.46919813,37.710168045],[-122.469284551,37.710167545],[-122.46928846,37.710593438],[-122.469239342,37.710613024],[-122.469210225,37.710624635],[-122.468723439,37.71081874],[-122.468499684,37.710907961],[-122.468427942,37.710936568],[-122.467884017,37.711153452],[-122.467879338,37.711155318],[-122.46736991,37.711358444],[-122.467353113,37.711365141],[-122.467270358,37.711398138],[-122.467027508,37.711494969],[-122.466933288,37.711385883],[-122.466914373,37.711366052],[-122.46685822,37.711307177],[-122.466722136,37.711164498],[-122.466328565,37.710751848],[-122.466261856,37.710681905]]]]}},"NC-S","6:00AM-2:00AM",0.0000035095476054350973,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","NC-S",713.1,20450,0.008303183105759235,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":3.970535633583833e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19659,"shape_length":0.0032764256340953014,"gen":"Mixed Use","index":185},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.434964176,37.771551378],[-122.434960273,37.771532086],[-122.434906954,37.771538882],[-122.434888144,37.771445889],[-122.434812659,37.771072132],[-122.434930085,37.771057177],[-122.434935562,37.771084295],[-122.434952176,37.771166553],[-122.434966689,37.771238413],[-122.43520155,37.771208524],[-122.435235307,37.77120421],[-122.435315085,37.771194015],[-122.43534327,37.771332982],[-122.435351652,37.771374313],[-122.435372983,37.771479485],[-122.435551211,37.771456889],[-122.435576846,37.771453639],[-122.435595854,37.771548114],[-122.435642886,37.771779372],[-122.435559892,37.771790007],[-122.435439094,37.771805445],[-122.435454354,37.771880684],[-122.435417001,37.771885458],[-122.435340252,37.771895266],[-122.435126741,37.771922437],[-122.434964472,37.771943087],[-122.434962555,37.771933597],[-122.435039419,37.771923815],[-122.434979174,37.771625527],[-122.434972494,37.771592503],[-122.434964176,37.771551378]]]]}},"NC-1","6:00AM-11:00PM",3.970535633583833e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19659,0.0032764256340953014,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":3.8339576161180177e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19767,"shape_length":0.0027041582728903257,"gen":"Mixed Use","index":186},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.427332866,37.745491663],[-122.427323451,37.745492231],[-122.426985719,37.745512599],[-122.426841481,37.745521296],[-122.426841962,37.745526882],[-122.426701656,37.745534497],[-122.42654057,37.745544101],[-122.42644299,37.745549919],[-122.426441928,37.745538744],[-122.426436485,37.745481454],[-122.426429563,37.745408608],[-122.426421377,37.745322597],[-122.426419952,37.74530746],[-122.42641291,37.745233339],[-122.42640608,37.745161439],[-122.426399489,37.745092071],[-122.426658143,37.745076546],[-122.426800403,37.745068007],[-122.426805008,37.745116481],[-122.426910583,37.745110144],[-122.426947268,37.745107942],[-122.42729214,37.74508724],[-122.427301177,37.745182343],[-122.427309458,37.745269219],[-122.427311452,37.7452691],[-122.427319956,37.745357483],[-122.427332866,37.745491663]]]]}},"NC-1","6:00AM-11:00PM",3.8339576161180177e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19767,0.0027041582728903257,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCD","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000012810279524192734,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=altmain-nf.htm$q=[field%20folio-destination-name:%27733%27]$x=Advanced#JD_733","districtname":"TARAVAL STREET NEIGHBORHOOD COMMERCIAL DISTRICT","zoning":"NCD-TARAVAL","codesection":733,"objectid":19800,"shape_length":0.03887700786244538,"gen":"Mixed Use","index":187},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.475671293,37.743440716],[-122.475644468,37.743051812],[-122.475630692,37.742806356],[-122.475622794,37.742665642],[-122.475695083,37.742663084],[-122.475793775,37.742659591],[-122.475931915,37.742653513],[-122.47602723,37.74264932],[-122.476122546,37.742645127],[-122.476198664,37.742641779],[-122.476192238,37.742550193],[-122.476606615,37.742531962],[-122.476730226,37.742526337],[-122.47673691,37.74261896],[-122.476795197,37.742616307],[-122.47685481,37.742613594],[-122.477271,37.742595318],[-122.477391861,37.742590011],[-122.477398216,37.742681415],[-122.477484545,37.742677624],[-122.477691736,37.742668524],[-122.477699571,37.742668172],[-122.477815377,37.742662965],[-122.477821921,37.742754736],[-122.477939821,37.742749434],[-122.478355501,37.74273114],[-122.478355527,37.742731505],[-122.478748606,37.742714205],[-122.478769904,37.742713267],[-122.478890764,37.74270794],[-122.478877958,37.742524757],[-122.478998818,37.742519429],[-122.47919772,37.742510691],[-122.47928405,37.742506899],[-122.479370379,37.742503106],[-122.479415674,37.742501116],[-122.479456707,37.742499313],[-122.479543036,37.742495521],[-122.479629365,37.742491728],[-122.479830054,37.742482911],[-122.47995092,37.7424776],[-122.480071774,37.74247229],[-122.480331823,37.742460863],[-122.480444051,37.742455932],[-122.480487219,37.742454035],[-122.48053038,37.742452138],[-122.480615559,37.742448396],[-122.480700737,37.742444652],[-122.480787066,37.742440859],[-122.480901598,37.742435826],[-122.481022453,37.742430451],[-122.481022462,37.742430578],[-122.481143318,37.742425203],[-122.48125589,37.742420256],[-122.481342219,37.742416462],[-122.481428548,37.742412667],[-122.481514877,37.742408873],[-122.481558514,37.742406955],[-122.481601205,37.742405079],[-122.481687534,37.742401284],[-122.481773863,37.742397491],[-122.481860192,37.742393696],[-122.481972892,37.742388742],[-122.48209446,37.742383314],[-122.482094472,37.742383481],[-122.482214612,37.742378117],[-122.482328274,37.742373121],[-122.482414603,37.742369326],[-122.48258726,37.742361737],[-122.482630424,37.742359839],[-122.482759917,37.742354147],[-122.482846246,37.742350351],[-122.483044802,37.742341622],[-122.483165662,37.742336309],[-122.483286522,37.742330995],[-122.483485077,37.742322265],[-122.483571406,37.742318469],[-122.483657735,37.742314674],[-122.483701383,37.742312755],[-122.483830391,37.742307082],[-122.48391672,37.742303286],[-122.484003048,37.74229949],[-122.48411576,37.742294534],[-122.484236617,37.742289176],[-122.484236623,37.742289262],[-122.48435748,37.742283904],[-122.484729037,37.742267564],[-122.484773338,37.742265616],[-122.484815366,37.742263768],[-122.484901693,37.742259971],[-122.484988023,37.742256175],[-122.485187715,37.742247392],[-122.485308574,37.742242053],[-122.485308576,37.742242098],[-122.485429435,37.74223676],[-122.485714318,37.742224229],[-122.485846268,37.742218425],[-122.486260644,37.742200197],[-122.486381509,37.742194958],[-122.486381498,37.742194803],[-122.486502363,37.742189564],[-122.486787592,37.742177015],[-122.48687392,37.742173217],[-122.486914503,37.742171431],[-122.486960248,37.742169419],[-122.487046577,37.742165621],[-122.487328878,37.7421532],[-122.487449737,37.742147882],[-122.487570597,37.742142563],[-122.487769005,37.742133832],[-122.487872598,37.742129274],[-122.487976192,37.742124715],[-122.48798517,37.74212432],[-122.488079786,37.742120156],[-122.488183379,37.742115598],[-122.488286973,37.742111039],[-122.488399545,37.742106085],[-122.488520405,37.742100766],[-122.488641264,37.742095446],[-122.488753835,37.742090492],[-122.488840162,37.742086692],[-122.488926491,37.742082892],[-122.489012819,37.742079093],[-122.489058248,37.742077093],[-122.489099147,37.742075293],[-122.489185475,37.742071494],[-122.489271802,37.742067694],[-122.48935813,37.742063894],[-122.489472622,37.742058854],[-122.489593481,37.742053534],[-122.48971434,37.742048214],[-122.489827903,37.742043214],[-122.489914231,37.742039414],[-122.490000558,37.742035614],[-122.490086886,37.742031813],[-122.49013005,37.742029913],[-122.490173214,37.742028013],[-122.490259542,37.742024213],[-122.49034587,37.742020412],[-122.490544424,37.74201167],[-122.490665283,37.742006348],[-122.490786141,37.742001028],[-122.491075853,37.741988271],[-122.491162181,37.74198447],[-122.491205345,37.741982569],[-122.491248509,37.741980669],[-122.491334837,37.741976867],[-122.491421165,37.741973066],[-122.491619718,37.741964322],[-122.491740569,37.741958899],[-122.491740584,37.741959101],[-122.491861436,37.741953677],[-122.491972678,37.741948778],[-122.492080588,37.741944026],[-122.492188496,37.741939273],[-122.492274824,37.741935472],[-122.492296406,37.741934521],[-122.492404316,37.741929768],[-122.492490644,37.741925966],[-122.492689197,37.741917221],[-122.492810055,37.741911883],[-122.492810057,37.741911912],[-122.492871563,37.741909195],[-122.492930915,37.741906574],[-122.493042634,37.741901652],[-122.49321529,37.741894047],[-122.493301618,37.741890244],[-122.493344781,37.741888343],[-122.493387944,37.741886441],[-122.493474272,37.741882638],[-122.493479098,37.74195119],[-122.493483924,37.742019742],[-122.49348875,37.742088293],[-122.493493577,37.742156846],[-122.493501239,37.74226653],[-122.493510162,37.742266136],[-122.493517302,37.742368341],[-122.493517825,37.742375823],[-122.49353713,37.742650031],[-122.493399065,37.742656113],[-122.493269338,37.742661828],[-122.49318301,37.74266563],[-122.493096681,37.742669433],[-122.492984688,37.742674366],[-122.49286383,37.742679704],[-122.492863828,37.742679676],[-122.492742969,37.742685014],[-122.492630397,37.742689972],[-122.492544068,37.742693774],[-122.492457739,37.742697576],[-122.492371412,37.742701379],[-122.492328592,37.742703264],[-122.492285083,37.742705181],[-122.492198754,37.742708983],[-122.492112425,37.742712784],[-122.492026097,37.742716586],[-122.491916073,37.742721432],[-122.49179522,37.742726855],[-122.491795206,37.742726654],[-122.491674353,37.742732077],[-122.491426697,37.742742983],[-122.491297203,37.742748685],[-122.491259976,37.742750323],[-122.491202241,37.742752866],[-122.491115914,37.742756667],[-122.491012319,37.742761229],[-122.490839661,37.742768832],[-122.490718801,37.742774153],[-122.490597941,37.742779474],[-122.490485714,37.742784415],[-122.490399385,37.742788215],[-122.490243994,37.742795057],[-122.490183563,37.742797717],[-122.490140399,37.742799618],[-122.489967741,37.742807218],[-122.489767849,37.742816017],[-122.489646989,37.742821338],[-122.489526129,37.742826658],[-122.489241244,37.742839198],[-122.489154915,37.742842998],[-122.48911175,37.742844898],[-122.489068587,37.742846798],[-122.488982258,37.742850598],[-122.488809599,37.742858197],[-122.4886949,37.742863245],[-122.48857404,37.742868565],[-122.48845318,37.742873884],[-122.488167949,37.742886436],[-122.488081619,37.742890235],[-122.488038801,37.74289212],[-122.48799529,37.742894034],[-122.487908962,37.742897833],[-122.487822633,37.742901632],[-122.487624085,37.742910369],[-122.487503223,37.742915687],[-122.487382363,37.742921005],[-122.487183806,37.742929741],[-122.487097477,37.742933539],[-122.48696952,37.742939169],[-122.486924819,37.742941136],[-122.48683849,37.742944934],[-122.486752161,37.742948731],[-122.486665832,37.74295253],[-122.486555141,37.742957399],[-122.486434274,37.742962638],[-122.486434285,37.742962795],[-122.486313419,37.742968033],[-122.486114862,37.742976768],[-122.485942204,37.742984363],[-122.485897593,37.742986326],[-122.485855875,37.742988161],[-122.485769545,37.742991958],[-122.485483213,37.743004553],[-122.485362354,37.743009891],[-122.485362351,37.743009846],[-122.485241491,37.743015185],[-122.485042934,37.743023917],[-122.484956605,37.743027714],[-122.484870275,37.74303151],[-122.484827111,37.743033409],[-122.484783946,37.743035307],[-122.484611287,37.7430429],[-122.484411458,37.743051688],[-122.4842906,37.743057046],[-122.484290595,37.743056959],[-122.484169736,37.743062318],[-122.484057163,37.743067267],[-122.483970833,37.743071064],[-122.483798174,37.743078656],[-122.483754346,37.743080582],[-122.483711844,37.743082451],[-122.483625516,37.743086247],[-122.483339965,37.743098802],[-122.483219104,37.743104115],[-122.483098243,37.743109429],[-122.482999827,37.743113756],[-122.482899684,37.743118158],[-122.482813354,37.743121953],[-122.482683417,37.743127665],[-122.482640696,37.743129543],[-122.482554366,37.743133339],[-122.482468037,37.743137134],[-122.482381707,37.743140928],[-122.482269035,37.743145881],[-122.48214817,37.743151147],[-122.482148177,37.74315124],[-122.482027312,37.743156506],[-122.481914739,37.743161455],[-122.481828409,37.743165249],[-122.481742079,37.743169043],[-122.48161293,37.743174719],[-122.481569421,37.743176632],[-122.481568271,37.743176683],[-122.481483091,37.743180426],[-122.481396761,37.74318422],[-122.481197475,37.743192979],[-122.481076618,37.743198354],[-122.481049536,37.742814403],[-122.479977645,37.742861503],[-122.478904794,37.742908637],[-122.478931629,37.743292517],[-122.478810769,37.743297845],[-122.478764203,37.74329989],[-122.478698195,37.743302789],[-122.478611865,37.743306581],[-122.478525535,37.743310373],[-122.478439206,37.743314166],[-122.478396385,37.743316046],[-122.478266546,37.743321749],[-122.478180215,37.743325541],[-122.478093885,37.743329332],[-122.477983849,37.743334165],[-122.477863097,37.743339492],[-122.477863093,37.743339447],[-122.477742126,37.743344782],[-122.47762955,37.743349726],[-122.477543221,37.743353517],[-122.477327741,37.74336298],[-122.47728423,37.743364891],[-122.4771979,37.743368682],[-122.4769124,37.743381219],[-122.47679154,37.743386567],[-122.476791535,37.743386485],[-122.476670676,37.743391832],[-122.476549814,37.743397139],[-122.476329033,37.743406834],[-122.4762945,37.74340835],[-122.476190905,37.743412898],[-122.47619957,37.743538481],[-122.475854249,37.743553642],[-122.475736842,37.743558749],[-122.475679606,37.743561239],[-122.475671293,37.743440716]]]]}},"NCD","6:00AM-2:00AM",0.000012810279524192734,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=altmain-nf.htm$q=[field%20folio-destination-name:%27733%27]$x=Advanced#JD_733","TARAVAL STREET NEIGHBORHOOD COMMERCIAL DISTRICT","NCD-TARAVAL",733,19800,0.03887700786244538,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.7186084662509046e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19534,"shape_length":0.0028104044092391667,"gen":"Mixed Use","index":188},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.487761752,37.775756214],[-122.487872894,37.775751134],[-122.487893588,37.776035944],[-122.487901493,37.776144745],[-122.487669442,37.776155234],[-122.487682172,37.776330436],[-122.487627304,37.776332937],[-122.48756127,37.776335948],[-122.487303771,37.776347686],[-122.487308751,37.77641623],[-122.48731373,37.776484775],[-122.487227372,37.776488712],[-122.487212724,37.776287083],[-122.48720473,37.776176379],[-122.48742764,37.776166236],[-122.487421209,37.776077729],[-122.487419744,37.776057567],[-122.487401689,37.775809067],[-122.487522588,37.775803542],[-122.487643488,37.775798016],[-122.487640852,37.775761739],[-122.487699321,37.775759067],[-122.487761752,37.775756214]]]]}},"NC-1","6:00AM-11:00PM",2.7186084662509046e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19534,0.0028104044092391667,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":7.197131258646396e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19719,"shape_length":0.004513343393686985,"gen":"Mixed Use","index":189},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.423143105,37.754772148],[-122.423156649,37.754914273],[-122.423199123,37.754911721],[-122.423299562,37.754905674],[-122.42366783,37.754883499],[-122.423703809,37.754881333],[-122.423732091,37.754879592],[-122.423748422,37.755046769],[-122.423757188,37.75513652],[-122.423773905,37.755307641],[-122.42374584,37.755309369],[-122.423340566,37.755333772],[-122.423240009,37.755339826],[-122.42319715,37.755342406],[-122.423212306,37.755504395],[-122.423170213,37.755506878],[-122.423097789,37.755511149],[-122.423071509,37.755512699],[-122.422978448,37.755518303],[-122.42288877,37.755523702],[-122.422799093,37.755529101],[-122.422709415,37.755534501],[-122.42271571,37.755600223],[-122.422718333,37.755627608],[-122.422632104,37.755632799],[-122.422629482,37.755605414],[-122.422543252,37.755610606],[-122.422491516,37.75561372],[-122.422457024,37.755615797],[-122.422370796,37.755620988],[-122.422340898,37.755308806],[-122.422332743,37.755217623],[-122.422780112,37.755192399],[-122.422777208,37.755159932],[-122.422772434,37.755106555],[-122.422742635,37.754795419],[-122.422828888,37.7547905],[-122.423001396,37.754780662],[-122.423100291,37.754774721],[-122.423143105,37.754772148]]]]}},"NC-1","6:00AM-11:00PM",7.197131258646396e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19719,0.004513343393686985,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":3.5969240895931597e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19564,"shape_length":0.002628009164685215,"gen":"Mixed Use","index":190},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.406221111,37.751217041],[-122.406200876,37.751063922],[-122.406164075,37.750895853],[-122.406129971,37.750830819],[-122.406196658,37.750826851],[-122.406232622,37.750824712],[-122.406296437,37.750820915],[-122.40670847,37.7507964],[-122.406708568,37.750797426],[-122.406713198,37.750846001],[-122.406714702,37.750861781],[-122.406731947,37.750860754],[-122.406737951,37.750923741],[-122.406743955,37.750986727],[-122.406916413,37.750976466],[-122.40694095,37.751233886],[-122.406949222,37.751321523],[-122.406468284,37.75135014],[-122.406186565,37.751366901],[-122.406224393,37.751241877],[-122.406221111,37.751217041]]]]}},"NC-2","6:00AM-2:00AM",3.5969240895931597e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19564,0.002628009164685215,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-S","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000020106854500547925,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","districtname":"NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","zoning":"NC-S","codesection":713.1,"objectid":19797,"shape_length":0.005890129903910715,"gen":"Mixed Use","index":191},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.508823171,37.771445516],[-122.509608723,37.771409241],[-122.50989475,37.771396032],[-122.509913239,37.771638317],[-122.510036956,37.773259469],[-122.50970536,37.773274687],[-122.509491101,37.773284519],[-122.508957872,37.773308988],[-122.508838431,37.771656638],[-122.508823171,37.771445516]]]]}},"NC-S","6:00AM-2:00AM",0.0000020106854500547925,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","NC-S",713.1,19797,0.005890129903910715,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-S","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000013020613680433436,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","districtname":"NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","zoning":"NC-S","codesection":713.1,"objectid":19809,"shape_length":0.005012290541494685,"gen":"Mixed Use","index":192},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.379918458,37.730707646],[-122.379901193,37.730719005],[-122.379847282,37.730754469],[-122.379778958,37.730799415],[-122.379761157,37.730821281],[-122.379648177,37.730960064],[-122.37962893,37.73098992],[-122.379551892,37.731109414],[-122.379425083,37.731051907],[-122.379414255,37.731046997],[-122.379384079,37.731033312],[-122.379353146,37.731019285],[-122.379324064,37.730994783],[-122.378927183,37.730660408],[-122.378851915,37.730596994],[-122.378624126,37.730415347],[-122.378310787,37.730239522],[-122.378166134,37.7301893],[-122.378098243,37.73016573],[-122.3780952,37.730164673],[-122.378096389,37.730092376],[-122.378097367,37.730032934],[-122.378160437,37.729963855],[-122.378321857,37.729787054],[-122.378589552,37.729493849],[-122.378598527,37.72948402],[-122.378666932,37.729522848],[-122.37869396,37.72953819],[-122.379110243,37.729774482],[-122.379175678,37.729811623],[-122.379336951,37.73002769],[-122.379348085,37.730042607],[-122.379359409,37.73005778],[-122.37970388,37.730519283],[-122.379720448,37.73054148],[-122.379721327,37.730542658],[-122.379776747,37.730589042],[-122.379786658,37.730597336],[-122.379844533,37.730645775],[-122.379918458,37.730707646]]]]}},"NC-S","6:00AM-2:00AM",0.0000013020613680433436,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","NC-S",713.1,19809,0.005012290541494685,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCT-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.425414428427426e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_750","districtname":"NEIGHBORHOOD COMMERCIAL TRANSIT 1","zoning":"NCT-1","codesection":750,"objectid":19849,"shape_length":0.0021417210163016914,"gen":"Mixed Use","index":193},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.444592154,37.722555224],[-122.444637874,37.722481831],[-122.444679277,37.722415372],[-122.444717614,37.722353835],[-122.444727531,37.722337916],[-122.444731893,37.722330913],[-122.444757484,37.722289836],[-122.444797353,37.722225838],[-122.444762605,37.722212227],[-122.444716728,37.722194258],[-122.444756597,37.722130259],[-122.4448026,37.722056414],[-122.44518269,37.722205291],[-122.445201745,37.722212755],[-122.4452086,37.72221544],[-122.445317035,37.722257912],[-122.445206317,37.722387449],[-122.445063035,37.722555083],[-122.445042092,37.722579586],[-122.444944314,37.722693982],[-122.444772449,37.722626264],[-122.444669593,37.722585736],[-122.444640291,37.72257419],[-122.444592154,37.722555224]]]]}},"NCT-1","6:00AM-11:00PM",2.425414428427426e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_750","NEIGHBORHOOD COMMERCIAL TRANSIT 1","NCT-1",750,19849,0.0021417210163016914,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCD","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000010136032424366498,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_716.1","districtname":"INNER CLEMENT STREET NEIGHBORHOOD COMMERCIAL","zoning":"NCD-INNER CLEMENT","codesection":716.1,"objectid":19831,"shape_length":0.03221449838478099,"gen":"Mixed Use","index":194},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.459584734,37.783555252],[-122.459581369,37.783508709],[-122.459545255,37.78351038],[-122.459408646,37.783516701],[-122.459207308,37.783526016],[-122.459196824,37.783526502],[-122.459023423,37.783534524],[-122.458998401,37.783188664],[-122.458976178,37.782881487],[-122.459159987,37.782873048],[-122.459508201,37.78285706],[-122.45953411,37.78285587],[-122.459529155,37.782787325],[-122.459575528,37.782785196],[-122.459615519,37.782783359],[-122.459701882,37.782779394],[-122.459702149,37.782783091],[-122.459706838,37.782847939],[-122.459711793,37.782916485],[-122.459716747,37.782985031],[-122.460001747,37.782971943],[-122.460004889,37.782971799],[-122.460125025,37.782966282],[-122.460110317,37.782760639],[-122.460227974,37.782755236],[-122.460342896,37.782749959],[-122.46042926,37.782745992],[-122.460516342,37.782741993],[-122.460601987,37.78273806],[-122.460642517,37.782736198],[-122.460688349,37.782734093],[-122.460774713,37.782730127],[-122.460861076,37.782726161],[-122.460947439,37.782722195],[-122.461059712,37.782717038],[-122.461179261,37.782711547],[-122.461179257,37.782711493],[-122.461300869,37.782705907],[-122.461408275,37.782700974],[-122.46153939,37.782694952],[-122.461546456,37.782694627],[-122.46163282,37.78269066],[-122.461719183,37.782686692],[-122.461815909,37.78268225],[-122.461912636,37.782677806],[-122.462009362,37.782673363],[-122.462133725,37.78266765],[-122.462251549,37.782662279],[-122.462246597,37.782593856],[-122.462321425,37.782590419],[-122.462368732,37.782588246],[-122.462783275,37.782569201],[-122.462788232,37.782637747],[-122.462832303,37.782635723],[-122.462918666,37.782631754],[-122.46300503,37.782627786],[-122.463203664,37.78261866],[-122.463216234,37.782618082],[-122.463323122,37.782613171],[-122.463323114,37.782613056],[-122.463444748,37.782607472],[-122.463558972,37.782602224],[-122.463645334,37.782598255],[-122.463731697,37.782594287],[-122.463818061,37.782590318],[-122.46385929,37.782588424],[-122.463904423,37.78258635],[-122.463990787,37.78258238],[-122.464163512,37.782574444],[-122.464275784,37.782569284],[-122.464396444,37.782563512],[-122.46435484,37.782015569],[-122.464477191,37.782009717],[-122.464891731,37.781990665],[-122.464886674,37.781920774],[-122.464885378,37.781902862],[-122.464881714,37.781852229],[-122.464876755,37.781783683],[-122.464871795,37.781715137],[-122.465284646,37.7816965],[-122.465405443,37.781691047],[-122.465418865,37.78187627],[-122.465460077,37.782445044],[-122.465533901,37.78244171],[-122.465581037,37.782439583],[-122.465790047,37.782430146],[-122.465800019,37.782567945],[-122.466005562,37.782558496],[-122.466000562,37.782489411],[-122.46609021,37.782485363],[-122.466176578,37.782481463],[-122.46627216,37.782477147],[-122.466408666,37.782470983],[-122.466418407,37.782470543],[-122.466430986,37.782469976],[-122.466535559,37.782465253],[-122.466530729,37.782396777],[-122.466655288,37.782391243],[-122.467060768,37.782372601],[-122.467050845,37.78223551],[-122.467180388,37.782229553],[-122.467455957,37.782216881],[-122.467465384,37.782216448],[-122.46758559,37.782210876],[-122.467600734,37.7824167],[-122.467706382,37.782411803],[-122.467722093,37.782411075],[-122.467925204,37.782401734],[-122.468011567,37.782397762],[-122.468097929,37.782393791],[-122.468136633,37.78239201],[-122.468192928,37.782389421],[-122.468197891,37.782457967],[-122.468322252,37.782452248],[-122.468560613,37.782441285],[-122.46857004,37.782440852],[-122.468681504,37.782435734],[-122.468686476,37.782503926],[-122.468807643,37.782498353],[-122.469147543,37.782482718],[-122.469216634,37.78247954],[-122.46921167,37.782410995],[-122.469142581,37.782414173],[-122.469137617,37.782345627],[-122.469206707,37.782342449],[-122.469310342,37.782337683],[-122.469396705,37.78233371],[-122.469482489,37.782329764],[-122.469488446,37.782412019],[-122.469631667,37.78240543],[-122.469641054,37.782404998],[-122.469747672,37.782400093],[-122.46974668,37.782386691],[-122.469872464,37.782380832],[-122.470115961,37.78236963],[-122.470282581,37.782361963],[-122.470444137,37.782354531],[-122.470702068,37.782342664],[-122.470824897,37.78233748],[-122.470820279,37.78226856],[-122.470889384,37.782265381],[-122.470939512,37.782263075],[-122.471052128,37.782257894],[-122.471138491,37.782253919],[-122.471224852,37.782249945],[-122.471311214,37.782245971],[-122.471331077,37.782520151],[-122.471338782,37.782626501],[-122.471915032,37.782596213],[-122.471944197,37.782996758],[-122.471823211,37.783002307],[-122.471667741,37.783009222],[-122.471581368,37.783013064],[-122.471494995,37.783016904],[-122.471408623,37.783020746],[-122.47099557,37.783039115],[-122.470874384,37.783044639],[-122.470864461,37.782907523],[-122.470743489,37.782912902],[-122.470329941,37.78293129],[-122.470334906,37.782999836],[-122.47022493,37.783004725],[-122.470121282,37.783009334],[-122.470017634,37.783013942],[-122.469913988,37.78301855],[-122.469793736,37.783024132],[-122.469788188,37.782948836],[-122.469667174,37.782954453],[-122.469395697,37.782966828],[-122.469400661,37.783035373],[-122.469257582,37.783041895],[-122.469155382,37.783046553],[-122.46905658,37.783051057],[-122.468952595,37.783055796],[-122.468847919,37.783060567],[-122.468727275,37.783066064],[-122.468732241,37.783134713],[-122.468611652,37.783140207],[-122.46849938,37.783145371],[-122.46824029,37.783157287],[-122.468197109,37.783159272],[-122.468067563,37.783165231],[-122.4679812,37.783169202],[-122.467777655,37.783178562],[-122.467656752,37.783184078],[-122.467658354,37.78320621],[-122.467537433,37.783211726],[-122.467430342,37.783216651],[-122.467343979,37.783220622],[-122.467257615,37.783224594],[-122.46725416,37.783224751],[-122.467167797,37.783228723],[-122.467122887,37.783230788],[-122.467077978,37.783232852],[-122.46698816,37.783236982],[-122.466898342,37.783241113],[-122.466713779,37.783249598],[-122.466591299,37.783255047],[-122.466592679,37.783274587],[-122.466473155,37.783280082],[-122.466372973,37.783284688],[-122.466283156,37.783288817],[-122.466193337,37.783292947],[-122.46609661,37.783297393],[-122.46605861,37.78329914],[-122.466010245,37.783301363],[-122.465923882,37.783305333],[-122.465834064,37.783309462],[-122.465744245,37.783313592],[-122.465645254,37.783318142],[-122.465523261,37.78332375],[-122.465522483,37.783312851],[-122.465401369,37.783318417],[-122.465301187,37.783323022],[-122.465211369,37.783327151],[-122.465031732,37.783335407],[-122.464986823,37.783337471],[-122.464991784,37.783406017],[-122.464996743,37.783474562],[-122.465000314,37.783523915],[-122.464764911,37.78352373],[-122.464586087,37.783531949],[-122.464465771,37.78353712],[-122.464451778,37.783332038],[-122.46433075,37.78333724],[-122.464219138,37.783342369],[-122.464132775,37.783346337],[-122.46404641,37.783350307],[-122.463960047,37.783354275],[-122.463914568,37.783356365],[-122.463873682,37.783358244],[-122.463700955,37.783366181],[-122.463499729,37.783375427],[-122.463378356,37.78338086],[-122.463378359,37.783380894],[-122.463320352,37.78338356],[-122.46325918,37.78338637],[-122.463060835,37.783395483],[-122.462974471,37.783399451],[-122.462914016,37.783402229],[-122.462888107,37.783403419],[-122.462801743,37.783407387],[-122.46271538,37.783411355],[-122.462629015,37.783415323],[-122.46262209,37.783319586],[-122.462422907,37.783328736],[-122.462415194,37.783329091],[-122.462300555,37.783334357],[-122.462307609,37.783430202],[-122.462187494,37.783435771],[-122.462075925,37.783440897],[-122.461773652,37.783454781],[-122.461559719,37.783464608],[-122.461550832,37.783465016],[-122.461463327,37.783469035],[-122.461356507,37.783473941],[-122.461234514,37.783479544],[-122.46123451,37.783479489],[-122.461177848,37.783482092],[-122.461115133,37.783484972],[-122.46100286,37.783490129],[-122.460830131,37.783498063],[-122.460743767,37.783502029],[-122.460697969,37.783504132],[-122.460657403,37.783505995],[-122.460571038,37.783509961],[-122.460484674,37.783513927],[-122.460479719,37.783445382],[-122.460474763,37.783376836],[-122.460469807,37.783308291],[-122.460268555,37.783317533],[-122.460265412,37.783317677],[-122.460150403,37.783322958],[-122.460027599,37.783328597],[-122.459742598,37.783341684],[-122.459747553,37.78341023],[-122.459752507,37.783478776],[-122.459757463,37.783547321],[-122.45967807,37.783550966],[-122.459671098,37.783551287],[-122.459584734,37.783555252]]]]}},"NCD","6:00AM-2:00AM",0.000010136032424366498,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_716.1","INNER CLEMENT STREET NEIGHBORHOOD COMMERCIAL","NCD-INNER CLEMENT",716.1,19831,0.03221449838478099,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000026504261616350676,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19571,"shape_length":0.010650552925575027,"gen":"Mixed Use","index":195},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.406443378,37.7126472],[-122.406365781,37.712616967],[-122.406517706,37.712370272],[-122.406563373,37.712296298],[-122.406528597,37.712282749],[-122.40640818,37.712235833],[-122.406362514,37.712309807],[-122.406284338,37.712436749],[-122.406210588,37.712556502],[-122.406132991,37.712526269],[-122.406128334,37.712524454],[-122.406055394,37.712496037],[-122.405977798,37.712465804],[-122.405956692,37.712457581],[-122.405900202,37.712435571],[-122.405822606,37.712405338],[-122.405745009,37.712375105],[-122.405667413,37.712344873],[-122.405589817,37.712314639],[-122.405512221,37.712284407],[-122.405434589,37.712254232],[-122.405434662,37.712254114],[-122.405357028,37.71222394],[-122.405279432,37.712193706],[-122.40525411,37.71218384],[-122.405201837,37.712163473],[-122.405139761,37.712139287],[-122.405124241,37.712133241],[-122.405046647,37.712103007],[-122.404969051,37.712072773],[-122.404953554,37.712066735],[-122.404904278,37.712047537],[-122.404891455,37.71204254],[-122.404813859,37.712012306],[-122.404785362,37.712001204],[-122.404736263,37.711982073],[-122.404658669,37.711951839],[-122.404581073,37.711921605],[-122.404503478,37.711891372],[-122.404425882,37.711861138],[-122.404348287,37.711830905],[-122.404275348,37.711802484],[-122.404270693,37.711800671],[-122.404193097,37.711770436],[-122.404115503,37.711740203],[-122.404154753,37.711676472],[-122.404263697,37.711499578],[-122.404267433,37.711493511],[-122.404313102,37.711419537],[-122.404265059,37.711400817],[-122.404255093,37.711396935],[-122.40420639,37.711377958],[-122.404249536,37.711309309],[-122.404252719,37.711304244],[-122.404392092,37.711082483],[-122.404392246,37.711082542],[-122.404391853,37.711080799],[-122.404405595,37.711057062],[-122.404520855,37.711101972],[-122.404564554,37.711118999],[-122.404663034,37.711157371],[-122.404849102,37.711229869],[-122.40488367,37.711243337],[-122.404951971,37.711270805],[-122.405055158,37.711311012],[-122.405187895,37.711362731],[-122.405265491,37.711392964],[-122.405385985,37.711439912],[-122.405420685,37.711453432],[-122.405498282,37.711483666],[-122.405559797,37.711507633],[-122.405575878,37.711513899],[-122.405653475,37.711544132],[-122.405731072,37.711574366],[-122.405847468,37.711619716],[-122.405933929,37.711653404],[-122.405937662,37.711654858],[-122.405963863,37.711665067],[-122.40604146,37.711695299],[-122.406119057,37.711725533],[-122.406196654,37.711755767],[-122.406247724,37.711775664],[-122.406274251,37.711786],[-122.406351848,37.711816233],[-122.406429447,37.711846466],[-122.406507044,37.711876699],[-122.406575876,37.711903517],[-122.4065911,37.711909448],[-122.406679009,37.711943699],[-122.406684943,37.711930324],[-122.406787449,37.71197192],[-122.406900982,37.71201799],[-122.407054954,37.71208047],[-122.407115677,37.712105109],[-122.407144457,37.712113191],[-122.407225941,37.712136073],[-122.407307427,37.712158953],[-122.407388912,37.712181835],[-122.407470398,37.712204716],[-122.407577992,37.71223484],[-122.407582031,37.712225738],[-122.407689627,37.712255861],[-122.408030409,37.712352211],[-122.408203119,37.712401041],[-122.40830298,37.712429275],[-122.408202467,37.712401052],[-122.408179617,37.712452563],[-122.408173741,37.712465808],[-122.40809832,37.712635827],[-122.408087179,37.712660941],[-122.408054193,37.712738067],[-122.407786503,37.712665811],[-122.407699361,37.712642289],[-122.407574325,37.712608539],[-122.407347781,37.712547389],[-122.407304272,37.712648688],[-122.407279442,37.712706497],[-122.407236971,37.71280538],[-122.407212143,37.712863186],[-122.407202795,37.712884948],[-122.407201979,37.712886847],[-122.407120184,37.712864675],[-122.406956688,37.712820106],[-122.40687494,37.712797822],[-122.406793192,37.712775538],[-122.406763437,37.712767426],[-122.406705742,37.712749419],[-122.406676168,37.712737897],[-122.406611704,37.712712781],[-122.406598571,37.712707664],[-122.406525631,37.712679245],[-122.406520975,37.712677432],[-122.406443378,37.7126472]]]]}},"NC-2","6:00AM-2:00AM",0.0000026504261616350676,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19571,0.010650552925575027,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"PM-OS","commercial_hours_of_operation":null,"shape_area":1.346307371822491e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article2usedistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_249.64","districtname":"PARKMERCED-OPEN SPACE","zoning":"PM-OS","codesection":249.64,"objectid":20401,"shape_length":0.0014700651513995426,"gen":"Public","index":196},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.480951297,37.719471276],[-122.4809517,37.719461616],[-122.480967338,37.719086792],[-122.480967511,37.719082641],[-122.481312788,37.71909173],[-122.481299725,37.719478698],[-122.480951297,37.719471276]]]]}},"PM-OS",null,1.346307371822491e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article2usedistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_249.64","PARKMERCED-OPEN SPACE","PM-OS",249.64,20401,0.0014700651513995426,"Public"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":3.4515285131911803e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19531,"shape_length":0.0034203040484891726,"gen":"Mixed Use","index":197},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.47696485,37.776643928],[-122.476977475,37.776817962],[-122.476925795,37.776820313],[-122.47685667,37.776823459],[-122.476566498,37.776836661],[-122.476571468,37.776905206],[-122.476576438,37.77697375],[-122.476581408,37.777042296],[-122.476495048,37.777046225],[-122.476451869,37.777048189],[-122.476408689,37.777050153],[-122.47632233,37.777054082],[-122.47623597,37.777058011],[-122.476149611,37.777061939],[-122.476130058,37.776792252],[-122.476122089,37.776682322],[-122.475888271,37.776692973],[-122.475869792,37.776441974],[-122.475964929,37.776437647],[-122.475995029,37.776436278],[-122.476302515,37.776422289],[-122.476312781,37.776563862],[-122.476320692,37.776673275],[-122.47696485,37.776643928]]]]}},"NC-1","6:00AM-11:00PM",3.4515285131911803e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19531,0.0034203040484891726,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":3.9026909498190363e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19658,"shape_length":0.0027876384875289606,"gen":"Mixed Use","index":198},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.465534427,37.773413573],[-122.465883163,37.773398204],[-122.46646468,37.773372573],[-122.466472516,37.773480849],[-122.466473276,37.773491356],[-122.466490613,37.773730912],[-122.466493017,37.773764144],[-122.466446962,37.773766241],[-122.466308794,37.773772531],[-122.466032457,37.77378511],[-122.465911558,37.773790613],[-122.465916568,37.773859844],[-122.46579567,37.773865347],[-122.465567866,37.773875716],[-122.465567392,37.773869153],[-122.465558513,37.773746457],[-122.465544549,37.773553454],[-122.465534427,37.773413573]]]]}},"NC-1","6:00AM-11:00PM",3.9026909498190363e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19658,0.0027876384875289606,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-3","commercial_hours_of_operation":"No Limit","shape_area":0.0000063844399164568275,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","districtname":"NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","zoning":"NC-3","codesection":712.1,"objectid":20380,"shape_length":0.0218020660169967,"gen":"Mixed Use","index":199},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.390072097,37.735395549],[-122.390416264,37.73559052],[-122.390487877,37.73538584],[-122.390510001,37.735322606],[-122.390587489,37.735101134],[-122.390623638,37.734997815],[-122.390693773,37.734797358],[-122.390493745,37.734683575],[-122.390344551,37.734598708],[-122.390044122,37.734426969],[-122.390123457,37.734338781],[-122.390213919,37.734238224],[-122.390264177,37.734182358],[-122.390324485,37.734115319],[-122.390254111,37.73407544],[-122.390314419,37.734008401],[-122.39040488,37.733907842],[-122.390455137,37.733851977],[-122.39047211,37.73383311],[-122.390489028,37.733814304],[-122.390531761,37.733766803],[-122.39047747,37.733736046],[-122.390469526,37.733731546],[-122.390461379,37.733726931],[-122.390469188,37.73371825],[-122.390476802,37.733709786],[-122.390545583,37.733633328],[-122.390633029,37.73353612],[-122.390746606,37.733409864],[-122.390676234,37.733369985],[-122.39060586,37.733330106],[-122.390535487,37.733290227],[-122.390465115,37.733250347],[-122.390666137,37.733026885],[-122.390734917,37.732950427],[-122.390744721,37.732939527],[-122.390826955,37.732848113],[-122.390877211,37.732792248],[-122.390927318,37.732736545],[-122.39097772,37.732680516],[-122.391027975,37.73262465],[-122.391128485,37.732512918],[-122.391287943,37.732603279],[-122.391317455,37.732620003],[-122.391427132,37.732682154],[-122.391432698,37.732685308],[-122.391448595,37.732639869],[-122.391521351,37.732431907],[-122.391859225,37.732624179],[-122.391874772,37.732633026],[-122.392041159,37.73272771],[-122.392127884,37.732777062],[-122.39204476,37.732869146],[-122.391870379,37.733062322],[-122.391843275,37.733092347],[-122.391871551,37.733108371],[-122.391878025,37.733112039],[-122.391871819,37.733118913],[-122.391806599,37.733191163],[-122.391786303,37.733179663],[-122.391756987,37.733212139],[-122.391742532,37.733203947],[-122.391692161,37.733259747],[-122.391641788,37.733315548],[-122.391562249,37.733403658],[-122.391587429,37.733417953],[-122.391618737,37.733435728],[-122.39164523,37.733450768],[-122.391702909,37.733483513],[-122.391647623,37.733544757],[-122.391622228,37.733572888],[-122.391621346,37.733573865],[-122.391570974,37.733629665],[-122.391520602,37.733685465],[-122.39147023,37.733741265],[-122.391540605,37.733781144],[-122.391490232,37.733836944],[-122.391560606,37.733876822],[-122.39163098,37.7339167],[-122.391429491,37.734139901],[-122.39134858,37.734229531],[-122.39141896,37.734269402],[-122.391339555,37.734357363],[-122.391338673,37.73435834],[-122.391237928,37.73446994],[-122.391187555,37.73452574],[-122.39125793,37.734565618],[-122.391232743,37.734593518],[-122.391303118,37.734633397],[-122.391277931,37.734661297],[-122.391348305,37.734701175],[-122.391146814,37.734924375],[-122.391087233,37.734990375],[-122.391069004,37.735010568],[-122.391122766,37.735041116],[-122.391150181,37.735056694],[-122.391209624,37.735090469],[-122.391152647,37.735153583],[-122.391126369,37.735182692],[-122.391075995,37.735238492],[-122.390975248,37.735350092],[-122.390975718,37.735350358],[-122.391045624,37.735389971],[-122.39099525,37.73544577],[-122.391065625,37.735485649],[-122.390964878,37.735597249],[-122.390914504,37.735653049],[-122.39086413,37.735708848],[-122.390797749,37.735782754],[-122.390783537,37.735798578],[-122.390842768,37.735832132],[-122.390867625,37.735846214],[-122.390926316,37.735879461],[-122.390870064,37.735942088],[-122.39084624,37.735968613],[-122.390795332,37.736024111],[-122.390744423,37.736079608],[-122.390693515,37.736135105],[-122.390642606,37.736190602],[-122.390712984,37.736230483],[-122.390723166,37.736219383],[-122.390793545,37.736259264],[-122.390783364,37.736270364],[-122.390732549,37.736325757],[-122.39068164,37.736381255],[-122.390630731,37.736436752],[-122.390579822,37.736492249],[-122.390504942,37.736573879],[-122.390496656,37.736582911],[-122.390560352,37.736617823],[-122.390583338,37.736630422],[-122.390642246,37.73666271],[-122.390585811,37.736727649],[-122.39056379,37.736752987],[-122.390463221,37.736864688],[-122.390412936,37.736920539],[-122.39036265,37.73697639],[-122.390433051,37.737016243],[-122.390382765,37.737072094],[-122.39033248,37.737127944],[-122.390282195,37.737183795],[-122.390230005,37.737241762],[-122.390149645,37.737331178],[-122.390208778,37.737364695],[-122.390233488,37.737378701],[-122.390279927,37.737405023],[-122.390347086,37.73744309],[-122.390521101,37.737541724],[-122.390468835,37.737599774],[-122.390392682,37.737684354],[-122.390334538,37.737748933],[-122.39012517,37.737981471],[-122.390086795,37.738024093],[-122.389958889,37.738166152],[-122.39013237,37.738264567],[-122.390259937,37.738336935],[-122.390179104,37.738426799],[-122.390137668,37.73847282],[-122.390090371,37.738525351],[-122.389977958,37.738650201],[-122.389766847,37.73853054],[-122.389676827,37.738479423],[-122.389628809,37.738532754],[-122.389562656,37.738606227],[-122.38947531,37.738703236],[-122.389310056,37.738741929],[-122.389221309,37.738946183],[-122.389214061,37.738962867],[-122.389189328,37.739019789],[-122.389116403,37.739102446],[-122.389027358,37.7390529],[-122.388743197,37.738892585],[-122.388672715,37.738852822],[-122.38887466,37.73862882],[-122.38894528,37.738550334],[-122.388954456,37.738540138],[-122.38882809,37.738468429],[-122.388743632,37.738420501],[-122.388824585,37.738330533],[-122.388952445,37.738188704],[-122.389003937,37.738131588],[-122.389023912,37.738109431],[-122.389225225,37.737886126],[-122.389306335,37.737795956],[-122.389251063,37.7377646],[-122.389234725,37.737755332],[-122.389221712,37.737747949],[-122.389001991,37.737623299],[-122.389084583,37.737621975],[-122.389108685,37.737550136],[-122.389186407,37.737318469],[-122.389197945,37.737284074],[-122.389252148,37.737122511],[-122.389222954,37.737111317],[-122.389233711,37.737099477],[-122.38934027,37.737124508],[-122.389408607,37.737046106],[-122.389467844,37.736978146],[-122.389487345,37.736955772],[-122.389437355,37.736927435],[-122.389405125,37.736909166],[-122.389376523,37.736892954],[-122.389403937,37.736862452],[-122.389434829,37.73682808],[-122.389456884,37.736803539],[-122.389659769,37.736578484],[-122.38958937,37.73653863],[-122.389518971,37.736498777],[-122.389448572,37.736458924],[-122.389425105,37.736445637],[-122.389626413,37.736222331],[-122.389650046,37.736196116],[-122.389704338,37.736135891],[-122.389721311,37.736145684],[-122.389729143,37.736150205],[-122.38980558,37.736062607],[-122.389810639,37.736056809],[-122.390007789,37.735830872],[-122.389867026,37.735751107],[-122.389796645,37.735711223],[-122.389845892,37.735654785],[-122.389993633,37.735485471],[-122.389998852,37.735479489],[-122.390072097,37.735395549]]]]}},"NC-3","No Limit",0.0000063844399164568275,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","NC-3",712.1,20380,0.0218020660169967,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":0.0000013948657584063273,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19769,"shape_length":0.0062402092865645195,"gen":"Mixed Use","index":200},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.427051273,37.742369855],[-122.427060121,37.742462966],[-122.426887699,37.742473406],[-122.426917799,37.742790194],[-122.426918594,37.74279856],[-122.426926083,37.742877369],[-122.427012263,37.742872185],[-122.427020664,37.742960246],[-122.427027169,37.743028709],[-122.427033675,37.743097174],[-122.42704018,37.743165638],[-122.427046685,37.743234102],[-122.427050536,37.743274633],[-122.427053191,37.743302566],[-122.427058043,37.743353624],[-122.427059696,37.743371031],[-122.427066202,37.743439495],[-122.427072707,37.74350796],[-122.427079982,37.743584526],[-122.427088505,37.743674211],[-122.42667038,37.743699579],[-122.426708916,37.744105151],[-122.426711424,37.744131555],[-122.426588334,37.74413909],[-122.426569182,37.744140263],[-122.426224353,37.744161372],[-122.426223152,37.744148723],[-122.426221101,37.744127139],[-122.426217849,37.744092907],[-122.426211344,37.744024443],[-122.426204839,37.743955979],[-122.426198335,37.743887515],[-122.42619144,37.743814943],[-122.426183286,37.743729129],[-122.426250639,37.743725043],[-122.426242029,37.743635557],[-122.426234985,37.743561414],[-122.42623671,37.74356131],[-122.426222777,37.743414668],[-122.426221619,37.743402473],[-122.426214073,37.743323054],[-122.42620861,37.743265544],[-122.426203146,37.743208034],[-122.426192738,37.743098491],[-122.426184412,37.743010857],[-122.426175983,37.742922491],[-122.426344317,37.742912366],[-122.426336585,37.742825372],[-122.426322342,37.742665105],[-122.426309074,37.742515799],[-122.426308787,37.74251258],[-122.426301314,37.742428475],[-122.426281033,37.742200266],[-122.426273256,37.742112747],[-122.426518203,37.742097909],[-122.426846375,37.742078028],[-122.42693632,37.74207258],[-122.426937715,37.742087262],[-122.426944635,37.742160085],[-122.426952052,37.742238147],[-122.426958557,37.742306611],[-122.426965063,37.742375075],[-122.427051273,37.742369855]]]]}},"NC-1","6:00AM-11:00PM",0.0000013948657584063273,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19769,0.0062402092865645195,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":4.144313955427031e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19776,"shape_length":0.0029206974551127694,"gen":"Mixed Use","index":201},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.497901377,37.737947657],[-122.497928209,37.738332519],[-122.49689679,37.738377659],[-122.496854771,37.738379497],[-122.49682782,37.73799462],[-122.496886427,37.737992033],[-122.496886426,37.737992],[-122.496948672,37.737989284],[-122.497366162,37.73797106],[-122.497575414,37.737961925],[-122.497780524,37.73795297],[-122.497901377,37.737947657]]]]}},"NC-1","6:00AM-11:00PM",4.144313955427031e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19776,0.0029206974551127694,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCD","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000006675347728835227,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=altmain-nf.htm$q=[field%20folio-destination-name:%27721%27]$x=Advanced#JD_721","districtname":"JAPANTOWN NEIGHBORHOOD COMMERCIAL DISTRICT","zoning":"NCD-JAPANTOWN","codesection":721,"objectid":19825,"shape_length":0.014954412451276666,"gen":"Mixed Use","index":202},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.429700837,37.786539193],[-122.429682032,37.786445976],[-122.429655283,37.786313677],[-122.42964048,37.786240463],[-122.429634059,37.786208707],[-122.429479159,37.786228389],[-122.429324825,37.786247999],[-122.429324857,37.786248162],[-122.428685362,37.786335427],[-122.428663586,37.786227715],[-122.428662955,37.786224596],[-122.428656734,37.786193819],[-122.428377791,37.78622926],[-122.428364899,37.786230898],[-122.428292796,37.786240059],[-122.428241497,37.786246577],[-122.428237849,37.786228516],[-122.428181554,37.785949731],[-122.428169585,37.785890454],[-122.428148187,37.785784488],[-122.428065006,37.785350669],[-122.427988927,37.784953879],[-122.428135873,37.78493626],[-122.429992967,37.784713582],[-122.430052995,37.784706383],[-122.430957622,37.7845979],[-122.431204946,37.78456824],[-122.432914248,37.784355055],[-122.432927034,37.784415219],[-122.432981041,37.784669335],[-122.433083398,37.785150939],[-122.432648346,37.785207117],[-122.432422895,37.78523623],[-122.431775806,37.785319784],[-122.431569077,37.785346476],[-122.431366397,37.785372646],[-122.43141488,37.785615893],[-122.431454738,37.785815865],[-122.431482885,37.785957087],[-122.431399145,37.785967728],[-122.431294374,37.785981042],[-122.43070113,37.786056429],[-122.430590079,37.786070541],[-122.430496113,37.786082481],[-122.430410689,37.786093335],[-122.430325266,37.786104191],[-122.430346738,37.786210391],[-122.430362639,37.78628903],[-122.43037653,37.786357729],[-122.430383199,37.786390716],[-122.430392615,37.786437286],[-122.430395376,37.786450942],[-122.430442796,37.786444916],[-122.430461536,37.786538143],[-122.430528502,37.786871267],[-122.4305365,37.786911048],[-122.430425635,37.786925135],[-122.430425546,37.786925146],[-122.430190543,37.786954581],[-122.430073042,37.786969298],[-122.430098389,37.787094657],[-122.430025365,37.787103936],[-122.42998093,37.787109582],[-122.429744775,37.787139589],[-122.429744392,37.787139637],[-122.42971726,37.78701525],[-122.429717094,37.787015166],[-122.429717514,37.787015113],[-122.429717104,37.787013086],[-122.429709059,37.786973252],[-122.429686024,37.786859188],[-122.429642212,37.78664225],[-122.429630638,37.786584942],[-122.429623387,37.786549034],[-122.429684508,37.786541268],[-122.429700837,37.786539193]]]]}},"NCD","6:00AM-2:00AM",0.000006675347728835227,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=altmain-nf.htm$q=[field%20folio-destination-name:%27721%27]$x=Advanced#JD_721","JAPANTOWN NEIGHBORHOOD COMMERCIAL DISTRICT","NCD-JAPANTOWN",721,19825,0.014954412451276666,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCT","commercial_hours_of_operation":"No Limit","shape_area":0.00003249219968461097,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_754","districtname":"MISSION STREET NEIGHBORHOOD COMMERCIAL TRANSIT","zoning":"NCT-MISSION","codesection":754,"objectid":19858,"shape_length":0.08434511512337287,"gen":"Mixed Use","index":203},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.419699305,37.765366246],[-122.419668973,37.765051336],[-122.420154388,37.765022016],[-122.420143889,37.764912479],[-122.420119715,37.76466001],[-122.420118994,37.764652487],[-122.42013714,37.764651391],[-122.420426868,37.764633889],[-122.420469287,37.764631327],[-122.420546922,37.764626865],[-122.420580608,37.764996269],[-122.420482492,37.765002196],[-122.420493146,37.765113464],[-122.420528973,37.765487596],[-122.420535454,37.765555284],[-122.42058955,37.766120204],[-122.420600606,37.76623566],[-122.420561298,37.766238031],[-122.420302019,37.766253694],[-122.42030853,37.766321698],[-122.42031513,37.766390616],[-122.420330863,37.766554922],[-122.420332421,37.766571179],[-122.420339262,37.766642552],[-122.420450831,37.766635812],[-122.420628873,37.766625057],[-122.420637273,37.766712688],[-122.420668866,37.7670426],[-122.420672317,37.767042393],[-122.420682052,37.767144057],[-122.420678602,37.767144266],[-122.420684535,37.767206222],[-122.420686182,37.767223406],[-122.421010445,37.767203818],[-122.421021703,37.767203139],[-122.421113934,37.767197572],[-122.421129381,37.767358866],[-122.421025892,37.767365111],[-122.420701627,37.767384701],[-122.420709757,37.767469592],[-122.420710759,37.767480067],[-122.42004956,37.767520007],[-122.419908749,37.767528674],[-122.419960807,37.768061665],[-122.419816037,37.768070576],[-122.41954966,37.768086665],[-122.41954099,37.768087189],[-122.419534436,37.768018728],[-122.419361952,37.768029146],[-122.419258463,37.768035395],[-122.419198093,37.768039038],[-122.419183895,37.767890739],[-122.419175807,37.76780625],[-122.419136478,37.767395483],[-122.419103708,37.767053205],[-122.419101085,37.767025814],[-122.419161454,37.767022171],[-122.419247694,37.767016963],[-122.419333935,37.767011754],[-122.419712465,37.766988892],[-122.41985517,37.766980109],[-122.419825234,37.766673601],[-122.419333707,37.766703289],[-122.419325309,37.766615659],[-122.419309578,37.766451353],[-122.419303023,37.766382891],[-122.41929909,37.766341815],[-122.419228374,37.766346085],[-122.419225751,37.766318701],[-122.419219197,37.76625024],[-122.419208901,37.766142692],[-122.419206088,37.766113318],[-122.419192979,37.765976396],[-122.419186424,37.765907935],[-122.418761384,37.765933605],[-122.418711609,37.765936608],[-122.418657897,37.765939849],[-122.418633617,37.765686233],[-122.4186133,37.765474008],[-122.418601103,37.765346597],[-122.418579138,37.765117158],[-122.418698426,37.765109954],[-122.41865898,37.764697909],[-122.418597071,37.764051206],[-122.41855165,37.763576738],[-122.418483975,37.763496434],[-122.418415585,37.763408653],[-122.418391163,37.763153529],[-122.418353884,37.762764094],[-122.418438255,37.762759003],[-122.418457367,37.76275785],[-122.418759191,37.762739623],[-122.418879921,37.762732331],[-122.418873367,37.762663869],[-122.418866812,37.762595408],[-122.41844426,37.762620928],[-122.418434704,37.762621504],[-122.418340777,37.762627171],[-122.418327671,37.762490249],[-122.418431153,37.762484005],[-122.418853706,37.762458486],[-122.41884611,37.762379145],[-122.418841646,37.762332517],[-122.418837982,37.762294252],[-122.418835617,37.762269533],[-122.418835361,37.762266868],[-122.418826737,37.762267389],[-122.418821232,37.762209882],[-122.418814934,37.762144085],[-122.418797115,37.761957945],[-122.418795307,37.761939081],[-122.418788718,37.761870314],[-122.418712847,37.761874897],[-122.418705877,37.761802157],[-122.418704451,37.761787267],[-122.418693924,37.761677303],[-122.418686059,37.76159515],[-122.418767653,37.761590222],[-122.418761021,37.761520939],[-122.418759788,37.761508068],[-122.418753156,37.761438786],[-122.418751924,37.761425916],[-122.41874406,37.761343762],[-122.418736117,37.761260787],[-122.418732644,37.761224502],[-122.418728252,37.761178633],[-122.418720388,37.76109648],[-122.418712524,37.761014327],[-122.418704659,37.760932173],[-122.418699731,37.760880688],[-122.418696795,37.760850019],[-122.418691553,37.760795251],[-122.41868893,37.760767866],[-122.418686309,37.760740482],[-122.418681066,37.760685713],[-122.418673989,37.760611775],[-122.418673202,37.760603559],[-122.418665339,37.760521406],[-122.418579105,37.760526614],[-122.418492872,37.760531821],[-122.418485008,37.760449669],[-122.418477145,37.760367516],[-122.418468748,37.760279885],[-122.418582058,37.760273042],[-122.418575182,37.76020129],[-122.418573661,37.760185411],[-122.418557594,37.76001757],[-122.418556284,37.760003879],[-122.418548419,37.759921725],[-122.41860759,37.759918151],[-122.418599727,37.759835998],[-122.418591491,37.759749964],[-122.41858662,37.759699075],[-122.418583998,37.759671691],[-122.418581377,37.759644306],[-122.418576135,37.759589538],[-122.418564339,37.759466307],[-122.41814472,37.75949165],[-122.418113186,37.759493553],[-122.418041241,37.759497893],[-122.41800969,37.75916826],[-122.417997992,37.759046049],[-122.418101471,37.759039805],[-122.418271016,37.759029566],[-122.418357248,37.759024358],[-122.418332347,37.758764206],[-122.418329871,37.758738376],[-122.418323951,37.758676575],[-122.418487805,37.75866668],[-122.418479409,37.758579049],[-122.418459946,37.75837572],[-122.418454701,37.758320936],[-122.418438974,37.758156629],[-122.418423247,37.757992322],[-122.418422854,37.757988214],[-122.418415383,37.757910169],[-122.418407893,37.757831929],[-122.418407519,37.757828014],[-122.418399656,37.757745862],[-122.418391792,37.757663709],[-122.418385238,37.757595247],[-122.418378686,37.757526785],[-122.418372132,37.757458324],[-122.418311771,37.757461955],[-122.418282938,37.757160726],[-122.418274574,37.757073094],[-122.418134834,37.757081502],[-122.418127388,37.757003492],[-122.41812647,37.75699387],[-122.418117369,37.756898796],[-122.418205324,37.756893503],[-122.41819746,37.75681135],[-122.41830956,37.756804605],[-122.418301697,37.756722451],[-122.418293833,37.756640298],[-122.418286756,37.756566359],[-122.41828597,37.756558144],[-122.41827968,37.756492421],[-122.418278107,37.756475991],[-122.41827103,37.756402052],[-122.418269719,37.75638836],[-122.418262379,37.756311684],[-122.418257032,37.756255815],[-122.418254517,37.75622953],[-122.418246653,37.756147377],[-122.418238789,37.756065223],[-122.417819181,37.756090468],[-122.417783827,37.7560926],[-122.417715833,37.7560967],[-122.417706403,37.755998116],[-122.417781271,37.755993601],[-122.417809745,37.755991884],[-122.418229354,37.755966639],[-122.418224636,37.755917346],[-122.418219918,37.755868055],[-122.418217974,37.755847744],[-122.418211268,37.755777685],[-122.41820999,37.755764336],[-122.418200784,37.755668148],[-122.417781178,37.755693393],[-122.417773533,37.755693853],[-122.41767785,37.755699624],[-122.417658993,37.755502498],[-122.41762954,37.755194594],[-122.417586468,37.754744319],[-122.417577151,37.754646919],[-122.417632721,37.754643568],[-122.417678584,37.754640802],[-122.418100028,37.754615447],[-122.418097407,37.75458807],[-122.418094785,37.754560677],[-122.418090854,37.754519609],[-122.418089544,37.754505908],[-122.41807906,37.754396379],[-122.418073818,37.754341609],[-122.418071198,37.754314225],[-122.418068577,37.75428684],[-122.418060714,37.754204687],[-122.417949691,37.754211366],[-122.417941829,37.754129213],[-122.417933966,37.754047059],[-122.417623547,37.754065735],[-122.417617815,37.754066081],[-122.417522143,37.75407185],[-122.41752345,37.754085515],[-122.417495309,37.754087212],[-122.417417913,37.754091878],[-122.417099594,37.754111029],[-122.417090421,37.754015183],[-122.417082059,37.753927551],[-122.417505901,37.753902052],[-122.417856032,37.753880986],[-122.417848714,37.753804312],[-122.417847669,37.753793354],[-122.417820795,37.753512564],[-122.417993232,37.753502016],[-122.41798799,37.753447246],[-122.417984058,37.75340617],[-122.417977507,37.753337709],[-122.417967023,37.75322817],[-122.417966236,37.753219955],[-122.417956539,37.753118632],[-122.417955753,37.753110417],[-122.417949201,37.753041955],[-122.417947891,37.753028264],[-122.417941338,37.752959802],[-122.417940471,37.752950741],[-122.417934786,37.752891341],[-122.41792771,37.752817402],[-122.417926399,37.75280371],[-122.417918536,37.752721556],[-122.41791775,37.75271334],[-122.417909363,37.752625711],[-122.417866255,37.752628348],[-122.417780038,37.752633622],[-122.417676577,37.752639951],[-122.417671335,37.752585181],[-122.417666094,37.752530413],[-122.417660853,37.752475643],[-122.417471175,37.752487246],[-122.41746353,37.752487693],[-122.417375156,37.752492862],[-122.417357817,37.752305978],[-122.41787692,37.752271365],[-122.417867875,37.752175412],[-122.417852152,37.75200864],[-122.41784356,37.751917501],[-122.417819432,37.751661556],[-122.417780582,37.751249445],[-122.417765402,37.751088421],[-122.417734672,37.750762437],[-122.417726289,37.750673508],[-122.417717492,37.750584904],[-122.417678101,37.750188102],[-122.417645583,37.749860542],[-122.417613533,37.749537686],[-122.417576263,37.749162233],[-122.417567639,37.749075363],[-122.417048845,37.749106505],[-122.416518515,37.749138339],[-122.41654383,37.749402895],[-122.41651798,37.749404454],[-122.416328878,37.749415937],[-122.416122249,37.749428482],[-122.415979985,37.749437064],[-122.415954642,37.749172182],[-122.41538858,37.749206155],[-122.415413966,37.749471485],[-122.415388114,37.749473054],[-122.41521568,37.749483522],[-122.414990227,37.749497209],[-122.414886673,37.749503459],[-122.414861248,37.749237865],[-122.414856854,37.749192072],[-122.414827327,37.748884401],[-122.414824139,37.748851183],[-122.414865674,37.748832388],[-122.414930162,37.748803206],[-122.414975499,37.74878269],[-122.41493222,37.748360154],[-122.414918963,37.74823073],[-122.415862793,37.748212149],[-122.417667153,37.748176607],[-122.418221171,37.748165688],[-122.419167513,37.74814711],[-122.419170604,37.748179391],[-122.419186013,37.748340389],[-122.419198939,37.748475424],[-122.419095476,37.748481668],[-122.418836828,37.748497378],[-122.418843381,37.74856584],[-122.418849933,37.748634301],[-122.418851615,37.748651869],[-122.418856486,37.748702763],[-122.418876144,37.748908147],[-122.418878722,37.748935087],[-122.418884531,37.748995777],[-122.41870996,37.74900638],[-122.418718369,37.749095159],[-122.418731435,37.749233093],[-122.418754055,37.749471898],[-122.41876619,37.749600009],[-122.418757377,37.749600536],[-122.418740949,37.749601517],[-122.418333615,37.749626078],[-122.418191904,37.74963461],[-122.418210995,37.749834553],[-122.418231126,37.750045383],[-122.418372929,37.750036847],[-122.418768029,37.750013023],[-122.418780265,37.750012285],[-122.418805102,37.750010802],[-122.418805203,37.750011879],[-122.418819581,37.750163668],[-122.418852977,37.750516227],[-122.418861393,37.750605067],[-122.418870064,37.750693896],[-122.41890293,37.751030522],[-122.418922667,37.751232683],[-122.418962722,37.751642945],[-122.418966874,37.751685469],[-122.418982226,37.751842718],[-122.419004254,37.751841363],[-122.419207763,37.751829092],[-122.41931123,37.751822852],[-122.419414699,37.751816613],[-122.419521717,37.751809959],[-122.419531207,37.751906186],[-122.419557366,37.752171411],[-122.419580177,37.752417624],[-122.419561068,37.75241874],[-122.419472832,37.752423894],[-122.419398295,37.752428454],[-122.419307622,37.752434001],[-122.419228302,37.752438855],[-122.419148982,37.752443708],[-122.419064969,37.752448848],[-122.41906115,37.752449054],[-122.419041851,37.752450098],[-122.419065722,37.752728499],[-122.419068364,37.752728337],[-122.419073922,37.752786406],[-122.419080476,37.752854867],[-122.419087029,37.752923328],[-122.419093582,37.75299179],[-122.419145312,37.752988624],[-122.419151866,37.753057086],[-122.419100135,37.753060251],[-122.419106689,37.753128713],[-122.419113242,37.753197174],[-122.419119795,37.753265635],[-122.419550885,37.753239259],[-122.419582221,37.753237428],[-122.419655734,37.753233135],[-122.419668422,37.753370082],[-122.419585773,37.753374909],[-122.419563992,37.753376182],[-122.419132902,37.753402558],[-122.4191388,37.753464173],[-122.419139455,37.753471019],[-122.419146009,37.75353948],[-122.419154343,37.753626541],[-122.419357818,37.753614092],[-122.419585434,37.753600164],[-122.419591583,37.753599805],[-122.419689179,37.753594104],[-122.419705448,37.7537697],[-122.419257374,37.753796665],[-122.419264297,37.753869182],[-122.419265739,37.753884297],[-122.419286711,37.754103373],[-122.419200483,37.754108562],[-122.419203629,37.754141424],[-122.419210969,37.7542181],[-122.419216212,37.754272869],[-122.419221454,37.754327638],[-122.419227484,37.754390622],[-122.41923194,37.754437176],[-122.419239805,37.754519329],[-122.419242427,37.754546714],[-122.41924767,37.754601482],[-122.41924898,37.754615175],[-122.419252223,37.754649059],[-122.419261301,37.754743882],[-122.419263398,37.75476579],[-122.419273884,37.754875328],[-122.41928437,37.754984866],[-122.419715509,37.75495892],[-122.41973852,37.754957534],[-122.419818481,37.754952718],[-122.419857943,37.755365729],[-122.420254321,37.755340307],[-122.420391186,37.755331528],[-122.420398835,37.7554067],[-122.420400757,37.755425591],[-122.420416473,37.755589729],[-122.420432507,37.755757213],[-122.420429022,37.755757614],[-122.420388191,37.755760078],[-122.420396057,37.755842231],[-122.420440392,37.755839556],[-122.420447165,37.755910296],[-122.420456341,37.756006142],[-122.420462633,37.756071865],[-122.42046539,37.756100663],[-122.420468926,37.756137587],[-122.420475219,37.75620331],[-122.420481774,37.756271772],[-122.420490397,37.756271253],[-122.420499704,37.756368467],[-122.420509013,37.756465682],[-122.420522123,37.756602605],[-122.420558339,37.756600425],[-122.420581863,37.756846114],[-122.420590231,37.756933746],[-122.420668459,37.756929038],[-122.420675538,37.757003166],[-122.420676827,37.757016669],[-122.420691249,37.757167284],[-122.420688948,37.757167422],[-122.420696568,37.757247006],[-122.420618962,37.757251695],[-122.420500254,37.757258867],[-122.420437762,37.757262642],[-122.420371928,37.757267023],[-122.420372101,37.75726866],[-122.420300033,37.757273456],[-122.420165513,37.757281552],[-122.420080421,37.757286673],[-122.42004134,37.757289025],[-122.419995362,37.757291793],[-122.419910269,37.757296912],[-122.419788772,37.757304225],[-122.419733773,37.757307529],[-122.419719651,37.757308377],[-122.419739056,37.757511987],[-122.419759585,37.757727384],[-122.419744645,37.757728281],[-122.419690916,37.757731509],[-122.419423215,37.75774762],[-122.419426108,37.757777835],[-122.419428983,37.757807865],[-122.419434751,37.75786811],[-122.419438158,37.757903711],[-122.419440517,37.757928357],[-122.419446285,37.757988603],[-122.419447333,37.757999557],[-122.419452052,37.758048849],[-122.419456509,37.758095402],[-122.41945782,37.758109094],[-122.419463588,37.75816934],[-122.419465685,37.758191247],[-122.419469355,37.758229586],[-122.419474861,37.758287093],[-122.419604209,37.75827931],[-122.419742563,37.758270984],[-122.419758644,37.758270018],[-122.419811003,37.758266866],[-122.419841317,37.758584925],[-122.419848875,37.758675655],[-122.419868277,37.758908533],[-122.419874007,37.758977327],[-122.419808842,37.758980749],[-122.419550149,37.758996376],[-122.41955513,37.759048406],[-122.419556703,37.759064837],[-122.419559115,37.759090032],[-122.419562995,37.75913056],[-122.419563258,37.759133298],[-122.419569811,37.759201758],[-122.419576104,37.759267482],[-122.419578725,37.759294866],[-122.419582658,37.759335943],[-122.41958528,37.759363328],[-122.419589212,37.759404404],[-122.419591834,37.759431788],[-122.419595767,37.759472865],[-122.419599699,37.759513942],[-122.419602321,37.759541327],[-122.419606253,37.759582403],[-122.419608875,37.759609788],[-122.419615429,37.759678249],[-122.419621984,37.75974671],[-122.419623295,37.759760402],[-122.419628538,37.759815172],[-122.41962985,37.759828863],[-122.419635093,37.759883632],[-122.419764441,37.759875819],[-122.419893788,37.759868006],[-122.419910283,37.759867139],[-122.419947974,37.75986516],[-122.419974947,37.760188909],[-122.419983628,37.760279578],[-122.420005743,37.760510558],[-122.419936756,37.760514721],[-122.419833277,37.760520972],[-122.419747044,37.760526181],[-122.419695304,37.760529307],[-122.419701859,37.760597768],[-122.419667366,37.760599851],[-122.41967392,37.760668313],[-122.419680475,37.760736774],[-122.419687029,37.760805235],[-122.419688315,37.760818666],[-122.419693584,37.760873696],[-122.419700138,37.760942158],[-122.419706693,37.761010618],[-122.419713247,37.761079079],[-122.419719802,37.761147541],[-122.419726356,37.761216001],[-122.420002303,37.761199333],[-122.42003766,37.7611972],[-122.420071291,37.76119517],[-122.420077978,37.761265018],[-122.420119506,37.761698739],[-122.420128161,37.761789139],[-122.420151603,37.762027573],[-122.420176356,37.762279345],[-122.420193528,37.762454012],[-122.420124952,37.762458261],[-122.42002147,37.762464512],[-122.419935235,37.762469721],[-122.419849,37.762474931],[-122.419855555,37.762543391],[-122.419864731,37.762639237],[-122.41986593,37.762651737],[-122.419868404,37.762677559],[-122.419869324,37.762687158],[-122.419867821,37.76268725],[-122.419864472,37.762687452],[-122.419869065,37.762735375],[-122.41987693,37.762817528],[-122.419889166,37.762945324],[-122.419894114,37.762996996],[-122.419894876,37.763004953],[-122.419896839,37.763025437],[-122.420361885,37.762997345],[-122.420542535,37.762986432],[-122.421007548,37.76295834],[-122.421009511,37.762978822],[-122.421010273,37.762986779],[-122.421012293,37.76300788],[-122.421035422,37.763249383],[-122.421043803,37.7633399],[-122.421184084,37.763331714],[-122.421191907,37.763416203],[-122.421220316,37.763712874],[-122.421220753,37.763717432],[-122.42119973,37.763718702],[-122.42116808,37.763720614],[-122.421121512,37.763723428],[-122.421074944,37.763726241],[-122.42088012,37.763738011],[-122.420864242,37.763738973],[-122.420871844,37.763818372],[-122.420873498,37.763818273],[-122.42087452,37.763870555],[-122.420874959,37.763870528],[-122.420875788,37.763879188],[-122.420877471,37.763896761],[-122.420881601,37.763939892],[-122.420887413,37.764000594],[-122.42089266,37.764055374],[-122.420893228,37.764061297],[-122.42089904,37.764122001],[-122.420904853,37.764182704],[-122.421117428,37.764169874],[-122.421163996,37.764167064],[-122.421185409,37.764390653],[-122.421198614,37.764528538],[-122.42118899,37.764529113],[-122.421174266,37.764530008],[-122.421152045,37.764531349],[-122.421110745,37.764533841],[-122.421024506,37.764539045],[-122.420938268,37.76454425],[-122.42093652,37.764525076],[-122.420831308,37.764531425],[-122.420617438,37.764544333],[-122.420546496,37.764548409],[-122.420539803,37.764548794],[-122.420517624,37.76430558],[-122.420487624,37.763976592],[-122.420409991,37.763981053],[-122.420119802,37.763998583],[-122.42012544,37.764060406],[-122.420131309,37.764124778],[-122.420137179,37.764189149],[-122.420143049,37.764253519],[-122.420148634,37.764314788],[-122.4201498,37.764327572],[-122.420152368,37.764355738],[-122.420090936,37.764359449],[-122.420094006,37.764391511],[-122.420100168,37.764455864],[-122.420106198,37.764518848],[-122.420107982,37.764537473],[-122.420115349,37.764614419],[-122.42011826,37.764644816],[-122.420098343,37.764646019],[-122.41977331,37.764665653],[-122.419632646,37.764674192],[-122.419668973,37.765051336],[-122.419237007,37.765077427],[-122.419247505,37.765186964],[-122.419267168,37.765392347],[-122.419560378,37.765374637],[-122.419613502,37.765371429],[-122.419699305,37.765366246]],[[-122.420011098,37.756968601],[-122.419966165,37.756498347],[-122.419862614,37.756504584],[-122.419543686,37.756523778],[-122.419544289,37.75653008],[-122.41955024,37.756592239],[-122.419556794,37.7566607],[-122.419580315,37.75690639],[-122.419582603,37.756930348],[-122.419588681,37.756994021],[-122.419689114,37.756987977],[-122.420011098,37.756968601]],[[-122.418478021,37.752591286],[-122.418445271,37.752239453],[-122.418901066,37.752211568],[-122.418891586,37.752113884],[-122.418866399,37.751850739],[-122.418548374,37.751869914],[-122.418533031,37.751870866],[-122.418409758,37.751878513],[-122.418445271,37.752239453],[-122.418005373,37.752264153],[-122.418012481,37.752343953],[-122.418038689,37.752617798],[-122.418124907,37.752612524],[-122.418332056,37.752599852],[-122.418412846,37.752595112],[-122.418478021,37.752591286]]]]}},"NCT","No Limit",0.00003249219968461097,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_754","MISSION STREET NEIGHBORHOOD COMMERCIAL TRANSIT","NCT-MISSION",754,19858,0.08434511512337287,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":8.211061340844774e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19717,"shape_length":0.0036787895994537445,"gen":"Mixed Use","index":204},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.502302855,37.756459719],[-122.502423735,37.75645436],[-122.502450478,37.75683458],[-122.502477248,37.757215172],[-122.502356367,37.757220531],[-122.502238545,37.757225751],[-122.502152202,37.757229576],[-122.501941917,37.75723889],[-122.50189317,37.75724105],[-122.501806827,37.757244875],[-122.501720483,37.757248699],[-122.501634138,37.757252524],[-122.501521892,37.757257495],[-122.501401011,37.757262854],[-122.501374215,37.756881822],[-122.501348931,37.756501675],[-122.501475528,37.756496367],[-122.50181376,37.756481385],[-122.501882834,37.756478325],[-122.501951909,37.756475266],[-122.502302855,37.756459719]]]]}},"NC-1","6:00AM-11:00PM",8.211061340844774e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19717,0.0036787895994537445,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCD","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000113836042615031,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_725.1","districtname":"UNION STREET NEIGHBORHOOD COMMERCIAL","zoning":"NCD-UNION","codesection":725.1,"objectid":20478,"shape_length":0.037653252558738685,"gen":"Mixed Use","index":205},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.435501573,37.799477696],[-122.435373427,37.799494008],[-122.435363779,37.79944627],[-122.435344872,37.799352717],[-122.435298015,37.799120868],[-122.435278955,37.79902656],[-122.435470982,37.799002135],[-122.435452298,37.798909984],[-122.435422243,37.79876176],[-122.435419384,37.798747661],[-122.435404319,37.798673367],[-122.435392437,37.798614767],[-122.435386396,37.798584973],[-122.435376775,37.798537523],[-122.43540739,37.798533628],[-122.435415716,37.798532569],[-122.435406126,37.798485114],[-122.435389684,37.798403764],[-122.435377079,37.798341395],[-122.435340361,37.798159713],[-122.435321522,37.798066499],[-122.434923056,37.79811719],[-122.434904218,37.798023975],[-122.434828925,37.797651411],[-122.434791334,37.797656194],[-122.434746908,37.797661845],[-122.434705899,37.797667062],[-122.43466489,37.797672278],[-122.434582873,37.797682713],[-122.434500857,37.797693146],[-122.434398335,37.797706189],[-122.434391427,37.797671999],[-122.434377727,37.797604207],[-122.434292292,37.797615075],[-122.434206859,37.797625944],[-122.434038071,37.797647414],[-122.433990321,37.797653488],[-122.433920599,37.797662358],[-122.433803126,37.797677301],[-122.433678391,37.797693167],[-122.43358954,37.797704469],[-122.433504105,37.797715336],[-122.433418671,37.797726204],[-122.433333236,37.797737071],[-122.433346979,37.797804858],[-122.43335385,37.797838751],[-122.433259872,37.797850705],[-122.433236378,37.797853694],[-122.433140263,37.797865919],[-122.433118905,37.797868636],[-122.432883959,37.79789852],[-122.432868843,37.797823955],[-122.432740691,37.797840255],[-122.432726948,37.797772468],[-122.432573165,37.797792029],[-122.432570417,37.797778471],[-122.432384435,37.797802127],[-122.43234637,37.797806968],[-122.432266962,37.797817069],[-122.432253861,37.797752241],[-122.432136388,37.797767183],[-122.432033866,37.797780224],[-122.432050936,37.797864684],[-122.43182197,37.797893807],[-122.43184937,37.798029391],[-122.431778972,37.798038345],[-122.431763935,37.798040257],[-122.4316785,37.798051124],[-122.431668248,37.798052427],[-122.431582813,37.798063294],[-122.431497377,37.79807416],[-122.431411942,37.798085026],[-122.431326507,37.798095892],[-122.431241072,37.798106758],[-122.430770403,37.798166619],[-122.430652929,37.79818156],[-122.430610639,37.797972133],[-122.430493165,37.797987072],[-122.430339039,37.798006673],[-122.430272043,37.798015194],[-122.430293086,37.79811937],[-122.430225377,37.798127981],[-122.430136524,37.798139281],[-122.430151085,37.798211366],[-122.430065649,37.798222231],[-122.430072489,37.798256092],[-122.4300657,37.798256956],[-122.429987053,37.798266957],[-122.429980265,37.79826782],[-122.42988453,37.798279994],[-122.429876494,37.798281017],[-122.429723957,37.798300415],[-122.429638522,37.798311279],[-122.429553086,37.798322144],[-122.429542787,37.798323453],[-122.42946765,37.798333008],[-122.429436563,37.798336961],[-122.42942084,37.798259113],[-122.429405116,37.798181265],[-122.429384612,37.798183873],[-122.429299176,37.798194737],[-122.429185262,37.798209223],[-122.429094131,37.798220811],[-122.429056044,37.798225654],[-122.428976656,37.79823575],[-122.428979356,37.798249119],[-122.428861883,37.798264058],[-122.428743838,37.798279069],[-122.428658402,37.798289933],[-122.428572965,37.798300797],[-122.428586657,37.79836859],[-122.428501222,37.798379454],[-122.428516283,37.798454027],[-122.428424012,37.798465759],[-122.428420738,37.798466176],[-122.428331741,37.798477493],[-122.42823947,37.798489226],[-122.42814777,37.798500886],[-122.427976327,37.798522686],[-122.427890891,37.798533549],[-122.42787583,37.798458978],[-122.427773307,37.798472013],[-122.427568403,37.798498067],[-122.427465548,37.798511146],[-122.427413199,37.798517803],[-122.427348073,37.798526084],[-122.427349434,37.798532817],[-122.427231959,37.798547754],[-122.427043998,37.798571653],[-122.426958563,37.798582515],[-122.426867426,37.798594102],[-122.426781989,37.798604965],[-122.426795685,37.798672757],[-122.426729441,37.798681179],[-122.426690383,37.798686146],[-122.426632437,37.798693513],[-122.426587859,37.79869918],[-122.426540165,37.798705244],[-122.42649217,37.798711347],[-122.426382811,37.79872525],[-122.426365874,37.798727403],[-122.426289043,37.798737171],[-122.426280437,37.798738266],[-122.426243135,37.798743008],[-122.426195062,37.79874912],[-122.42618931,37.798720647],[-122.426183018,37.798689498],[-122.426169041,37.798620313],[-122.42604103,37.798636588],[-122.425916863,37.798652374],[-122.425811004,37.798665832],[-122.425768253,37.798671267],[-122.425693528,37.798680767],[-122.425708527,37.79875512],[-122.425591051,37.798770056],[-122.425507391,37.798780692],[-122.425421955,37.798791554],[-122.425408011,37.798793326],[-122.425336518,37.798802415],[-122.425248621,37.79881359],[-122.425165645,37.79882414],[-122.425163713,37.798824385],[-122.425080207,37.798835001],[-122.425091256,37.798889779],[-122.425090231,37.798889909],[-122.425004886,37.798900759],[-122.424919948,37.798911558],[-122.424923257,37.798927956],[-122.424837819,37.798938818],[-122.424748815,37.798950133],[-122.424734212,37.798951989],[-122.424705023,37.79880742],[-122.424704021,37.798806561],[-122.424702028,37.798804851],[-122.424621985,37.798736161],[-122.424588664,37.798570959],[-122.424569843,37.798477743],[-122.424534927,37.798482181],[-122.424516106,37.798388965],[-122.424440898,37.79801609],[-122.424444829,37.798015591],[-122.424506226,37.798007785],[-122.424538809,37.798003643],[-122.42461177,37.797994368],[-122.424632788,37.797991697],[-122.424728476,37.797979532],[-122.424822456,37.797967584],[-122.424916436,37.797955637],[-122.424986659,37.79794671],[-122.425010414,37.79794369],[-122.425023013,37.798006154],[-122.425026824,37.798025044],[-122.425044055,37.798110465],[-122.425085626,37.798316563],[-122.425104447,37.79840978],[-122.4253971,37.798372574],[-122.425625504,37.798343536],[-122.425759312,37.798326524],[-122.426307485,37.798256831],[-122.426587026,37.798221289],[-122.426665245,37.798211344],[-122.426681605,37.798209265],[-122.427268975,37.798134582],[-122.427189878,37.79774308],[-122.427307352,37.797728143],[-122.427520941,37.797700984],[-122.42761492,37.797689034],[-122.42778579,37.797667307],[-122.42789002,37.797654054],[-122.427975456,37.79764319],[-122.427983261,37.797642198],[-122.427975203,37.797602298],[-122.4279682,37.797567625],[-122.428045825,37.797557755],[-122.428056481,37.7975564],[-122.428151764,37.797544285],[-122.428241021,37.797532933],[-122.428329469,37.797521687],[-122.428344536,37.797596259],[-122.428519223,37.797574046],[-122.428717431,37.797548841],[-122.428769754,37.797542187],[-122.428834904,37.797533902],[-122.428854073,37.797628813],[-122.428971546,37.797613874],[-122.42908324,37.79759967],[-122.429222354,37.797581979],[-122.429205382,37.797497916],[-122.429187859,37.797411132],[-122.429361769,37.797389096],[-122.429439949,37.79737919],[-122.42946259,37.797376321],[-122.429563412,37.797363545],[-122.42959289,37.797359811],[-122.429663664,37.797350843],[-122.429749106,37.797340016],[-122.429834548,37.797329189],[-122.429919991,37.797318362],[-122.429987601,37.797309794],[-122.430005433,37.797307535],[-122.430006374,37.7973122],[-122.430013022,37.797345125],[-122.430016285,37.797361282],[-122.430026197,37.797410364],[-122.430038013,37.797468884],[-122.430120037,37.797458489],[-122.430118577,37.797451258],[-122.430208291,37.797439889],[-122.430209751,37.797447122],[-122.430379782,37.797425575],[-122.43041702,37.797420856],[-122.430497265,37.797410687],[-122.430487821,37.797363918],[-122.430485379,37.797351823],[-122.430602851,37.797336882],[-122.430731002,37.797320584],[-122.430901871,37.797298852],[-122.430987305,37.797287987],[-122.431072739,37.797277121],[-122.431158174,37.797266255],[-122.431329705,37.797244439],[-122.431363879,37.797240093],[-122.431398052,37.797235746],[-122.431483487,37.797224879],[-122.431653692,37.797203232],[-122.43173381,37.797193041],[-122.43173979,37.797192281],[-122.431825223,37.797181414],[-122.432013178,37.797157508],[-122.43213065,37.797142566],[-122.432123356,37.79710648],[-122.432110099,37.797040879],[-122.432227571,37.797025937],[-122.432459951,37.796996379],[-122.432562471,37.796983338],[-122.432654739,37.796971602],[-122.432669375,37.796969741],[-122.432740173,37.796960735],[-122.432825607,37.796949868],[-122.432880255,37.796942917],[-122.43291104,37.796939001],[-122.432996474,37.796928133],[-122.433152352,37.796908305],[-122.433167341,37.796906398],[-122.433180843,37.796973202],[-122.433187894,37.797008086],[-122.433211421,37.797005094],[-122.433347903,37.796987733],[-122.433655393,37.796948619],[-122.433703144,37.796942544],[-122.433772863,37.796933676],[-122.433785369,37.796995363],[-122.433902851,37.796980472],[-122.434073734,37.796958812],[-122.434159175,37.796947983],[-122.434268942,37.79693407],[-122.434372778,37.796920907],[-122.434360409,37.7968599],[-122.434454394,37.796847987],[-122.434494158,37.796842946],[-122.434633821,37.796825243],[-122.434719261,37.796814413],[-122.434804702,37.796803583],[-122.434907231,37.796790586],[-122.434916688,37.796789387],[-122.434999948,37.796778834],[-122.435004084,37.796799297],[-122.435017785,37.796867089],[-122.435035869,37.796956575],[-122.435334885,37.796918534],[-122.435351061,37.796916476],[-122.435452356,37.796903589],[-122.435450724,37.796895514],[-122.435568205,37.796880621],[-122.435788421,37.796852705],[-122.43589095,37.796839708],[-122.435877223,37.79677192],[-122.435863495,37.796704131],[-122.435849768,37.796636342],[-122.435935208,37.796625511],[-122.435921146,37.796556072],[-122.435923182,37.796555813],[-122.436006578,37.796545203],[-122.436025702,37.79654277],[-122.436092011,37.796534334],[-122.436119678,37.796530813],[-122.436177443,37.796523464],[-122.436230741,37.796516683],[-122.436262876,37.796512594],[-122.436316173,37.796505813],[-122.436348309,37.796501724],[-122.436433741,37.796490854],[-122.436489273,37.796483789],[-122.436519174,37.796479985],[-122.436526039,37.796513879],[-122.436539767,37.796581668],[-122.436625199,37.796570798],[-122.436638928,37.796638586],[-122.436652657,37.796706375],[-122.436666384,37.796774163],[-122.436986758,37.7967334],[-122.436998679,37.796731883],[-122.437101984,37.796718739],[-122.437105151,37.796718336],[-122.437116255,37.796773253],[-122.437137704,37.79687934],[-122.437308841,37.796857565],[-122.437348072,37.796852573],[-122.437520567,37.796830625],[-122.437524417,37.796849676],[-122.437539404,37.796923839],[-122.437563259,37.797041783],[-122.437583277,37.797140757],[-122.437317114,37.797174624],[-122.437200409,37.797189473],[-122.437190814,37.797142018],[-122.437072561,37.797157064],[-122.436955559,37.797171951],[-122.436856455,37.797184559],[-122.436870158,37.797252352],[-122.436784724,37.797263222],[-122.436798426,37.797331014],[-122.436712993,37.797341883],[-122.436726694,37.797409675],[-122.436641262,37.797420545],[-122.436555827,37.797431414],[-122.436470393,37.797442284],[-122.43638496,37.797453154],[-122.436299526,37.797464023],[-122.43628244,37.797466197],[-122.436214093,37.797474892],[-122.436043225,37.79749663],[-122.436044324,37.797502071],[-122.436058026,37.797569863],[-122.436071727,37.797637654],[-122.436085428,37.797705446],[-122.43609913,37.797773238],[-122.436118583,37.797869486],[-122.436126211,37.797907228],[-122.436137422,37.7979627],[-122.436156261,37.798055915],[-122.436169416,37.798120994],[-122.436182569,37.798186074],[-122.436195723,37.798251154],[-122.436208876,37.798316234],[-122.43622203,37.798381315],[-122.436231621,37.79842877],[-122.436480663,37.798397085],[-122.436490255,37.798444539],[-122.436517659,37.798580123],[-122.436524121,37.798612097],[-122.436520704,37.798612533],[-122.436552493,37.798769809],[-122.436571166,37.79886219],[-122.436543031,37.79886577],[-122.436310437,37.798895357],[-122.436293927,37.798897457],[-122.436312946,37.798991559],[-122.43634583,37.79915426],[-122.436374594,37.799150596],[-122.436427846,37.79914381],[-122.43644009,37.79914225],[-122.436505589,37.799133904],[-122.436536854,37.79928859],[-122.436538474,37.799296605],[-122.436548149,37.799344472],[-122.436539751,37.799345541],[-122.436510928,37.79934921],[-122.436396074,37.799363831],[-122.43640569,37.799411398],[-122.436418844,37.799476479],[-122.436101003,37.799516819],[-122.435983456,37.799531738],[-122.435960785,37.799419242],[-122.435834928,37.799435262],[-122.435805399,37.799439021],[-122.435501573,37.799477696]]]]}},"NCD","6:00AM-2:00AM",0.0000113836042615031,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_725.1","UNION STREET NEIGHBORHOOD COMMERCIAL","NCD-UNION",725.1,20478,0.037653252558738685,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":1.36005609743556e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19751,"shape_length":0.0015516016394223793,"gen":"Mixed Use","index":206},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.431312403,37.712641599],[-122.431319155,37.71262002],[-122.431327745,37.712592571],[-122.431354176,37.712508106],[-122.431427186,37.712274792],[-122.431428312,37.712273607],[-122.431436408,37.712243713],[-122.431623252,37.712217419],[-122.431753143,37.71219914],[-122.431753437,37.712199825],[-122.431737371,37.712251166],[-122.431718453,37.712311624],[-122.431692813,37.712393559],[-122.431666498,37.712477654],[-122.43163882,37.712566103],[-122.431623511,37.712615026],[-122.431612583,37.712649946],[-122.431597084,37.712699476],[-122.431312403,37.712641599]]]]}},"NC-1","6:00AM-11:00PM",1.36005609743556e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19751,0.0015516016394223793,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"Job Corps","commercial_hours_of_operation":null,"shape_area":0.000015024424446882948,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article2usedistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_249.52","districtname":"JOB CORPS","zoning":"Job Corps","codesection":249.52,"objectid":20505,"shape_length":0.0218208313202548,"gen":"Public","index":207},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.370958004,37.823204082],[-122.370079158,37.821875791],[-122.3698621,37.821965763],[-122.369473884,37.822126679],[-122.3683121,37.822608229],[-122.367995987,37.822130423],[-122.367845308,37.821902669],[-122.368586055,37.821595639],[-122.369007083,37.821421125],[-122.369395297,37.82126021],[-122.369330909,37.821162889],[-122.369230683,37.821011398],[-122.36922578,37.821015841],[-122.368871401,37.820480199],[-122.370020947,37.820003701],[-122.369278801,37.818881954],[-122.369224352,37.81879965],[-122.369207712,37.818774499],[-122.369220796,37.818768995],[-122.369286325,37.818741422],[-122.369561677,37.818625565],[-122.370376298,37.818282797],[-122.371075376,37.819339433],[-122.371646703,37.820202951],[-122.372177911,37.821005815],[-122.373863993,37.823554009],[-122.371767154,37.824426986],[-122.371550297,37.824517267],[-122.371397926,37.824580701],[-122.37058878,37.823357796],[-122.370741149,37.823294362],[-122.370958004,37.823204082]]]]}},"Job Corps",null,0.000015024424446882948,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article2usedistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_249.52","JOB CORPS","Job Corps",249.52,20505,0.0218208313202548,"Public"],[{"type":"Feature","properties":{"zoning_sim":"NCD","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000023468829073157593,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_723.1","districtname":"POLK STREET NEIGHBORHOOD COMMERCIAL","zoning":"NCD-POLK","codesection":723.1,"objectid":20476,"shape_length":0.04856442194157354,"gen":"Mixed Use","index":208},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.421001553,37.795120901],[-122.420997728,37.795102048],[-122.420994823,37.795102419],[-122.420975923,37.795009212],[-122.420925155,37.794762412],[-122.420903742,37.794658314],[-122.420905803,37.794658053],[-122.420982694,37.794648285],[-122.421059584,37.794638518],[-122.421213366,37.794618983],[-122.421196135,37.794533678],[-122.421174498,37.794426566],[-122.421143425,37.794272733],[-122.421139811,37.794254817],[-122.421124621,37.794179515],[-122.420973213,37.794198747],[-122.420892365,37.794209017],[-122.420873561,37.794115799],[-122.420805677,37.793762309],[-122.420720235,37.793773131],[-122.420699456,37.793664924],[-122.420784897,37.793654104],[-122.420870338,37.793643283],[-122.420863647,37.793608442],[-122.420957633,37.793596538],[-122.420919571,37.79339834],[-122.420914962,37.793375419],[-122.420899732,37.793299691],[-122.42084227,37.793306968],[-122.420770627,37.793316041],[-122.42075297,37.793228239],[-122.420719571,37.793063301],[-122.420696456,37.792949144],[-122.420567968,37.792965474],[-122.420554241,37.792897685],[-122.420597298,37.792892213],[-122.420682729,37.792881356],[-122.420670321,37.792820076],[-122.420656484,37.792751745],[-122.420827346,37.79273003],[-122.420783421,37.792513106],[-122.420779613,37.792494236],[-122.420764608,37.792419888],[-122.420583373,37.792442921],[-122.420564561,37.792349704],[-122.420516416,37.792111934],[-122.420492633,37.791994482],[-122.420374715,37.792009345],[-122.420347263,37.791873767],[-122.420526702,37.79185115],[-122.420484048,37.791640494],[-122.420477686,37.791608709],[-122.420465385,37.791547258],[-122.420475739,37.791545953],[-122.420457077,37.791452717],[-122.420424684,37.791292735],[-122.42039229,37.791132754],[-122.420324617,37.791141284],[-122.420289755,37.791145679],[-122.420187219,37.791158603],[-122.420084683,37.791171527],[-122.419982148,37.791184452],[-122.419879611,37.791197376],[-122.419691628,37.791221071],[-122.419597296,37.791232961],[-122.41958077,37.791151343],[-122.419564135,37.791069183],[-122.419520387,37.791074697],[-122.419426053,37.791086587],[-122.41933172,37.791098477],[-122.419222349,37.791112263],[-122.419182935,37.791117291],[-122.419104913,37.791127243],[-122.419134573,37.791273676],[-122.419082685,37.791280295],[-122.419017088,37.791288662],[-122.418674378,37.791327183],[-122.41854805,37.791341383],[-122.418453803,37.791351976],[-122.418359558,37.791362569],[-122.418350419,37.791363597],[-122.418265312,37.791373163],[-122.418171066,37.791383755],[-122.418092276,37.79139261],[-122.41807682,37.791394348],[-122.418006599,37.79140224],[-122.417992848,37.791334443],[-122.417979098,37.791266645],[-122.417877964,37.791278011],[-122.41757809,37.791311715],[-122.417536232,37.791317013],[-122.417462325,37.791326368],[-122.41745784,37.791304056],[-122.417435596,37.791306872],[-122.417338612,37.791319148],[-122.417075416,37.791357123],[-122.417031057,37.791140215],[-122.417005759,37.791027871],[-122.417002123,37.791028387],[-122.416975852,37.790911725],[-122.416950818,37.790787404],[-122.416938301,37.79072524],[-122.416929845,37.790683235],[-122.416925786,37.790663077],[-122.416913269,37.790600913],[-122.416900752,37.790538749],[-122.416968865,37.790528922],[-122.417173203,37.79049944],[-122.417293063,37.790484267],[-122.417293489,37.790486387],[-122.41740817,37.79047187],[-122.417809681,37.790426742],[-122.417877194,37.790419155],[-122.418082818,37.790396043],[-122.418158214,37.79038757],[-122.418226754,37.790379865],[-122.4182528,37.790376938],[-122.418348758,37.790366152],[-122.418520111,37.790346892],[-122.418508045,37.790287294],[-122.418494321,37.790219505],[-122.418480598,37.790151716],[-122.418465446,37.790076877],[-122.418446232,37.789981972],[-122.418439386,37.789949159],[-122.418432965,37.789918387],[-122.418425935,37.789884691],[-122.4184797,37.789877627],[-122.418495594,37.789875538],[-122.418477392,37.789788301],[-122.418450616,37.789652637],[-122.418416611,37.789480346],[-122.418403054,37.789411661],[-122.418215184,37.789435902],[-122.418141552,37.789062823],[-122.418127002,37.78898794],[-122.418124419,37.788974647],[-122.418067424,37.788981622],[-122.41804846,37.788884018],[-122.4179727,37.788509791],[-122.417945254,37.788374212],[-122.418218473,37.788338762],[-122.418170441,37.7881015],[-122.418165885,37.78807929],[-122.418151026,37.788006854],[-122.418103555,37.788012987],[-122.418084703,37.787921084],[-122.41800955,37.787550072],[-122.418013307,37.787549585],[-122.417992655,37.787447632],[-122.417937731,37.787176479],[-122.417926635,37.787121447],[-122.417918817,37.787082665],[-122.418139107,37.787054692],[-122.41827098,37.787037946],[-122.4184055,37.787020864],[-122.418943084,37.786952598],[-122.419235447,37.78691547],[-122.419794533,37.786844469],[-122.419927948,37.786827526],[-122.420280916,37.786782698],[-122.420297109,37.786863001],[-122.42036299,37.787188387],[-122.420372424,37.787235862],[-122.420372771,37.787235819],[-122.420382205,37.787283292],[-122.420450101,37.787618631],[-122.420468895,37.787711851],[-122.420515525,37.78770593],[-122.420534319,37.787799149],[-122.42057275,37.787988958],[-122.420600202,37.788124536],[-122.42060977,37.788171992],[-122.420703819,37.788160049],[-122.420713387,37.788207507],[-122.420729859,37.788288853],[-122.420752752,37.788401917],[-122.420781301,37.788542917],[-122.420800178,37.788636127],[-122.420839035,37.788631171],[-122.420857912,37.788724379],[-122.420922898,37.789045319],[-122.420923798,37.789049764],[-122.420933408,37.789097217],[-122.420921378,37.789098752],[-122.420913022,37.789099817],[-122.420922633,37.789147269],[-122.420950085,37.789282846],[-122.420986415,37.789462265],[-122.421005201,37.789555485],[-122.421238053,37.789525932],[-122.42125684,37.789619152],[-122.421332336,37.78999199],[-122.421435706,37.78997887],[-122.421511927,37.790355278],[-122.421535181,37.790470529],[-122.421600312,37.790462253],[-122.421623567,37.790577503],[-122.421699,37.790950349],[-122.421746009,37.790944375],[-122.421748581,37.790957084],[-122.421780601,37.791115202],[-122.421814302,37.791281629],[-122.421832966,37.791374864],[-122.421786109,37.791380771],[-122.421793485,37.791417617],[-122.421804773,37.791474008],[-122.421876424,37.791827831],[-122.421737566,37.791845479],[-122.421807619,37.792191719],[-122.421822245,37.792264183],[-122.421826433,37.792284936],[-122.4219373,37.792270844],[-122.421956114,37.792364061],[-122.422025383,37.79270642],[-122.422052723,37.792702957],[-122.422123876,37.793054619],[-122.422141535,37.793142419],[-122.422235058,37.793130574],[-122.422245577,37.793182873],[-122.422254899,37.793229224],[-122.422279926,37.793353113],[-122.422301837,37.793461582],[-122.422308581,37.793494963],[-122.422223141,37.793505784],[-122.422238309,37.793580871],[-122.422323748,37.79357005],[-122.422394953,37.79392253],[-122.422413757,37.794015708],[-122.422397419,37.794017784],[-122.422366042,37.794021772],[-122.422023433,37.79406531],[-122.422042249,37.794158551],[-122.422112257,37.794504796],[-122.422503827,37.794455052],[-122.422574601,37.794805069],[-122.422593503,37.794898274],[-122.422646356,37.794891524],[-122.422665259,37.79498473],[-122.422687237,37.795093428],[-122.42271552,37.795233298],[-122.422612728,37.795246425],[-122.422632479,37.795344101],[-122.422637858,37.795370708],[-122.422687688,37.795364344],[-122.422766277,37.795354309],[-122.422785571,37.795449726],[-122.422810245,37.79557175],[-122.422902503,37.795559969],[-122.422926905,37.795680649],[-122.422950052,37.795795741],[-122.422929952,37.795798287],[-122.422894802,37.795802738],[-122.422227629,37.795887222],[-122.422250042,37.795998672],[-122.422325365,37.796371534],[-122.422325602,37.796372707],[-122.422581418,37.796340272],[-122.422581851,37.796340532],[-122.422582006,37.796340625],[-122.422582118,37.796341183],[-122.422649434,37.796674396],[-122.422657155,37.796712612],[-122.42267657,37.796808704],[-122.422367297,37.796848048],[-122.422385629,37.796938784],[-122.422403433,37.797026914],[-122.422415759,37.797087927],[-122.422419868,37.797108266],[-122.422436302,37.797189617],[-122.422452737,37.797270968],[-122.422462421,37.79731841],[-122.422462226,37.797318436],[-122.42247191,37.797365877],[-122.422485606,37.797433671],[-122.422499302,37.797501463],[-122.422510806,37.79755841],[-122.422523407,37.797620778],[-122.422535422,37.797680255],[-122.422554173,37.797773481],[-122.423152604,37.797697688],[-122.423161905,37.797743925],[-122.423171357,37.797790912],[-122.423196846,37.797916961],[-122.423213296,37.797998309],[-122.423227004,37.798066101],[-122.423240713,37.798133892],[-122.423155276,37.798144752],[-122.423035666,37.798159956],[-122.423061438,37.798287403],[-122.423266485,37.798261339],[-122.423285677,37.798356245],[-122.423302128,37.798437594],[-122.423322966,37.798540637],[-122.423341785,37.798633854],[-122.423325434,37.798635932],[-122.423298683,37.798639333],[-122.422631258,37.79872417],[-122.422650077,37.798817386],[-122.422700524,37.799066857],[-122.422785961,37.799055998],[-122.422871398,37.799045137],[-122.422885107,37.799112929],[-122.422896348,37.799168517],[-122.422892681,37.799168983],[-122.422895149,37.799181186],[-122.422908857,37.799248977],[-122.422925856,37.799333037],[-122.422942672,37.799416196],[-122.422968066,37.799541775],[-122.422986885,37.799634991],[-122.422942015,37.799640695],[-122.422525216,37.799693672],[-122.422168797,37.799738973],[-122.422066243,37.799752007],[-122.422047426,37.79965879],[-122.42203373,37.799590998],[-122.422020035,37.799523206],[-122.422006339,37.799455413],[-122.421992644,37.79938762],[-122.421978948,37.799319827],[-122.421893509,37.799330687],[-122.421808072,37.799341546],[-122.421803142,37.79931714],[-122.421794377,37.799273753],[-122.421879815,37.799262894],[-122.42186612,37.799195101],[-122.421951558,37.799184242],[-122.421938191,37.799118076],[-122.421924824,37.79905191],[-122.421911458,37.798985745],[-122.421896789,37.798913133],[-122.42188917,37.79887539],[-122.421882991,37.798844784],[-122.421877971,37.798819916],[-122.421890995,37.798818261],[-122.421962173,37.798809214],[-122.421943355,37.798715998],[-122.421915859,37.798580426],[-122.421902112,37.79851264],[-122.421892763,37.798466546],[-122.421888364,37.798444854],[-122.421881353,37.798445745],[-122.421802926,37.798455713],[-122.421807325,37.798477404],[-122.421721889,37.798488263],[-122.421636452,37.798499123],[-122.421632053,37.798477432],[-122.421546615,37.79848829],[-122.421525579,37.798384564],[-122.421550047,37.798367926],[-122.421642503,37.798305058],[-122.42171955,37.798252667],[-122.421796596,37.798200276],[-122.421804587,37.798194843],[-122.421873643,37.798147885],[-122.421866927,37.79811464],[-122.421853232,37.798046847],[-122.421835702,37.797960072],[-122.421830977,37.797936578],[-122.421816952,37.797866848],[-122.421731081,37.797877723],[-122.421712331,37.797784497],[-122.421646977,37.797459044],[-122.421604563,37.797247832],[-122.421596021,37.79724893],[-122.421568791,37.797113324],[-122.421555174,37.797045521],[-122.421536628,37.79695372],[-122.421501861,37.796958143],[-122.421482752,37.796863558],[-122.421462352,37.79676257],[-122.421434964,37.796626982],[-122.421346172,37.796638578],[-122.42120388,37.79665716],[-122.421194843,37.796612417],[-122.421176491,37.796521573],[-122.421187303,37.796520162],[-122.421311953,37.796503884],[-122.421270185,37.796297114],[-122.421235971,37.796127741],[-122.42122659,37.796081301],[-122.421220171,37.796049523],[-122.421213401,37.796016005],[-122.42118094,37.796020136],[-122.421174125,37.795986396],[-122.421158291,37.795908009],[-122.42108729,37.795556514],[-122.421084317,37.795541793],[-122.421086901,37.795541462],[-122.421016642,37.795195252],[-122.421001553,37.795120901]],[[-122.419630945,37.789634292],[-122.419567337,37.789320128],[-122.419557727,37.789272676],[-122.419566083,37.789271611],[-122.419783239,37.789243915],[-122.419781608,37.78923586],[-122.419773623,37.789196499],[-122.419773629,37.789196463],[-122.419773615,37.789196383],[-122.41970609,37.788864334],[-122.419706047,37.788862665],[-122.419689186,37.788779402],[-122.419688875,37.788777868],[-122.419675036,37.788779632],[-122.419309616,37.788826237],[-122.419327118,37.788912668],[-122.419327193,37.788912658],[-122.419394663,37.789244306],[-122.419394676,37.789244794],[-122.419394686,37.789244925],[-122.419404285,37.789292246],[-122.41939593,37.789293311],[-122.419295632,37.789306103],[-122.41912982,37.78932725],[-122.418876075,37.78935961],[-122.418750451,37.789375631],[-122.418842652,37.789829934],[-122.418976127,37.789812996],[-122.419530638,37.789742626],[-122.41964973,37.789727513],[-122.419630945,37.789634292]]]]}},"NCD","6:00AM-2:00AM",0.000023468829073157593,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_723.1","POLK STREET NEIGHBORHOOD COMMERCIAL","NCD-POLK",723.1,20476,0.04856442194157354,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":6.142579132131856e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19675,"shape_length":0.0036733130433052154,"gen":"Mixed Use","index":209},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.484217681,37.757397012],[-122.484234473,37.757636577],[-122.484251789,37.757883622],[-122.484130905,37.757888963],[-122.483845619,37.757901556],[-122.483850424,37.757970108],[-122.483855229,37.758038661],[-122.483726056,37.758044364],[-122.483682538,37.758046284],[-122.483509847,37.758053906],[-122.4834235,37.758057717],[-122.48330927,37.75806276],[-122.483188385,37.7580681],[-122.483161458,37.757683846],[-122.483149774,37.757512785],[-122.483273657,37.757507452],[-122.483581206,37.757493876],[-122.483576403,37.757425324],[-122.483571597,37.757356771],[-122.483566793,37.757288219],[-122.483670407,37.757283645],[-122.483739483,37.757280596],[-122.483774021,37.757279072],[-122.483778825,37.757347624],[-122.48378363,37.757416177],[-122.483859613,37.757412822],[-122.484096799,37.757402352],[-122.484102427,37.757402104],[-122.484217681,37.757397012]]]]}},"NC-1","6:00AM-11:00PM",6.142579132131856e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19675,0.0036733130433052154,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-3","commercial_hours_of_operation":"No Limit","shape_area":6.724516667219046e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","districtname":"NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","zoning":"NC-3","codesection":712.1,"objectid":19587,"shape_length":0.003809989658489196,"gen":"Mixed Use","index":210},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.420173039,37.78536519],[-122.420565079,37.785315384],[-122.420573809,37.785358662],[-122.420575053,37.785364833],[-122.42063987,37.785683592],[-122.420642068,37.785684263],[-122.4206606,37.785777515],[-122.420309066,37.785821516],[-122.419872645,37.78587614],[-122.419738734,37.7858929],[-122.419236882,37.785956184],[-122.419218123,37.785862486],[-122.419154096,37.785545775],[-122.419152334,37.785537035],[-122.41914404,37.785495911],[-122.419520487,37.785448089],[-122.419638989,37.785433035],[-122.419772068,37.785416129],[-122.420117146,37.785372291],[-122.420173039,37.78536519]]]]}},"NC-3","No Limit",6.724516667219046e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","NC-3",712.1,19587,0.003809989658489196,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCT","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000001947172394527456,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_753","districtname":"SOMA NEIGHBORHOOD COMMERCIAL TRANSIT","zoning":"NCT-SOMA","codesection":753,"objectid":20541,"shape_length":0.011659723404062862,"gen":"Mixed Use","index":211},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.407159488,37.779738905],[-122.406859986,37.779499755],[-122.4066282,37.779314674],[-122.406445899,37.779168976],[-122.406473063,37.779147564],[-122.406547174,37.779089148],[-122.406622281,37.779029819],[-122.406740431,37.778936491],[-122.406679594,37.778887681],[-122.406863534,37.778742384],[-122.406887811,37.778723321],[-122.406918881,37.778698925],[-122.406948074,37.778722347],[-122.406970883,37.778740647],[-122.407000075,37.778764068],[-122.407057724,37.778810319],[-122.407101391,37.778845354],[-122.407059469,37.778878272],[-122.407046046,37.778888812],[-122.406862105,37.779034111],[-122.40698378,37.77913173],[-122.407042179,37.7790856],[-122.407064343,37.779068092],[-122.407103365,37.779037267],[-122.40716772,37.778986432],[-122.407223066,37.778942974],[-122.407283904,37.778991783],[-122.407228558,37.779035242],[-122.407170158,37.779081373],[-122.407108971,37.779129705],[-122.407066781,37.779163032],[-122.407044617,37.77918054],[-122.407067706,37.779199064],[-122.407072651,37.779203032],[-122.407105454,37.779229349],[-122.407154124,37.779268398],[-122.40735102,37.779426365],[-122.407452477,37.779507177],[-122.407525477,37.779449441],[-122.407625525,37.779529129],[-122.407850539,37.779700103],[-122.407881189,37.779675867],[-122.407911781,37.779699112],[-122.408063651,37.779814507],[-122.40808687,37.779833332],[-122.408100373,37.779844281],[-122.408087411,37.779854353],[-122.40806512,37.779871671],[-122.408041334,37.779890153],[-122.408066111,37.779910242],[-122.40808933,37.779929067],[-122.408271065,37.780067153],[-122.408453083,37.780205454],[-122.408475156,37.780222225],[-122.408517611,37.780256436],[-122.408563194,37.7802208],[-122.408585567,37.780203309],[-122.408631224,37.780167617],[-122.408673747,37.780201882],[-122.408694805,37.780218669],[-122.408864823,37.780354215],[-122.40880345,37.780402602],[-122.408844951,37.780435688],[-122.408722206,37.78053246],[-122.408827181,37.78061615],[-122.408888213,37.780664807],[-122.408991897,37.780747511],[-122.409100984,37.780661362],[-122.409127784,37.780640197],[-122.409153256,37.780660515],[-122.409225566,37.780718194],[-122.409289488,37.780768957],[-122.409337016,37.780806701],[-122.409421253,37.780873595],[-122.409459424,37.780903909],[-122.409615744,37.781028046],[-122.409664486,37.78106689],[-122.409617693,37.781103878],[-122.409542071,37.781163656],[-122.409591022,37.781202665],[-122.409620842,37.781226345],[-122.409774479,37.781348351],[-122.409843523,37.781293755],[-122.409884787,37.781261126],[-122.41007488,37.781412083],[-122.410117691,37.781446082],[-122.410076593,37.78147868],[-122.409856392,37.781653336],[-122.409852842,37.781656152],[-122.409811748,37.781688747],[-122.409693261,37.781754327],[-122.409245443,37.781398133],[-122.408708674,37.780971182],[-122.408160793,37.780535385],[-122.407691415,37.780162025],[-122.407159488,37.779738905]]]]}},"NCT","6:00AM-2:00AM",0.000001947172394527456,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_753","SOMA NEIGHBORHOOD COMMERCIAL TRANSIT","NCT-SOMA",753,20541,0.011659723404062862,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-S","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000014898869019726936,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","districtname":"NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","zoning":"NC-S","codesection":713.1,"objectid":19796,"shape_length":0.005331285318949506,"gen":"Mixed Use","index":212},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.444910009,37.77667238],[-122.444857826,37.776409377],[-122.444976306,37.776394566],[-122.445211188,37.776364702],[-122.44519647,37.776291478],[-122.445181751,37.776218252],[-122.445167033,37.776145027],[-122.445150951,37.776065022],[-122.44513214,37.775971805],[-122.445445494,37.775931963],[-122.445456559,37.775930556],[-122.445960499,37.775866481],[-122.446262872,37.775828033],[-122.44647083,37.77580159],[-122.446511401,37.776003296],[-122.446659912,37.776741635],[-122.446466049,37.77676637],[-122.445949443,37.77683228],[-122.445656791,37.776869617],[-122.44510226,37.776940362],[-122.444966615,37.776957666],[-122.444910009,37.77667238]]]]}},"NC-S","6:00AM-2:00AM",0.0000014898869019726936,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","NC-S",713.1,19796,0.005331285318949506,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.4088289378054476e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19676,"shape_length":0.0027590550257378093,"gen":"Mixed Use","index":213},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.482897887,37.784362723],[-122.482870048,37.783979267],[-122.482420876,37.783999656],[-122.482413015,37.783890578],[-122.482408283,37.783825377],[-122.482411271,37.783825239],[-122.482736464,37.783810244],[-122.482857376,37.783804714],[-122.482847417,37.783667534],[-122.482968328,37.783662004],[-122.483080043,37.783656852],[-122.48308028,37.783660121],[-122.48309465,37.78385803],[-122.483102627,37.783968709],[-122.483102743,37.783968704],[-122.483110591,37.784077592],[-122.483121079,37.784222053],[-122.483130527,37.784352197],[-122.483018805,37.78435727],[-122.482897892,37.7843628],[-122.482897887,37.784362723]]]]}},"NC-1","6:00AM-11:00PM",2.4088289378054476e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19676,0.0027590550257378093,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":5.402537299660419e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19748,"shape_length":0.0033631666746361676,"gen":"Mixed Use","index":214},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.458794193,37.713563335],[-122.458794165,37.713561102],[-122.458793001,37.713467216],[-122.45880683,37.71346712],[-122.458804551,37.71328326],[-122.458803292,37.713173651],[-122.458746212,37.713174065],[-122.458744947,37.713063911],[-122.458741942,37.712722437],[-122.458741926,37.712720623],[-122.458915109,37.712719557],[-122.459019618,37.712718856],[-122.459019643,37.712721238],[-122.459122556,37.712720547],[-122.459475164,37.712718375],[-122.459502821,37.712718204],[-122.459503672,37.712786861],[-122.459417248,37.712787393],[-122.459418951,37.712924705],[-122.459420625,37.71305975],[-122.459420654,37.713062694],[-122.459421698,37.713169601],[-122.459337322,37.71317012],[-122.459338395,37.713279972],[-122.459340317,37.713472212],[-122.459340159,37.713472332],[-122.459340636,37.71361258],[-122.459340675,37.713624027],[-122.459133772,37.713625302],[-122.459128981,37.713625339],[-122.459030064,37.713626113],[-122.459029836,37.713607641],[-122.459029265,37.713561606],[-122.458925558,37.713562417],[-122.458811928,37.713563211],[-122.458794193,37.713563335]]]]}},"NC-1","6:00AM-11:00PM",5.402537299660419e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19748,0.0033631666746361676,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.935958927820872e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19724,"shape_length":0.0025485517861394734,"gen":"Mixed Use","index":215},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.399739507,37.716182737],[-122.399883562,37.716192451],[-122.399929833,37.716211306],[-122.399976104,37.716230162],[-122.400075835,37.716470177],[-122.400118934,37.716573896],[-122.400161351,37.716675979],[-122.400205566,37.716782386],[-122.400219789,37.716816615],[-122.400311252,37.717036727],[-122.4003254,37.717070777],[-122.400312211,37.717074249],[-122.400226949,37.717096699],[-122.400062593,37.717139974],[-122.399953368,37.717168732],[-122.399828143,37.716650149],[-122.399794874,37.716474709],[-122.399739507,37.716182737]]]]}},"NC-1","6:00AM-11:00PM",2.935958927820872e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19724,0.0025485517861394734,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.614800746563165e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19540,"shape_length":0.002056243858975589,"gen":"Mixed Use","index":216},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.457953758,37.775775482],[-122.457950817,37.775737388],[-122.457940551,37.775604398],[-122.457935184,37.77553487],[-122.45793221,37.775496342],[-122.45792996,37.775467194],[-122.457924669,37.77539867],[-122.457916058,37.775354942],[-122.457909856,37.77532345],[-122.4579063,37.775305397],[-122.45796217,37.775298465],[-122.457978628,37.775296423],[-122.458097775,37.77528164],[-122.458435272,37.775239763],[-122.458446704,37.775396423],[-122.458462903,37.775618427],[-122.458471718,37.775739235],[-122.458303535,37.775760679],[-122.457976745,37.775802347],[-122.457956066,37.775804983],[-122.457955418,37.775796992],[-122.457953758,37.775775482]]]]}},"NC-1","6:00AM-11:00PM",2.614800746563165e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19540,0.002056243858975589,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":9.965552092420341e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19705,"shape_length":0.007371778268809978,"gen":"Mixed Use","index":217},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.441270692,37.72298481],[-122.441297834,37.722995424],[-122.441363751,37.723021203],[-122.44145681,37.723057595],[-122.441534359,37.723087922],[-122.441542114,37.723090954],[-122.441475902,37.723198244],[-122.441461277,37.723221941],[-122.441432602,37.723268406],[-122.441412983,37.723300198],[-122.441711162,37.723265724],[-122.441713599,37.723265442],[-122.441723461,37.723249463],[-122.441733061,37.723233906],[-122.441742703,37.723218283],[-122.441772226,37.723170446],[-122.441776379,37.723163716],[-122.441785064,37.723149644],[-122.441811435,37.723106913],[-122.441881149,37.722993952],[-122.441926175,37.722920993],[-122.442071744,37.722978368],[-122.442118253,37.722903005],[-122.44212676,37.722889218],[-122.442281488,37.722638498],[-122.442188635,37.722601774],[-122.442229219,37.722536012],[-122.442279327,37.72255583],[-122.442346633,37.72258245],[-122.442414925,37.72260946],[-122.442507779,37.722646186],[-122.442456556,37.722729186],[-122.442360171,37.72288537],[-122.442304371,37.722975788],[-122.442257577,37.723051614],[-122.44230686,37.723071039],[-122.442324416,37.723077958],[-122.442374333,37.723097633],[-122.442477337,37.723138231],[-122.442553662,37.723168314],[-122.442566098,37.723166876],[-122.44256926,37.723161753],[-122.442584871,37.723136458],[-122.442611241,37.723093726],[-122.442624021,37.723073018],[-122.442628476,37.723065799],[-122.442725193,37.722909078],[-122.443010458,37.723021902],[-122.44311906,37.723064854],[-122.443140877,37.723073482],[-122.443168811,37.72308453],[-122.443193572,37.723094323],[-122.443273779,37.723085048],[-122.443248372,37.723125515],[-122.443092995,37.723372981],[-122.442989833,37.723537286],[-122.442897113,37.723500097],[-122.442619476,37.723388739],[-122.442580191,37.723450333],[-122.44247125,37.723406642],[-122.442420815,37.723484967],[-122.442373582,37.723558321],[-122.442326349,37.723631675],[-122.442280813,37.723702391],[-122.442207871,37.723673136],[-122.442200566,37.723670207],[-122.442120317,37.723638021],[-122.442104964,37.723631863],[-122.442043156,37.723607073],[-122.442002056,37.72359059],[-122.441935131,37.723563747],[-122.441924876,37.723559634],[-122.441847694,37.723528678],[-122.441780604,37.72350177],[-122.441763721,37.723494998],[-122.441729517,37.723481279],[-122.441716659,37.723476123],[-122.441694085,37.723467069],[-122.441678822,37.723460948],[-122.441561651,37.723413952],[-122.44147945,37.723380983],[-122.441438624,37.723364608],[-122.441427879,37.723381833],[-122.441424468,37.723387301],[-122.441351381,37.723504467],[-122.441349899,37.723506844],[-122.441320679,37.723553685],[-122.44120694,37.7235092],[-122.44120117,37.723506943],[-122.441178653,37.723498136],[-122.441091983,37.723464237],[-122.441054764,37.723355578],[-122.441050163,37.723342145],[-122.441232901,37.723046046],[-122.441247046,37.723023126],[-122.441270692,37.72298481]]]]}},"NC-1","6:00AM-11:00PM",9.965552092420341e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19705,0.007371778268809978,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":4.812086234426322e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19667,"shape_length":0.002831366766582171,"gen":"Mixed Use","index":218},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.506059075,37.762284997],[-122.506032229,37.761903606],[-122.506105654,37.761900348],[-122.506152835,37.761898255],[-122.506153117,37.761898242],[-122.506231808,37.761894764],[-122.506352105,37.761889444],[-122.506438455,37.761885627],[-122.506524804,37.761881808],[-122.506567979,37.761879899],[-122.50659925,37.761878516],[-122.506611154,37.76187799],[-122.506611178,37.761878316],[-122.506630282,37.762149697],[-122.506630917,37.762149669],[-122.506630937,37.762149951],[-122.506631266,37.76216215],[-122.506631156,37.762162152],[-122.506637983,37.76225938],[-122.506638026,37.762259379],[-122.506645018,37.762358964],[-122.506645725,37.762369062],[-122.506665029,37.762643269],[-122.50662147,37.762645196],[-122.50662628,37.762713504],[-122.506211817,37.762732126],[-122.506090927,37.762737489],[-122.506059075,37.762284997]]]]}},"NC-1","6:00AM-11:00PM",4.812086234426322e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19667,0.002831366766582171,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":6.360973954631863e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19538,"shape_length":0.0041200351646384515,"gen":"Mixed Use","index":219},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.400789195,37.712016313],[-122.400918813,37.712043325],[-122.401271063,37.712116729],[-122.401290723,37.712120826],[-122.401507379,37.712165974],[-122.40152648,37.712169954],[-122.401662982,37.712198398],[-122.401914747,37.712250861],[-122.402093203,37.712288048],[-122.401899348,37.712339585],[-122.401657096,37.7124039],[-122.401474486,37.712469836],[-122.401373839,37.712506177],[-122.401301493,37.712541899],[-122.401166106,37.712608748],[-122.40102247,37.712712427],[-122.40095075,37.712770499],[-122.400929112,37.712788019],[-122.40086558,37.712839463],[-122.400683294,37.713031372],[-122.40065803,37.71305797],[-122.400537682,37.712794336],[-122.400513735,37.712741876],[-122.400606193,37.712498341],[-122.400611728,37.712483761],[-122.40066566,37.712341704],[-122.400747866,37.712125173],[-122.400789195,37.712016313]]]]}},"NC-1","6:00AM-11:00PM",6.360973954631863e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19538,0.0041200351646384515,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":5.943013166353182e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19725,"shape_length":0.0037745504874933914,"gen":"Mixed Use","index":220},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.465304204,37.714671418],[-122.465302128,37.714493378],[-122.465198418,37.714494141],[-122.46502557,37.714495469],[-122.465024444,37.714398949],[-122.465024388,37.714394276],[-122.465023108,37.714289099],[-122.465299721,37.714286976],[-122.465298078,37.714104416],[-122.465400232,37.714103835],[-122.465401304,37.714103829],[-122.465660576,37.714101838],[-122.46565973,37.714029338],[-122.46565893,37.71396073],[-122.465658885,37.713956836],[-122.465745308,37.713956172],[-122.465831731,37.71395551],[-122.465831759,37.713957846],[-122.465832539,37.714024715],[-122.46583334,37.714093371],[-122.466092753,37.714091378],[-122.466196461,37.714090614],[-122.466198673,37.714280073],[-122.46620316,37.714664515],[-122.466203161,37.714664579],[-122.466099451,37.714665344],[-122.465753753,37.714668],[-122.465407913,37.714670654],[-122.465304204,37.714671418]]]]}},"NC-1","6:00AM-11:00PM",5.943013166353182e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19725,0.0037745504874933914,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-S","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000016532201544462235,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","districtname":"NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","zoning":"NC-S","codesection":713.1,"objectid":19586,"shape_length":0.005436417551036753,"gen":"Mixed Use","index":221},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.431874203,37.804244608],[-122.432007768,37.804227521],[-122.432560686,37.804156787],[-122.432830359,37.804122287],[-122.432962465,37.804105386],[-122.432978341,37.804103355],[-122.433524705,37.804033454],[-122.433546298,37.804140632],[-122.433558471,37.80420105],[-122.433679052,37.804799541],[-122.433691837,37.804863001],[-122.433713279,37.804969422],[-122.433797945,37.805043287],[-122.433667156,37.805015253],[-122.43357997,37.805026514],[-122.433411101,37.805048324],[-122.432192937,37.80520565],[-122.432090717,37.805199544],[-122.432049122,37.805122509],[-122.432038822,37.805070813],[-122.432028345,37.805018232],[-122.431874203,37.804244608]]]]}},"NC-S","6:00AM-2:00AM",0.0000016532201544462235,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_713","NEIGHBORHOOD COMMERCIAL, SHOPPING CENTER","NC-S",713.1,19586,0.005436417551036753,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":0.0000012708006827613762,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19670,"shape_length":0.005896507874126573,"gen":"Mixed Use","index":222},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.497326255,37.760419324],[-122.497326178,37.760418222],[-122.497405389,37.760414714],[-122.497447145,37.760414006],[-122.497489097,37.760412154],[-122.49786216,37.760395686],[-122.497965779,37.760391112],[-122.498069397,37.760386537],[-122.498173015,37.760381963],[-122.498276633,37.760377388],[-122.49839752,37.760372033],[-122.498397522,37.76037207],[-122.498518408,37.760366715],[-122.49883067,37.760352928],[-122.498831266,37.760361409],[-122.498835489,37.760421481],[-122.498840308,37.760490032],[-122.498845125,37.760558584],[-122.498849945,37.760627136],[-122.498857629,37.76073682],[-122.498918124,37.760734149],[-122.498925808,37.760843833],[-122.498944174,37.761105102],[-122.498945042,37.761117439],[-122.49868599,37.761128824],[-122.498572326,37.76113382],[-122.49845144,37.761139175],[-122.498451433,37.761139089],[-122.498330546,37.761144444],[-122.498106035,37.76115431],[-122.498019683,37.761158105],[-122.497933333,37.761161899],[-122.497916063,37.761162658],[-122.497846983,37.761165693],[-122.497760632,37.761169488],[-122.497509757,37.761180511],[-122.497501037,37.761180894],[-122.497492428,37.76118104],[-122.497380133,37.761186021],[-122.49736569,37.760980506],[-122.497244803,37.76098586],[-122.497046197,37.760994586],[-122.497051014,37.761063138],[-122.497055832,37.76113169],[-122.497060272,37.761194888],[-122.497060649,37.761200242],[-122.496974298,37.761204036],[-122.496973758,37.761196354],[-122.4969551,37.76093083],[-122.496947419,37.760821145],[-122.497353233,37.760803233],[-122.497326255,37.760419324]]]]}},"NC-1","6:00AM-11:00PM",0.0000012708006827613762,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19670,0.005896507874126573,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"PM-OS","commercial_hours_of_operation":null,"shape_area":1.4364989498116192e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article2usedistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_249.64","districtname":"PARKMERCED-OPEN SPACE","zoning":"PM-OS","codesection":249.64,"objectid":20407,"shape_length":0.0015236646293143397,"gen":"Public","index":223},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.483293608,37.717559591],[-122.483307878,37.717216776],[-122.483672307,37.717226347],[-122.483726574,37.717227773],[-122.483712822,37.717552512],[-122.483712061,37.717570581],[-122.483653972,37.717569056],[-122.483315818,37.717560174],[-122.483293608,37.717559591]]]]}},"PM-OS",null,1.4364989498116192e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article2usedistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_249.64","PARKMERCED-OPEN SPACE","PM-OS",249.64,20407,0.0015236646293143397,"Public"],[{"type":"Feature","properties":{"zoning_sim":"NC-3","commercial_hours_of_operation":"No Limit","shape_area":0.0000018679107360670057,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","districtname":"NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","zoning":"NC-3","codesection":712.1,"objectid":19589,"shape_length":0.006696067786855571,"gen":"Mixed Use","index":224},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.419856357,37.783493989],[-122.419856467,37.783493974],[-122.419866288,37.783542834],[-122.419932071,37.783868233],[-122.419949471,37.783956143],[-122.419900458,37.783962253],[-122.419784352,37.78397673],[-122.419767355,37.783978848],[-122.419786968,37.784077936],[-122.419852753,37.784403334],[-122.419861983,37.7844492],[-122.4199082,37.784443342],[-122.419918065,37.784492368],[-122.419934511,37.784573717],[-122.419950958,37.784655067],[-122.419967404,37.784736416],[-122.41998385,37.784817766],[-122.419999433,37.784895841],[-122.420000921,37.784903305],[-122.41968573,37.784942927],[-122.419547854,37.784960259],[-122.418774768,37.785057437],[-122.418756789,37.784967345],[-122.418692324,37.784648448],[-122.418682317,37.784598719],[-122.41864806,37.78460306],[-122.418638971,37.78455789],[-122.418573191,37.784232491],[-122.418552956,37.784130249],[-122.418592973,37.78412526],[-122.418853795,37.784092744],[-122.418868393,37.784090924],[-122.418851549,37.784005823],[-122.418789782,37.783700274],[-122.418785769,37.783680425],[-122.418775796,37.783630858],[-122.41914362,37.783584238],[-122.419273433,37.783567785],[-122.419181704,37.783101399],[-122.419582864,37.783050553],[-122.419601943,37.78314537],[-122.419667726,37.783470768],[-122.419676958,37.7835167],[-122.419856357,37.783493989]]]]}},"NC-3","No Limit",0.0000018679107360670057,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_712.1","NEIGHBORHOOD COMMERCIAL, MODERATE SCALE","NC-3",712.1,19589,0.006696067786855571,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":5.035961954155168e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19782,"shape_length":0.003776449517656986,"gen":"Mixed Use","index":225},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.41985541,37.806159801],[-122.419818161,37.805975358],[-122.419800647,37.805888627],[-122.419784268,37.805808058],[-122.419781699,37.805795426],[-122.420233549,37.805737597],[-122.420369046,37.805720256],[-122.4206091,37.805687483],[-122.420669905,37.805679181],[-122.420689735,37.805676473],[-122.420710341,37.805771487],[-122.420743834,37.805937328],[-122.420758261,37.806008764],[-122.420847123,37.805997459],[-122.420935983,37.805986154],[-122.421024845,37.805974849],[-122.421052755,37.806113046],[-122.420957904,37.806125306],[-122.42086737,37.806137006],[-122.420882126,37.806210227],[-122.420896881,37.806283448],[-122.420911637,37.80635667],[-122.420688179,37.80638555],[-122.420627362,37.80639341],[-122.420509219,37.806408556],[-122.420443268,37.806084712],[-122.420409409,37.806089053],[-122.420325313,37.806099834],[-122.420026284,37.806137994],[-122.419873257,37.806157523],[-122.41985541,37.806159801]]]]}},"NC-1","6:00AM-11:00PM",5.035961954155168e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19782,0.003776449517656986,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NCD","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000008341164061968707,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_719.1","districtname":"HAIGHT STREET NEIGHBORHOOD COMMERCIAL","zoning":"NCD-HAIGHT","codesection":719.1,"objectid":20474,"shape_length":0.030305271950764656,"gen":"Mixed Use","index":226},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.443695028,37.770655205],[-122.443682287,37.770591744],[-122.443670385,37.770532458],[-122.443649086,37.77042637],[-122.443645618,37.770409194],[-122.443616571,37.770265333],[-122.443732876,37.770250536],[-122.443742651,37.77024929],[-122.443801295,37.770241814],[-122.444117171,37.770201547],[-122.444130798,37.770269348],[-122.444145601,37.770342521],[-122.444149655,37.770362559],[-122.444330811,37.770339466],[-122.444704172,37.77029187],[-122.444685314,37.770198658],[-122.444640591,37.769975187],[-122.444625423,37.769899396],[-122.444610678,37.769825712],[-122.444653378,37.769820268],[-122.444675334,37.769817469],[-122.444696076,37.769814825],[-122.444702631,37.769847578],[-122.444710677,37.769887781],[-122.444716202,37.769915385],[-122.4448016,37.769904499],[-122.444815171,37.769972307],[-122.445114066,37.769934202],[-122.445149537,37.769929818],[-122.445286679,37.769912869],[-122.445293077,37.769945489],[-122.445462446,37.769924557],[-122.445791596,37.769882593],[-122.44580311,37.769881125],[-122.44578984,37.769815568],[-122.445781155,37.769772663],[-122.4457751,37.769742749],[-122.445764688,37.769691316],[-122.445761944,37.769677758],[-122.44578244,37.769675144],[-122.445786149,37.769674671],[-122.445871253,37.769663822],[-122.445943414,37.769654621],[-122.445956651,37.769652934],[-122.446124886,37.769631485],[-122.446206868,37.769621032],[-122.446210284,37.769620597],[-122.446294828,37.769609817],[-122.44630169,37.769643712],[-122.446307064,37.769670262],[-122.446315412,37.7697115],[-122.446486207,37.769689725],[-122.446571605,37.769678836],[-122.446742401,37.769657059],[-122.44679023,37.769650959],[-122.446859823,37.769642081],[-122.446865315,37.769669211],[-122.446982736,37.769654232],[-122.447198244,37.769626753],[-122.447290474,37.769614993],[-122.447284979,37.769587879],[-122.447383187,37.769575356],[-122.447372984,37.769525012],[-122.447355713,37.769439783],[-122.447381687,37.769436471],[-122.447438548,37.76942922],[-122.447467085,37.769425581],[-122.447473953,37.769459475],[-122.447568389,37.769447433],[-122.447619129,37.769440963],[-122.447691362,37.769431753],[-122.447704527,37.769430075],[-122.447789925,37.769419185],[-122.447862157,37.769409975],[-122.447875322,37.769408296],[-122.447960719,37.769397407],[-122.447964634,37.769396908],[-122.447966622,37.769396654],[-122.447970743,37.769416991],[-122.447975981,37.769442838],[-122.447987228,37.769498335],[-122.448079889,37.769486519],[-122.448096374,37.769567864],[-122.448212514,37.769553053],[-122.448403805,37.769528662],[-122.448437383,37.769524374],[-122.448521222,37.769513666],[-122.448532221,37.769567939],[-122.448649638,37.769552944],[-122.448980554,37.769510746],[-122.448966816,37.769442959],[-122.448953078,37.769375172],[-122.449039796,37.769364114],[-122.449119857,37.769353904],[-122.449205255,37.769343014],[-122.449219178,37.769411008],[-122.449233142,37.7694792],[-122.449489334,37.769446529],[-122.44951354,37.769443406],[-122.449598184,37.769432484],[-122.449570362,37.769296617],[-122.449594804,37.769293463],[-122.449679209,37.769282572],[-122.449938277,37.769249533],[-122.45010053,37.769228841],[-122.45010907,37.769227752],[-122.450194467,37.769216861],[-122.450208151,37.769284655],[-122.45053266,37.769243269],[-122.450568453,37.769238717],[-122.450650089,37.769228333],[-122.450636389,37.76916046],[-122.450753817,37.769145524],[-122.451043312,37.769108602],[-122.451214112,37.769086818],[-122.451200327,37.769019037],[-122.451197229,37.769003803],[-122.451186542,37.768951256],[-122.451172755,37.768883476],[-122.451258153,37.768872584],[-122.451343548,37.768861692],[-122.451428945,37.7688508],[-122.451514341,37.768839908],[-122.451632615,37.768824823],[-122.451750021,37.768809776],[-122.451773508,37.768925251],[-122.451791642,37.769014411],[-122.451909048,37.768999364],[-122.45210238,37.768974705],[-122.452194608,37.768962941],[-122.452175865,37.768870404],[-122.452173779,37.768860108],[-122.452267716,37.768848125],[-122.452361652,37.768836144],[-122.452332818,37.768693789],[-122.452426754,37.768681807],[-122.452520691,37.768669826],[-122.452614625,37.768657844],[-122.452708561,37.768645862],[-122.452802496,37.76863388],[-122.452755814,37.768403402],[-122.45274522,37.768351448],[-122.452739089,37.768321372],[-122.452736617,37.768309249],[-122.452627926,37.768323214],[-122.452501934,37.768339402],[-122.452499089,37.768325348],[-122.452483217,37.768246939],[-122.452408576,37.767878425],[-122.452493973,37.767867532],[-122.452579367,37.767856639],[-122.452664762,37.767845747],[-122.452652124,37.767783352],[-122.452644167,37.767744065],[-122.452729562,37.767733173],[-122.452715964,37.76766604],[-122.452715469,37.767665727],[-122.452672587,37.767462283],[-122.452664529,37.767421906],[-122.452658544,37.767391914],[-122.452654386,37.767371084],[-122.452650827,37.767371532],[-122.452631812,37.767276251],[-122.452618345,37.767210043],[-122.452986398,37.767163094],[-122.453131811,37.767144486],[-122.45316479,37.767306894],[-122.453243691,37.767702095],[-122.453352289,37.768246024],[-122.453442983,37.768697668],[-122.453536875,37.769165224],[-122.453599357,37.769473049],[-122.453645682,37.769701268],[-122.453557772,37.769712512],[-122.453504185,37.769719367],[-122.453162584,37.769762878],[-122.453148854,37.76969509],[-122.453140313,37.769696178],[-122.452935352,37.769722284],[-122.452849952,37.769733162],[-122.452764551,37.769744039],[-122.452679152,37.769754916],[-122.452593751,37.769765794],[-122.452508351,37.769776671],[-122.452487755,37.769674989],[-122.452057608,37.769729777],[-122.452009437,37.769735935],[-122.451940005,37.76974481],[-122.451939983,37.769744702],[-122.451822757,37.769759687],[-122.451698072,37.769775568],[-122.451612672,37.769786444],[-122.45144187,37.769808198],[-122.451455656,37.769875978],[-122.451462549,37.769909869],[-122.451395083,37.769918461],[-122.451377148,37.769920745],[-122.451309682,37.769929338],[-122.451224281,37.769940214],[-122.451206348,37.769942498],[-122.451196698,37.769895052],[-122.45104383,37.76991452],[-122.450873028,37.769936272],[-122.450787628,37.769947149],[-122.45072955,37.769954545],[-122.450716745,37.769956176],[-122.450724464,37.769994133],[-122.45048171,37.770025048],[-122.45042817,37.770031867],[-122.450310782,37.770047015],[-122.450288088,37.769936194],[-122.450284632,37.769919317],[-122.45016721,37.769934293],[-122.450044184,37.769949982],[-122.449958786,37.769960873],[-122.44978799,37.769982654],[-122.449702592,37.769993546],[-122.449707427,37.7700174],[-122.449730071,37.770129119],[-122.449666021,37.770137287],[-122.449606243,37.77014491],[-122.449580624,37.770148177],[-122.449512305,37.77015689],[-122.449495226,37.770159068],[-122.449418367,37.77016887],[-122.449409827,37.770169958],[-122.449324429,37.770180849],[-122.449239031,37.770191739],[-122.449153632,37.770202628],[-122.449138521,37.770128063],[-122.449132391,37.770097818],[-122.449123408,37.770053498],[-122.448760465,37.77009978],[-122.44872113,37.770104803],[-122.448643047,37.770114775],[-122.448612868,37.769965872],[-122.448495452,37.769980867],[-122.448153859,37.770024426],[-122.448171992,37.770113904],[-122.44818683,37.770187114],[-122.44819529,37.770228861],[-122.448200567,37.770254901],[-122.448214305,37.770322688],[-122.448120026,37.77033471],[-122.448086208,37.770339023],[-122.448025745,37.770346732],[-122.447991927,37.770351044],[-122.447931466,37.770358754],[-122.447903113,37.770362369],[-122.447842651,37.770370078],[-122.44780405,37.770375],[-122.447751787,37.770381665],[-122.44770977,37.770387022],[-122.447666388,37.770392553],[-122.44761549,37.770399043],[-122.447580989,37.770403442],[-122.447486709,37.770415464],[-122.447470224,37.77033412],[-122.447469461,37.770330356],[-122.447456486,37.770266333],[-122.44744275,37.770198546],[-122.447429013,37.770130758],[-122.447088007,37.770174238],[-122.44707248,37.770176218],[-122.446970815,37.770189181],[-122.446966596,37.770168476],[-122.446848989,37.770183575],[-122.446507394,37.770227128],[-122.446521117,37.770294917],[-122.44653484,37.770362706],[-122.446548563,37.770430495],[-122.446463164,37.770441383],[-122.446469007,37.770470244],[-122.446472725,37.770488615],[-122.446476887,37.770509172],[-122.446483749,37.770543066],[-122.446465889,37.770545344],[-122.44639835,37.770553954],[-122.44634711,37.770560487],[-122.446261711,37.770571375],[-122.446227552,37.770575731],[-122.446176312,37.770582264],[-122.446090912,37.770593152],[-122.446056753,37.770597507],[-122.446043047,37.770529801],[-122.446036169,37.770495823],[-122.44595077,37.770506711],[-122.445865371,37.770517599],[-122.445808421,37.770524859],[-122.445588209,37.770552934],[-122.445541187,37.770558985],[-122.445419426,37.770574655],[-122.445391663,37.77043871],[-122.44521947,37.770460869],[-122.44506746,37.770480248],[-122.444899223,37.770501695],[-122.444912793,37.770569503],[-122.444926364,37.770637312],[-122.444840964,37.770648199],[-122.444850633,37.770696513],[-122.444854535,37.770716007],[-122.444861319,37.770749911],[-122.444830576,37.77075383],[-122.44477592,37.770760798],[-122.44469052,37.770771685],[-122.44460512,37.770782572],[-122.444519721,37.770793459],[-122.444434321,37.770804346],[-122.444348921,37.770815233],[-122.444263523,37.770826119],[-122.444256737,37.770792215],[-122.44425427,37.770779887],[-122.444243166,37.770724407],[-122.444157767,37.770735294],[-122.444144198,37.770667485],[-122.444130627,37.770599677],[-122.443812479,37.770640233],[-122.443788854,37.770643244],[-122.443695028,37.770655205]]]]}},"NCD","6:00AM-2:00AM",0.000008341164061968707,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_719.1","HAIGHT STREET NEIGHBORHOOD COMMERCIAL","NCD-HAIGHT",719.1,20474,0.030305271950764656,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":7.735626490517891e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19774,"shape_length":0.0045240328659041104,"gen":"Mixed Use","index":227},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.490803351,37.738646176],[-122.490432225,37.738662619],[-122.490399183,37.73830662],[-122.490528112,37.738299073],[-122.490855229,37.738284641],[-122.4909765,37.738279291],[-122.490974744,37.738254613],[-122.490984684,37.738254174],[-122.491092475,37.738249418],[-122.491424068,37.738234787],[-122.491527651,37.738230139],[-122.491529612,37.738257714],[-122.491541514,37.738424975],[-122.491637686,37.738420659],[-122.491645096,37.738420327],[-122.491906643,37.738408785],[-122.491912211,37.738488306],[-122.491919828,37.738596701],[-122.491911141,37.738597087],[-122.4919179,37.738693269],[-122.491918939,37.738708057],[-122.491933339,37.738913716],[-122.491745154,37.73892202],[-122.491646012,37.738926395],[-122.491525165,37.738931818],[-122.49153003,37.739000186],[-122.491469636,37.739002897],[-122.491409183,37.73900561],[-122.491296394,37.739010586],[-122.491210069,37.739014396],[-122.491123746,37.739018204],[-122.491105189,37.738751969],[-122.491104632,37.738743988],[-122.491104585,37.738743315],[-122.491096847,37.738633171],[-122.490803351,37.738646176]]]]}},"NC-1","6:00AM-11:00PM",7.735626490517891e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19774,0.0045240328659041104,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.659589854785904e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19760,"shape_length":0.002440985268056489,"gen":"Mixed Use","index":228},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.429366342,37.748569268],[-122.429361895,37.748522878],[-122.42925457,37.748529364],[-122.429216123,37.748531687],[-122.428940223,37.748548349],[-122.428933566,37.74847889],[-122.428924868,37.74838759],[-122.429010488,37.748382448],[-122.429008446,37.748361008],[-122.429002497,37.748298566],[-122.42899436,37.748213675],[-122.429184065,37.748202465],[-122.429330334,37.748193625],[-122.429331413,37.748204873],[-122.4294309,37.748198995],[-122.42946968,37.748196703],[-122.429751607,37.748180045],[-122.42975817,37.748248505],[-122.429766605,37.748337026],[-122.429704021,37.748340786],[-122.429705726,37.748358691],[-122.429712279,37.748427469],[-122.429723803,37.748547674],[-122.429505093,37.748560882],[-122.429366342,37.748569268]]]]}},"NC-1","6:00AM-11:00PM",2.659589854785904e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19760,0.002440985268056489,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.3782554753249626e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19665,"shape_length":0.002459316242682885,"gen":"Mixed Use","index":229},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.452150492,37.764467174],[-122.452084134,37.764140903],[-122.452366975,37.764104824],[-122.452484708,37.764089853],[-122.45252611,37.764295042],[-122.452536856,37.764348303],[-122.452654159,37.764333387],[-122.452930826,37.764298094],[-122.452944555,37.764365882],[-122.452958407,37.764438389],[-122.452962914,37.764461976],[-122.452703165,37.76449325],[-122.452569354,37.764509361],[-122.452378248,37.764533739],[-122.452169357,37.764560384],[-122.452150492,37.764467174]]]]}},"NC-1","6:00AM-11:00PM",2.3782554753249626e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19665,0.002459316242682885,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.1282560965473205e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19543,"shape_length":0.002173840192047191,"gen":"Mixed Use","index":230},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.510742102,37.772797529],[-122.510756717,37.772896321],[-122.510801169,37.773091936],[-122.510855705,37.773331925],[-122.510856591,37.773338966],[-122.510864297,37.77340025],[-122.510722383,37.773406826],[-122.510730304,37.773508981],[-122.510639032,37.773513224],[-122.510626051,37.773513828],[-122.510611125,37.773343257],[-122.510611115,37.773343153],[-122.510600923,37.773226681],[-122.510594612,37.77322709],[-122.510543222,37.773230417],[-122.510418584,37.773131916],[-122.510403639,37.773132601],[-122.510385182,37.772920793],[-122.510384538,37.772913404],[-122.51037561,37.772810947],[-122.510386229,37.772810162],[-122.510583137,37.772803173],[-122.510619775,37.772801872],[-122.510742102,37.772797529]]]]}},"NC-1","6:00AM-11:00PM",2.1282560965473205e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19543,0.002173840192047191,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":3.2023471539536174e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19662,"shape_length":0.0028885538400258218,"gen":"Mixed Use","index":231},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.423924186,37.76803579],[-122.423920206,37.767994156],[-122.423915777,37.767947816],[-122.42390056,37.767788986],[-122.42407261,37.767778588],[-122.424245523,37.767768137],[-122.424339526,37.767762453],[-122.424388001,37.767759523],[-122.42441169,37.768006424],[-122.424609672,37.767994502],[-122.424818511,37.767981926],[-122.424819898,37.767996439],[-122.424826885,37.768069556],[-122.424838694,37.768192785],[-122.424615159,37.768206247],[-122.424577724,37.768208501],[-122.424480666,37.768214496],[-122.424432376,37.768217478],[-122.424441014,37.768305599],[-122.424392724,37.768308582],[-122.424321103,37.768313005],[-122.424301607,37.76831421],[-122.424065243,37.768327834],[-122.424044974,37.768116281],[-122.424036633,37.768029016],[-122.423924186,37.76803579]]]]}},"NC-1","6:00AM-11:00PM",3.2023471539536174e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19662,0.0028885538400258218,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":1.2367500984950325e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19544,"shape_length":0.001410610349056156,"gen":"Mixed Use","index":232},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.400887704,37.711667991],[-122.400835735,37.711851749],[-122.400789195,37.712016313],[-122.400656546,37.71198522],[-122.400441895,37.711934905],[-122.400451346,37.711909718],[-122.400470891,37.711857636],[-122.400570397,37.711592478],[-122.400793601,37.711645596],[-122.400887704,37.711667991]]]]}},"NC-1","6:00AM-11:00PM",1.2367500984950325e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19544,0.001410610349056156,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":2.0165094260478154e-7,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19761,"shape_length":0.001826708269404112,"gen":"Mixed Use","index":233},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.406082017,37.748554696],[-122.406177629,37.748522687],[-122.406178974,37.748525218],[-122.406199518,37.74851834],[-122.406274586,37.748493209],[-122.406372539,37.748460417],[-122.406497678,37.748418523],[-122.406561376,37.748397199],[-122.406572077,37.74841732],[-122.406625623,37.748517998],[-122.40668107,37.748622252],[-122.406682035,37.748624067],[-122.406757777,37.748766478],[-122.406604261,37.748809323],[-122.406452645,37.748851637],[-122.406433372,37.748856994],[-122.406296197,37.74889512],[-122.406265811,37.748900359],[-122.406248161,37.748867166],[-122.406226274,37.748826003],[-122.406206455,37.748788728],[-122.406082017,37.748554696]]]]}},"NC-1","6:00AM-11:00PM",2.0165094260478154e-7,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19761,0.001826708269404112,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-1","commercial_hours_of_operation":"6:00AM-11:00PM","shape_area":0.0000011594188895714117,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","districtname":"NEIGHBORHOOD COMMERCIAL, CLUSTER","zoning":"NC-1","codesection":710.1,"objectid":19773,"shape_length":0.005996590662272741,"gen":"Mixed Use","index":234},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.478657336,37.739368571],[-122.478644369,37.739183073],[-122.478614815,37.738799863],[-122.478644334,37.738798427],[-122.478644323,37.738797993],[-122.478678914,37.73879647],[-122.478738389,37.738793853],[-122.478853906,37.738788768],[-122.47894023,37.738784968],[-122.479070062,37.738779253],[-122.479156385,37.738775453],[-122.479157797,37.738795745],[-122.479164019,37.73888514],[-122.479322856,37.738878148],[-122.479327282,37.738941746],[-122.479328581,37.738960413],[-122.479584101,37.738949164],[-122.479587631,37.738949026],[-122.479706374,37.738944354],[-122.479705815,37.738935387],[-122.479694293,37.738750671],[-122.479753382,37.738748346],[-122.479812411,37.738746024],[-122.480008276,37.7387374],[-122.480094599,37.738733599],[-122.480180924,37.738729798],[-122.48022443,37.738727883],[-122.480267247,37.738725997],[-122.48026922,37.738753966],[-122.480355544,37.738750166],[-122.480441868,37.738746366],[-122.480528192,37.738742564],[-122.480640758,37.738737608],[-122.480651573,37.738737127],[-122.480761609,37.738732233],[-122.480774669,37.738917423],[-122.480786754,37.739088755],[-122.480260252,37.739111937],[-122.480267909,37.739221622],[-122.480278734,37.739375113],[-122.480279512,37.739386145],[-122.48027088,37.739386525],[-122.479911202,37.739402362],[-122.479858254,37.739404692],[-122.479737399,37.739409997],[-122.479736953,37.739403587],[-122.479616097,37.739408892],[-122.4791983,37.739427283],[-122.47878394,37.739445523],[-122.478663087,37.73945085],[-122.478660857,37.739418954],[-122.478657336,37.739368571]]]]}},"NC-1","6:00AM-11:00PM",0.0000011594188895714117,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_710.1","NEIGHBORHOOD COMMERCIAL, CLUSTER","NC-1",710.1,19773,0.005996590662272741,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"RCD","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.00000542454371601384,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_758","districtname":"REGIONAL COMMERCIAL","zoning":"RCD","codesection":758,"objectid":19806,"shape_length":0.01517372865771583,"gen":"Commercial","index":235},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.414085228,37.77449096],[-122.413943763,37.774378121],[-122.413919273,37.774397462],[-122.413818609,37.774317152],[-122.413670905,37.774199335],[-122.413574557,37.774122482],[-122.41368166,37.774037898],[-122.413620647,37.773989231],[-122.413508104,37.773899459],[-122.413474216,37.773872428],[-122.413396797,37.773810675],[-122.413376596,37.773794561],[-122.413315998,37.773746223],[-122.41325457,37.773697225],[-122.413193557,37.773648557],[-122.413040652,37.773526588],[-122.413021132,37.773511019],[-122.41301052,37.773502554],[-122.413020707,37.773494508],[-122.412898682,37.773397172],[-122.412678295,37.773221374],[-122.412593083,37.773153402],[-122.412492973,37.773073429],[-122.41252964,37.773044509],[-122.412428536,37.772963742],[-122.412194686,37.7727772],[-122.412175535,37.772792323],[-122.412147707,37.7728143],[-122.412103061,37.772778686],[-122.412086696,37.772765632],[-122.412025685,37.772716964],[-122.411964675,37.772668294],[-122.411963963,37.772667726],[-122.411903664,37.772619626],[-122.411844661,37.77257256],[-122.411891639,37.77253546],[-122.41182862,37.77248519],[-122.411767609,37.772436521],[-122.411645589,37.772339184],[-122.411602881,37.772305116],[-122.411560174,37.772271047],[-122.411493079,37.772217525],[-122.41141373,37.772154227],[-122.411316113,37.772076357],[-122.411084276,37.771891415],[-122.410983619,37.771811104],[-122.41104492,37.771762695],[-122.411277937,37.771578676],[-122.411472682,37.771424952],[-122.411476145,37.771422219],[-122.411482069,37.771417543],[-122.411582081,37.771338596],[-122.411677021,37.771414381],[-122.411682644,37.77141887],[-122.411865673,37.771564875],[-122.41192699,37.771516452],[-122.41204901,37.771613788],[-122.412140526,37.771686791],[-122.412201536,37.77173546],[-122.412257521,37.771780119],[-122.412262547,37.771784128],[-122.412323557,37.771832796],[-122.412523782,37.77167467],[-122.412553212,37.771651423],[-122.412669139,37.771743898],[-122.412715126,37.771780582],[-122.412771471,37.771825529],[-122.412812514,37.771858268],[-122.4128585,37.771894951],[-122.41295181,37.771969384],[-122.41292238,37.77199263],[-122.412915804,37.771997824],[-122.412862239,37.772040126],[-122.412829959,37.772065619],[-122.4126673,37.772194077],[-122.412789322,37.772291413],[-122.412728005,37.772339838],[-122.412972049,37.77253451],[-122.413016004,37.772569623],[-122.413073496,37.77261555],[-122.413180533,37.772531127],[-122.413292522,37.772442797],[-122.413419619,37.772342549],[-122.413490041,37.772287004],[-122.413571016,37.772223135],[-122.413585294,37.772211873],[-122.413594933,37.77220427],[-122.413694348,37.772283687],[-122.413783776,37.772355021],[-122.414029913,37.772551358],[-122.414032354,37.772553305],[-122.413863024,37.772687034],[-122.414192752,37.772950046],[-122.414311266,37.773044579],[-122.414363587,37.773086314],[-122.414406296,37.773120381],[-122.414449005,37.773154449],[-122.414477351,37.773177058],[-122.414450142,37.773198547],[-122.414317926,37.773302965],[-122.41470841,37.773614435],[-122.414809073,37.773694743],[-122.414796828,37.773704413],[-122.414897492,37.773784721],[-122.415112918,37.773956552],[-122.415241047,37.774058753],[-122.415296162,37.774102715],[-122.415338868,37.774136784],[-122.415297876,37.774169159],[-122.415276051,37.774186395],[-122.415244972,37.77421094],[-122.415203978,37.774243314],[-122.415246685,37.774277385],[-122.4153018,37.774321347],[-122.415307698,37.774326052],[-122.415429728,37.774423386],[-122.415503308,37.774365274],[-122.415505099,37.774363859],[-122.415528544,37.774345345],[-122.415647337,37.774440096],[-122.415724385,37.774501552],[-122.415764651,37.774533675],[-122.415726001,37.774564199],[-122.415721123,37.774568052],[-122.415678748,37.774601517],[-122.415652044,37.774622607],[-122.415514572,37.774731177],[-122.415512088,37.774733139],[-122.415508372,37.774736074],[-122.415371609,37.774844084],[-122.415468451,37.774921328],[-122.415505608,37.774950965],[-122.415407499,37.775028447],[-122.415124604,37.775251864],[-122.41508168,37.775285763],[-122.414769386,37.775036669],[-122.414552403,37.774863597],[-122.414511607,37.774831056],[-122.414466895,37.774795393],[-122.414424722,37.774761754],[-122.414089151,37.774494089],[-122.414085228,37.77449096]]]]}},"RCD","6:00AM-2:00AM",0.00000542454371601384,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_758","REGIONAL COMMERCIAL","RCD",758,19806,0.01517372865771583,"Commercial"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000006130862865290992,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19567,"shape_length":0.017623040188535243,"gen":"Mixed Use","index":236},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.402063311,37.724994696],[-122.402164469,37.724969506],[-122.402352023,37.724922802],[-122.402369868,37.724918358],[-122.402461157,37.724895626],[-122.402558141,37.725132063],[-122.402600411,37.725235112],[-122.403009288,37.725129052],[-122.403042344,37.725208254],[-122.403069544,37.725273426],[-122.403096743,37.725338596],[-122.403123942,37.725403769],[-122.403151142,37.725468941],[-122.403233255,37.725447487],[-122.403249021,37.725443368],[-122.40327622,37.72550854],[-122.403303421,37.725573712],[-122.40333062,37.725638883],[-122.403357821,37.725704055],[-122.40338502,37.725769227],[-122.403398619,37.725801812],[-122.403412219,37.725834398],[-122.40343942,37.72589957],[-122.403466039,37.725963352],[-122.40357484,37.726224038],[-122.403607306,37.726301826],[-122.403607963,37.726301654],[-122.403640778,37.726380278],[-122.403749579,37.726640964],[-122.403815262,37.726623781],[-122.403842463,37.726688953],[-122.403842528,37.726689109],[-122.403842471,37.726689165],[-122.403776946,37.726706536],[-122.403784395,37.726724383],[-122.403831181,37.726836478],[-122.403858381,37.72690165],[-122.403885581,37.726966821],[-122.403912782,37.727031992],[-122.403939983,37.727097164],[-122.403967183,37.727162335],[-122.403885078,37.727183813],[-122.40391228,37.727248985],[-122.403939481,37.727314156],[-122.403966681,37.727379327],[-122.403993883,37.727444499],[-122.404026094,37.727521674],[-122.404036813,37.727518892],[-122.404069541,37.727598196],[-122.404096467,37.72766344],[-122.404123392,37.727728683],[-122.404150317,37.727793927],[-122.404177242,37.72785917],[-122.404259349,37.727837691],[-122.404341453,37.727816214],[-122.404368379,37.727881457],[-122.404373118,37.727892939],[-122.404395304,37.7279467],[-122.404422231,37.728011944],[-122.404449157,37.728077187],[-122.404476082,37.72814243],[-122.40440551,37.728160892],[-122.404393976,37.728163909],[-122.404399485,37.728177256],[-122.404420902,37.728229153],[-122.404447827,37.728294396],[-122.404474754,37.728359639],[-122.40450168,37.728424883],[-122.404555532,37.72855537],[-122.404582458,37.728620614],[-122.404615012,37.728699492],[-122.40469676,37.728677995],[-122.404728839,37.728755724],[-122.404728842,37.728755809],[-122.404729188,37.728755718],[-122.404834738,37.729011472],[-122.404736056,37.729037288],[-122.404747879,37.729066],[-122.404762928,37.729102545],[-122.404774752,37.729131258],[-122.404789801,37.729167802],[-122.404818825,37.72923828],[-122.404884523,37.729221093],[-122.404909403,37.729281089],[-122.404843548,37.729298316],[-122.404852147,37.729319199],[-122.404868808,37.729359659],[-122.404897295,37.729428831],[-122.404924168,37.729494088],[-122.404951041,37.729559345],[-122.404868934,37.729580824],[-122.404895807,37.729646082],[-122.404922681,37.729711339],[-122.404979537,37.729849404],[-122.405011746,37.729927618],[-122.405029035,37.729923098],[-122.405061388,37.73000149],[-122.405115242,37.730131977],[-122.40514217,37.73019722],[-122.405169096,37.730262464],[-122.405234795,37.73024531],[-122.405261723,37.730310553],[-122.40528865,37.730375796],[-122.405315577,37.730441039],[-122.405324393,37.730462399],[-122.405342505,37.730506282],[-122.405369432,37.730571525],[-122.40537972,37.730596454],[-122.40539636,37.730636769],[-122.405423286,37.730702011],[-122.405450214,37.730767254],[-122.405389636,37.730783072],[-122.405416563,37.730848315],[-122.405443491,37.730913558],[-122.405496778,37.731042665],[-122.405529153,37.731121106],[-122.405589727,37.731105279],[-122.405621968,37.731183395],[-122.405729679,37.731444367],[-122.405629333,37.731470635],[-122.405403648,37.731529716],[-122.405333717,37.731548022],[-122.405232431,37.731574537],[-122.405085875,37.731236925],[-122.405042748,37.731132496],[-122.404977306,37.730974031],[-122.404867412,37.731001887],[-122.404753589,37.73103074],[-122.404693997,37.731045845],[-122.404647289,37.730985615],[-122.404608255,37.730923438],[-122.404598373,37.730925943],[-122.404564842,37.730862372],[-122.404531311,37.7307988],[-122.404498368,37.730807151],[-122.404444483,37.730676667],[-122.404477096,37.7306684],[-122.404443566,37.730604828],[-122.404376342,37.730477727],[-122.40434176,37.730412342],[-122.404328857,37.73041568],[-122.404320353,37.730417879],[-122.404293621,37.730354553],[-122.404262621,37.730281116],[-122.404235138,37.730216011],[-122.404207656,37.730150906],[-122.404180174,37.730085802],[-122.404125209,37.729955592],[-122.404059251,37.729799341],[-122.40403177,37.729734237],[-122.403976806,37.729604027],[-122.403935628,37.729614465],[-122.403908861,37.729549179],[-122.403882094,37.729483894],[-122.403855326,37.729418607],[-122.403828559,37.729353322],[-122.403748256,37.729157464],[-122.403721489,37.729092178],[-122.403695125,37.729027875],[-122.403665019,37.728954443],[-122.403663005,37.728949532],[-122.403670174,37.728947652],[-122.403683059,37.728944273],[-122.403700086,37.728939807],[-122.403667966,37.728861465],[-122.403627816,37.728763537],[-122.403587848,37.728666052],[-122.403560902,37.728600331],[-122.403534136,37.728535046],[-122.403507369,37.728469761],[-122.403480603,37.728404475],[-122.403453836,37.72833919],[-122.403320005,37.728012763],[-122.403270754,37.72802568],[-122.403188759,37.727825687],[-122.403157373,37.727749134],[-122.40315664,37.727747345],[-122.40317327,37.727743029],[-122.403203184,37.727735265],[-122.403171065,37.727656924],[-122.403144299,37.727591639],[-122.403064002,37.727395784],[-122.403037237,37.727330499],[-122.403010471,37.727265214],[-122.402983706,37.72719993],[-122.402956941,37.727134644],[-122.402876646,37.726938789],[-122.40284988,37.726873504],[-122.402823115,37.72680822],[-122.402796349,37.726742935],[-122.402769584,37.726677649],[-122.402744305,37.726615988],[-122.402712186,37.726537642],[-122.402695796,37.726542019],[-122.402663678,37.726463673],[-122.402636913,37.726398385],[-122.402610147,37.726333097],[-122.402583381,37.72626781],[-122.402556614,37.726202521],[-122.402529848,37.726137233],[-122.402503083,37.726071945],[-122.402449551,37.725941369],[-122.402422787,37.725876081],[-122.402396021,37.725810793],[-122.402369255,37.725745505],[-122.402232927,37.725412966],[-122.402200809,37.725334619],[-122.402204333,37.725333741],[-122.402171789,37.725255499],[-122.402144669,37.725190299],[-122.40211755,37.725125098],[-122.402090431,37.725059897],[-122.402063311,37.724994696]]]]}},"NC-2","6:00AM-2:00AM",0.000006130862865290992,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19567,0.017623040188535243,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.0000013720805757477225,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19572,"shape_length":0.006434128830512145,"gen":"Mixed Use","index":237},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.432978341,37.804103355],[-122.43296,37.804010719],[-122.432865595,37.803533884],[-122.432865416,37.803533907],[-122.432837729,37.803396473],[-122.4328106,37.803261814],[-122.432810432,37.803255368],[-122.432784386,37.803126079],[-122.433084014,37.803087937],[-122.433327956,37.803056884],[-122.433787188,37.802998423],[-122.43380285,37.803076152],[-122.433814508,37.803134018],[-122.43381864,37.803154532],[-122.433863996,37.803379649],[-122.433869091,37.803404936],[-122.43388275,37.803472733],[-122.433889635,37.803506903],[-122.43389641,37.803540531],[-122.433923729,37.803676125],[-122.43393739,37.803743923],[-122.433823467,37.803758425],[-122.433709548,37.803772928],[-122.433737518,37.803911749],[-122.433740056,37.803924341],[-122.433756076,37.804003853],[-122.433981472,37.803975015],[-122.434000455,37.80406923],[-122.434000509,37.804069497],[-122.434002922,37.804069189],[-122.434030242,37.804204783],[-122.434043902,37.80427258],[-122.434078051,37.804442074],[-122.434084881,37.804475973],[-122.434098541,37.804543769],[-122.4340131,37.804554646],[-122.434026761,37.804622443],[-122.434068164,37.804827938],[-122.434073966,37.804856735],[-122.434085976,37.804916346],[-122.4340821,37.804916831],[-122.433898494,37.804976417],[-122.433797945,37.805043287],[-122.433713279,37.804969422],[-122.433691837,37.804863001],[-122.433679052,37.804799541],[-122.433558471,37.80420105],[-122.433546298,37.804140632],[-122.433524705,37.804033454],[-122.432978341,37.804103355]]]]}},"NC-2","6:00AM-2:00AM",0.0000013720805757477225,"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","NEIGHBORHOOD COMMERCIAL, SMALL SCALE","NC-2",711.1,19572,0.006434128830512145,"Mixed Use"],[{"type":"Feature","properties":{"zoning_sim":"NC-2","commercial_hours_of_operation":"6:00AM-2:00AM","shape_area":0.000006579892009723739,"url":"http://library.amlegal.com/nxt/gateway.dll/California/planning/article7neighborhoodcommercialdistricts?f=templates$fn=default.htm$3.0$vid=amlegal:sanfrancisco_ca$anc=JD_711.1","districtname":"NEIGHBORHOOD COMMERCIAL, SMALL SCALE","zoning":"NC-2","codesection":711.1,"objectid":19548,"shape_length":0.020203024235780218,"gen":"Mixed Use","index":238},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.436929808,37.801032704],[-122.436588012,37.801075973],[-122.436428446,37.801096172],[-122.436416408,37.801097697],[-122.43634165,37.80110716],[-122.436298915,37.800922306],[-122.43627391,37.800814144],[-122.435375367,37.800928373],[-122.435355971,37.80083313],[-122.435308169,37.800598392],[-122.435298636,37.800551578],[-122.435294368,37.800530613],[-122.435284835,37.800483799],[-122.435280565,37.800462834],[-122.435371108,37.800451213],[-122.435421505,37.800444745],[-122.435461652,37.800439593],[-122.435562445,37.800426656],[-122.436032244,37.800366358],[-122.436149694,37.800351282],[-122.436146378,37.800335001],[-122.436263862,37.80032009],[-122.436641337,37.800272181],[-122.436735223,37.800260264],[-122.436735665,37.800260208],[-122.436736092,37.800262347],[-122.436737349,37.800259215],[-122.437094144,37.800212773],[-122.437094389,37.800214],[-122.437097701,37.800230582],[-122.437260978,37.800209911],[-122.437315724,37.800202981],[-122.437295346,37.800100975],[-122.437316583,37.800098304],[-122.437473157,37.800078481],[-122.437459609,37.80001067],[-122.437644824,37.799987221],[-122.437762315,37.799972346],[-122.437769222,37.800006924],[-122.437845572,37.799997232],[-122.437886704,37.799992011],[-122.438224546,37.799949127],[-122.438245189,37.800051082],[-122.438251998,37.800084705],[-122.438313916,37.800076846],[-122.438379135,37.800068567],[-122.438508322,37.800052168],[-122.438614611,37.800038675],[-122.438679205,37.800030476],[-122.438850089,37.800008784],[-122.4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment