Skip to content

Instantly share code, notes, and snippets.

@fscottfoti
Last active April 12, 2025 02:27
Show Gist options
  • Select an option

  • Save fscottfoti/6dbdd18c3a065d5517dfd390004f1cf1 to your computer and use it in GitHub Desktop.

Select an option

Save fscottfoti/6dbdd18c3a065d5517dfd390004f1cf1 to your computer and use it in GitHub Desktop.
pandana_example.ipynb
This file has been truncated, but you can view the full file.
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"id": "ad4ccf6a-5da0-4a90-9828-7c04b5262d3c",
"metadata": {},
"outputs": [],
"source": [
"import pandana2"
]
},
{
"cell_type": "markdown",
"id": "325f6f4e-b59b-4d4f-9d3a-9dbdd09df64d",
"metadata": {},
"source": [
"## Fetch network\n",
"\n",
"pandana starts with a network (a DataFrame/GeoDataFrame of edges and a GeoDataFrame of nodes). The easiest place to get a network is from osmnx. The appropriate precision of network from osmnx is drive scale, but with all edges bidirectional and highways removed."
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "5c0c1d8d-aacb-4a83-a1aa-172d85b9cb2d",
"metadata": {},
"outputs": [],
"source": [
"net = pandana2.PandanaNetwork.from_osmnx_local_streets_from_place_query(\"Oakland, CA\")"
]
},
{
"cell_type": "code",
"execution_count": 25,
"id": "2dba1e0a-27dc-4843-a38f-80eadd4a2d61",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th></th>\n",
" <th>length</th>\n",
" <th>geometry</th>\n",
" </tr>\n",
" <tr>\n",
" <th>u</th>\n",
" <th>v</th>\n",
" <th></th>\n",
" <th></th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th rowspan=\"3\" valign=\"top\">35718715</th>\n",
" <th>91846714</th>\n",
" <td>1007.270</td>\n",
" <td>LINESTRING (-122.24337 37.86098, -122.24328 37...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>35719057</th>\n",
" <td>66.828</td>\n",
" <td>LINESTRING (-122.24337 37.86098, -122.24352 37...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>843006075</th>\n",
" <td>571.686</td>\n",
" <td>LINESTRING (-122.24337 37.86098, -122.24337 37...</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" length \\\n",
"u v \n",
"35718715 91846714 1007.270 \n",
" 35719057 66.828 \n",
" 843006075 571.686 \n",
"\n",
" geometry \n",
"u v \n",
"35718715 91846714 LINESTRING (-122.24337 37.86098, -122.24328 37... \n",
" 35719057 LINESTRING (-122.24337 37.86098, -122.24352 37... \n",
" 843006075 LINESTRING (-122.24337 37.86098, -122.24337 37... "
]
},
"execution_count": 25,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"net.edges.head(3)"
]
},
{
"cell_type": "code",
"execution_count": 26,
"id": "cd2f3a7c-1746-470c-9266-7375b146f16e",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>geometry</th>\n",
" </tr>\n",
" <tr>\n",
" <th>osmid</th>\n",
" <th></th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>35718715</th>\n",
" <td>POINT (-122.24337 37.86098)</td>\n",
" </tr>\n",
" <tr>\n",
" <th>35718778</th>\n",
" <td>POINT (-122.23083 37.86646)</td>\n",
" </tr>\n",
" <tr>\n",
" <th>35718864</th>\n",
" <td>POINT (-122.21786 37.86836)</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" geometry\n",
"osmid \n",
"35718715 POINT (-122.24337 37.86098)\n",
"35718778 POINT (-122.23083 37.86646)\n",
"35718864 POINT (-122.21786 37.86836)"
]
},
"execution_count": 26,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"net.nodes.head(3)"
]
},
{
"cell_type": "markdown",
"id": "7e081c9b-c043-4a8f-90f5-8f1d82660346",
"metadata": {},
"source": [
"## Preprocess the network up to a maximum radius\n",
"This step runs a dijkstra on every input node up to the cutoff you pass to 'preprocess'. The output is a dataframe with the shortest path edge weight for every from-to node combination where the minimum path is less than the cutff."
]
},
{
"cell_type": "code",
"execution_count": 27,
"id": "2224a225-417b-4f91-aca2-79bba08a73d9",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>from</th>\n",
" <th>to</th>\n",
" <th>weight</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>35718715</td>\n",
" <td>35718715</td>\n",
" <td>0.00</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>35718715</td>\n",
" <td>35719057</td>\n",
" <td>66.83</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>35718715</td>\n",
" <td>843006075</td>\n",
" <td>571.69</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" from to weight\n",
"0 35718715 35718715 0.00\n",
"1 35718715 35719057 66.83\n",
"3 35718715 843006075 571.69"
]
},
"execution_count": 27,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# preprocess to 1500 meters (edge weights are set to length by default, but travel times are handy when available)\n",
"net.preprocess(1500)\n",
"net.min_weights_df.head(3)"
]
},
{
"cell_type": "markdown",
"id": "75064ba5-11ff-46d7-8fbb-47ee733ec778",
"metadata": {},
"source": [
"## Get some data to aggregate\n",
"Here we load in a few hundred home sales obversvatons from the area we are analyzing. We are going to aggregate the dollars per square foot metric."
]
},
{
"cell_type": "code",
"execution_count": 23,
"id": "8f404de5-8ca7-4d92-a409-044871ab4b63",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>$/SQUARE FEET</th>\n",
" <th>geometry</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>838.0</td>\n",
" <td>POINT (-122.21295 37.80510)</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>1082.0</td>\n",
" <td>POINT (-122.24608 37.84365)</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>634.0</td>\n",
" <td>POINT (-122.26977 37.84511)</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" $/SQUARE FEET geometry\n",
"0 838.0 POINT (-122.21295 37.80510)\n",
"1 1082.0 POINT (-122.24608 37.84365)\n",
"2 634.0 POINT (-122.26977 37.84511)"
]
},
"execution_count": 23,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df = pd.read_csv(\"../tests/data/redfin_2025-04-04-13-35-42.csv\")\n",
"redfin_df = gpd.GeoDataFrame(\n",
" df[[\"$/SQUARE FEET\"]],\n",
" geometry=gpd.points_from_xy(df.LONGITUDE, df.LATITUDE),\n",
" crs=\"EPSG:4326\",\n",
")\n",
"redfin_df.head(3)"
]
},
{
"cell_type": "markdown",
"id": "af62d5d7-3746-4ffa-a082-2106d939d6be",
"metadata": {},
"source": [
"## Map each observation to it's nearest street intersection\n",
"This is a spatial join to the nodes DataFrame of the network"
]
},
{
"cell_type": "code",
"execution_count": 29,
"id": "6f6d51d6-f04a-4341-aedf-36851cba2d55",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>$/SQUARE FEET</th>\n",
" <th>geometry</th>\n",
" <th>node_id</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>838.0</td>\n",
" <td>POINT (-122.21295 37.80510)</td>\n",
" <td>53041240</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>1082.0</td>\n",
" <td>POINT (-122.24608 37.84365)</td>\n",
" <td>53077164</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>634.0</td>\n",
" <td>POINT (-122.26977 37.84511)</td>\n",
" <td>53107934</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" $/SQUARE FEET geometry node_id\n",
"0 838.0 POINT (-122.21295 37.80510) 53041240\n",
"1 1082.0 POINT (-122.24608 37.84365) 53077164\n",
"2 634.0 POINT (-122.26977 37.84511) 53107934"
]
},
"execution_count": 29,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"redfin_df[\"node_id\"] = net.nearest_nodes(redfin_df)\n",
"redfin_df.head(3)"
]
},
{
"cell_type": "markdown",
"id": "4ed170f2-8859-4072-9f3f-7211d1855189",
"metadata": {},
"source": [
"## Do the aggregation\n",
"Just like that, we can do a weighted mean of all the observations where we apply a linear decay to the distance of each observation from each origin node so that nodes closer to the observed node are weighted higher. NaN values mean that there are no observations within the requested distance."
]
},
{
"cell_type": "code",
"execution_count": 31,
"id": "3305a9b9-2306-4d58-9f74-c29ca3d0d4a4",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>geometry</th>\n",
" <th>average price/sqft</th>\n",
" <th>observation count</th>\n",
" </tr>\n",
" <tr>\n",
" <th>osmid</th>\n",
" <th></th>\n",
" <th></th>\n",
" <th></th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>35718715</th>\n",
" <td>POINT (-122.24337 37.86098)</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>35718778</th>\n",
" <td>POINT (-122.23083 37.86646)</td>\n",
" <td>695.851186</td>\n",
" <td>4.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>35718864</th>\n",
" <td>POINT (-122.21786 37.86836)</td>\n",
" <td>604.000000</td>\n",
" <td>1.0</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" geometry average price/sqft observation count\n",
"osmid \n",
"35718715 POINT (-122.24337 37.86098) NaN NaN\n",
"35718778 POINT (-122.23083 37.86646) 695.851186 4.0\n",
"35718864 POINT (-122.21786 37.86836) 604.000000 1.0"
]
},
"execution_count": 31,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"nodes = net.nodes.copy()\n",
"nodes[\"average price/sqft\"] = net.aggregate(\n",
" values=pd.Series(redfin_df[\"$/SQUARE FEET\"].values, index=redfin_df[\"node_id\"]),\n",
" decay_func=pandana2.LinearDecay(1500),\n",
" aggregation=\"mean\",\n",
")\n",
"nodes[\"observation count\"] = net.aggregate(\n",
" values=pd.Series(1, index=redfin_df[\"node_id\"]),\n",
" decay_func=pandana2.NoDecay(1500),\n",
" aggregation=\"sum\",\n",
")\n",
"nodes.head(3)"
]
},
{
"cell_type": "code",
"execution_count": 32,
"id": "072542ab-9071-4986-9b1f-1ba52bd0ba4c",
"metadata": {},
"outputs": [],
"source": [
"import json\n",
"import os\n",
"from mapboxgl.utils import create_color_stops, df_to_geojson\n",
"from mapboxgl.viz import CircleViz\n",
"import warnings\n",
"warnings.filterwarnings(\"ignore\")"
]
},
{
"cell_type": "code",
"execution_count": 33,
"id": "bf066d9f-709d-47fa-8c47-cc86c2b60e17",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<iframe id=\"map\", srcdoc=\"<!DOCTYPE html>\n",
"<html>\n",
"<head>\n",
"<title>mapboxgl-jupyter viz</title>\n",
"<meta charset='UTF-8' />\n",
"<meta name='viewport'\n",
" content='initial-scale=1,maximum-scale=1,user-scalable=no' />\n",
"<script type='text/javascript'\n",
" src='https://api.tiles.mapbox.com/mapbox-gl-js/v1.0.0/mapbox-gl.js'></script>\n",
"<link type='text/css'\n",
" href='https://api.tiles.mapbox.com/mapbox-gl-js/v1.0.0/mapbox-gl.css' \n",
" rel='stylesheet' />\n",
"\n",
"<style type='text/css'>\n",
" body { margin:0; padding:0; }\n",
" .map { position: absolute; top:0; bottom:0; width:100%; }\n",
" .legend {\n",
" background-color: white;\n",
" color: #6e6e6e;\n",
" border-radius: 3px;\n",
" bottom: 10px;\n",
" box-shadow: 0 1px 2px rgba(0, 0, 0, 0.10);\n",
" font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;\n",
" padding: 0;\n",
" position: absolute;\n",
" right: 10px;\n",
" z-index: 1;\n",
" min-width: 100px;\n",
" }\n",
" .legend.horizontal {bottom: 10px; text-align: left;}\n",
"\n",
" /* legend header */\n",
" .legend .legend-header { border-radius: 3px 3px 0 0; background: white; }\n",
" .legend .legend-title {\n",
" padding: 6px 12px 6px 12px;\n",
" text-shadow: 0 0 2px white;\n",
" text-transform: capitalize;\n",
" text-align: center;\n",
" font-weight: bold !important;\n",
" font-size: 14px;\n",
" font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;\n",
" max-width: 160px;\n",
" }\n",
" .legend-title {padding: 6px 12px 6px 12px; text-shadow: 0 0 2px #FFF; text-transform: capitalize; text-align: center; max-width: 160px; font-size: 0.9em; font-weight: bold;}\n",
" .legend.horizontal .legend-title {text-align: left;}\n",
"\n",
" /* legend items */\n",
" .legend-content {margin: 6px 12px 6px 12px; overflow: hidden; padding: 0; float: left; list-style: none; font-size: 0.8em;}\n",
" .legend.vertical .legend-item {white-space: nowrap;}\n",
" .legend-value {display: inline-block; line-height: 18px; vertical-align: top;}\n",
" .legend.horizontal ul.legend-content li.legend-item .legend-value,\n",
" .legend.horizontal ul.legend-content li.legend-item {display: inline-block; float: left; width: 30px; margin-bottom: 0; text-align: center; min-height: 30px;}\n",
"\n",
" /* legend key styles */\n",
" .legend-key {display: inline-block; height: 10px;}\n",
" .legend-key.default, .legend-key.square {border-radius: 0;}\n",
" .legend-key.circle {border-radius: 50%;}\n",
" .legend-key.rounded-square {border-radius: 20%;}\n",
" .legend.vertical .legend-key {width: 10px; margin-right: 5px; margin-left: 1px;}\n",
" .legend.horizontal .legend-key {width: 30px; margin-right: 0; margin-top: 1px; float: left;}\n",
" .legend.horizontal .legend-key.square, .legend.horizontal .legend-key.rounded-square, .legend.horizontal .legend-key.circle {margin-left: 10px; width: 10px;}\n",
" .legend.horizontal .legend-key.line {margin-left: 5px;}\n",
" .legend.horizontal .legend-key.line, .legend.vertical .legend-key.line {border-radius: 10%; width: 20px; height: 3px; margin-bottom: 2px;}\n",
"\n",
" /* gradient bar alignment */\n",
" .gradient-bar {margin: 6px 12px 6px 12px;}\n",
" .legend.horizontal .gradient-bar {width: 88%; height: 10px;}\n",
" .legend.vertical .gradient-bar {width: 10px; min-height: 50px; position: absolute; bottom: 4px;}\n",
"\n",
" /* contiguous vertical bars (discrete) */\n",
" .legend.vertical.contig .legend-key {height: 15px; width: 10px;}\n",
" .legend.vertical.contig li.legend-item {height: 15px;}\n",
" .legend.vertical.contig {padding-bottom: 6px;}\n",
"\n",
" /* vertical radius legend */\n",
" .legend.horizontal.legend-variable-radius ul.legend-content li.legend-item .legend-value,\n",
" .legend.horizontal.legend-variable-radius ul.legend-content li.legend-item {width: 30px; min-height: 20px;}\n",
"\n",
" /* scale annotation */\n",
" .mapboxgl-ctrl.mapboxgl-ctrl-scale { border-color: #6e6e6e; \n",
" background-color: white; \n",
" color: #131516; }\n",
"</style>\n",
"\n",
"\n",
"<style>\n",
" .gradient-bar.bordered, .legend-key.bordered { border: solid grey 0.1px; }\n",
"</style>\n",
"\n",
"\n",
"</head>\n",
"<body>\n",
"\n",
"<div id='map' class='map'></div>\n",
"\n",
"<script type='text/javascript'>\n",
"\n",
"var legendHeader;\n",
"\n",
"function calcColorLegend(myColorStops, title) {\n",
" // create legend\n",
" var legend = document.createElement('div'),\n",
" legendContainer = document.getElementsByClassName('mapboxgl-ctrl-bottom-right')[0];\n",
"\n",
" if ('circle' === 'contiguous-bar') {\n",
" legend.className = 'legend vertical contig';\n",
" }\n",
" else {\n",
" legend.className = 'legend vertical';\n",
" }\n",
" legend.id = 'legend-0';\n",
" document.body.appendChild(legend);\n",
" // add legend header and content elements\n",
" var mytitle = document.createElement('div'),\n",
" legendContent = document.createElement('ul');\n",
" legendHeader = document.createElement('div');\n",
" mytitle.textContent = title;\n",
" mytitle.className = 'legend-title'\n",
" legendHeader.className = 'legend-header'\n",
" legendContent.className = 'legend-content'\n",
" legendHeader.appendChild(mytitle);\n",
" legend.appendChild(legendHeader);\n",
" legend.appendChild(legendContent);\n",
" if (false === true) {\n",
" var gradientText = 'linear-gradient(to right, ',\n",
" gradient = document.createElement('div');\n",
" gradient.className = 'gradient-bar';\n",
" legend.appendChild(gradient);\n",
" }\n",
" // calculate a legend entries on a Mapbox GL Style Spec property function stops array\n",
" for (p = 0; p < myColorStops.length; p++) {\n",
" if (!!document.getElementById('legend-color-points-value-' + p)) {\n",
" // update the legend if it already exists\n",
" document.getElementById('legend-color-points-value-' + p).textContent = myColorStops[p][0];\n",
" document.getElementById('legend-color-points-id-' + p).style.backgroundColor = myColorStops[p][1];\n",
" }\n",
" else {\n",
" // create the legend if it doesn't yet exist\n",
" var item = document.createElement('li');\n",
" item.className = 'legend-item';\n",
" var key = document.createElement('span');\n",
" key.className = 'legend-key circle';\n",
" key.id = 'legend-color-points-id-' + p;\n",
" key.style.backgroundColor = myColorStops[p][1];\n",
" var value = document.createElement('span');\n",
" value.className = 'legend-value';\n",
" value.id = 'legend-color-points-value-' + p;\n",
" item.appendChild(key);\n",
" item.appendChild(value);\n",
" legendContent.appendChild(item);\n",
" \n",
" data = document.getElementById('legend-color-points-value-' + p)\n",
" // round number values in legend if precision defined\n",
" if ((typeof(myColorStops[p][0]) == 'number') && (typeof(null) == 'number')) {\n",
" data.textContent = myColorStops[p][0].toFixed(null);\n",
" }\n",
" else {\n",
" data.textContent = myColorStops[p][0];\n",
" }\n",
" // add color stop to gradient list\n",
" if (false === true) {\n",
" if (p < myColorStops.length - 1) {\n",
" gradientText = gradientText + myColorStops[p][1] + ', ';\n",
" }\n",
" else {\n",
" gradientText = gradientText + myColorStops[p][1] + ')';\n",
" }\n",
" if ('vertical' === 'vertical') {\n",
" gradientText = gradientText.replace('to right', 'to bottom');\n",
" }\n",
" }\n",
" }\n",
" }\n",
" if (false === true) {\n",
" // convert to gradient scale appearance\n",
" gradient.style.background = gradientText;\n",
" // hide legend keys generated above\n",
" var keys = document.getElementsByClassName('legend-key');\n",
" for (var i=0; i < keys.length; i++) {\n",
" keys[i].style.visibility = 'hidden';\n",
" }\n",
" if ('vertical' === 'vertical') {\n",
" gradient.style.height = (legendContent.offsetHeight - 6) + 'px';\n",
" }\n",
" }\n",
" // add class for styling bordered legend keys\n",
" if (true) {\n",
" var keys = document.getElementsByClassName('legend-key');\n",
" for (var i=0; i < keys.length; i++) {\n",
" if (keys[i]) {\n",
" keys[i].classList.add('bordered');\n",
" }\n",
" }\n",
" var gradientBars = document.getElementsByClassName('gradient-bar');\n",
" for (var i=0; i < keys.length; i++) {\n",
" if (gradientBars[i]) {\n",
" gradientBars[i].classList.add('bordered');\n",
" }\n",
" }\n",
" }\n",
" // update right-margin for compact Mapbox attribution based on calculated legend width\n",
" updateAttribMargin(legend);\n",
" updateLegendMargin(legend);\n",
"}\n",
"\n",
"\n",
"function calcRadiusLegend(myRadiusStops, title, color) {\n",
"\n",
" // maximum legend item height\n",
" var maxLegendItemHeight = 2 * myRadiusStops[myRadiusStops.length - 1][1];\n",
"\n",
" // create legend\n",
" var legend = document.createElement('div');\n",
" legend.className = 'legend vertical legend-variable-radius';\n",
"\n",
" legend.id = 'legend-1';\n",
" document.body.appendChild(legend);\n",
"\n",
" // add legend header and content elements\n",
" var mytitle = document.createElement('div'),\n",
" legendContent = document.createElement('ul');\n",
" legendHeader = document.createElement('div');\n",
" mytitle.textContent = title;\n",
" mytitle.className = 'legend-title'\n",
" legendHeader.className = 'legend-header'\n",
" legendContent.className = 'legend-content'\n",
" legendHeader.appendChild(mytitle);\n",
" legend.appendChild(legendHeader);\n",
" legend.appendChild(legendContent);\n",
"\n",
" // calculate a legend entries on a Mapbox GL Style Spec property function stops array\n",
" for (p = 0; p < myRadiusStops.length; p++) {\n",
" if (!!document.getElementById('legend-radius-points-value-' + p)) {\n",
" //update the legend if it already exists\n",
" document.getElementById('legend-radius-points-value-' + p).textContent = myRadiusStops[p][0];\n",
" document.getElementById('legend-radius-points-id-' + p).style.backgroundColor = color;\n",
" }\n",
" else {\n",
" // create the legend if it doesn't yet exist\n",
" var item = document.createElement('li');\n",
" item.className = 'legend-item';\n",
" item.height = '' + maxLegendItemHeight + 'px';\n",
"\n",
" var key = document.createElement('span');\n",
" key.className = 'legend-key circle';\n",
" key.id = 'legend-radius-points-id-' + p;\n",
" key.style.backgroundColor = color; \n",
"\n",
" key.style.width = '' + myRadiusStops[p][1] * 2 + 'px';\n",
" key.style.height = '' + myRadiusStops[p][1] * 2 + 'px';\n",
"\n",
" keyVerticalMargin = (maxLegendItemHeight - myRadiusStops[p][1] * 2) * 0.5;\n",
" key.style.marginTop = '' + keyVerticalMargin + 'px';\n",
" key.style.marginBottom = '' + keyVerticalMargin + 'px';\n",
"\n",
" var value = document.createElement('span');\n",
" value.className = 'legend-value';\n",
" value.id = 'legend-radius-points-value-' + p;\n",
"\n",
" item.appendChild(key);\n",
" item.appendChild(value);\n",
" legendContent.appendChild(item);\n",
" \n",
" data = document.getElementById('legend-radius-points-value-' + p)\n",
"\n",
" // round number values in legend if precision defined\n",
" if ((typeof(myRadiusStops[p][0]) == 'number') && (typeof(null) == 'number')) {\n",
" data.textContent = myRadiusStops[p][0].toFixed(null);\n",
" }\n",
" else {\n",
" data.textContent = myRadiusStops[p][0];\n",
" }\n",
" }\n",
" }\n",
"\n",
" // add class for styling bordered legend keys\n",
" if (true) {\n",
" var keys = document.getElementsByClassName('legend-key');\n",
" for (var i=0; i < keys.length; i++) {\n",
" if (keys[i]) {\n",
" keys[i].classList.add('bordered');\n",
" }\n",
" }\n",
" }\n",
"\n",
" // update right-margin for compact Mapbox attribution based on calculated legend width\n",
" updateAttribMargin(legend);\n",
" updateLegendMargin(legend);\n",
"\n",
"}\n",
"\n",
"\n",
"function updateAttribMargin(legend) {\n",
"\n",
" // default margin is based on calculated legend width\n",
" var attribMargin = legend.offsetWidth + 15;\n",
" \n",
" // if horizontal legend layout (multiple legends are stacked vertically)\n",
" if ('vertical' === 'horizontal') {\n",
" document.getElementsByClassName('mapboxgl-ctrl-attrib')[0].style.marginRight = (attribMargin).toString() + 'px';\n",
" }\n",
" // vertical legend layout means multiple legends are side-by-side\n",
" else if ('vertical' === 'vertical') {\n",
" var currentMargin = Number(document.getElementsByClassName('mapboxgl-ctrl-attrib')[0].style.marginRight.replace('px', ''));\n",
" document.getElementsByClassName('mapboxgl-ctrl-attrib')[0].style.marginRight = (attribMargin + currentMargin).toString() + 'px';\n",
" }\n",
"}\n",
"\n",
"\n",
"function updateLegendMargin(legend) {\n",
"\n",
" var verticalLegends = document.getElementsByClassName('legend vertical'),\n",
" horizontalLegends = document.getElementsByClassName('legend horizontal');\n",
"\n",
" if (verticalLegends.length > 1) {\n",
" for (i = 1; i < verticalLegends.length; i++) {\n",
" verticalLegends[i].style.marginRight = (legend.offsetWidth - 5).toString() + 'px';\n",
" var legend = verticalLegends[i];\n",
" }\n",
" }\n",
" else if (horizontalLegends.length > 1) {\n",
" for (i = 1; i < horizontalLegends.length; i++) {\n",
" horizontalLegends[i].style.marginBottom = (legend.offsetHeight + 15).toString() + 'px';\n",
" var legend = horizontalLegends[i];\n",
" }\n",
" }\n",
"}\n",
"\n",
"\n",
"function generateInterpolateExpression(propertyValue, stops) {\n",
" var expression;\n",
" if (propertyValue == 'zoom') {\n",
" expression = ['interpolate', ['exponential', 1.2], ['zoom']]\n",
" }\n",
" else if (propertyValue == 'heatmap-density') {\n",
" expression = ['interpolate', ['linear'], ['heatmap-density']]\n",
" }\n",
" else {\n",
" expression = ['interpolate', ['linear'], ['get', propertyValue]]\n",
" }\n",
"\n",
" for (var i=0; i<stops.length; i++) {\n",
" expression.push(stops[i][0], stops[i][1])\n",
" }\n",
" return expression\n",
"}\n",
"\n",
"\n",
"function generateMatchExpression(propertyValue, stops, defaultValue) {\n",
" var expression;\n",
" expression = ['match', ['get', propertyValue]]\n",
" for (var i=0; i<stops.length; i++) {\n",
" expression.push(stops[i][0], stops[i][1])\n",
" }\n",
" expression.push(defaultValue)\n",
" \n",
" return expression\n",
"}\n",
"\n",
"\n",
"function generatePropertyExpression(expressionType, propertyValue, stops, defaultValue) {\n",
" var expression;\n",
" if (expressionType == 'match') {\n",
" expression = generateMatchExpression(propertyValue, stops, defaultValue)\n",
" }\n",
" else if (propertyValue == 'identity') {\n",
" expression = ['get', propertyValue]\n",
" }\n",
" else {\n",
" expression = generateInterpolateExpression(propertyValue, stops)\n",
" }\n",
"\n",
" return expression\n",
"}\n",
"\n",
"</script>\n",
"\n",
"<!-- main map creation code, extended by mapboxgl/templates/circle.html -->\n",
"<script type='text/javascript'>\n",
"\n",
" mapboxgl.accessToken = 'pk.eyJ1IjoiZnNjb3R0Zm90aSIsImEiOiJLVHVqNHlNIn0.T0Ca4SWbbTc1p2jogYLQyA';\n",
"\n",
" var transformRequest = function(url, resourceType) {\n",
" const isMapboxRequest = url.slice(8, 22) === 'api.mapbox.com' ||\n",
" url.slice(10, 26) === 'tiles.mapbox.com';\n",
" \n",
" return {\n",
" url: isMapboxRequest ? url.replace('?', '?pluginName=PythonMapboxgl&') : url\n",
" }\n",
" };\n",
"\n",
" var map = new mapboxgl.Map({\n",
" container: 'map',\n",
" attributionControl: false,\n",
" style: 'mapbox://styles/mapbox/light-v10?optimize=true',\n",
" center: [-122.2712, 37.8044],\n",
" zoom: 12,\n",
" pitch: 0,\n",
" bearing: 0,\n",
" scrollZoom: true,\n",
" touchZoom: true,\n",
" doubleClickZoom: true,\n",
" boxZoom: true,\n",
" preserveDrawingBuffer: false,\n",
" transformRequest: transformRequest\n",
" });\n",
"\n",
" \n",
" \n",
" map.addControl(new mapboxgl.AttributionControl({ compact: true }));\n",
"\n",
" \n",
"\n",
" \n",
"\n",
" map.addControl(new mapboxgl.NavigationControl());\n",
"\n",
" \n",
"\n",
" \n",
"\n",
" \n",
" \n",
" calcColorLegend([[0, '#edf8fb'], [200, '#ccece6'], [400, '#99d8c9'], [600, '#66c2a4'], [800, '#41ae76'], [1000, '#238b45'], [1200, '#005824']] , 'average price/sqft');\n",
" \n",
" \n",
" \n",
"\n",
"\n",
" \n",
" \n",
" \n",
"\n",
" \n",
"\n",
" \n",
"\n",
" map.on('style.load', function() {\n",
" \n",
" \n",
"\n",
" map.addSource('data', {\n",
" 'type': 'geojson',\n",
" 'data': {'type': 'FeatureCollection', 'features': [{'id': '0', 'type': 'Feature', 'properties': {'osmid': 35718715, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2433676, 37.8609763]}}, {'id': '1', 'type': 'Feature', 'properties': {'osmid': 35718778, 'average price/sqft': 696.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2308297, 37.8664576]}}, {'id': '2', 'type': 'Feature', 'properties': {'osmid': 35718864, 'average price/sqft': 604.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2178621, 37.8683582]}}, {'id': '3', 'type': 'Feature', 'properties': {'osmid': 35719057, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2440549, 37.860731]}}, {'id': '4', 'type': 'Feature', 'properties': {'osmid': 35719067, 'average price/sqft': 586.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.22193, 37.864197]}}, {'id': '5', 'type': 'Feature', 'properties': {'osmid': 52981368, 'average price/sqft': 590.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1568802, 37.7715208]}}, {'id': '6', 'type': 'Feature', 'properties': {'osmid': 52981390, 'average price/sqft': 563.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2763173, 37.810447]}}, {'id': '7', 'type': 'Feature', 'properties': {'osmid': 52982537, 'average price/sqft': 667.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2453611, 37.8089468]}}, {'id': '8', 'type': 'Feature', 'properties': {'osmid': 52982608, 'average price/sqft': 665.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1971282, 37.7878791]}}, {'id': '9', 'type': 'Feature', 'properties': {'osmid': 52982610, 'average price/sqft': 672.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1962119, 37.787559]}}, {'id': '10', 'type': 'Feature', 'properties': {'osmid': 52982613, 'average price/sqft': 632.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1962492, 37.7866019]}}, {'id': '11', 'type': 'Feature', 'properties': {'osmid': 52982915, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2782275, 37.8002212]}}, {'id': '12', 'type': 'Feature', 'properties': {'osmid': 52984162, 'average price/sqft': 437.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2072841, 37.7542358]}}, {'id': '13', 'type': 'Feature', 'properties': {'osmid': 52984788, 'average price/sqft': 539.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1297017, 37.7678518]}}, {'id': '14', 'type': 'Feature', 'properties': {'osmid': 52984790, 'average price/sqft': 539.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.129305, 37.7679392]}}, {'id': '15', 'type': 'Feature', 'properties': {'osmid': 52984792, 'average price/sqft': 539.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1287718, 37.7681255]}}, {'id': '16', 'type': 'Feature', 'properties': {'osmid': 52986119, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2687462, 37.7964012]}}, {'id': '17', 'type': 'Feature', 'properties': {'osmid': 52986125, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2691037, 37.7958186]}}, {'id': '18', 'type': 'Feature', 'properties': {'osmid': 52986589, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.274611, 37.7987682]}}, {'id': '19', 'type': 'Feature', 'properties': {'osmid': 52986620, 'average price/sqft': 641.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1875697, 37.7845556]}}, {'id': '20', 'type': 'Feature', 'properties': {'osmid': 52986623, 'average price/sqft': 652.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1865803, 37.7846269]}}, {'id': '21', 'type': 'Feature', 'properties': {'osmid': 52986770, 'average price/sqft': 523.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2548188, 37.8193258]}}, {'id': '22', 'type': 'Feature', 'properties': {'osmid': 52986774, 'average price/sqft': 506.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2541806, 37.8186542]}}, {'id': '23', 'type': 'Feature', 'properties': {'osmid': 52987422, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2236894, 37.8509167]}}, {'id': '24', 'type': 'Feature', 'properties': {'osmid': 52987426, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2224773, 37.8505365]}}, {'id': '25', 'type': 'Feature', 'properties': {'osmid': 52987947, 'average price/sqft': 553.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2290108, 37.8526874]}}, {'id': '26', 'type': 'Feature', 'properties': {'osmid': 52990165, 'average price/sqft': 568.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2771625, 37.8091649]}}, {'id': '27', 'type': 'Feature', 'properties': {'osmid': 52990174, 'average price/sqft': 282.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2384605, 37.779715]}}, {'id': '28', 'type': 'Feature', 'properties': {'osmid': 52990846, 'average price/sqft': 838.0, 'observation count': 32.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2590644, 37.8410402]}}, {'id': '29', 'type': 'Feature', 'properties': {'osmid': 52991609, 'average price/sqft': 752.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2228151, 37.8395804]}}, {'id': '30', 'type': 'Feature', 'properties': {'osmid': 52991611, 'average price/sqft': 751.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2240399, 37.8413762]}}, {'id': '31', 'type': 'Feature', 'properties': {'osmid': 52991764, 'average price/sqft': 503.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2698535, 37.8241729]}}, {'id': '32', 'type': 'Feature', 'properties': {'osmid': 52993547, 'average price/sqft': 709.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2352616, 37.8115098]}}, {'id': '33', 'type': 'Feature', 'properties': {'osmid': 52994102, 'average price/sqft': 582.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1547173, 37.7709116]}}, {'id': '34', 'type': 'Feature', 'properties': {'osmid': 52994382, 'average price/sqft': 717.0, 'observation count': 34.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2626432, 37.8418523]}}, {'id': '35', 'type': 'Feature', 'properties': {'osmid': 52995152, 'average price/sqft': 528.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2696235, 37.8250886]}}, {'id': '36', 'type': 'Feature', 'properties': {'osmid': 52995245, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1483788, 37.772072]}}, {'id': '37', 'type': 'Feature', 'properties': {'osmid': 52995246, 'average price/sqft': 575.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1476245, 37.7713434]}}, {'id': '38', 'type': 'Feature', 'properties': {'osmid': 52995250, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.147753, 37.7702998]}}, {'id': '39', 'type': 'Feature', 'properties': {'osmid': 52996031, 'average price/sqft': 539.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1282884, 37.764483]}}, {'id': '40', 'type': 'Feature', 'properties': {'osmid': 52996032, 'average price/sqft': 539.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1278636, 37.7645496]}}, {'id': '41', 'type': 'Feature', 'properties': {'osmid': 52996060, 'average price/sqft': 431.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1820349, 37.7788846]}}, {'id': '42', 'type': 'Feature', 'properties': {'osmid': 52996063, 'average price/sqft': 445.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1827359, 37.7794657]}}, {'id': '43', 'type': 'Feature', 'properties': {'osmid': 52996081, 'average price/sqft': 415.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1844162, 37.7766459]}}, {'id': '44', 'type': 'Feature', 'properties': {'osmid': 52996083, 'average price/sqft': 417.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1845372, 37.7763021]}}, {'id': '45', 'type': 'Feature', 'properties': {'osmid': 52996107, 'average price/sqft': 369.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.22063, 37.7680128]}}, {'id': '46', 'type': 'Feature', 'properties': {'osmid': 52996504, 'average price/sqft': 565.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1867522, 37.7988791]}}, {'id': '47', 'type': 'Feature', 'properties': {'osmid': 52996855, 'average price/sqft': 625.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2109684, 37.7963016]}}, {'id': '48', 'type': 'Feature', 'properties': {'osmid': 52996893, 'average price/sqft': 691.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.150154, 37.7533748]}}, {'id': '49', 'type': 'Feature', 'properties': {'osmid': 52997038, 'average price/sqft': 445.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1456508, 37.7474422]}}, {'id': '50', 'type': 'Feature', 'properties': {'osmid': 52997853, 'average price/sqft': 491.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1552542, 37.7583641]}}, {'id': '51', 'type': 'Feature', 'properties': {'osmid': 52997894, 'average price/sqft': 851.0, 'observation count': 32.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2574829, 37.8428903]}}, {'id': '52', 'type': 'Feature', 'properties': {'osmid': 52998444, 'average price/sqft': 433.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2065374, 37.7539846]}}, {'id': '53', 'type': 'Feature', 'properties': {'osmid': 52998445, 'average price/sqft': 424.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2062632, 37.7545374]}}, {'id': '54', 'type': 'Feature', 'properties': {'osmid': 52998448, 'average price/sqft': 428.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2066808, 37.7543836]}}, {'id': '55', 'type': 'Feature', 'properties': {'osmid': 52999218, 'average price/sqft': 441.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2910794, 37.803482]}}, {'id': '56', 'type': 'Feature', 'properties': {'osmid': 53000047, 'average price/sqft': 389.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1750622, 37.7802256]}}, {'id': '57', 'type': 'Feature', 'properties': {'osmid': 53000237, 'average price/sqft': 417.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2052752, 37.7549422]}}, {'id': '58', 'type': 'Feature', 'properties': {'osmid': 53000822, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2177615, 37.7660476]}}, {'id': '59', 'type': 'Feature', 'properties': {'osmid': 53001196, 'average price/sqft': 734.0, 'observation count': 36.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2616298, 37.8417871]}}, {'id': '60', 'type': 'Feature', 'properties': {'osmid': 53003559, 'average price/sqft': 354.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2923845, 37.8078095]}}, {'id': '61', 'type': 'Feature', 'properties': {'osmid': 53003570, 'average price/sqft': 356.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2920272, 37.8057963]}}, {'id': '62', 'type': 'Feature', 'properties': {'osmid': 53003773, 'average price/sqft': 451.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2893671, 37.8248383]}}, {'id': '63', 'type': 'Feature', 'properties': {'osmid': 53004683, 'average price/sqft': 387.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1737901, 37.7804501]}}, {'id': '64', 'type': 'Feature', 'properties': {'osmid': 53004835, 'average price/sqft': 360.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2923496, 37.8046982]}}, {'id': '65', 'type': 'Feature', 'properties': {'osmid': 53005014, 'average price/sqft': 460.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.218857, 37.7669886]}}, {'id': '66', 'type': 'Feature', 'properties': {'osmid': 53005401, 'average price/sqft': 713.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.233804, 37.8039865]}}, {'id': '67', 'type': 'Feature', 'properties': {'osmid': 53005406, 'average price/sqft': 694.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2364991, 37.8053549]}}, {'id': '68', 'type': 'Feature', 'properties': {'osmid': 53005416, 'average price/sqft': 517.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.216095, 37.7714239]}}, {'id': '69', 'type': 'Feature', 'properties': {'osmid': 53006290, 'average price/sqft': 600.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1528029, 37.767741]}}, {'id': '70', 'type': 'Feature', 'properties': {'osmid': 53006997, 'average price/sqft': 457.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2189605, 37.7727808]}}, {'id': '71', 'type': 'Feature', 'properties': {'osmid': 53007120, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2224355, 37.8533448]}}, {'id': '72', 'type': 'Feature', 'properties': {'osmid': 53007122, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2229951, 37.8527394]}}, {'id': '73', 'type': 'Feature', 'properties': {'osmid': 53007235, 'average price/sqft': 394.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.17355, 37.7815517]}}, {'id': '74', 'type': 'Feature', 'properties': {'osmid': 53010083, 'average price/sqft': 490.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1820769, 37.7821293]}}, {'id': '75', 'type': 'Feature', 'properties': {'osmid': 53010119, 'average price/sqft': 619.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1972856, 37.8109161]}}, {'id': '76', 'type': 'Feature', 'properties': {'osmid': 53012596, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2584844, 37.7896664]}}, {'id': '77', 'type': 'Feature', 'properties': {'osmid': 53013495, 'average price/sqft': 473.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1310745, 37.7493119]}}, {'id': '78', 'type': 'Feature', 'properties': {'osmid': 53013871, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1812755, 37.7296618]}}, {'id': '79', 'type': 'Feature', 'properties': {'osmid': 53013957, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1926879, 37.7382947]}}, {'id': '80', 'type': 'Feature', 'properties': {'osmid': 53013961, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1910545, 37.738528]}}, {'id': '81', 'type': 'Feature', 'properties': {'osmid': 53014308, 'average price/sqft': 667.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1943433, 37.7868616]}}, {'id': '82', 'type': 'Feature', 'properties': {'osmid': 53014601, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2213951, 37.8527322]}}, {'id': '83', 'type': 'Feature', 'properties': {'osmid': 53014602, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2205561, 37.8532865]}}, {'id': '84', 'type': 'Feature', 'properties': {'osmid': 53015190, 'average price/sqft': 704.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2287121, 37.8014926]}}, {'id': '85', 'type': 'Feature', 'properties': {'osmid': 53016042, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2623141, 37.8108859]}}, {'id': '86', 'type': 'Feature', 'properties': {'osmid': 53016771, 'average price/sqft': 491.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1520582, 37.7541428]}}, {'id': '87', 'type': 'Feature', 'properties': {'osmid': 53016847, 'average price/sqft': 863.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2064307, 37.8198277]}}, {'id': '88', 'type': 'Feature', 'properties': {'osmid': 53016876, 'average price/sqft': 278.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.3152521, 37.8088488]}}, {'id': '89', 'type': 'Feature', 'properties': {'osmid': 53016907, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.3082367, 37.8153128]}}, {'id': '90', 'type': 'Feature', 'properties': {'osmid': 53016930, 'average price/sqft': 571.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2313739, 37.8579391]}}, {'id': '91', 'type': 'Feature', 'properties': {'osmid': 53016931, 'average price/sqft': 567.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2319329, 37.8583718]}}, {'id': '92', 'type': 'Feature', 'properties': {'osmid': 53016979, 'average price/sqft': 582.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1931541, 37.7988709]}}, {'id': '93', 'type': 'Feature', 'properties': {'osmid': 53016980, 'average price/sqft': 584.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1926965, 37.7984483]}}, {'id': '94', 'type': 'Feature', 'properties': {'osmid': 53016983, 'average price/sqft': 588.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1931487, 37.7981352]}}, {'id': '95', 'type': 'Feature', 'properties': {'osmid': 53016985, 'average price/sqft': 593.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1924312, 37.7974639]}}, {'id': '96', 'type': 'Feature', 'properties': {'osmid': 53016987, 'average price/sqft': 589.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1910787, 37.7966338]}}, {'id': '97', 'type': 'Feature', 'properties': {'osmid': 53016989, 'average price/sqft': 611.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1898617, 37.7953415]}}, {'id': '98', 'type': 'Feature', 'properties': {'osmid': 53016990, 'average price/sqft': 619.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1895669, 37.7950054]}}, {'id': '99', 'type': 'Feature', 'properties': {'osmid': 53017000, 'average price/sqft': 623.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2000027, 37.7930757]}}, {'id': '100', 'type': 'Feature', 'properties': {'osmid': 53017002, 'average price/sqft': 631.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1986461, 37.7938707]}}, {'id': '101', 'type': 'Feature', 'properties': {'osmid': 53017004, 'average price/sqft': 633.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1967682, 37.7949716]}}, {'id': '102', 'type': 'Feature', 'properties': {'osmid': 53017005, 'average price/sqft': 621.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1948713, 37.7960692]}}, {'id': '103', 'type': 'Feature', 'properties': {'osmid': 53017007, 'average price/sqft': 615.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1938316, 37.7966843]}}, {'id': '104', 'type': 'Feature', 'properties': {'osmid': 53017089, 'average price/sqft': 845.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2493698, 37.8287337]}}, {'id': '105', 'type': 'Feature', 'properties': {'osmid': 53017090, 'average price/sqft': 857.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2480426, 37.8273819]}}, {'id': '106', 'type': 'Feature', 'properties': {'osmid': 53017230, 'average price/sqft': 609.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1877677, 37.8244973]}}, {'id': '107', 'type': 'Feature', 'properties': {'osmid': 53017233, 'average price/sqft': 610.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1883247, 37.8240434]}}, {'id': '108', 'type': 'Feature', 'properties': {'osmid': 53017242, 'average price/sqft': 678.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1819828, 37.7909458]}}, {'id': '109', 'type': 'Feature', 'properties': {'osmid': 53017244, 'average price/sqft': 671.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.182215, 37.7895681]}}, {'id': '110', 'type': 'Feature', 'properties': {'osmid': 53017246, 'average price/sqft': 672.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1821695, 37.7892484]}}, {'id': '111', 'type': 'Feature', 'properties': {'osmid': 53017267, 'average price/sqft': 719.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2145147, 37.8237988]}}, {'id': '112', 'type': 'Feature', 'properties': {'osmid': 53017269, 'average price/sqft': 721.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2155763, 37.8238426]}}, {'id': '113', 'type': 'Feature', 'properties': {'osmid': 53017361, 'average price/sqft': 474.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1758517, 37.7948101]}}, {'id': '114', 'type': 'Feature', 'properties': {'osmid': 53017362, 'average price/sqft': 473.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1762164, 37.7949263]}}, {'id': '115', 'type': 'Feature', 'properties': {'osmid': 53017367, 'average price/sqft': 469.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1768309, 37.795258]}}, {'id': '116', 'type': 'Feature', 'properties': {'osmid': 53017368, 'average price/sqft': 471.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1774706, 37.7950632]}}, {'id': '117', 'type': 'Feature', 'properties': {'osmid': 53017473, 'average price/sqft': 419.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1808713, 37.7439999]}}, {'id': '118', 'type': 'Feature', 'properties': {'osmid': 53017474, 'average price/sqft': 423.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1815109, 37.7448492]}}, {'id': '119', 'type': 'Feature', 'properties': {'osmid': 53017518, 'average price/sqft': 491.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1863084, 37.7500494]}}, {'id': '120', 'type': 'Feature', 'properties': {'osmid': 53017519, 'average price/sqft': 491.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1856602, 37.7492629]}}, {'id': '121', 'type': 'Feature', 'properties': {'osmid': 53017520, 'average price/sqft': 488.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1855036, 37.7490824]}}, {'id': '122', 'type': 'Feature', 'properties': {'osmid': 53017522, 'average price/sqft': 481.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.185097, 37.7485793]}}, {'id': '123', 'type': 'Feature', 'properties': {'osmid': 53017526, 'average price/sqft': 471.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1846073, 37.7479707]}}, {'id': '124', 'type': 'Feature', 'properties': {'osmid': 53017528, 'average price/sqft': 461.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1839893, 37.7472134]}}, {'id': '125', 'type': 'Feature', 'properties': {'osmid': 53017530, 'average price/sqft': 451.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1833485, 37.7464479]}}, {'id': '126', 'type': 'Feature', 'properties': {'osmid': 53017532, 'average price/sqft': 439.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1828286, 37.7458113]}}, {'id': '127', 'type': 'Feature', 'properties': {'osmid': 53017533, 'average price/sqft': 431.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1823702, 37.7452365]}}, {'id': '128', 'type': 'Feature', 'properties': {'osmid': 53017536, 'average price/sqft': 422.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1819074, 37.7446637]}}, {'id': '129', 'type': 'Feature', 'properties': {'osmid': 53017818, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1813903, 37.7322349]}}, {'id': '130', 'type': 'Feature', 'properties': {'osmid': 53017822, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.181585, 37.7333907]}}, {'id': '131', 'type': 'Feature', 'properties': {'osmid': 53017825, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1808427, 37.7354995]}}, {'id': '132', 'type': 'Feature', 'properties': {'osmid': 53017827, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1802186, 37.7359524]}}, {'id': '133', 'type': 'Feature', 'properties': {'osmid': 53017840, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1824016, 37.730057]}}, {'id': '134', 'type': 'Feature', 'properties': {'osmid': 53017861, 'average price/sqft': 400.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2297275, 37.7836861]}}, {'id': '135', 'type': 'Feature', 'properties': {'osmid': 53017862, 'average price/sqft': 404.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2289445, 37.7845602]}}, {'id': '136', 'type': 'Feature', 'properties': {'osmid': 53017863, 'average price/sqft': 415.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2282315, 37.7853815]}}, {'id': '137', 'type': 'Feature', 'properties': {'osmid': 53017864, 'average price/sqft': 418.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2274843, 37.7861714]}}, {'id': '138', 'type': 'Feature', 'properties': {'osmid': 53017865, 'average price/sqft': 421.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2267382, 37.7869624]}}, {'id': '139', 'type': 'Feature', 'properties': {'osmid': 53017866, 'average price/sqft': 420.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2262142, 37.7875127]}}, {'id': '140', 'type': 'Feature', 'properties': {'osmid': 53017867, 'average price/sqft': 424.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2254, 37.7884056]}}, {'id': '141', 'type': 'Feature', 'properties': {'osmid': 53017868, 'average price/sqft': 424.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2247622, 37.7891385]}}, {'id': '142', 'type': 'Feature', 'properties': {'osmid': 53017869, 'average price/sqft': 424.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.224073, 37.7899269]}}, {'id': '143', 'type': 'Feature', 'properties': {'osmid': 53017870, 'average price/sqft': 432.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2226663, 37.7915496]}}, {'id': '144', 'type': 'Feature', 'properties': {'osmid': 53017871, 'average price/sqft': 291.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2360711, 37.778049]}}, {'id': '145', 'type': 'Feature', 'properties': {'osmid': 53017872, 'average price/sqft': 295.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2355706, 37.7786446]}}, {'id': '146', 'type': 'Feature', 'properties': {'osmid': 53017873, 'average price/sqft': 298.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2350508, 37.7792259]}}, {'id': '147', 'type': 'Feature', 'properties': {'osmid': 53017874, 'average price/sqft': 353.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2333993, 37.7805717]}}, {'id': '148', 'type': 'Feature', 'properties': {'osmid': 53017875, 'average price/sqft': 366.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2326127, 37.7814113]}}, {'id': '149', 'type': 'Feature', 'properties': {'osmid': 53017876, 'average price/sqft': 384.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2318119, 37.7822384]}}, {'id': '150', 'type': 'Feature', 'properties': {'osmid': 53017877, 'average price/sqft': 384.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.23103, 37.7830577]}}, {'id': '151', 'type': 'Feature', 'properties': {'osmid': 53017878, 'average price/sqft': 431.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2223092, 37.7913616]}}, {'id': '152', 'type': 'Feature', 'properties': {'osmid': 53017879, 'average price/sqft': 432.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.221677, 37.7927585]}}, {'id': '153', 'type': 'Feature', 'properties': {'osmid': 53017889, 'average price/sqft': 456.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.213898, 37.7833134]}}, {'id': '154', 'type': 'Feature', 'properties': {'osmid': 53017899, 'average price/sqft': 457.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2113778, 37.783851]}}, {'id': '155', 'type': 'Feature', 'properties': {'osmid': 53017900, 'average price/sqft': 457.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2107185, 37.7832568]}}, {'id': '156', 'type': 'Feature', 'properties': {'osmid': 53017901, 'average price/sqft': 461.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2100092, 37.7826165]}}, {'id': '157', 'type': 'Feature', 'properties': {'osmid': 53017902, 'average price/sqft': 463.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2093193, 37.7819945]}}, {'id': '158', 'type': 'Feature', 'properties': {'osmid': 53017903, 'average price/sqft': 466.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.208634, 37.7813931]}}, {'id': '159', 'type': 'Feature', 'properties': {'osmid': 53017904, 'average price/sqft': 468.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2080069, 37.7808155]}}, {'id': '160', 'type': 'Feature', 'properties': {'osmid': 53017906, 'average price/sqft': 469.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2074607, 37.7803339]}}, {'id': '161', 'type': 'Feature', 'properties': {'osmid': 53017908, 'average price/sqft': 467.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.20683, 37.7797833]}}, {'id': '162', 'type': 'Feature', 'properties': {'osmid': 53017923, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.180579, 37.7293723]}}, {'id': '163', 'type': 'Feature', 'properties': {'osmid': 53018116, 'average price/sqft': 671.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2500688, 37.7998015]}}, {'id': '164', 'type': 'Feature', 'properties': {'osmid': 53018121, 'average price/sqft': 668.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2475679, 37.7975743]}}, {'id': '165', 'type': 'Feature', 'properties': {'osmid': 53018124, 'average price/sqft': 660.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.246736, 37.7968376]}}, {'id': '166', 'type': 'Feature', 'properties': {'osmid': 53018127, 'average price/sqft': 639.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2459109, 37.7961068]}}, {'id': '167', 'type': 'Feature', 'properties': {'osmid': 53018129, 'average price/sqft': 605.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.245077, 37.7953685]}}, {'id': '168', 'type': 'Feature', 'properties': {'osmid': 53018133, 'average price/sqft': 483.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2434239, 37.7939053]}}, {'id': '169', 'type': 'Feature', 'properties': {'osmid': 53018134, 'average price/sqft': 451.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2425958, 37.7931744]}}, {'id': '170', 'type': 'Feature', 'properties': {'osmid': 53018136, 'average price/sqft': 425.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2418149, 37.7924849]}}, {'id': '171', 'type': 'Feature', 'properties': {'osmid': 53018144, 'average price/sqft': 416.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.242052, 37.7922895]}}, {'id': '172', 'type': 'Feature', 'properties': {'osmid': 53018145, 'average price/sqft': 397.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2410381, 37.7916855]}}, {'id': '173', 'type': 'Feature', 'properties': {'osmid': 53018147, 'average price/sqft': 391.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2399934, 37.7910576]}}, {'id': '174', 'type': 'Feature', 'properties': {'osmid': 53018149, 'average price/sqft': 385.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2389477, 37.7904316]}}, {'id': '175', 'type': 'Feature', 'properties': {'osmid': 53018150, 'average price/sqft': 385.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2378909, 37.7897983]}}, {'id': '176', 'type': 'Feature', 'properties': {'osmid': 53018152, 'average price/sqft': 402.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2368347, 37.7891696]}}, {'id': '177', 'type': 'Feature', 'properties': {'osmid': 53018154, 'average price/sqft': 414.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2357841, 37.7885417]}}, {'id': '178', 'type': 'Feature', 'properties': {'osmid': 53018156, 'average price/sqft': 417.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2347475, 37.7879151]}}, {'id': '179', 'type': 'Feature', 'properties': {'osmid': 53018159, 'average price/sqft': 429.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2325219, 37.7865879]}}, {'id': '180', 'type': 'Feature', 'properties': {'osmid': 53018161, 'average price/sqft': 424.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2311995, 37.7857961]}}, {'id': '181', 'type': 'Feature', 'properties': {'osmid': 53018167, 'average price/sqft': 398.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2252395, 37.7834652]}}, {'id': '182', 'type': 'Feature', 'properties': {'osmid': 53018168, 'average price/sqft': 405.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2232281, 37.7828265]}}, {'id': '183', 'type': 'Feature', 'properties': {'osmid': 53018339, 'average price/sqft': 778.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2524728, 37.8263886]}}, {'id': '184', 'type': 'Feature', 'properties': {'osmid': 53018340, 'average price/sqft': 787.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2532426, 37.8270259]}}, {'id': '185', 'type': 'Feature', 'properties': {'osmid': 53018341, 'average price/sqft': 796.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2538781, 37.8275578]}}, {'id': '186', 'type': 'Feature', 'properties': {'osmid': 53018342, 'average price/sqft': 803.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2545995, 37.8279007]}}, {'id': '187', 'type': 'Feature', 'properties': {'osmid': 53018343, 'average price/sqft': 801.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2552482, 37.8281543]}}, {'id': '188', 'type': 'Feature', 'properties': {'osmid': 53018345, 'average price/sqft': 803.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2567706, 37.8286286]}}, {'id': '189', 'type': 'Feature', 'properties': {'osmid': 53018346, 'average price/sqft': 797.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2576273, 37.8288326]}}, {'id': '190', 'type': 'Feature', 'properties': {'osmid': 53018347, 'average price/sqft': 791.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2585712, 37.8290599]}}, {'id': '191', 'type': 'Feature', 'properties': {'osmid': 53018348, 'average price/sqft': 785.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2595709, 37.8292191]}}, {'id': '192', 'type': 'Feature', 'properties': {'osmid': 53018349, 'average price/sqft': 770.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2606273, 37.8293834]}}, {'id': '193', 'type': 'Feature', 'properties': {'osmid': 53018352, 'average price/sqft': 727.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2642575, 37.8299611]}}, {'id': '194', 'type': 'Feature', 'properties': {'osmid': 53018354, 'average price/sqft': 710.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2655341, 37.8311071]}}, {'id': '195', 'type': 'Feature', 'properties': {'osmid': 53018358, 'average price/sqft': 799.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2507275, 37.8256023]}}, {'id': '196', 'type': 'Feature', 'properties': {'osmid': 53018360, 'average price/sqft': 787.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2520606, 37.8266973]}}, {'id': '197', 'type': 'Feature', 'properties': {'osmid': 53018368, 'average price/sqft': 654.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.267772, 37.8305104]}}, {'id': '198', 'type': 'Feature', 'properties': {'osmid': 53018369, 'average price/sqft': 657.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2682414, 37.8305861]}}, {'id': '199', 'type': 'Feature', 'properties': {'osmid': 53018371, 'average price/sqft': 631.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.27081, 37.8309987]}}, {'id': '200', 'type': 'Feature', 'properties': {'osmid': 53018373, 'average price/sqft': 620.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2718455, 37.8312053]}}, {'id': '201', 'type': 'Feature', 'properties': {'osmid': 53018374, 'average price/sqft': 600.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.273717, 37.8315585]}}, {'id': '202', 'type': 'Feature', 'properties': {'osmid': 53018376, 'average price/sqft': 592.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2764017, 37.8320679]}}, {'id': '203', 'type': 'Feature', 'properties': {'osmid': 53018450, 'average price/sqft': 512.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2145583, 37.7745547]}}, {'id': '204', 'type': 'Feature', 'properties': {'osmid': 53018461, 'average price/sqft': 496.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2132272, 37.7759321]}}, {'id': '205', 'type': 'Feature', 'properties': {'osmid': 53018464, 'average price/sqft': 502.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.211326, 37.7767427]}}, {'id': '206', 'type': 'Feature', 'properties': {'osmid': 53018466, 'average price/sqft': 499.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2105871, 37.7774091]}}, {'id': '207', 'type': 'Feature', 'properties': {'osmid': 53018473, 'average price/sqft': 437.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2197411, 37.7701181]}}, {'id': '208', 'type': 'Feature', 'properties': {'osmid': 53018474, 'average price/sqft': 445.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2193154, 37.7704315]}}, {'id': '209', 'type': 'Feature', 'properties': {'osmid': 53018552, 'average price/sqft': 689.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.222852, 37.8004228]}}, {'id': '210', 'type': 'Feature', 'properties': {'osmid': 53018554, 'average price/sqft': 710.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2226732, 37.8010563]}}, {'id': '211', 'type': 'Feature', 'properties': {'osmid': 53018559, 'average price/sqft': 731.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2224704, 37.801699]}}, {'id': '212', 'type': 'Feature', 'properties': {'osmid': 53018560, 'average price/sqft': 763.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2221023, 37.8029701]}}, {'id': '213', 'type': 'Feature', 'properties': {'osmid': 53018564, 'average price/sqft': 760.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.222341, 37.8030124]}}, {'id': '214', 'type': 'Feature', 'properties': {'osmid': 53018565, 'average price/sqft': 814.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2215703, 37.8056224]}}, {'id': '215', 'type': 'Feature', 'properties': {'osmid': 53018566, 'average price/sqft': 822.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2211984, 37.8062929]}}, {'id': '216', 'type': 'Feature', 'properties': {'osmid': 53018847, 'average price/sqft': 236.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2427388, 37.7806676]}}, {'id': '217', 'type': 'Feature', 'properties': {'osmid': 53018848, 'average price/sqft': 236.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2420699, 37.780721]}}, {'id': '218', 'type': 'Feature', 'properties': {'osmid': 53018851, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2393502, 37.780961]}}, {'id': '219', 'type': 'Feature', 'properties': {'osmid': 53018864, 'average price/sqft': 781.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2369814, 37.8426073]}}, {'id': '220', 'type': 'Feature', 'properties': {'osmid': 53018867, 'average price/sqft': 780.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2366346, 37.8427788]}}, {'id': '221', 'type': 'Feature', 'properties': {'osmid': 53018869, 'average price/sqft': 787.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2363458, 37.8436633]}}, {'id': '222', 'type': 'Feature', 'properties': {'osmid': 53018879, 'average price/sqft': 788.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2337212, 37.8433903]}}, {'id': '223', 'type': 'Feature', 'properties': {'osmid': 53018964, 'average price/sqft': 668.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2164259, 37.7977596]}}, {'id': '224', 'type': 'Feature', 'properties': {'osmid': 53018966, 'average price/sqft': 684.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2161125, 37.7984848]}}, {'id': '225', 'type': 'Feature', 'properties': {'osmid': 53019052, 'average price/sqft': 737.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1586517, 37.7946744]}}, {'id': '226', 'type': 'Feature', 'properties': {'osmid': 53019057, 'average price/sqft': 744.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1511557, 37.7917582]}}, {'id': '227', 'type': 'Feature', 'properties': {'osmid': 53019059, 'average price/sqft': 737.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1496719, 37.7909135]}}, {'id': '228', 'type': 'Feature', 'properties': {'osmid': 53019061, 'average price/sqft': 733.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1484519, 37.7897443]}}, {'id': '229', 'type': 'Feature', 'properties': {'osmid': 53019077, 'average price/sqft': 615.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1670277, 37.794938]}}, {'id': '230', 'type': 'Feature', 'properties': {'osmid': 53019078, 'average price/sqft': 615.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1664237, 37.7952705]}}, {'id': '231', 'type': 'Feature', 'properties': {'osmid': 53019193, 'average price/sqft': 589.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1589338, 37.7696741]}}, {'id': '232', 'type': 'Feature', 'properties': {'osmid': 53019195, 'average price/sqft': 596.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.158032, 37.7704818]}}, {'id': '233', 'type': 'Feature', 'properties': {'osmid': 53019197, 'average price/sqft': 595.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1574468, 37.7710037]}}, {'id': '234', 'type': 'Feature', 'properties': {'osmid': 53019200, 'average price/sqft': 580.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1558791, 37.7722922]}}, {'id': '235', 'type': 'Feature', 'properties': {'osmid': 53019204, 'average price/sqft': 582.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1542104, 37.7723593]}}, {'id': '236', 'type': 'Feature', 'properties': {'osmid': 53019206, 'average price/sqft': 596.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1506531, 37.7703114]}}, {'id': '237', 'type': 'Feature', 'properties': {'osmid': 53019214, 'average price/sqft': 539.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.144624, 37.7730582]}}, {'id': '238', 'type': 'Feature', 'properties': {'osmid': 53019222, 'average price/sqft': 494.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1362016, 37.7698055]}}, {'id': '239', 'type': 'Feature', 'properties': {'osmid': 53019224, 'average price/sqft': 483.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1350521, 37.7702867]}}, {'id': '240', 'type': 'Feature', 'properties': {'osmid': 53019226, 'average price/sqft': 495.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1341887, 37.7707544]}}, {'id': '241', 'type': 'Feature', 'properties': {'osmid': 53019292, 'average price/sqft': 508.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2135262, 37.7733642]}}, {'id': '242', 'type': 'Feature', 'properties': {'osmid': 53019294, 'average price/sqft': 502.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2130823, 37.7731586]}}, {'id': '243', 'type': 'Feature', 'properties': {'osmid': 53019297, 'average price/sqft': 475.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2120191, 37.772647]}}, {'id': '244', 'type': 'Feature', 'properties': {'osmid': 53019300, 'average price/sqft': 444.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2107488, 37.7720635]}}, {'id': '245', 'type': 'Feature', 'properties': {'osmid': 53019302, 'average price/sqft': 426.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2098033, 37.771772]}}, {'id': '246', 'type': 'Feature', 'properties': {'osmid': 53019303, 'average price/sqft': 413.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2092253, 37.771772]}}, {'id': '247', 'type': 'Feature', 'properties': {'osmid': 53019305, 'average price/sqft': 405.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2083951, 37.7717656]}}, {'id': '248', 'type': 'Feature', 'properties': {'osmid': 53019306, 'average price/sqft': 400.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2075851, 37.7717847]}}, {'id': '249', 'type': 'Feature', 'properties': {'osmid': 53019308, 'average price/sqft': 401.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2073242, 37.7717826]}}, {'id': '250', 'type': 'Feature', 'properties': {'osmid': 53019310, 'average price/sqft': 399.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.207046, 37.7717826]}}, {'id': '251', 'type': 'Feature', 'properties': {'osmid': 53019313, 'average price/sqft': 394.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2058832, 37.7717858]}}, {'id': '252', 'type': 'Feature', 'properties': {'osmid': 53019314, 'average price/sqft': 392.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2051282, 37.7717837]}}, {'id': '253', 'type': 'Feature', 'properties': {'osmid': 53019316, 'average price/sqft': 393.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2031273, 37.7717731]}}, {'id': '254', 'type': 'Feature', 'properties': {'osmid': 53019317, 'average price/sqft': 390.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2007883, 37.7717646]}}, {'id': '255', 'type': 'Feature', 'properties': {'osmid': 53019318, 'average price/sqft': 397.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1985608, 37.7717572]}}, {'id': '256', 'type': 'Feature', 'properties': {'osmid': 53019319, 'average price/sqft': 401.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.197248, 37.7716296]}}, {'id': '257', 'type': 'Feature', 'properties': {'osmid': 53019320, 'average price/sqft': 402.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1960423, 37.771477]}}, {'id': '258', 'type': 'Feature', 'properties': {'osmid': 53019321, 'average price/sqft': 403.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1943096, 37.7712512]}}, {'id': '259', 'type': 'Feature', 'properties': {'osmid': 53019323, 'average price/sqft': 404.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1933417, 37.7711232]}}, {'id': '260', 'type': 'Feature', 'properties': {'osmid': 53019325, 'average price/sqft': 406.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1913524, 37.7708577]}}, {'id': '261', 'type': 'Feature', 'properties': {'osmid': 53019326, 'average price/sqft': 409.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1901214, 37.770692]}}, {'id': '262', 'type': 'Feature', 'properties': {'osmid': 53019328, 'average price/sqft': 410.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1889358, 37.7705343]}}, {'id': '263', 'type': 'Feature', 'properties': {'osmid': 53019329, 'average price/sqft': 409.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1876893, 37.7703666]}}, {'id': '264', 'type': 'Feature', 'properties': {'osmid': 53019330, 'average price/sqft': 409.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1864618, 37.7702094]}}, {'id': '265', 'type': 'Feature', 'properties': {'osmid': 53019332, 'average price/sqft': 407.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.185387, 37.7700659]}}, {'id': '266', 'type': 'Feature', 'properties': {'osmid': 53019333, 'average price/sqft': 408.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1844164, 37.7699449]}}, {'id': '267', 'type': 'Feature', 'properties': {'osmid': 53019335, 'average price/sqft': 409.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.183271, 37.7697908]}}, {'id': '268', 'type': 'Feature', 'properties': {'osmid': 53019341, 'average price/sqft': 412.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1820184, 37.7696222]}}, {'id': '269', 'type': 'Feature', 'properties': {'osmid': 53019343, 'average price/sqft': 416.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1807161, 37.7691558]}}, {'id': '270', 'type': 'Feature', 'properties': {'osmid': 53019345, 'average price/sqft': 418.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1801713, 37.7686235]}}, {'id': '271', 'type': 'Feature', 'properties': {'osmid': 53019346, 'average price/sqft': 419.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1795989, 37.7680581]}}, {'id': '272', 'type': 'Feature', 'properties': {'osmid': 53019347, 'average price/sqft': 413.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1770733, 37.7657375]}}, {'id': '273', 'type': 'Feature', 'properties': {'osmid': 53019348, 'average price/sqft': 401.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1757012, 37.7649437]}}, {'id': '274', 'type': 'Feature', 'properties': {'osmid': 53019349, 'average price/sqft': 394.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1751306, 37.764431]}}, {'id': '275', 'type': 'Feature', 'properties': {'osmid': 53019350, 'average price/sqft': 389.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1745857, 37.7638975]}}, {'id': '276', 'type': 'Feature', 'properties': {'osmid': 53019351, 'average price/sqft': 389.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1740347, 37.7633725]}}, {'id': '277', 'type': 'Feature', 'properties': {'osmid': 53019353, 'average price/sqft': 387.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1732945, 37.7629654]}}, {'id': '278', 'type': 'Feature', 'properties': {'osmid': 53019355, 'average price/sqft': 391.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1727217, 37.762395]}}, {'id': '279', 'type': 'Feature', 'properties': {'osmid': 53019356, 'average price/sqft': 392.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1726963, 37.7620568]}}, {'id': '280', 'type': 'Feature', 'properties': {'osmid': 53019358, 'average price/sqft': 389.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1719685, 37.7613781]}}, {'id': '281', 'type': 'Feature', 'properties': {'osmid': 53019360, 'average price/sqft': 386.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1711643, 37.7606906]}}, {'id': '282', 'type': 'Feature', 'properties': {'osmid': 53019362, 'average price/sqft': 391.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1705917, 37.7599795]}}, {'id': '283', 'type': 'Feature', 'properties': {'osmid': 53019364, 'average price/sqft': 387.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1699823, 37.7591585]}}, {'id': '284', 'type': 'Feature', 'properties': {'osmid': 53019365, 'average price/sqft': 381.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1694127, 37.7583911]}}, {'id': '285', 'type': 'Feature', 'properties': {'osmid': 53019367, 'average price/sqft': 371.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.168839, 37.7576181]}}, {'id': '286', 'type': 'Feature', 'properties': {'osmid': 53019369, 'average price/sqft': 361.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1682703, 37.7568517]}}, {'id': '287', 'type': 'Feature', 'properties': {'osmid': 53019370, 'average price/sqft': 354.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1678178, 37.756242]}}, {'id': '288', 'type': 'Feature', 'properties': {'osmid': 53019372, 'average price/sqft': 348.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1673799, 37.7556519]}}, {'id': '289', 'type': 'Feature', 'properties': {'osmid': 53019373, 'average price/sqft': 343.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1668913, 37.7549935]}}, {'id': '290', 'type': 'Feature', 'properties': {'osmid': 53019374, 'average price/sqft': 339.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.166384, 37.7543099]}}, {'id': '291', 'type': 'Feature', 'properties': {'osmid': 53019376, 'average price/sqft': 336.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1658301, 37.7535635]}}, {'id': '292', 'type': 'Feature', 'properties': {'osmid': 53019378, 'average price/sqft': 342.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1651904, 37.7527016]}}, {'id': '293', 'type': 'Feature', 'properties': {'osmid': 53019380, 'average price/sqft': 352.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1640726, 37.7511952]}}, {'id': '294', 'type': 'Feature', 'properties': {'osmid': 53019382, 'average price/sqft': 353.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1630174, 37.7497724]}}, {'id': '295', 'type': 'Feature', 'properties': {'osmid': 53019386, 'average price/sqft': 359.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1603095, 37.7461212]}}, {'id': '296', 'type': 'Feature', 'properties': {'osmid': 53019388, 'average price/sqft': 356.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1595126, 37.7450494]}}, {'id': '297', 'type': 'Feature', 'properties': {'osmid': 53019389, 'average price/sqft': 356.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1592785, 37.7447292]}}, {'id': '298', 'type': 'Feature', 'properties': {'osmid': 53019392, 'average price/sqft': 354.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1588472, 37.7441489]}}, {'id': '299', 'type': 'Feature', 'properties': {'osmid': 53019393, 'average price/sqft': 350.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1584121, 37.7435624]}}, {'id': '300', 'type': 'Feature', 'properties': {'osmid': 53019396, 'average price/sqft': 341.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1570226, 37.7414947]}}, {'id': '301', 'type': 'Feature', 'properties': {'osmid': 53019399, 'average price/sqft': 338.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.156459, 37.7409107]}}, {'id': '302', 'type': 'Feature', 'properties': {'osmid': 53019401, 'average price/sqft': 335.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1559803, 37.740297]}}, {'id': '303', 'type': 'Feature', 'properties': {'osmid': 53019402, 'average price/sqft': 326.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1555373, 37.739691]}}, {'id': '304', 'type': 'Feature', 'properties': {'osmid': 53019404, 'average price/sqft': 311.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1550835, 37.7390831]}}, {'id': '305', 'type': 'Feature', 'properties': {'osmid': 53019488, 'average price/sqft': 411.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1765653, 37.766182]}}, {'id': '306', 'type': 'Feature', 'properties': {'osmid': 53019490, 'average price/sqft': 404.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1760044, 37.7656427]}}, {'id': '307', 'type': 'Feature', 'properties': {'osmid': 53019500, 'average price/sqft': 460.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2567801, 37.8159027]}}, {'id': '308', 'type': 'Feature', 'properties': {'osmid': 53019502, 'average price/sqft': 470.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2548712, 37.8169995]}}, {'id': '309', 'type': 'Feature', 'properties': {'osmid': 53019504, 'average price/sqft': 493.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.253418, 37.8179496]}}, {'id': '310', 'type': 'Feature', 'properties': {'osmid': 53019587, 'average price/sqft': 653.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1695708, 37.804276]}}, {'id': '311', 'type': 'Feature', 'properties': {'osmid': 53019591, 'average price/sqft': 654.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1691784, 37.8041229]}}, {'id': '312', 'type': 'Feature', 'properties': {'osmid': 53019593, 'average price/sqft': 653.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1675509, 37.8040927]}}, {'id': '313', 'type': 'Feature', 'properties': {'osmid': 53019601, 'average price/sqft': 655.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.166562, 37.804195]}}, {'id': '314', 'type': 'Feature', 'properties': {'osmid': 53019619, 'average price/sqft': 644.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1648935, 37.8007831]}}, {'id': '315', 'type': 'Feature', 'properties': {'osmid': 53019777, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1867657, 37.7321468]}}, {'id': '316', 'type': 'Feature', 'properties': {'osmid': 53019780, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.186842, 37.730689]}}, {'id': '317', 'type': 'Feature', 'properties': {'osmid': 53019782, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1864482, 37.730226]}}, {'id': '318', 'type': 'Feature', 'properties': {'osmid': 53019784, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1860431, 37.7297725]}}, {'id': '319', 'type': 'Feature', 'properties': {'osmid': 53019785, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1856195, 37.7293059]}}, {'id': '320', 'type': 'Feature', 'properties': {'osmid': 53019787, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1852166, 37.7288324]}}, {'id': '321', 'type': 'Feature', 'properties': {'osmid': 53019789, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1848084, 37.7283754]}}, {'id': '322', 'type': 'Feature', 'properties': {'osmid': 53019791, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1844071, 37.7279135]}}, {'id': '323', 'type': 'Feature', 'properties': {'osmid': 53019793, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1840035, 37.7274455]}}, {'id': '324', 'type': 'Feature', 'properties': {'osmid': 53019890, 'average price/sqft': 422.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2200445, 37.7929501]}}, {'id': '325', 'type': 'Feature', 'properties': {'osmid': 53019891, 'average price/sqft': 428.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2201832, 37.7926186]}}, {'id': '326', 'type': 'Feature', 'properties': {'osmid': 53019892, 'average price/sqft': 421.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2206443, 37.7913769]}}, {'id': '327', 'type': 'Feature', 'properties': {'osmid': 53019893, 'average price/sqft': 420.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2207387, 37.7911735]}}, {'id': '328', 'type': 'Feature', 'properties': {'osmid': 53020102, 'average price/sqft': 665.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2001315, 37.819923]}}, {'id': '329', 'type': 'Feature', 'properties': {'osmid': 53020104, 'average price/sqft': 666.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1998178, 37.819599]}}, {'id': '330', 'type': 'Feature', 'properties': {'osmid': 53020181, 'average price/sqft': 735.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2108008, 37.8205398]}}, {'id': '331', 'type': 'Feature', 'properties': {'osmid': 53020185, 'average price/sqft': 730.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.211036, 37.8234181]}}, {'id': '332', 'type': 'Feature', 'properties': {'osmid': 53020233, 'average price/sqft': 471.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2038039, 37.7845002]}}, {'id': '333', 'type': 'Feature', 'properties': {'osmid': 53020235, 'average price/sqft': 506.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.202106, 37.7856343]}}, {'id': '334', 'type': 'Feature', 'properties': {'osmid': 53020237, 'average price/sqft': 543.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2008819, 37.7864566]}}, {'id': '335', 'type': 'Feature', 'properties': {'osmid': 53020239, 'average price/sqft': 561.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2001208, 37.7869673]}}, {'id': '336', 'type': 'Feature', 'properties': {'osmid': 53020243, 'average price/sqft': 457.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2052376, 37.7834557]}}, {'id': '337', 'type': 'Feature', 'properties': {'osmid': 53020244, 'average price/sqft': 455.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2045977, 37.7839045]}}, {'id': '338', 'type': 'Feature', 'properties': {'osmid': 53020249, 'average price/sqft': 664.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.251081, 37.8044309]}}, {'id': '339', 'type': 'Feature', 'properties': {'osmid': 53020250, 'average price/sqft': 661.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2508808, 37.8041796]}}, {'id': '340', 'type': 'Feature', 'properties': {'osmid': 53020252, 'average price/sqft': 661.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2494421, 37.8047452]}}, {'id': '341', 'type': 'Feature', 'properties': {'osmid': 53020253, 'average price/sqft': 657.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2485166, 37.8052384]}}, {'id': '342', 'type': 'Feature', 'properties': {'osmid': 53020254, 'average price/sqft': 657.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2481377, 37.8054497]}}, {'id': '343', 'type': 'Feature', 'properties': {'osmid': 53020255, 'average price/sqft': 658.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2477927, 37.805665]}}, {'id': '344', 'type': 'Feature', 'properties': {'osmid': 53020258, 'average price/sqft': 669.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2457249, 37.8077141]}}, {'id': '345', 'type': 'Feature', 'properties': {'osmid': 53020260, 'average price/sqft': 667.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2448462, 37.808807]}}, {'id': '346', 'type': 'Feature', 'properties': {'osmid': 53020613, 'average price/sqft': 302.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2325243, 37.7707331]}}, {'id': '347', 'type': 'Feature', 'properties': {'osmid': 53020615, 'average price/sqft': 301.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2316621, 37.7719991]}}, {'id': '348', 'type': 'Feature', 'properties': {'osmid': 53020616, 'average price/sqft': 302.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2312258, 37.7726253]}}, {'id': '349', 'type': 'Feature', 'properties': {'osmid': 53020617, 'average price/sqft': 301.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.230794, 37.7732507]}}, {'id': '350', 'type': 'Feature', 'properties': {'osmid': 53020622, 'average price/sqft': 308.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2282216, 37.77722]}}, {'id': '351', 'type': 'Feature', 'properties': {'osmid': 53020793, 'average price/sqft': 857.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2565667, 37.8375383]}}, {'id': '352', 'type': 'Feature', 'properties': {'osmid': 53020794, 'average price/sqft': 891.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2552847, 37.8391439]}}, {'id': '353', 'type': 'Feature', 'properties': {'osmid': 53020795, 'average price/sqft': 928.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2536677, 37.8411466]}}, {'id': '354', 'type': 'Feature', 'properties': {'osmid': 53020796, 'average price/sqft': 941.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2523748, 37.842757]}}, {'id': '355', 'type': 'Feature', 'properties': {'osmid': 53020803, 'average price/sqft': 557.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2504376, 37.8195512]}}, {'id': '356', 'type': 'Feature', 'properties': {'osmid': 53020804, 'average price/sqft': 575.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2491549, 37.821065]}}, {'id': '357', 'type': 'Feature', 'properties': {'osmid': 53020890, 'average price/sqft': 532.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2173757, 37.7941857]}}, {'id': '358', 'type': 'Feature', 'properties': {'osmid': 53020892, 'average price/sqft': 598.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2165114, 37.7955884]}}, {'id': '359', 'type': 'Feature', 'properties': {'osmid': 53020894, 'average price/sqft': 636.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.216023, 37.7968095]}}, {'id': '360', 'type': 'Feature', 'properties': {'osmid': 53020896, 'average price/sqft': 657.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2157195, 37.797582]}}, {'id': '361', 'type': 'Feature', 'properties': {'osmid': 53020900, 'average price/sqft': 678.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2154287, 37.7983152]}}, {'id': '362', 'type': 'Feature', 'properties': {'osmid': 53020901, 'average price/sqft': 693.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2149342, 37.7992064]}}, {'id': '363', 'type': 'Feature', 'properties': {'osmid': 53021145, 'average price/sqft': 743.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2132949, 37.8067677]}}, {'id': '364', 'type': 'Feature', 'properties': {'osmid': 53021146, 'average price/sqft': 757.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2134697, 37.80778]}}, {'id': '365', 'type': 'Feature', 'properties': {'osmid': 53021148, 'average price/sqft': 748.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2127888, 37.8088248]}}, {'id': '366', 'type': 'Feature', 'properties': {'osmid': 53021150, 'average price/sqft': 734.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.212027, 37.80995]}}, {'id': '367', 'type': 'Feature', 'properties': {'osmid': 53021155, 'average price/sqft': 744.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2110077, 37.8105989]}}, {'id': '368', 'type': 'Feature', 'properties': {'osmid': 53021269, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1836139, 37.7359177]}}, {'id': '369', 'type': 'Feature', 'properties': {'osmid': 53021320, 'average price/sqft': 648.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2070236, 37.8097195]}}, {'id': '370', 'type': 'Feature', 'properties': {'osmid': 53021322, 'average price/sqft': 653.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.205853, 37.8092489]}}, {'id': '371', 'type': 'Feature', 'properties': {'osmid': 53021333, 'average price/sqft': 654.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1692621, 37.8038986]}}, {'id': '372', 'type': 'Feature', 'properties': {'osmid': 53021406, 'average price/sqft': 322.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2214367, 37.7673911]}}, {'id': '373', 'type': 'Feature', 'properties': {'osmid': 53021407, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.219999, 37.7661885]}}, {'id': '374', 'type': 'Feature', 'properties': {'osmid': 53021421, 'average price/sqft': 695.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2080039, 37.8297272]}}, {'id': '375', 'type': 'Feature', 'properties': {'osmid': 53021423, 'average price/sqft': 692.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2082134, 37.8309319]}}, {'id': '376', 'type': 'Feature', 'properties': {'osmid': 53021425, 'average price/sqft': 690.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2074975, 37.8328456]}}, {'id': '377', 'type': 'Feature', 'properties': {'osmid': 53021427, 'average price/sqft': 722.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2062713, 37.8243983]}}, {'id': '378', 'type': 'Feature', 'properties': {'osmid': 53021437, 'average price/sqft': 687.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2070454, 37.8279358]}}, {'id': '379', 'type': 'Feature', 'properties': {'osmid': 53021439, 'average price/sqft': 679.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.206505, 37.8289209]}}, {'id': '380', 'type': 'Feature', 'properties': {'osmid': 53021450, 'average price/sqft': 731.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.209062, 37.8244063]}}, {'id': '381', 'type': 'Feature', 'properties': {'osmid': 53021454, 'average price/sqft': 720.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2081069, 37.82465]}}, {'id': '382', 'type': 'Feature', 'properties': {'osmid': 53021463, 'average price/sqft': 694.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2056092, 37.8343234]}}, {'id': '383', 'type': 'Feature', 'properties': {'osmid': 53021472, 'average price/sqft': 591.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2004676, 37.8383578]}}, {'id': '384', 'type': 'Feature', 'properties': {'osmid': 53021474, 'average price/sqft': 595.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2001142, 37.8382248]}}, {'id': '385', 'type': 'Feature', 'properties': {'osmid': 53021478, 'average price/sqft': 595.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.198035, 37.8400331]}}, {'id': '386', 'type': 'Feature', 'properties': {'osmid': 53021600, 'average price/sqft': 406.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1720137, 37.7742494]}}, {'id': '387', 'type': 'Feature', 'properties': {'osmid': 53021601, 'average price/sqft': 413.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1711686, 37.7749269]}}, {'id': '388', 'type': 'Feature', 'properties': {'osmid': 53021603, 'average price/sqft': 418.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1698622, 37.7749425]}}, {'id': '389', 'type': 'Feature', 'properties': {'osmid': 53021606, 'average price/sqft': 425.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1674973, 37.7764467]}}, {'id': '390', 'type': 'Feature', 'properties': {'osmid': 53021613, 'average price/sqft': 716.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1456745, 37.7892266]}}, {'id': '391', 'type': 'Feature', 'properties': {'osmid': 53021618, 'average price/sqft': 722.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1440842, 37.7885958]}}, {'id': '392', 'type': 'Feature', 'properties': {'osmid': 53021638, 'average price/sqft': 828.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.238732, 37.8470057]}}, {'id': '393', 'type': 'Feature', 'properties': {'osmid': 53021639, 'average price/sqft': 828.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2380167, 37.8478572]}}, {'id': '394', 'type': 'Feature', 'properties': {'osmid': 53021678, 'average price/sqft': 603.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2015845, 37.7932983]}}, {'id': '395', 'type': 'Feature', 'properties': {'osmid': 53021679, 'average price/sqft': 624.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2001449, 37.7917461]}}, {'id': '396', 'type': 'Feature', 'properties': {'osmid': 53021681, 'average price/sqft': 625.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1987986, 37.7902861]}}, {'id': '397', 'type': 'Feature', 'properties': {'osmid': 53021682, 'average price/sqft': 633.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1983455, 37.7898071]}}, {'id': '398', 'type': 'Feature', 'properties': {'osmid': 53021683, 'average price/sqft': 662.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1968441, 37.7880258]}}, {'id': '399', 'type': 'Feature', 'properties': {'osmid': 53021690, 'average price/sqft': 600.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1945429, 37.7855052]}}, {'id': '400', 'type': 'Feature', 'properties': {'osmid': 53021692, 'average price/sqft': 577.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1936096, 37.7852037]}}, {'id': '401', 'type': 'Feature', 'properties': {'osmid': 53021693, 'average price/sqft': 570.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1928838, 37.7842817]}}, {'id': '402', 'type': 'Feature', 'properties': {'osmid': 53021702, 'average price/sqft': 583.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1895232, 37.7828625]}}, {'id': '403', 'type': 'Feature', 'properties': {'osmid': 53021714, 'average price/sqft': 420.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2844186, 37.8233231]}}, {'id': '404', 'type': 'Feature', 'properties': {'osmid': 53021715, 'average price/sqft': 417.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2846556, 37.8239208]}}, {'id': '405', 'type': 'Feature', 'properties': {'osmid': 53021717, 'average price/sqft': 408.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2852004, 37.8256734]}}, {'id': '406', 'type': 'Feature', 'properties': {'osmid': 53021719, 'average price/sqft': 410.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2855162, 37.8266653]}}, {'id': '407', 'type': 'Feature', 'properties': {'osmid': 53021841, 'average price/sqft': 621.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1838537, 37.7956595]}}, {'id': '408', 'type': 'Feature', 'properties': {'osmid': 53021843, 'average price/sqft': 622.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1835593, 37.7959287]}}, {'id': '409', 'type': 'Feature', 'properties': {'osmid': 53021851, 'average price/sqft': 952.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2514374, 37.8409313]}}, {'id': '410', 'type': 'Feature', 'properties': {'osmid': 53021854, 'average price/sqft': 968.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2465387, 37.8420468]}}, {'id': '411', 'type': 'Feature', 'properties': {'osmid': 53021959, 'average price/sqft': 336.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1529159, 37.7433902]}}, {'id': '412', 'type': 'Feature', 'properties': {'osmid': 53021960, 'average price/sqft': 336.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.151758, 37.7440912]}}, {'id': '413', 'type': 'Feature', 'properties': {'osmid': 53021961, 'average price/sqft': 341.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1502054, 37.7450446]}}, {'id': '414', 'type': 'Feature', 'properties': {'osmid': 53022101, 'average price/sqft': 732.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.21, 37.8314225]}}, {'id': '415', 'type': 'Feature', 'properties': {'osmid': 53022109, 'average price/sqft': 401.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.172794, 37.7784122]}}, {'id': '416', 'type': 'Feature', 'properties': {'osmid': 53022110, 'average price/sqft': 399.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1717832, 37.7791381]}}, {'id': '417', 'type': 'Feature', 'properties': {'osmid': 53022112, 'average price/sqft': 399.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1716652, 37.779278]}}, {'id': '418', 'type': 'Feature', 'properties': {'osmid': 53022258, 'average price/sqft': 350.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1577749, 37.7482341]}}, {'id': '419', 'type': 'Feature', 'properties': {'osmid': 53022259, 'average price/sqft': 352.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.157028, 37.7489846]}}, {'id': '420', 'type': 'Feature', 'properties': {'osmid': 53022261, 'average price/sqft': 350.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1561782, 37.7498736]}}, {'id': '421', 'type': 'Feature', 'properties': {'osmid': 53022306, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1927721, 37.7453594]}}, {'id': '422', 'type': 'Feature', 'properties': {'osmid': 53022308, 'average price/sqft': 620.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1912956, 37.7440719]}}, {'id': '423', 'type': 'Feature', 'properties': {'osmid': 53022322, 'average price/sqft': 522.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1926587, 37.7833183]}}, {'id': '424', 'type': 'Feature', 'properties': {'osmid': 53022323, 'average price/sqft': 520.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1924733, 37.7836574]}}, {'id': '425', 'type': 'Feature', 'properties': {'osmid': 53022361, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1877331, 37.736315]}}, {'id': '426', 'type': 'Feature', 'properties': {'osmid': 53022362, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1870513, 37.7361289]}}, {'id': '427', 'type': 'Feature', 'properties': {'osmid': 53022363, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.186784, 37.7360902]}}, {'id': '428', 'type': 'Feature', 'properties': {'osmid': 53022513, 'average price/sqft': 440.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2135483, 37.7898543]}}, {'id': '429', 'type': 'Feature', 'properties': {'osmid': 53022514, 'average price/sqft': 435.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2131923, 37.7893921]}}, {'id': '430', 'type': 'Feature', 'properties': {'osmid': 53022690, 'average price/sqft': 641.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2513898, 37.8231947]}}, {'id': '431', 'type': 'Feature', 'properties': {'osmid': 53022693, 'average price/sqft': 618.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2509922, 37.8223642]}}, {'id': '432', 'type': 'Feature', 'properties': {'osmid': 53022695, 'average price/sqft': 601.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2506174, 37.8215766]}}, {'id': '433', 'type': 'Feature', 'properties': {'osmid': 53022697, 'average price/sqft': 574.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2509981, 37.8205283]}}, {'id': '434', 'type': 'Feature', 'properties': {'osmid': 53022701, 'average price/sqft': 799.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2588419, 37.8326587]}}, {'id': '435', 'type': 'Feature', 'properties': {'osmid': 53022703, 'average price/sqft': 779.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2599974, 37.8325766]}}, {'id': '436', 'type': 'Feature', 'properties': {'osmid': 53022705, 'average price/sqft': 743.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2636776, 37.8322855]}}, {'id': '437', 'type': 'Feature', 'properties': {'osmid': 53022711, 'average price/sqft': 678.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2672443, 37.8328153]}}, {'id': '438', 'type': 'Feature', 'properties': {'osmid': 53022712, 'average price/sqft': 680.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.267665, 37.8328782]}}, {'id': '439', 'type': 'Feature', 'properties': {'osmid': 53022713, 'average price/sqft': 650.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2702263, 37.8332968]}}, {'id': '440', 'type': 'Feature', 'properties': {'osmid': 53022715, 'average price/sqft': 618.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2731606, 37.8337655]}}, {'id': '441', 'type': 'Feature', 'properties': {'osmid': 53022717, 'average price/sqft': 622.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2757048, 37.8341531]}}, {'id': '442', 'type': 'Feature', 'properties': {'osmid': 53022780, 'average price/sqft': 826.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2504449, 37.8279177]}}, {'id': '443', 'type': 'Feature', 'properties': {'osmid': 53022783, 'average price/sqft': 831.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2497203, 37.827332]}}, {'id': '444', 'type': 'Feature', 'properties': {'osmid': 53022785, 'average price/sqft': 845.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2488522, 37.8269679]}}, {'id': '445', 'type': 'Feature', 'properties': {'osmid': 53022809, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2568008, 37.792335]}}, {'id': '446', 'type': 'Feature', 'properties': {'osmid': 53022810, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2558359, 37.7930185]}}, {'id': '447', 'type': 'Feature', 'properties': {'osmid': 53022812, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2549302, 37.7936623]}}, {'id': '448', 'type': 'Feature', 'properties': {'osmid': 53022818, 'average price/sqft': 700.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2520995, 37.795678]}}, {'id': '449', 'type': 'Feature', 'properties': {'osmid': 53022820, 'average price/sqft': 690.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2511727, 37.7963343]}}, {'id': '450', 'type': 'Feature', 'properties': {'osmid': 53022825, 'average price/sqft': 685.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2493203, 37.7976494]}}, {'id': '451', 'type': 'Feature', 'properties': {'osmid': 53022827, 'average price/sqft': 661.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2474778, 37.798966]}}, {'id': '452', 'type': 'Feature', 'properties': {'osmid': 53022831, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2604221, 37.7890064]}}, {'id': '453', 'type': 'Feature', 'properties': {'osmid': 53022833, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.258603, 37.789388]}}, {'id': '454', 'type': 'Feature', 'properties': {'osmid': 53022983, 'average price/sqft': 702.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.206091, 37.8072573]}}, {'id': '455', 'type': 'Feature', 'properties': {'osmid': 53022984, 'average price/sqft': 701.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.205328, 37.8067971]}}, {'id': '456', 'type': 'Feature', 'properties': {'osmid': 53022986, 'average price/sqft': 695.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.204554, 37.8063071]}}, {'id': '457', 'type': 'Feature', 'properties': {'osmid': 53022988, 'average price/sqft': 686.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2033471, 37.8060691]}}, {'id': '458', 'type': 'Feature', 'properties': {'osmid': 53022990, 'average price/sqft': 678.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2026141, 37.8055757]}}, {'id': '459', 'type': 'Feature', 'properties': {'osmid': 53022991, 'average price/sqft': 672.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2017701, 37.8054056]}}, {'id': '460', 'type': 'Feature', 'properties': {'osmid': 53023030, 'average price/sqft': 780.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1561596, 37.7923833]}}, {'id': '461', 'type': 'Feature', 'properties': {'osmid': 53023032, 'average price/sqft': 789.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1563864, 37.7931851]}}, {'id': '462', 'type': 'Feature', 'properties': {'osmid': 53023230, 'average price/sqft': 970.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2347441, 37.8495304]}}, {'id': '463', 'type': 'Feature', 'properties': {'osmid': 53023232, 'average price/sqft': 973.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.234526, 37.8499449]}}, {'id': '464', 'type': 'Feature', 'properties': {'osmid': 53023275, 'average price/sqft': 986.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2471903, 37.8410785]}}, {'id': '465', 'type': 'Feature', 'properties': {'osmid': 53023277, 'average price/sqft': 985.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2469535, 37.8409818]}}, {'id': '466', 'type': 'Feature', 'properties': {'osmid': 53023283, 'average price/sqft': 933.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2438561, 37.8393523]}}, {'id': '467', 'type': 'Feature', 'properties': {'osmid': 53024328, 'average price/sqft': 767.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2180314, 37.8283063]}}, {'id': '468', 'type': 'Feature', 'properties': {'osmid': 53024331, 'average price/sqft': 734.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2147635, 37.8274414]}}, {'id': '469', 'type': 'Feature', 'properties': {'osmid': 53024333, 'average price/sqft': 721.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2142776, 37.8259071]}}, {'id': '470', 'type': 'Feature', 'properties': {'osmid': 53024664, 'average price/sqft': 632.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2137925, 37.7971]}}, {'id': '471', 'type': 'Feature', 'properties': {'osmid': 53024666, 'average price/sqft': 626.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.212728, 37.7968654]}}, {'id': '472', 'type': 'Feature', 'properties': {'osmid': 53024668, 'average price/sqft': 622.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2117437, 37.7966112]}}, {'id': '473', 'type': 'Feature', 'properties': {'osmid': 53024692, 'average price/sqft': 401.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1954683, 37.7704338]}}, {'id': '474', 'type': 'Feature', 'properties': {'osmid': 53024693, 'average price/sqft': 408.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1939299, 37.769047]}}, {'id': '475', 'type': 'Feature', 'properties': {'osmid': 53024695, 'average price/sqft': 659.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2405797, 37.8032905]}}, {'id': '476', 'type': 'Feature', 'properties': {'osmid': 53024699, 'average price/sqft': 663.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2398797, 37.8044052]}}, {'id': '477', 'type': 'Feature', 'properties': {'osmid': 53024773, 'average price/sqft': 669.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2393808, 37.8052614]}}, {'id': '478', 'type': 'Feature', 'properties': {'osmid': 53024775, 'average price/sqft': 679.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2388121, 37.8062616]}}, {'id': '479', 'type': 'Feature', 'properties': {'osmid': 53024831, 'average price/sqft': 655.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2451489, 37.8010078]}}, {'id': '480', 'type': 'Feature', 'properties': {'osmid': 53024832, 'average price/sqft': 655.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2447502, 37.800989]}}, {'id': '481', 'type': 'Feature', 'properties': {'osmid': 53024834, 'average price/sqft': 661.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2406332, 37.8017587]}}, {'id': '482', 'type': 'Feature', 'properties': {'osmid': 53024835, 'average price/sqft': 671.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2391687, 37.801833]}}, {'id': '483', 'type': 'Feature', 'properties': {'osmid': 53024858, 'average price/sqft': 1021.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.250731, 37.8371459]}}, {'id': '484', 'type': 'Feature', 'properties': {'osmid': 53024860, 'average price/sqft': 1016.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2496092, 37.8371798]}}, {'id': '485', 'type': 'Feature', 'properties': {'osmid': 53024864, 'average price/sqft': 977.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2468681, 37.8381767]}}, {'id': '486', 'type': 'Feature', 'properties': {'osmid': 53024867, 'average price/sqft': 893.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2424887, 37.8396404]}}, {'id': '487', 'type': 'Feature', 'properties': {'osmid': 53024868, 'average price/sqft': 812.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2393188, 37.8409037]}}, {'id': '488', 'type': 'Feature', 'properties': {'osmid': 53024871, 'average price/sqft': 804.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2379339, 37.8409075]}}, {'id': '489', 'type': 'Feature', 'properties': {'osmid': 53024872, 'average price/sqft': 797.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2376102, 37.841226]}}, {'id': '490', 'type': 'Feature', 'properties': {'osmid': 53024875, 'average price/sqft': 783.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2356009, 37.8423194]}}, {'id': '491', 'type': 'Feature', 'properties': {'osmid': 53024877, 'average price/sqft': 788.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.232877, 37.8429465]}}, {'id': '492', 'type': 'Feature', 'properties': {'osmid': 53024879, 'average price/sqft': 795.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2316279, 37.8427512]}}, {'id': '493', 'type': 'Feature', 'properties': {'osmid': 53024883, 'average price/sqft': 604.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2185101, 37.8423998]}}, {'id': '494', 'type': 'Feature', 'properties': {'osmid': 53024888, 'average price/sqft': 651.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2184436, 37.8403276]}}, {'id': '495', 'type': 'Feature', 'properties': {'osmid': 53024890, 'average price/sqft': 691.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2196815, 37.8396364]}}, {'id': '496', 'type': 'Feature', 'properties': {'osmid': 53024892, 'average price/sqft': 721.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2205511, 37.8403179]}}, {'id': '497', 'type': 'Feature', 'properties': {'osmid': 53024894, 'average price/sqft': 748.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2217641, 37.8401948]}}, {'id': '498', 'type': 'Feature', 'properties': {'osmid': 53024901, 'average price/sqft': 789.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.228919, 37.8424264]}}, {'id': '499', 'type': 'Feature', 'properties': {'osmid': 53024903, 'average price/sqft': 790.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2291974, 37.8424395]}}, {'id': '500', 'type': 'Feature', 'properties': {'osmid': 53024905, 'average price/sqft': 793.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2304731, 37.8424909]}}, {'id': '501', 'type': 'Feature', 'properties': {'osmid': 53024909, 'average price/sqft': 805.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2367171, 37.8410706]}}, {'id': '502', 'type': 'Feature', 'properties': {'osmid': 53024918, 'average price/sqft': 608.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2120766, 37.8510578]}}, {'id': '503', 'type': 'Feature', 'properties': {'osmid': 53024919, 'average price/sqft': 547.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2128136, 37.8496749]}}, {'id': '504', 'type': 'Feature', 'properties': {'osmid': 53024920, 'average price/sqft': 524.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2133621, 37.8485555]}}, {'id': '505', 'type': 'Feature', 'properties': {'osmid': 53024922, 'average price/sqft': 518.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2136954, 37.8476493]}}, {'id': '506', 'type': 'Feature', 'properties': {'osmid': 53024926, 'average price/sqft': 512.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2142687, 37.8466228]}}, {'id': '507', 'type': 'Feature', 'properties': {'osmid': 53024928, 'average price/sqft': 508.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2138302, 37.8445588]}}, {'id': '508', 'type': 'Feature', 'properties': {'osmid': 53024930, 'average price/sqft': 549.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2140675, 37.842213]}}, {'id': '509', 'type': 'Feature', 'properties': {'osmid': 53024931, 'average price/sqft': 582.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2153054, 37.8412408]}}, {'id': '510', 'type': 'Feature', 'properties': {'osmid': 53024934, 'average price/sqft': 588.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2152625, 37.8408372]}}, {'id': '511', 'type': 'Feature', 'properties': {'osmid': 53024942, 'average price/sqft': 588.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.216874, 37.8414646]}}, {'id': '512', 'type': 'Feature', 'properties': {'osmid': 53024944, 'average price/sqft': 588.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.216937, 37.841633]}}, {'id': '513', 'type': 'Feature', 'properties': {'osmid': 53025043, 'average price/sqft': 448.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1668162, 37.7745472]}}, {'id': '514', 'type': 'Feature', 'properties': {'osmid': 53025044, 'average price/sqft': 466.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1659952, 37.7736602]}}, {'id': '515', 'type': 'Feature', 'properties': {'osmid': 53025046, 'average price/sqft': 494.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1645079, 37.773024]}}, {'id': '516', 'type': 'Feature', 'properties': {'osmid': 53025049, 'average price/sqft': 554.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1621177, 37.7717502]}}, {'id': '517', 'type': 'Feature', 'properties': {'osmid': 53025050, 'average price/sqft': 570.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1604323, 37.7704481]}}, {'id': '518', 'type': 'Feature', 'properties': {'osmid': 53025052, 'average price/sqft': 589.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1573236, 37.7689396]}}, {'id': '519', 'type': 'Feature', 'properties': {'osmid': 53025053, 'average price/sqft': 608.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1566855, 37.7677521]}}, {'id': '520', 'type': 'Feature', 'properties': {'osmid': 53025054, 'average price/sqft': 625.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1561512, 37.7669718]}}, {'id': '521', 'type': 'Feature', 'properties': {'osmid': 53025119, 'average price/sqft': 863.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2396433, 37.849563]}}, {'id': '522', 'type': 'Feature', 'properties': {'osmid': 53025122, 'average price/sqft': 859.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2397909, 37.8490128]}}, {'id': '523', 'type': 'Feature', 'properties': {'osmid': 53025126, 'average price/sqft': 650.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1932848, 37.8358966]}}, {'id': '524', 'type': 'Feature', 'properties': {'osmid': 53025127, 'average price/sqft': 657.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1936882, 37.8363643]}}, {'id': '525', 'type': 'Feature', 'properties': {'osmid': 53025446, 'average price/sqft': 679.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2270861, 37.8465446]}}, {'id': '526', 'type': 'Feature', 'properties': {'osmid': 53025449, 'average price/sqft': 681.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2250748, 37.8451882]}}, {'id': '527', 'type': 'Feature', 'properties': {'osmid': 53025451, 'average price/sqft': 677.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2245742, 37.8448019]}}, {'id': '528', 'type': 'Feature', 'properties': {'osmid': 53025453, 'average price/sqft': 699.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2230798, 37.8434902]}}, {'id': '529', 'type': 'Feature', 'properties': {'osmid': 53025455, 'average price/sqft': 701.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2213774, 37.8435213]}}, {'id': '530', 'type': 'Feature', 'properties': {'osmid': 53025456, 'average price/sqft': 674.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2213592, 37.8415967]}}, {'id': '531', 'type': 'Feature', 'properties': {'osmid': 53025462, 'average price/sqft': 682.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2178023, 37.8365838]}}, {'id': '532', 'type': 'Feature', 'properties': {'osmid': 53025464, 'average price/sqft': 737.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2148627, 37.8332669]}}, {'id': '533', 'type': 'Feature', 'properties': {'osmid': 53025466, 'average price/sqft': 739.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2145207, 37.8327892]}}, {'id': '534', 'type': 'Feature', 'properties': {'osmid': 53025468, 'average price/sqft': 731.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2119198, 37.8305299]}}, {'id': '535', 'type': 'Feature', 'properties': {'osmid': 53025470, 'average price/sqft': 727.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2109746, 37.8294818]}}, {'id': '536', 'type': 'Feature', 'properties': {'osmid': 53025472, 'average price/sqft': 723.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2100664, 37.8273407]}}, {'id': '537', 'type': 'Feature', 'properties': {'osmid': 53025474, 'average price/sqft': 723.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2095694, 37.8267262]}}, {'id': '538', 'type': 'Feature', 'properties': {'osmid': 53025478, 'average price/sqft': 723.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.209442, 37.8259918]}}, {'id': '539', 'type': 'Feature', 'properties': {'osmid': 53025479, 'average price/sqft': 725.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2097728, 37.8252646]}}, {'id': '540', 'type': 'Feature', 'properties': {'osmid': 53025498, 'average price/sqft': 514.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1605631, 37.7749925]}}, {'id': '541', 'type': 'Feature', 'properties': {'osmid': 53025500, 'average price/sqft': 573.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1565342, 37.7728709]}}, {'id': '542', 'type': 'Feature', 'properties': {'osmid': 53025505, 'average price/sqft': 583.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1543049, 37.7703337]}}, {'id': '543', 'type': 'Feature', 'properties': {'osmid': 53025507, 'average price/sqft': 585.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.153981, 37.7697914]}}, {'id': '544', 'type': 'Feature', 'properties': {'osmid': 53025508, 'average price/sqft': 587.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1536628, 37.7692356]}}, {'id': '545', 'type': 'Feature', 'properties': {'osmid': 53025510, 'average price/sqft': 589.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1533515, 37.7686938]}}, {'id': '546', 'type': 'Feature', 'properties': {'osmid': 53025513, 'average price/sqft': 602.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1525443, 37.7672738]}}, {'id': '547', 'type': 'Feature', 'properties': {'osmid': 53025516, 'average price/sqft': 500.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1478351, 37.7605433]}}, {'id': '548', 'type': 'Feature', 'properties': {'osmid': 53025518, 'average price/sqft': 581.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1477006, 37.7574487]}}, {'id': '549', 'type': 'Feature', 'properties': {'osmid': 53025523, 'average price/sqft': 703.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1508694, 37.7534953]}}, {'id': '550', 'type': 'Feature', 'properties': {'osmid': 53025533, 'average price/sqft': 689.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2031225, 37.8182123]}}, {'id': '551', 'type': 'Feature', 'properties': {'osmid': 53025534, 'average price/sqft': 687.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2032884, 37.8178464]}}, {'id': '552', 'type': 'Feature', 'properties': {'osmid': 53025535, 'average price/sqft': 684.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2032481, 37.8173802]}}, {'id': '553', 'type': 'Feature', 'properties': {'osmid': 53025536, 'average price/sqft': 678.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2023241, 37.8161411]}}, {'id': '554', 'type': 'Feature', 'properties': {'osmid': 53025541, 'average price/sqft': 654.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2006363, 37.8137988]}}, {'id': '555', 'type': 'Feature', 'properties': {'osmid': 53025542, 'average price/sqft': 636.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1996024, 37.8127075]}}, {'id': '556', 'type': 'Feature', 'properties': {'osmid': 53025545, 'average price/sqft': 629.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1991155, 37.8122527]}}, {'id': '557', 'type': 'Feature', 'properties': {'osmid': 53025547, 'average price/sqft': 622.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1982025, 37.8115429]}}, {'id': '558', 'type': 'Feature', 'properties': {'osmid': 53025552, 'average price/sqft': 725.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2095579, 37.8250009]}}, {'id': '559', 'type': 'Feature', 'properties': {'osmid': 53025554, 'average price/sqft': 804.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2071911, 37.822401]}}, {'id': '560', 'type': 'Feature', 'properties': {'osmid': 53025560, 'average price/sqft': 600.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.182952, 37.7969347]}}, {'id': '561', 'type': 'Feature', 'properties': {'osmid': 53025565, 'average price/sqft': 546.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1869146, 37.8008763]}}, {'id': '562', 'type': 'Feature', 'properties': {'osmid': 53025571, 'average price/sqft': 432.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1745741, 37.7821603]}}, {'id': '563', 'type': 'Feature', 'properties': {'osmid': 53025572, 'average price/sqft': 482.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1757297, 37.7829666]}}, {'id': '564', 'type': 'Feature', 'properties': {'osmid': 53025574, 'average price/sqft': 623.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1825375, 37.7954219]}}, {'id': '565', 'type': 'Feature', 'properties': {'osmid': 53025575, 'average price/sqft': 628.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1821571, 37.7949273]}}, {'id': '566', 'type': 'Feature', 'properties': {'osmid': 53025578, 'average price/sqft': 632.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.181615, 37.7942448]}}, {'id': '567', 'type': 'Feature', 'properties': {'osmid': 53025580, 'average price/sqft': 631.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1809191, 37.7933721]}}, {'id': '568', 'type': 'Feature', 'properties': {'osmid': 53025581, 'average price/sqft': 631.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1805114, 37.7928584]}}, {'id': '569', 'type': 'Feature', 'properties': {'osmid': 53025585, 'average price/sqft': 606.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1797583, 37.7903796]}}, {'id': '570', 'type': 'Feature', 'properties': {'osmid': 53025588, 'average price/sqft': 598.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1794509, 37.7901164]}}, {'id': '571', 'type': 'Feature', 'properties': {'osmid': 53025591, 'average price/sqft': 575.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1784809, 37.7891298]}}, {'id': '572', 'type': 'Feature', 'properties': {'osmid': 53025593, 'average price/sqft': 565.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1782349, 37.7887979]}}, {'id': '573', 'type': 'Feature', 'properties': {'osmid': 53025595, 'average price/sqft': 562.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.177882, 37.7883579]}}, {'id': '574', 'type': 'Feature', 'properties': {'osmid': 53025599, 'average price/sqft': 598.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1777101, 37.7856349]}}, {'id': '575', 'type': 'Feature', 'properties': {'osmid': 53025601, 'average price/sqft': 602.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1780517, 37.785041]}}, {'id': '576', 'type': 'Feature', 'properties': {'osmid': 53025612, 'average price/sqft': 621.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1974113, 37.8110502]}}, {'id': '577', 'type': 'Feature', 'properties': {'osmid': 53025985, 'average price/sqft': 643.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2011589, 37.8349075]}}, {'id': '578', 'type': 'Feature', 'properties': {'osmid': 53025988, 'average price/sqft': 644.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1976693, 37.8366795]}}, {'id': '579', 'type': 'Feature', 'properties': {'osmid': 53025990, 'average price/sqft': 645.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1971342, 37.8369114]}}, {'id': '580', 'type': 'Feature', 'properties': {'osmid': 53025991, 'average price/sqft': 294.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1596232, 37.7571561]}}, {'id': '581', 'type': 'Feature', 'properties': {'osmid': 53025992, 'average price/sqft': 317.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1592101, 37.7559007]}}, {'id': '582', 'type': 'Feature', 'properties': {'osmid': 53025995, 'average price/sqft': 339.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1583776, 37.7536087]}}, {'id': '583', 'type': 'Feature', 'properties': {'osmid': 53025996, 'average price/sqft': 342.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1578004, 37.7520113]}}, {'id': '584', 'type': 'Feature', 'properties': {'osmid': 53026001, 'average price/sqft': 357.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1551321, 37.747935]}}, {'id': '585', 'type': 'Feature', 'properties': {'osmid': 53026006, 'average price/sqft': 342.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1536033, 37.7470368]}}, {'id': '586', 'type': 'Feature', 'properties': {'osmid': 53026022, 'average price/sqft': 566.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1925643, 37.8000756]}}, {'id': '587', 'type': 'Feature', 'properties': {'osmid': 53026025, 'average price/sqft': 554.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1913138, 37.8002777]}}, {'id': '588', 'type': 'Feature', 'properties': {'osmid': 53026027, 'average price/sqft': 550.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1904483, 37.8001641]}}, {'id': '589', 'type': 'Feature', 'properties': {'osmid': 53026049, 'average price/sqft': 571.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2724665, 37.8287209]}}, {'id': '590', 'type': 'Feature', 'properties': {'osmid': 53026050, 'average price/sqft': 593.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2722391, 37.8296001]}}, {'id': '591', 'type': 'Feature', 'properties': {'osmid': 53026053, 'average price/sqft': 609.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2720466, 37.8304096]}}, {'id': '592', 'type': 'Feature', 'properties': {'osmid': 53026057, 'average price/sqft': 638.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2716168, 37.832063]}}, {'id': '593', 'type': 'Feature', 'properties': {'osmid': 53026058, 'average price/sqft': 638.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2715824, 37.8322054]}}, {'id': '594', 'type': 'Feature', 'properties': {'osmid': 53026060, 'average price/sqft': 378.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1264131, 37.7530024]}}, {'id': '595', 'type': 'Feature', 'properties': {'osmid': 53026061, 'average price/sqft': 379.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1268206, 37.7526182]}}, {'id': '596', 'type': 'Feature', 'properties': {'osmid': 53026065, 'average price/sqft': 382.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1262151, 37.7515551]}}, {'id': '597', 'type': 'Feature', 'properties': {'osmid': 53026067, 'average price/sqft': 378.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1255009, 37.7508389]}}, {'id': '598', 'type': 'Feature', 'properties': {'osmid': 53026117, 'average price/sqft': 327.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1194908, 37.7531252]}}, {'id': '599', 'type': 'Feature', 'properties': {'osmid': 53026118, 'average price/sqft': 305.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1183505, 37.7507313]}}, {'id': '600', 'type': 'Feature', 'properties': {'osmid': 53026122, 'average price/sqft': 323.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1185949, 37.7494272]}}, {'id': '601', 'type': 'Feature', 'properties': {'osmid': 53026125, 'average price/sqft': 331.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1184873, 37.7490219]}}, {'id': '602', 'type': 'Feature', 'properties': {'osmid': 53026129, 'average price/sqft': 260.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1202599, 37.7472356]}}, {'id': '603', 'type': 'Feature', 'properties': {'osmid': 53026131, 'average price/sqft': 260.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1210766, 37.7468596]}}, {'id': '604', 'type': 'Feature', 'properties': {'osmid': 53026503, 'average price/sqft': 446.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1630275, 37.7624344]}}, {'id': '605', 'type': 'Feature', 'properties': {'osmid': 53026504, 'average price/sqft': 454.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1625521, 37.7630226]}}, {'id': '606', 'type': 'Feature', 'properties': {'osmid': 53026506, 'average price/sqft': 463.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1619259, 37.7635198]}}, {'id': '607', 'type': 'Feature', 'properties': {'osmid': 53026527, 'average price/sqft': 603.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1974689, 37.7993]}}, {'id': '608', 'type': 'Feature', 'properties': {'osmid': 53026529, 'average price/sqft': 536.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1940877, 37.8029528]}}, {'id': '609', 'type': 'Feature', 'properties': {'osmid': 53026532, 'average price/sqft': 527.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.192652, 37.8030524]}}, {'id': '610', 'type': 'Feature', 'properties': {'osmid': 53026558, 'average price/sqft': 535.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1911788, 37.7825976]}}, {'id': '611', 'type': 'Feature', 'properties': {'osmid': 53026559, 'average price/sqft': 533.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1908723, 37.7829059]}}, {'id': '612', 'type': 'Feature', 'properties': {'osmid': 53026581, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2795196, 37.7956627]}}, {'id': '613', 'type': 'Feature', 'properties': {'osmid': 53026583, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.279243, 37.7962333]}}, {'id': '614', 'type': 'Feature', 'properties': {'osmid': 53026585, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2787616, 37.7970085]}}, {'id': '615', 'type': 'Feature', 'properties': {'osmid': 53026588, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2783427, 37.7977044]}}, {'id': '616', 'type': 'Feature', 'properties': {'osmid': 53026590, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2779175, 37.7983886]}}, {'id': '617', 'type': 'Feature', 'properties': {'osmid': 53026610, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2766149, 37.800461]}}, {'id': '618', 'type': 'Feature', 'properties': {'osmid': 53026612, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2761898, 37.8011416]}}, {'id': '619', 'type': 'Feature', 'properties': {'osmid': 53026614, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2757602, 37.8018288]}}, {'id': '620', 'type': 'Feature', 'properties': {'osmid': 53026615, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2753321, 37.8025135]}}, {'id': '621', 'type': 'Feature', 'properties': {'osmid': 53026622, 'average price/sqft': 589.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2736087, 37.8052699]}}, {'id': '622', 'type': 'Feature', 'properties': {'osmid': 53026626, 'average price/sqft': 624.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2727812, 37.8066207]}}, {'id': '623', 'type': 'Feature', 'properties': {'osmid': 53027143, 'average price/sqft': 442.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2295839, 37.7892393]}}, {'id': '624', 'type': 'Feature', 'properties': {'osmid': 53027144, 'average price/sqft': 440.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2292043, 37.789676]}}, {'id': '625', 'type': 'Feature', 'properties': {'osmid': 53027146, 'average price/sqft': 445.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2285619, 37.7903046]}}, {'id': '626', 'type': 'Feature', 'properties': {'osmid': 53027148, 'average price/sqft': 445.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.228496, 37.7904362]}}, {'id': '627', 'type': 'Feature', 'properties': {'osmid': 53027150, 'average price/sqft': 458.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2271656, 37.791982]}}, {'id': '628', 'type': 'Feature', 'properties': {'osmid': 53027151, 'average price/sqft': 469.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2259982, 37.793359]}}, {'id': '629', 'type': 'Feature', 'properties': {'osmid': 53027154, 'average price/sqft': 464.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2256815, 37.7941606]}}, {'id': '630', 'type': 'Feature', 'properties': {'osmid': 53027251, 'average price/sqft': 642.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2125932, 37.8381115]}}, {'id': '631', 'type': 'Feature', 'properties': {'osmid': 53027253, 'average price/sqft': 648.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2127276, 37.8387222]}}, {'id': '632', 'type': 'Feature', 'properties': {'osmid': 53027256, 'average price/sqft': 562.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.212577, 37.8429754]}}, {'id': '633', 'type': 'Feature', 'properties': {'osmid': 53027265, 'average price/sqft': 457.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2087261, 37.8458709]}}, {'id': '634', 'type': 'Feature', 'properties': {'osmid': 53027353, 'average price/sqft': 279.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.3006176, 37.8073835]}}, {'id': '635', 'type': 'Feature', 'properties': {'osmid': 53027354, 'average price/sqft': 281.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.3021423, 37.8077201]}}, {'id': '636', 'type': 'Feature', 'properties': {'osmid': 53027362, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2734045, 37.7983536]}}, {'id': '637', 'type': 'Feature', 'properties': {'osmid': 53027366, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2725538, 37.7997219]}}, {'id': '638', 'type': 'Feature', 'properties': {'osmid': 53027368, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2721278, 37.8004082]}}, {'id': '639', 'type': 'Feature', 'properties': {'osmid': 53027377, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2704098, 37.8031586]}}, {'id': '640', 'type': 'Feature', 'properties': {'osmid': 53027379, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2699824, 37.8038473]}}, {'id': '641', 'type': 'Feature', 'properties': {'osmid': 53027381, 'average price/sqft': 665.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2693692, 37.8048283]}}, {'id': '642', 'type': 'Feature', 'properties': {'osmid': 53027383, 'average price/sqft': 665.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2685235, 37.8061748]}}, {'id': '643', 'type': 'Feature', 'properties': {'osmid': 53027384, 'average price/sqft': 665.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2678204, 37.8073063]}}, {'id': '644', 'type': 'Feature', 'properties': {'osmid': 53027386, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2670214, 37.8086]}}, {'id': '645', 'type': 'Feature', 'properties': {'osmid': 53027388, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2667427, 37.8098879]}}, {'id': '646', 'type': 'Feature', 'properties': {'osmid': 53027390, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2667647, 37.8108448]}}, {'id': '647', 'type': 'Feature', 'properties': {'osmid': 53027408, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2756031, 37.7948194]}}, {'id': '648', 'type': 'Feature', 'properties': {'osmid': 53027410, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2751414, 37.7955823]}}, {'id': '649', 'type': 'Feature', 'properties': {'osmid': 53027413, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.274712, 37.7962734]}}, {'id': '650', 'type': 'Feature', 'properties': {'osmid': 53027416, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2742822, 37.7969674]}}, {'id': '651', 'type': 'Feature', 'properties': {'osmid': 53027418, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2738853, 37.7976113]}}, {'id': '652', 'type': 'Feature', 'properties': {'osmid': 53027525, 'average price/sqft': 421.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2207008, 37.7927521]}}, {'id': '653', 'type': 'Feature', 'properties': {'osmid': 53027528, 'average price/sqft': 446.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2193104, 37.7924294]}}, {'id': '654', 'type': 'Feature', 'properties': {'osmid': 53027529, 'average price/sqft': 438.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2170363, 37.7916674]}}, {'id': '655', 'type': 'Feature', 'properties': {'osmid': 53027532, 'average price/sqft': 447.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2162251, 37.7912916]}}, {'id': '656', 'type': 'Feature', 'properties': {'osmid': 53027534, 'average price/sqft': 452.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2154573, 37.7909229]}}, {'id': '657', 'type': 'Feature', 'properties': {'osmid': 53027537, 'average price/sqft': 453.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2153422, 37.791069]}}, {'id': '658', 'type': 'Feature', 'properties': {'osmid': 53027545, 'average price/sqft': 587.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1513346, 37.7722456]}}, {'id': '659', 'type': 'Feature', 'properties': {'osmid': 53027548, 'average price/sqft': 444.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1370073, 37.7659004]}}, {'id': '660', 'type': 'Feature', 'properties': {'osmid': 53027555, 'average price/sqft': 391.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1336011, 37.7680397]}}, {'id': '661', 'type': 'Feature', 'properties': {'osmid': 53027558, 'average price/sqft': 499.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1332748, 37.7477174]}}, {'id': '662', 'type': 'Feature', 'properties': {'osmid': 53027561, 'average price/sqft': 547.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1342109, 37.7443101]}}, {'id': '663', 'type': 'Feature', 'properties': {'osmid': 53027667, 'average price/sqft': 438.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1642068, 37.7630471]}}, {'id': '664', 'type': 'Feature', 'properties': {'osmid': 53027668, 'average price/sqft': 461.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1606268, 37.7619616]}}, {'id': '665', 'type': 'Feature', 'properties': {'osmid': 53027672, 'average price/sqft': 460.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1591048, 37.7616114]}}, {'id': '666', 'type': 'Feature', 'properties': {'osmid': 53027674, 'average price/sqft': 464.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1573901, 37.7604823]}}, {'id': '667', 'type': 'Feature', 'properties': {'osmid': 53027676, 'average price/sqft': 477.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1557197, 37.7593577]}}, {'id': '668', 'type': 'Feature', 'properties': {'osmid': 53027686, 'average price/sqft': 491.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1523701, 37.7545026]}}, {'id': '669', 'type': 'Feature', 'properties': {'osmid': 53027692, 'average price/sqft': 674.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1487491, 37.7541356]}}, {'id': '670', 'type': 'Feature', 'properties': {'osmid': 53027694, 'average price/sqft': 655.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1471576, 37.7548201]}}, {'id': '671', 'type': 'Feature', 'properties': {'osmid': 53027696, 'average price/sqft': 636.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1464405, 37.7551924]}}, {'id': '672', 'type': 'Feature', 'properties': {'osmid': 53027698, 'average price/sqft': 555.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1428892, 37.757392]}}, {'id': '673', 'type': 'Feature', 'properties': {'osmid': 53027699, 'average price/sqft': 560.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1418105, 37.7574642]}}, {'id': '674', 'type': 'Feature', 'properties': {'osmid': 53027701, 'average price/sqft': 564.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1410819, 37.7574844]}}, {'id': '675', 'type': 'Feature', 'properties': {'osmid': 53027722, 'average price/sqft': 370.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1249301, 37.7516404]}}, {'id': '676', 'type': 'Feature', 'properties': {'osmid': 53027767, 'average price/sqft': 612.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1908424, 37.8168495]}}, {'id': '677', 'type': 'Feature', 'properties': {'osmid': 53027773, 'average price/sqft': 606.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1886864, 37.8187008]}}, {'id': '678', 'type': 'Feature', 'properties': {'osmid': 53027776, 'average price/sqft': 602.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.188264, 37.819897]}}, {'id': '679', 'type': 'Feature', 'properties': {'osmid': 53027780, 'average price/sqft': 661.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1991349, 37.8179084]}}, {'id': '680', 'type': 'Feature', 'properties': {'osmid': 53027781, 'average price/sqft': 660.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1986436, 37.8177288]}}, {'id': '681', 'type': 'Feature', 'properties': {'osmid': 53027784, 'average price/sqft': 653.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1963342, 37.8164076]}}, {'id': '682', 'type': 'Feature', 'properties': {'osmid': 53027796, 'average price/sqft': 881.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2420555, 37.8430048]}}, {'id': '683', 'type': 'Feature', 'properties': {'osmid': 53027797, 'average price/sqft': 849.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2400546, 37.8426267]}}, {'id': '684', 'type': 'Feature', 'properties': {'osmid': 53027800, 'average price/sqft': 259.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2066691, 37.7625434]}}, {'id': '685', 'type': 'Feature', 'properties': {'osmid': 53027803, 'average price/sqft': 385.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2003922, 37.7669901]}}, {'id': '686', 'type': 'Feature', 'properties': {'osmid': 53027805, 'average price/sqft': 390.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1999288, 37.7673181]}}, {'id': '687', 'type': 'Feature', 'properties': {'osmid': 53027807, 'average price/sqft': 393.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1996874, 37.7674851]}}, {'id': '688', 'type': 'Feature', 'properties': {'osmid': 53027808, 'average price/sqft': 393.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1992985, 37.7677613]}}, {'id': '689', 'type': 'Feature', 'properties': {'osmid': 53027810, 'average price/sqft': 394.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1989914, 37.7679775]}}, {'id': '690', 'type': 'Feature', 'properties': {'osmid': 53027811, 'average price/sqft': 396.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1986333, 37.7682267]}}, {'id': '691', 'type': 'Feature', 'properties': {'osmid': 53027812, 'average price/sqft': 397.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1979172, 37.7687196]}}, {'id': '692', 'type': 'Feature', 'properties': {'osmid': 53027815, 'average price/sqft': 398.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1974974, 37.7690027]}}, {'id': '693', 'type': 'Feature', 'properties': {'osmid': 53027817, 'average price/sqft': 398.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1972118, 37.7691999]}}, {'id': '694', 'type': 'Feature', 'properties': {'osmid': 53027818, 'average price/sqft': 400.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1965161, 37.7696847]}}, {'id': '695', 'type': 'Feature', 'properties': {'osmid': 53027819, 'average price/sqft': 401.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1958237, 37.7701911]}}, {'id': '696', 'type': 'Feature', 'properties': {'osmid': 53027822, 'average price/sqft': 402.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1951256, 37.7706753]}}, {'id': '697', 'type': 'Feature', 'properties': {'osmid': 53027825, 'average price/sqft': 407.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1938764, 37.772218]}}, {'id': '698', 'type': 'Feature', 'properties': {'osmid': 53027832, 'average price/sqft': 444.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1891556, 37.7754101]}}, {'id': '699', 'type': 'Feature', 'properties': {'osmid': 53027834, 'average price/sqft': 444.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1881963, 37.7760949]}}, {'id': '700', 'type': 'Feature', 'properties': {'osmid': 53027836, 'average price/sqft': 447.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1871054, 37.7768266]}}, {'id': '701', 'type': 'Feature', 'properties': {'osmid': 53027838, 'average price/sqft': 426.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1923765, 37.7734923]}}, {'id': '702', 'type': 'Feature', 'properties': {'osmid': 53027839, 'average price/sqft': 426.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1918245, 37.7739057]}}, {'id': '703', 'type': 'Feature', 'properties': {'osmid': 53027889, 'average price/sqft': 787.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2247109, 37.8353141]}}, {'id': '704', 'type': 'Feature', 'properties': {'osmid': 53027890, 'average price/sqft': 780.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2240042, 37.834897]}}, {'id': '705', 'type': 'Feature', 'properties': {'osmid': 53027893, 'average price/sqft': 774.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2235084, 37.8344073]}}, {'id': '706', 'type': 'Feature', 'properties': {'osmid': 53027895, 'average price/sqft': 765.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2206478, 37.8337188]}}, {'id': '707', 'type': 'Feature', 'properties': {'osmid': 53027897, 'average price/sqft': 763.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2194341, 37.8328343]}}, {'id': '708', 'type': 'Feature', 'properties': {'osmid': 53027944, 'average price/sqft': 665.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2680161, 37.8110828]}}, {'id': '709', 'type': 'Feature', 'properties': {'osmid': 53027952, 'average price/sqft': 607.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2735364, 37.8115128]}}, {'id': '710', 'type': 'Feature', 'properties': {'osmid': 53027957, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.265612, 37.8106779]}}, {'id': '711', 'type': 'Feature', 'properties': {'osmid': 53027960, 'average price/sqft': 542.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2750931, 37.8123586]}}, {'id': '712', 'type': 'Feature', 'properties': {'osmid': 53027961, 'average price/sqft': 539.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2762496, 37.8128109]}}, {'id': '713', 'type': 'Feature', 'properties': {'osmid': 53027963, 'average price/sqft': 532.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2774303, 37.8132666]}}, {'id': '714', 'type': 'Feature', 'properties': {'osmid': 53027964, 'average price/sqft': 528.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2788972, 37.8138476]}}, {'id': '715', 'type': 'Feature', 'properties': {'osmid': 53028009, 'average price/sqft': 414.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1949402, 37.7732841]}}, {'id': '716', 'type': 'Feature', 'properties': {'osmid': 53028177, 'average price/sqft': 642.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2448636, 37.8183935]}}, {'id': '717', 'type': 'Feature', 'properties': {'osmid': 53028179, 'average price/sqft': 651.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2440787, 37.8182398]}}, {'id': '718', 'type': 'Feature', 'properties': {'osmid': 53028182, 'average price/sqft': 656.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2437333, 37.8180464]}}, {'id': '719', 'type': 'Feature', 'properties': {'osmid': 53028184, 'average price/sqft': 657.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2433149, 37.8181343]}}, {'id': '720', 'type': 'Feature', 'properties': {'osmid': 53028194, 'average price/sqft': 718.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2388837, 37.8174632]}}, {'id': '721', 'type': 'Feature', 'properties': {'osmid': 53028196, 'average price/sqft': 707.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2377242, 37.8154488]}}, {'id': '722', 'type': 'Feature', 'properties': {'osmid': 53028198, 'average price/sqft': 497.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2723745, 37.8248015]}}, {'id': '723', 'type': 'Feature', 'properties': {'osmid': 53028199, 'average price/sqft': 448.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2752262, 37.8255542]}}, {'id': '724', 'type': 'Feature', 'properties': {'osmid': 53028202, 'average price/sqft': 405.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2788433, 37.8265261]}}, {'id': '725', 'type': 'Feature', 'properties': {'osmid': 53028204, 'average price/sqft': 406.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2799206, 37.8267847]}}, {'id': '726', 'type': 'Feature', 'properties': {'osmid': 53028206, 'average price/sqft': 406.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2810028, 37.8270222]}}, {'id': '727', 'type': 'Feature', 'properties': {'osmid': 53028207, 'average price/sqft': 405.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2813886, 37.8271071]}}, {'id': '728', 'type': 'Feature', 'properties': {'osmid': 53028539, 'average price/sqft': 484.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2108574, 37.7798224]}}, {'id': '729', 'type': 'Feature', 'properties': {'osmid': 53028540, 'average price/sqft': 498.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2111269, 37.778498]}}, {'id': '730', 'type': 'Feature', 'properties': {'osmid': 53028543, 'average price/sqft': 491.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2096138, 37.7768401]}}, {'id': '731', 'type': 'Feature', 'properties': {'osmid': 53028548, 'average price/sqft': 468.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2129467, 37.7816875]}}, {'id': '732', 'type': 'Feature', 'properties': {'osmid': 53028549, 'average price/sqft': 476.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2122273, 37.7810573]}}, {'id': '733', 'type': 'Feature', 'properties': {'osmid': 53028550, 'average price/sqft': 480.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2115406, 37.7804467]}}, {'id': '734', 'type': 'Feature', 'properties': {'osmid': 53028581, 'average price/sqft': 464.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2064948, 37.7785825]}}, {'id': '735', 'type': 'Feature', 'properties': {'osmid': 53028583, 'average price/sqft': 462.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.205165, 37.7779542]}}, {'id': '736', 'type': 'Feature', 'properties': {'osmid': 53028798, 'average price/sqft': 438.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1519351, 37.7560855]}}, {'id': '737', 'type': 'Feature', 'properties': {'osmid': 53028799, 'average price/sqft': 420.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1512807, 37.7562488]}}, {'id': '738', 'type': 'Feature', 'properties': {'osmid': 53028801, 'average price/sqft': 405.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1507241, 37.7562573]}}, {'id': '739', 'type': 'Feature', 'properties': {'osmid': 53028803, 'average price/sqft': 393.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1501528, 37.7564142]}}, {'id': '740', 'type': 'Feature', 'properties': {'osmid': 53028805, 'average price/sqft': 415.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1493098, 37.7571172]}}, {'id': '741', 'type': 'Feature', 'properties': {'osmid': 53028810, 'average price/sqft': 449.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1522841, 37.7558959]}}, {'id': '742', 'type': 'Feature', 'properties': {'osmid': 53028849, 'average price/sqft': 772.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2295841, 37.8354583]}}, {'id': '743', 'type': 'Feature', 'properties': {'osmid': 53028850, 'average price/sqft': 775.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2287061, 37.8361635]}}, {'id': '744', 'type': 'Feature', 'properties': {'osmid': 53028857, 'average price/sqft': 303.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1441322, 37.7442426]}}, {'id': '745', 'type': 'Feature', 'properties': {'osmid': 53028936, 'average price/sqft': 646.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.213599, 37.8384874]}}, {'id': '746', 'type': 'Feature', 'properties': {'osmid': 53029002, 'average price/sqft': 776.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2215365, 37.8352802]}}, {'id': '747', 'type': 'Feature', 'properties': {'osmid': 53029088, 'average price/sqft': 548.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2782304, 37.8119946]}}, {'id': '748', 'type': 'Feature', 'properties': {'osmid': 53029298, 'average price/sqft': 293.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2332957, 37.776154]}}, {'id': '749', 'type': 'Feature', 'properties': {'osmid': 53029301, 'average price/sqft': 293.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2327376, 37.7766923]}}, {'id': '750', 'type': 'Feature', 'properties': {'osmid': 53029308, 'average price/sqft': 706.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2128497, 37.8328253]}}, {'id': '751', 'type': 'Feature', 'properties': {'osmid': 53029310, 'average price/sqft': 686.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2112176, 37.8335805]}}, {'id': '752', 'type': 'Feature', 'properties': {'osmid': 53029342, 'average price/sqft': 576.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2141949, 37.8408436]}}, {'id': '753', 'type': 'Feature', 'properties': {'osmid': 53029344, 'average price/sqft': 580.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2127169, 37.8418074]}}, {'id': '754', 'type': 'Feature', 'properties': {'osmid': 53029514, 'average price/sqft': 589.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1530308, 37.7695345]}}, {'id': '755', 'type': 'Feature', 'properties': {'osmid': 53029595, 'average price/sqft': 603.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.24872, 37.8169705]}}, {'id': '756', 'type': 'Feature', 'properties': {'osmid': 53029596, 'average price/sqft': 616.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2478161, 37.8163522]}}, {'id': '757', 'type': 'Feature', 'properties': {'osmid': 53029629, 'average price/sqft': 635.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1918143, 37.8301986]}}, {'id': '758', 'type': 'Feature', 'properties': {'osmid': 53029630, 'average price/sqft': 633.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1909895, 37.830604]}}, {'id': '759', 'type': 'Feature', 'properties': {'osmid': 53029636, 'average price/sqft': 606.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1880866, 37.8322507]}}, {'id': '760', 'type': 'Feature', 'properties': {'osmid': 53029640, 'average price/sqft': 587.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1893402, 37.8333786]}}, {'id': '761', 'type': 'Feature', 'properties': {'osmid': 53029643, 'average price/sqft': 596.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1885863, 37.8342795]}}, {'id': '762', 'type': 'Feature', 'properties': {'osmid': 53029644, 'average price/sqft': 604.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1875547, 37.8350696]}}, {'id': '763', 'type': 'Feature', 'properties': {'osmid': 53029700, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2663391, 37.7955418]}}, {'id': '764', 'type': 'Feature', 'properties': {'osmid': 53029706, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2709525, 37.7975581]}}, {'id': '765', 'type': 'Feature', 'properties': {'osmid': 53029711, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2758656, 37.7993044]}}, {'id': '766', 'type': 'Feature', 'properties': {'osmid': 53029847, 'average price/sqft': 504.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2004144, 37.8421459]}}, {'id': '767', 'type': 'Feature', 'properties': {'osmid': 53029848, 'average price/sqft': 503.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2002266, 37.8421448]}}, {'id': '768', 'type': 'Feature', 'properties': {'osmid': 53029859, 'average price/sqft': 565.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.20353, 37.8402255]}}, {'id': '769', 'type': 'Feature', 'properties': {'osmid': 53029863, 'average price/sqft': 538.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1996099, 37.840307]}}, {'id': '770', 'type': 'Feature', 'properties': {'osmid': 53030057, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.174376, 37.732603]}}, {'id': '771', 'type': 'Feature', 'properties': {'osmid': 53030062, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1727881, 37.7340502]}}, {'id': '772', 'type': 'Feature', 'properties': {'osmid': 53030063, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.17173, 37.7345396]}}, {'id': '773', 'type': 'Feature', 'properties': {'osmid': 53030078, 'average price/sqft': 446.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1748081, 37.7838216]}}, {'id': '774', 'type': 'Feature', 'properties': {'osmid': 53030124, 'average price/sqft': 746.0, 'observation count': 31.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2627023, 37.835739]}}, {'id': '775', 'type': 'Feature', 'properties': {'osmid': 53030126, 'average price/sqft': 719.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2639414, 37.8359331]}}, {'id': '776', 'type': 'Feature', 'properties': {'osmid': 53030131, 'average price/sqft': 840.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2529115, 37.8335124]}}, {'id': '777', 'type': 'Feature', 'properties': {'osmid': 53030135, 'average price/sqft': 836.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2549365, 37.8343136]}}, {'id': '778', 'type': 'Feature', 'properties': {'osmid': 53030136, 'average price/sqft': 834.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2555211, 37.8345412]}}, {'id': '779', 'type': 'Feature', 'properties': {'osmid': 53030138, 'average price/sqft': 824.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.257028, 37.8350275]}}, {'id': '780', 'type': 'Feature', 'properties': {'osmid': 53030140, 'average price/sqft': 809.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2587055, 37.8353124]}}, {'id': '781', 'type': 'Feature', 'properties': {'osmid': 53030142, 'average price/sqft': 787.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2598551, 37.8355035]}}, {'id': '782', 'type': 'Feature', 'properties': {'osmid': 53030143, 'average price/sqft': 769.0, 'observation count': 29.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2612433, 37.8357418]}}, {'id': '783', 'type': 'Feature', 'properties': {'osmid': 53030144, 'average price/sqft': 750.0, 'observation count': 31.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.262636, 37.8359735]}}, {'id': '784', 'type': 'Feature', 'properties': {'osmid': 53030189, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1503309, 37.769512]}}, {'id': '785', 'type': 'Feature', 'properties': {'osmid': 53030198, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1486657, 37.7691548]}}, {'id': '786', 'type': 'Feature', 'properties': {'osmid': 53030202, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1481571, 37.7694786]}}, {'id': '787', 'type': 'Feature', 'properties': {'osmid': 53030235, 'average price/sqft': 620.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.196062, 37.8303751]}}, {'id': '788', 'type': 'Feature', 'properties': {'osmid': 53030238, 'average price/sqft': 613.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.195431, 37.8316948]}}, {'id': '789', 'type': 'Feature', 'properties': {'osmid': 53030242, 'average price/sqft': 288.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.296314, 37.8084136]}}, {'id': '790', 'type': 'Feature', 'properties': {'osmid': 53030244, 'average price/sqft': 281.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2976109, 37.8090638]}}, {'id': '791', 'type': 'Feature', 'properties': {'osmid': 53030246, 'average price/sqft': 281.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2988927, 37.8097027]}}, {'id': '792', 'type': 'Feature', 'properties': {'osmid': 53030248, 'average price/sqft': 282.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.3001721, 37.8103439]}}, {'id': '793', 'type': 'Feature', 'properties': {'osmid': 53030250, 'average price/sqft': 283.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.3014752, 37.810997]}}, {'id': '794', 'type': 'Feature', 'properties': {'osmid': 53030261, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2634317, 37.7978411]}}, {'id': '795', 'type': 'Feature', 'properties': {'osmid': 53030262, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2646158, 37.798306]}}, {'id': '796', 'type': 'Feature', 'properties': {'osmid': 53030263, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2657929, 37.7987744]}}, {'id': '797', 'type': 'Feature', 'properties': {'osmid': 53030264, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2669733, 37.7992317]}}, {'id': '798', 'type': 'Feature', 'properties': {'osmid': 53030265, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2681593, 37.7996972]}}, {'id': '799', 'type': 'Feature', 'properties': {'osmid': 53030266, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2693367, 37.8001596]}}, {'id': '800', 'type': 'Feature', 'properties': {'osmid': 53030269, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.270522, 37.800625]}}, {'id': '801', 'type': 'Feature', 'properties': {'osmid': 53030319, 'average price/sqft': 568.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2840075, 37.8058999]}}, {'id': '802', 'type': 'Feature', 'properties': {'osmid': 53030320, 'average price/sqft': 565.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2850294, 37.806133]}}, {'id': '803', 'type': 'Feature', 'properties': {'osmid': 53030321, 'average price/sqft': 571.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2861157, 37.8063788]}}, {'id': '804', 'type': 'Feature', 'properties': {'osmid': 53030322, 'average price/sqft': 563.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2872111, 37.8066302]}}, {'id': '805', 'type': 'Feature', 'properties': {'osmid': 53030325, 'average price/sqft': 510.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2882807, 37.806875]}}, {'id': '806', 'type': 'Feature', 'properties': {'osmid': 53030326, 'average price/sqft': 463.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.28937, 37.8071177]}}, {'id': '807', 'type': 'Feature', 'properties': {'osmid': 53030328, 'average price/sqft': 425.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2903335, 37.8073369]}}, {'id': '808', 'type': 'Feature', 'properties': {'osmid': 53030329, 'average price/sqft': 387.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2913916, 37.8075785]}}, {'id': '809', 'type': 'Feature', 'properties': {'osmid': 53030332, 'average price/sqft': 344.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2927438, 37.8078904]}}, {'id': '810', 'type': 'Feature', 'properties': {'osmid': 53030333, 'average price/sqft': 319.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2939402, 37.8081613]}}, {'id': '811', 'type': 'Feature', 'properties': {'osmid': 53030363, 'average price/sqft': 568.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2788674, 37.8039009]}}, {'id': '812', 'type': 'Feature', 'properties': {'osmid': 53030366, 'average price/sqft': 541.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2765137, 37.8029775]}}, {'id': '813', 'type': 'Feature', 'properties': {'osmid': 53030369, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2741526, 37.8020505]}}, {'id': '814', 'type': 'Feature', 'properties': {'osmid': 53030370, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2728768, 37.8015501]}}, {'id': '815', 'type': 'Feature', 'properties': {'osmid': 53030437, 'average price/sqft': 468.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2170116, 37.7927945]}}, {'id': '816', 'type': 'Feature', 'properties': {'osmid': 53030438, 'average price/sqft': 516.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2163061, 37.7936861]}}, {'id': '817', 'type': 'Feature', 'properties': {'osmid': 53030441, 'average price/sqft': 564.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2154008, 37.7948678]}}, {'id': '818', 'type': 'Feature', 'properties': {'osmid': 53030442, 'average price/sqft': 583.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2148949, 37.7955396]}}, {'id': '819', 'type': 'Feature', 'properties': {'osmid': 53030445, 'average price/sqft': 696.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.207843, 37.8324547]}}, {'id': '820', 'type': 'Feature', 'properties': {'osmid': 53030457, 'average price/sqft': 738.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2078172, 37.8342369]}}, {'id': '821', 'type': 'Feature', 'properties': {'osmid': 53030476, 'average price/sqft': 793.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2099952, 37.834642]}}, {'id': '822', 'type': 'Feature', 'properties': {'osmid': 53030608, 'average price/sqft': 604.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2163091, 37.8602798]}}, {'id': '823', 'type': 'Feature', 'properties': {'osmid': 53030611, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.214479, 37.8586163]}}, {'id': '824', 'type': 'Feature', 'properties': {'osmid': 53030655, 'average price/sqft': 278.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2990759, 37.8033365]}}, {'id': '825', 'type': 'Feature', 'properties': {'osmid': 53030656, 'average price/sqft': 279.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2985319, 37.8048282]}}, {'id': '826', 'type': 'Feature', 'properties': {'osmid': 53030680, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2165707, 37.857449]}}, {'id': '827', 'type': 'Feature', 'properties': {'osmid': 53030681, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2170084, 37.8571373]}}, {'id': '828', 'type': 'Feature', 'properties': {'osmid': 53030816, 'average price/sqft': 453.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1840728, 37.8037652]}}, {'id': '829', 'type': 'Feature', 'properties': {'osmid': 53030817, 'average price/sqft': 454.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1823052, 37.8023563]}}, {'id': '830', 'type': 'Feature', 'properties': {'osmid': 53030945, 'average price/sqft': 589.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.207635, 37.7947239]}}, {'id': '831', 'type': 'Feature', 'properties': {'osmid': 53030946, 'average price/sqft': 576.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2064329, 37.7937349]}}, {'id': '832', 'type': 'Feature', 'properties': {'osmid': 53031000, 'average price/sqft': 474.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.208139, 37.7783993]}}, {'id': '833', 'type': 'Feature', 'properties': {'osmid': 53031025, 'average price/sqft': 871.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2544662, 37.8364586]}}, {'id': '834', 'type': 'Feature', 'properties': {'osmid': 53031026, 'average price/sqft': 866.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2551065, 37.8367966]}}, {'id': '835', 'type': 'Feature', 'properties': {'osmid': 53031028, 'average price/sqft': 857.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2558312, 37.8371668]}}, {'id': '836', 'type': 'Feature', 'properties': {'osmid': 53031029, 'average price/sqft': 846.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2572648, 37.8378901]}}, {'id': '837', 'type': 'Feature', 'properties': {'osmid': 53031030, 'average price/sqft': 841.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2580241, 37.8382791]}}, {'id': '838', 'type': 'Feature', 'properties': {'osmid': 53031032, 'average price/sqft': 825.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2587768, 37.8386555]}}, {'id': '839', 'type': 'Feature', 'properties': {'osmid': 53031034, 'average price/sqft': 813.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2595114, 37.8390274]}}, {'id': '840', 'type': 'Feature', 'properties': {'osmid': 53031036, 'average price/sqft': 799.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2604091, 37.8394784]}}, {'id': '841', 'type': 'Feature', 'properties': {'osmid': 53031049, 'average price/sqft': 390.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2048299, 37.771616]}}, {'id': '842', 'type': 'Feature', 'properties': {'osmid': 53031057, 'average price/sqft': 388.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2008006, 37.7700578]}}, {'id': '843', 'type': 'Feature', 'properties': {'osmid': 53031059, 'average price/sqft': 393.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1995036, 37.7700621]}}, {'id': '844', 'type': 'Feature', 'properties': {'osmid': 53031875, 'average price/sqft': 571.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1971165, 37.7847704]}}, {'id': '845', 'type': 'Feature', 'properties': {'osmid': 53031877, 'average price/sqft': 579.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1957284, 37.7838677]}}, {'id': '846', 'type': 'Feature', 'properties': {'osmid': 53031878, 'average price/sqft': 584.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1949761, 37.7833425]}}, {'id': '847', 'type': 'Feature', 'properties': {'osmid': 53031879, 'average price/sqft': 486.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.191975, 37.7810398]}}, {'id': '848', 'type': 'Feature', 'properties': {'osmid': 53031880, 'average price/sqft': 496.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1904806, 37.7798091]}}, {'id': '849', 'type': 'Feature', 'properties': {'osmid': 53031881, 'average price/sqft': 486.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1898557, 37.7792463]}}, {'id': '850', 'type': 'Feature', 'properties': {'osmid': 53031884, 'average price/sqft': 478.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1893329, 37.7787842]}}, {'id': '851', 'type': 'Feature', 'properties': {'osmid': 53031886, 'average price/sqft': 473.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1887989, 37.7783347]}}, {'id': '852', 'type': 'Feature', 'properties': {'osmid': 53031889, 'average price/sqft': 468.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1880312, 37.7778659]}}, {'id': '853', 'type': 'Feature', 'properties': {'osmid': 53031918, 'average price/sqft': 421.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1853605, 37.7754214]}}, {'id': '854', 'type': 'Feature', 'properties': {'osmid': 53031919, 'average price/sqft': 416.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.184719, 37.774833]}}, {'id': '855', 'type': 'Feature', 'properties': {'osmid': 53031921, 'average price/sqft': 412.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1840799, 37.7742562]}}, {'id': '856', 'type': 'Feature', 'properties': {'osmid': 53031923, 'average price/sqft': 408.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1834371, 37.7736678]}}, {'id': '857', 'type': 'Feature', 'properties': {'osmid': 53031925, 'average price/sqft': 410.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1827344, 37.7730324]}}, {'id': '858', 'type': 'Feature', 'properties': {'osmid': 53031927, 'average price/sqft': 409.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1820391, 37.7723948]}}, {'id': '859', 'type': 'Feature', 'properties': {'osmid': 53031929, 'average price/sqft': 414.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1817096, 37.7711155]}}, {'id': '860', 'type': 'Feature', 'properties': {'osmid': 53031948, 'average price/sqft': 795.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2261699, 37.8410712]}}, {'id': '861', 'type': 'Feature', 'properties': {'osmid': 53031950, 'average price/sqft': 789.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2232853, 37.8375308]}}, {'id': '862', 'type': 'Feature', 'properties': {'osmid': 53032002, 'average price/sqft': 619.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2142164, 37.8398236]}}, {'id': '863', 'type': 'Feature', 'properties': {'osmid': 53032004, 'average price/sqft': 614.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2126113, 37.8400066]}}, {'id': '864', 'type': 'Feature', 'properties': {'osmid': 53032007, 'average price/sqft': 557.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2264562, 37.8541404]}}, {'id': '865', 'type': 'Feature', 'properties': {'osmid': 53032009, 'average price/sqft': 552.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2269469, 37.8526186]}}, {'id': '866', 'type': 'Feature', 'properties': {'osmid': 53032027, 'average price/sqft': 797.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2273349, 37.8407656]}}, {'id': '867', 'type': 'Feature', 'properties': {'osmid': 53032028, 'average price/sqft': 797.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.226612, 37.8407293]}}, {'id': '868', 'type': 'Feature', 'properties': {'osmid': 53032034, 'average price/sqft': 806.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.22947, 37.8413602]}}, {'id': '869', 'type': 'Feature', 'properties': {'osmid': 53032037, 'average price/sqft': 799.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2276406, 37.8406146]}}, {'id': '870', 'type': 'Feature', 'properties': {'osmid': 53032041, 'average price/sqft': 296.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2353856, 37.77281]}}, {'id': '871', 'type': 'Feature', 'properties': {'osmid': 53032042, 'average price/sqft': 298.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2339916, 37.7721733]}}, {'id': '872', 'type': 'Feature', 'properties': {'osmid': 53032043, 'average price/sqft': 303.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2306802, 37.7707553]}}, {'id': '873', 'type': 'Feature', 'properties': {'osmid': 53032078, 'average price/sqft': 158.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1571961, 37.7565352]}}, {'id': '874', 'type': 'Feature', 'properties': {'osmid': 53032140, 'average price/sqft': 635.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2009095, 37.8356161]}}, {'id': '875', 'type': 'Feature', 'properties': {'osmid': 53032141, 'average price/sqft': 635.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.198069, 37.8371307]}}, {'id': '876', 'type': 'Feature', 'properties': {'osmid': 53032158, 'average price/sqft': 750.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2314251, 37.8088681]}}, {'id': '877', 'type': 'Feature', 'properties': {'osmid': 53032271, 'average price/sqft': 431.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.203293, 37.7784906]}}, {'id': '878', 'type': 'Feature', 'properties': {'osmid': 53032274, 'average price/sqft': 440.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2012401, 37.779946]}}, {'id': '879', 'type': 'Feature', 'properties': {'osmid': 53032364, 'average price/sqft': 406.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1755796, 37.7668181]}}, {'id': '880', 'type': 'Feature', 'properties': {'osmid': 53032365, 'average price/sqft': 400.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.175021, 37.7662704]}}, {'id': '881', 'type': 'Feature', 'properties': {'osmid': 53032366, 'average price/sqft': 398.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1744731, 37.7657354]}}, {'id': '882', 'type': 'Feature', 'properties': {'osmid': 53032367, 'average price/sqft': 396.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.173935, 37.7652004]}}, {'id': '883', 'type': 'Feature', 'properties': {'osmid': 53032370, 'average price/sqft': 391.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.173395, 37.7646723]}}, {'id': '884', 'type': 'Feature', 'properties': {'osmid': 53032371, 'average price/sqft': 391.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1728512, 37.7641327]}}, {'id': '885', 'type': 'Feature', 'properties': {'osmid': 53032374, 'average price/sqft': 391.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1723073, 37.7635952]}}, {'id': '886', 'type': 'Feature', 'properties': {'osmid': 53032376, 'average price/sqft': 392.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1717642, 37.7630576]}}, {'id': '887', 'type': 'Feature', 'properties': {'osmid': 53032609, 'average price/sqft': 427.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2177332, 37.7879035]}}, {'id': '888', 'type': 'Feature', 'properties': {'osmid': 53032620, 'average price/sqft': 452.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2195137, 37.7832012]}}, {'id': '889', 'type': 'Feature', 'properties': {'osmid': 53032622, 'average price/sqft': 450.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2186671, 37.7826372]}}, {'id': '890', 'type': 'Feature', 'properties': {'osmid': 53032623, 'average price/sqft': 481.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2685952, 37.8134722]}}, {'id': '891', 'type': 'Feature', 'properties': {'osmid': 53032624, 'average price/sqft': 521.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2704933, 37.8137969]}}, {'id': '892', 'type': 'Feature', 'properties': {'osmid': 53032628, 'average price/sqft': 459.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2893821, 37.8192913]}}, {'id': '893', 'type': 'Feature', 'properties': {'osmid': 53032631, 'average price/sqft': 445.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2909676, 37.8196085]}}, {'id': '894', 'type': 'Feature', 'properties': {'osmid': 53032633, 'average price/sqft': 410.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.292247, 37.8202462]}}, {'id': '895', 'type': 'Feature', 'properties': {'osmid': 53032634, 'average price/sqft': 473.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2891138, 37.818233]}}, {'id': '896', 'type': 'Feature', 'properties': {'osmid': 53032639, 'average price/sqft': 541.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2723438, 37.8142793]}}, {'id': '897', 'type': 'Feature', 'properties': {'osmid': 53032641, 'average price/sqft': 498.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2745432, 37.814636]}}, {'id': '898', 'type': 'Feature', 'properties': {'osmid': 53032645, 'average price/sqft': 349.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.262783, 37.8129277]}}, {'id': '899', 'type': 'Feature', 'properties': {'osmid': 53032647, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2638589, 37.813113]}}, {'id': '900', 'type': 'Feature', 'properties': {'osmid': 53032648, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.264919, 37.8132898]}}, {'id': '901', 'type': 'Feature', 'properties': {'osmid': 53032650, 'average price/sqft': 481.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2673192, 37.8136922]}}, {'id': '902', 'type': 'Feature', 'properties': {'osmid': 53032653, 'average price/sqft': 481.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2684889, 37.813891]}}, {'id': '903', 'type': 'Feature', 'properties': {'osmid': 53032659, 'average price/sqft': 499.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2781424, 37.8159437]}}, {'id': '904', 'type': 'Feature', 'properties': {'osmid': 53032661, 'average price/sqft': 499.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2791857, 37.8162213]}}, {'id': '905', 'type': 'Feature', 'properties': {'osmid': 53032662, 'average price/sqft': 504.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2802046, 37.8164608]}}, {'id': '906', 'type': 'Feature', 'properties': {'osmid': 53032664, 'average price/sqft': 500.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2812334, 37.8166867]}}, {'id': '907', 'type': 'Feature', 'properties': {'osmid': 53032666, 'average price/sqft': 496.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2823227, 37.8169342]}}, {'id': '908', 'type': 'Feature', 'properties': {'osmid': 53032668, 'average price/sqft': 491.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2833942, 37.8171798]}}, {'id': '909', 'type': 'Feature', 'properties': {'osmid': 53032670, 'average price/sqft': 486.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2844894, 37.8174287]}}, {'id': '910', 'type': 'Feature', 'properties': {'osmid': 53032671, 'average price/sqft': 482.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2855693, 37.817681]}}, {'id': '911', 'type': 'Feature', 'properties': {'osmid': 53032672, 'average price/sqft': 480.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.286539, 37.8178977]}}, {'id': '912', 'type': 'Feature', 'properties': {'osmid': 53032673, 'average price/sqft': 476.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2874792, 37.8181025]}}, {'id': '913', 'type': 'Feature', 'properties': {'osmid': 53032770, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2575144, 37.7944808]}}, {'id': '914', 'type': 'Feature', 'properties': {'osmid': 53032772, 'average price/sqft': 757.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2565958, 37.7951349]}}, {'id': '915', 'type': 'Feature', 'properties': {'osmid': 53032774, 'average price/sqft': 724.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2556406, 37.7958128]}}, {'id': '916', 'type': 'Feature', 'properties': {'osmid': 53032778, 'average price/sqft': 695.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2537542, 37.797149]}}, {'id': '917', 'type': 'Feature', 'properties': {'osmid': 53032780, 'average price/sqft': 690.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2528373, 37.7978014]}}, {'id': '918', 'type': 'Feature', 'properties': {'osmid': 53032782, 'average price/sqft': 681.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2519124, 37.7984625]}}, {'id': '919', 'type': 'Feature', 'properties': {'osmid': 53032784, 'average price/sqft': 675.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2510264, 37.7991015]}}, {'id': '920', 'type': 'Feature', 'properties': {'osmid': 53032801, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1721135, 37.7351266]}}, {'id': '921', 'type': 'Feature', 'properties': {'osmid': 53032803, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1713404, 37.7339395]}}, {'id': '922', 'type': 'Feature', 'properties': {'osmid': 53032805, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1708601, 37.7332046]}}, {'id': '923', 'type': 'Feature', 'properties': {'osmid': 53032893, 'average price/sqft': 513.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1390601, 37.7731541]}}, {'id': '924', 'type': 'Feature', 'properties': {'osmid': 53032899, 'average price/sqft': 502.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.136519, 37.7703645]}}, {'id': '925', 'type': 'Feature', 'properties': {'osmid': 53033286, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1952136, 37.7441]}}, {'id': '926', 'type': 'Feature', 'properties': {'osmid': 53033294, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.192899, 37.7390276]}}, {'id': '927', 'type': 'Feature', 'properties': {'osmid': 53033301, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1881308, 37.7377412]}}, {'id': '928', 'type': 'Feature', 'properties': {'osmid': 53033304, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1873977, 37.7375369]}}, {'id': '929', 'type': 'Feature', 'properties': {'osmid': 53033305, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1867543, 37.7373724]}}, {'id': '930', 'type': 'Feature', 'properties': {'osmid': 53033307, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1859656, 37.7371642]}}, {'id': '931', 'type': 'Feature', 'properties': {'osmid': 53033309, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1856881, 37.7370921]}}, {'id': '932', 'type': 'Feature', 'properties': {'osmid': 53033310, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.184545, 37.7367901]}}, {'id': '933', 'type': 'Feature', 'properties': {'osmid': 53033314, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1800273, 37.7347509]}}, {'id': '934', 'type': 'Feature', 'properties': {'osmid': 53033318, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1783424, 37.7333011]}}, {'id': '935', 'type': 'Feature', 'properties': {'osmid': 53033320, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1748854, 37.7305339]}}, {'id': '936', 'type': 'Feature', 'properties': {'osmid': 53033401, 'average price/sqft': 453.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1951785, 37.7769344]}}, {'id': '937', 'type': 'Feature', 'properties': {'osmid': 53033403, 'average price/sqft': 434.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1927724, 37.7747798]}}, {'id': '938', 'type': 'Feature', 'properties': {'osmid': 53033430, 'average price/sqft': 604.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1946693, 37.7973342]}}, {'id': '939', 'type': 'Feature', 'properties': {'osmid': 53033432, 'average price/sqft': 622.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1930632, 37.7961542]}}, {'id': '940', 'type': 'Feature', 'properties': {'osmid': 53033434, 'average price/sqft': 630.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1922772, 37.7956074]}}, {'id': '941', 'type': 'Feature', 'properties': {'osmid': 53033436, 'average price/sqft': 630.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1915321, 37.7950778]}}, {'id': '942', 'type': 'Feature', 'properties': {'osmid': 53033440, 'average price/sqft': 675.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1882276, 37.7928233]}}, {'id': '943', 'type': 'Feature', 'properties': {'osmid': 53033442, 'average price/sqft': 675.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1875756, 37.7922523]}}, {'id': '944', 'type': 'Feature', 'properties': {'osmid': 53033444, 'average price/sqft': 666.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1859585, 37.7913789]}}, {'id': '945', 'type': 'Feature', 'properties': {'osmid': 53033446, 'average price/sqft': 659.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1848816, 37.7909214]}}, {'id': '946', 'type': 'Feature', 'properties': {'osmid': 53033451, 'average price/sqft': 400.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1738134, 37.7517796]}}, {'id': '947', 'type': 'Feature', 'properties': {'osmid': 53033455, 'average price/sqft': 389.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1703454, 37.7533806]}}, {'id': '948', 'type': 'Feature', 'properties': {'osmid': 53033457, 'average price/sqft': 367.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1685979, 37.7541897]}}, {'id': '949', 'type': 'Feature', 'properties': {'osmid': 53033459, 'average price/sqft': 333.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1653969, 37.7557066]}}, {'id': '950', 'type': 'Feature', 'properties': {'osmid': 53033460, 'average price/sqft': 329.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.163724, 37.7564707]}}, {'id': '951', 'type': 'Feature', 'properties': {'osmid': 53033461, 'average price/sqft': 337.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1619678, 37.7572439]}}, {'id': '952', 'type': 'Feature', 'properties': {'osmid': 53033465, 'average price/sqft': 461.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1819506, 37.7481536]}}, {'id': '953', 'type': 'Feature', 'properties': {'osmid': 53033466, 'average price/sqft': 458.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1805679, 37.7488108]}}, {'id': '954', 'type': 'Feature', 'properties': {'osmid': 53033467, 'average price/sqft': 459.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1789694, 37.7495644]}}, {'id': '955', 'type': 'Feature', 'properties': {'osmid': 53033468, 'average price/sqft': 464.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1773495, 37.7503179]}}, {'id': '956', 'type': 'Feature', 'properties': {'osmid': 53033469, 'average price/sqft': 470.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1756114, 37.7511348]}}, {'id': '957', 'type': 'Feature', 'properties': {'osmid': 53033813, 'average price/sqft': 650.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2046462, 37.8272081]}}, {'id': '958', 'type': 'Feature', 'properties': {'osmid': 53033816, 'average price/sqft': 649.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.204445, 37.8272282]}}, {'id': '959', 'type': 'Feature', 'properties': {'osmid': 53033841, 'average price/sqft': 410.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1279022, 37.7517948]}}, {'id': '960', 'type': 'Feature', 'properties': {'osmid': 53033843, 'average price/sqft': 396.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1262185, 37.7498874]}}, {'id': '961', 'type': 'Feature', 'properties': {'osmid': 53033896, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2870555, 37.800589]}}, {'id': '962', 'type': 'Feature', 'properties': {'osmid': 53033899, 'average price/sqft': 428.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2775419, 37.8275754]}}, {'id': '963', 'type': 'Feature', 'properties': {'osmid': 53033904, 'average price/sqft': 576.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.284501, 37.8076122]}}, {'id': '964', 'type': 'Feature', 'properties': {'osmid': 53033909, 'average price/sqft': 560.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2834474, 37.8105703]}}, {'id': '965', 'type': 'Feature', 'properties': {'osmid': 53033911, 'average price/sqft': 554.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2829706, 37.811847]}}, {'id': '966', 'type': 'Feature', 'properties': {'osmid': 53033913, 'average price/sqft': 525.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2821916, 37.8140011]}}, {'id': '967', 'type': 'Feature', 'properties': {'osmid': 53033917, 'average price/sqft': 492.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.280676, 37.8182351]}}, {'id': '968', 'type': 'Feature', 'properties': {'osmid': 53033928, 'average price/sqft': 444.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2801146, 37.8197854]}}, {'id': '969', 'type': 'Feature', 'properties': {'osmid': 53033930, 'average price/sqft': 423.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2794802, 37.8215307]}}, {'id': '970', 'type': 'Feature', 'properties': {'osmid': 53033932, 'average price/sqft': 411.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2788456, 37.8232696]}}, {'id': '971', 'type': 'Feature', 'properties': {'osmid': 53033961, 'average price/sqft': 556.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2766552, 37.831083]}}, {'id': '972', 'type': 'Feature', 'properties': {'osmid': 53033963, 'average price/sqft': 615.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2762233, 37.8327889]}}, {'id': '973', 'type': 'Feature', 'properties': {'osmid': 53033968, 'average price/sqft': 629.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2756942, 37.834888]}}, {'id': '974', 'type': 'Feature', 'properties': {'osmid': 53033971, 'average price/sqft': 623.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2753437, 37.8355658]}}, {'id': '975', 'type': 'Feature', 'properties': {'osmid': 53033977, 'average price/sqft': 533.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2862217, 37.8027902]}}, {'id': '976', 'type': 'Feature', 'properties': {'osmid': 53033978, 'average price/sqft': 541.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.286013, 37.8034654]}}, {'id': '977', 'type': 'Feature', 'properties': {'osmid': 53033983, 'average price/sqft': 477.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2765822, 37.8177242]}}, {'id': '978', 'type': 'Feature', 'properties': {'osmid': 53033984, 'average price/sqft': 463.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2771578, 37.8186757]}}, {'id': '979', 'type': 'Feature', 'properties': {'osmid': 53034046, 'average price/sqft': 562.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2089061, 37.8416564]}}, {'id': '980', 'type': 'Feature', 'properties': {'osmid': 53034048, 'average price/sqft': 433.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2086099, 37.846479]}}, {'id': '981', 'type': 'Feature', 'properties': {'osmid': 53034053, 'average price/sqft': 414.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2103258, 37.8481638]}}, {'id': '982', 'type': 'Feature', 'properties': {'osmid': 53034171, 'average price/sqft': 695.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2001455, 37.8265945]}}, {'id': '983', 'type': 'Feature', 'properties': {'osmid': 53034173, 'average price/sqft': 672.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1993863, 37.8273558]}}, {'id': '984', 'type': 'Feature', 'properties': {'osmid': 53034176, 'average price/sqft': 653.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1973275, 37.8274136]}}, {'id': '985', 'type': 'Feature', 'properties': {'osmid': 53034227, 'average price/sqft': 460.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2058776, 37.7807893]}}, {'id': '986', 'type': 'Feature', 'properties': {'osmid': 53034229, 'average price/sqft': 455.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2050798, 37.7800823]}}, {'id': '987', 'type': 'Feature', 'properties': {'osmid': 53034230, 'average price/sqft': 446.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2044968, 37.7795563]}}, {'id': '988', 'type': 'Feature', 'properties': {'osmid': 53034234, 'average price/sqft': 424.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2025828, 37.7778487]}}, {'id': '989', 'type': 'Feature', 'properties': {'osmid': 53034235, 'average price/sqft': 426.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2022445, 37.7775453]}}, {'id': '990', 'type': 'Feature', 'properties': {'osmid': 53034236, 'average price/sqft': 431.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2015708, 37.7769461]}}, {'id': '991', 'type': 'Feature', 'properties': {'osmid': 53034243, 'average price/sqft': 397.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2007934, 37.7726274]}}, {'id': '992', 'type': 'Feature', 'properties': {'osmid': 53034245, 'average price/sqft': 389.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2007944, 37.7709218]}}, {'id': '993', 'type': 'Feature', 'properties': {'osmid': 53034247, 'average price/sqft': 389.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2008072, 37.7691419]}}, {'id': '994', 'type': 'Feature', 'properties': {'osmid': 53034305, 'average price/sqft': 733.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2102826, 37.8304111]}}, {'id': '995', 'type': 'Feature', 'properties': {'osmid': 53034311, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1816133, 37.7273382]}}, {'id': '996', 'type': 'Feature', 'properties': {'osmid': 53034312, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1810857, 37.7271252]}}, {'id': '997', 'type': 'Feature', 'properties': {'osmid': 53034349, 'average price/sqft': 661.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2477392, 37.8006888]}}, {'id': '998', 'type': 'Feature', 'properties': {'osmid': 53034353, 'average price/sqft': 657.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2457191, 37.7988885]}}, {'id': '999', 'type': 'Feature', 'properties': {'osmid': 53034355, 'average price/sqft': 659.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.244887, 37.7981534]}}, {'id': '1000', 'type': 'Feature', 'properties': {'osmid': 53034357, 'average price/sqft': 655.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2440602, 37.7974215]}}, {'id': '1001', 'type': 'Feature', 'properties': {'osmid': 53034358, 'average price/sqft': 635.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2432296, 37.7966889]}}, {'id': '1002', 'type': 'Feature', 'properties': {'osmid': 53034360, 'average price/sqft': 606.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2424014, 37.795955]}}, {'id': '1003', 'type': 'Feature', 'properties': {'osmid': 53034362, 'average price/sqft': 557.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2415711, 37.7952229]}}, {'id': '1004', 'type': 'Feature', 'properties': {'osmid': 53034364, 'average price/sqft': 501.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.240742, 37.7944856]}}, {'id': '1005', 'type': 'Feature', 'properties': {'osmid': 53034366, 'average price/sqft': 469.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.240028, 37.7937845]}}, {'id': '1006', 'type': 'Feature', 'properties': {'osmid': 53034370, 'average price/sqft': 457.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2394242, 37.7933788]}}, {'id': '1007', 'type': 'Feature', 'properties': {'osmid': 53034372, 'average price/sqft': 449.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2383528, 37.7927386]}}, {'id': '1008', 'type': 'Feature', 'properties': {'osmid': 53034374, 'average price/sqft': 438.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2373367, 37.792128]}}, {'id': '1009', 'type': 'Feature', 'properties': {'osmid': 53034376, 'average price/sqft': 444.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2362459, 37.7914785]}}, {'id': '1010', 'type': 'Feature', 'properties': {'osmid': 53034378, 'average price/sqft': 429.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2352348, 37.7908694]}}, {'id': '1011', 'type': 'Feature', 'properties': {'osmid': 53034379, 'average price/sqft': 429.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2341533, 37.7902211]}}, {'id': '1012', 'type': 'Feature', 'properties': {'osmid': 53034380, 'average price/sqft': 430.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2331334, 37.7896101]}}, {'id': '1013', 'type': 'Feature', 'properties': {'osmid': 53034383, 'average price/sqft': 436.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.231676, 37.7886989]}}, {'id': '1014', 'type': 'Feature', 'properties': {'osmid': 53034385, 'average price/sqft': 431.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2296404, 37.7874378]}}, {'id': '1015', 'type': 'Feature', 'properties': {'osmid': 53034387, 'average price/sqft': 422.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2281952, 37.7866004]}}, {'id': '1016', 'type': 'Feature', 'properties': {'osmid': 53034389, 'average price/sqft': 412.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.226764, 37.7857373]}}, {'id': '1017', 'type': 'Feature', 'properties': {'osmid': 53034390, 'average price/sqft': 409.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2260473, 37.7853148]}}, {'id': '1018', 'type': 'Feature', 'properties': {'osmid': 53034493, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1865069, 37.7403428]}}, {'id': '1019', 'type': 'Feature', 'properties': {'osmid': 53034494, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1861636, 37.7400374]}}, {'id': '1020', 'type': 'Feature', 'properties': {'osmid': 53034496, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1854643, 37.7394275]}}, {'id': '1021', 'type': 'Feature', 'properties': {'osmid': 53034498, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1847771, 37.7388188]}}, {'id': '1022', 'type': 'Feature', 'properties': {'osmid': 53034500, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1841074, 37.7382303]}}, {'id': '1023', 'type': 'Feature', 'properties': {'osmid': 53034502, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.183421, 37.7376246]}}, {'id': '1024', 'type': 'Feature', 'properties': {'osmid': 53034707, 'average price/sqft': 575.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1918159, 37.798958]}}, {'id': '1025', 'type': 'Feature', 'properties': {'osmid': 53034709, 'average price/sqft': 573.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1914886, 37.7990331]}}, {'id': '1026', 'type': 'Feature', 'properties': {'osmid': 53034712, 'average price/sqft': 561.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1899421, 37.7990054]}}, {'id': '1027', 'type': 'Feature', 'properties': {'osmid': 53034713, 'average price/sqft': 559.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1891106, 37.7989779]}}, {'id': '1028', 'type': 'Feature', 'properties': {'osmid': 53034714, 'average price/sqft': 560.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1887046, 37.798962]}}, {'id': '1029', 'type': 'Feature', 'properties': {'osmid': 53034715, 'average price/sqft': 561.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1882458, 37.7989526]}}, {'id': '1030', 'type': 'Feature', 'properties': {'osmid': 53034717, 'average price/sqft': 562.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1878472, 37.7989362]}}, {'id': '1031', 'type': 'Feature', 'properties': {'osmid': 53034724, 'average price/sqft': 600.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1826832, 37.7966237]}}, {'id': '1032', 'type': 'Feature', 'properties': {'osmid': 53034726, 'average price/sqft': 569.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1807255, 37.7961665]}}, {'id': '1033', 'type': 'Feature', 'properties': {'osmid': 53034735, 'average price/sqft': 460.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.174865, 37.7969551]}}, {'id': '1034', 'type': 'Feature', 'properties': {'osmid': 53034737, 'average price/sqft': 456.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1735132, 37.7972398]}}, {'id': '1035', 'type': 'Feature', 'properties': {'osmid': 53034748, 'average price/sqft': 541.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1708548, 37.7991443]}}, {'id': '1036', 'type': 'Feature', 'properties': {'osmid': 53034750, 'average price/sqft': 536.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1708548, 37.7995918]}}, {'id': '1037', 'type': 'Feature', 'properties': {'osmid': 53035051, 'average price/sqft': 493.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2133939, 37.7699467]}}, {'id': '1038', 'type': 'Feature', 'properties': {'osmid': 53035058, 'average price/sqft': 447.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2101197, 37.772922]}}, {'id': '1039', 'type': 'Feature', 'properties': {'osmid': 53035059, 'average price/sqft': 447.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2095806, 37.7736249]}}, {'id': '1040', 'type': 'Feature', 'properties': {'osmid': 53035072, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2167018, 37.7668695]}}, {'id': '1041', 'type': 'Feature', 'properties': {'osmid': 53035076, 'average price/sqft': 455.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2082009, 37.7754859]}}, {'id': '1042', 'type': 'Feature', 'properties': {'osmid': 53035268, 'average price/sqft': 455.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2067853, 37.814441]}}, {'id': '1043', 'type': 'Feature', 'properties': {'osmid': 53035269, 'average price/sqft': 462.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.206516, 37.8151226]}}, {'id': '1044', 'type': 'Feature', 'properties': {'osmid': 53035271, 'average price/sqft': 454.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.205001, 37.8151979]}}, {'id': '1045', 'type': 'Feature', 'properties': {'osmid': 53035437, 'average price/sqft': 452.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2086996, 37.7871827]}}, {'id': '1046', 'type': 'Feature', 'properties': {'osmid': 53035439, 'average price/sqft': 465.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2074885, 37.7879204]}}, {'id': '1047', 'type': 'Feature', 'properties': {'osmid': 53035442, 'average price/sqft': 465.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2072783, 37.7877165]}}, {'id': '1048', 'type': 'Feature', 'properties': {'osmid': 53035443, 'average price/sqft': 502.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2054441, 37.7887973]}}, {'id': '1049', 'type': 'Feature', 'properties': {'osmid': 53035452, 'average price/sqft': 433.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2124981, 37.7888715]}}, {'id': '1050', 'type': 'Feature', 'properties': {'osmid': 53035454, 'average price/sqft': 436.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2118564, 37.7881888]}}, {'id': '1051', 'type': 'Feature', 'properties': {'osmid': 53035456, 'average price/sqft': 444.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2112319, 37.787502]}}, {'id': '1052', 'type': 'Feature', 'properties': {'osmid': 53035460, 'average price/sqft': 448.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.21569, 37.7906091]}}, {'id': '1053', 'type': 'Feature', 'properties': {'osmid': 53035642, 'average price/sqft': 668.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2492918, 37.8001888]}}, {'id': '1054', 'type': 'Feature', 'properties': {'osmid': 53035644, 'average price/sqft': 667.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2489519, 37.8003016]}}, {'id': '1055', 'type': 'Feature', 'properties': {'osmid': 53035646, 'average price/sqft': 663.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2483917, 37.8004148]}}, {'id': '1056', 'type': 'Feature', 'properties': {'osmid': 53035648, 'average price/sqft': 657.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2470706, 37.8011355]}}, {'id': '1057', 'type': 'Feature', 'properties': {'osmid': 53035650, 'average price/sqft': 657.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2467443, 37.8012706]}}, {'id': '1058', 'type': 'Feature', 'properties': {'osmid': 53035651, 'average price/sqft': 656.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2453602, 37.8016402]}}, {'id': '1059', 'type': 'Feature', 'properties': {'osmid': 53035652, 'average price/sqft': 660.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2439637, 37.8018246]}}, {'id': '1060', 'type': 'Feature', 'properties': {'osmid': 53035654, 'average price/sqft': 658.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2420898, 37.8023255]}}, {'id': '1061', 'type': 'Feature', 'properties': {'osmid': 53035656, 'average price/sqft': 659.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2416452, 37.8023681]}}, {'id': '1062', 'type': 'Feature', 'properties': {'osmid': 53035657, 'average price/sqft': 671.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2398795, 37.8025755]}}, {'id': '1063', 'type': 'Feature', 'properties': {'osmid': 53035660, 'average price/sqft': 682.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2388066, 37.8027761]}}, {'id': '1064', 'type': 'Feature', 'properties': {'osmid': 53035661, 'average price/sqft': 693.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2372406, 37.8030886]}}, {'id': '1065', 'type': 'Feature', 'properties': {'osmid': 53035662, 'average price/sqft': 704.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2352882, 37.8032988]}}, {'id': '1066', 'type': 'Feature', 'properties': {'osmid': 53035663, 'average price/sqft': 706.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2346036, 37.8033954]}}, {'id': '1067', 'type': 'Feature', 'properties': {'osmid': 53035667, 'average price/sqft': 731.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.233084, 37.8045217]}}, {'id': '1068', 'type': 'Feature', 'properties': {'osmid': 53035669, 'average price/sqft': 743.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2323577, 37.8050055]}}, {'id': '1069', 'type': 'Feature', 'properties': {'osmid': 53035671, 'average price/sqft': 748.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2313679, 37.8048221]}}, {'id': '1070', 'type': 'Feature', 'properties': {'osmid': 53035673, 'average price/sqft': 757.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2300949, 37.8045734]}}, {'id': '1071', 'type': 'Feature', 'properties': {'osmid': 53035677, 'average price/sqft': 801.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2259949, 37.8057445]}}, {'id': '1072', 'type': 'Feature', 'properties': {'osmid': 53035679, 'average price/sqft': 805.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2256492, 37.8059056]}}, {'id': '1073', 'type': 'Feature', 'properties': {'osmid': 53035681, 'average price/sqft': 811.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2248102, 37.8062974]}}, {'id': '1074', 'type': 'Feature', 'properties': {'osmid': 53035683, 'average price/sqft': 827.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2224068, 37.807415]}}, {'id': '1075', 'type': 'Feature', 'properties': {'osmid': 53035684, 'average price/sqft': 831.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2217412, 37.8077306]}}, {'id': '1076', 'type': 'Feature', 'properties': {'osmid': 53035686, 'average price/sqft': 832.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.219045, 37.8087899]}}, {'id': '1077', 'type': 'Feature', 'properties': {'osmid': 53035688, 'average price/sqft': 823.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2181729, 37.8091399]}}, {'id': '1078', 'type': 'Feature', 'properties': {'osmid': 53035690, 'average price/sqft': 819.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2170504, 37.8102334]}}, {'id': '1079', 'type': 'Feature', 'properties': {'osmid': 53035692, 'average price/sqft': 810.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2157609, 37.811232]}}, {'id': '1080', 'type': 'Feature', 'properties': {'osmid': 53035695, 'average price/sqft': 808.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2155658, 37.8115133]}}, {'id': '1081', 'type': 'Feature', 'properties': {'osmid': 53035701, 'average price/sqft': 832.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2138211, 37.8137293]}}, {'id': '1082', 'type': 'Feature', 'properties': {'osmid': 53035707, 'average price/sqft': 948.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2084574, 37.8199471]}}, {'id': '1083', 'type': 'Feature', 'properties': {'osmid': 53035725, 'average price/sqft': 279.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2990748, 37.8049515]}}, {'id': '1084', 'type': 'Feature', 'properties': {'osmid': 53035727, 'average price/sqft': 285.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2981685, 37.8060889]}}, {'id': '1085', 'type': 'Feature', 'properties': {'osmid': 53035729, 'average price/sqft': 294.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2974303, 37.8070182]}}, {'id': '1086', 'type': 'Feature', 'properties': {'osmid': 53035733, 'average price/sqft': 281.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2957043, 37.8091776]}}, {'id': '1087', 'type': 'Feature', 'properties': {'osmid': 53035734, 'average price/sqft': 294.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2950413, 37.8100107]}}, {'id': '1088', 'type': 'Feature', 'properties': {'osmid': 53035735, 'average price/sqft': 305.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2944885, 37.810707]}}, {'id': '1089', 'type': 'Feature', 'properties': {'osmid': 53035739, 'average price/sqft': 323.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2939563, 37.811373]}}, {'id': '1090', 'type': 'Feature', 'properties': {'osmid': 53035745, 'average price/sqft': 343.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2934467, 37.8120128]}}, {'id': '1091', 'type': 'Feature', 'properties': {'osmid': 53035747, 'average price/sqft': 374.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2928807, 37.8127218]}}, {'id': '1092', 'type': 'Feature', 'properties': {'osmid': 53035749, 'average price/sqft': 406.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2923457, 37.8133956]}}, {'id': '1093', 'type': 'Feature', 'properties': {'osmid': 53035750, 'average price/sqft': 441.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2918008, 37.8140737]}}, {'id': '1094', 'type': 'Feature', 'properties': {'osmid': 53035751, 'average price/sqft': 491.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2907117, 37.8154316]}}, {'id': '1095', 'type': 'Feature', 'properties': {'osmid': 53035754, 'average price/sqft': 508.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2896383, 37.8168096]}}, {'id': '1096', 'type': 'Feature', 'properties': {'osmid': 53035755, 'average price/sqft': 487.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2890936, 37.817483]}}, {'id': '1097', 'type': 'Feature', 'properties': {'osmid': 53035756, 'average price/sqft': 455.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.287271, 37.8197466]}}, {'id': '1098', 'type': 'Feature', 'properties': {'osmid': 53035761, 'average price/sqft': 446.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2861465, 37.8211602]}}, {'id': '1099', 'type': 'Feature', 'properties': {'osmid': 53035763, 'average price/sqft': 436.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2852708, 37.8222531]}}, {'id': '1100', 'type': 'Feature', 'properties': {'osmid': 53035765, 'average price/sqft': 428.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2848689, 37.8227552]}}, {'id': '1101', 'type': 'Feature', 'properties': {'osmid': 53035767, 'average price/sqft': 413.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2838345, 37.8240451]}}, {'id': '1102', 'type': 'Feature', 'properties': {'osmid': 53035770, 'average price/sqft': 411.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2836004, 37.8243457]}}, {'id': '1103', 'type': 'Feature', 'properties': {'osmid': 53035773, 'average price/sqft': 409.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2828349, 37.8253053]}}, {'id': '1104', 'type': 'Feature', 'properties': {'osmid': 53035775, 'average price/sqft': 409.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2823185, 37.8259468]}}, {'id': '1105', 'type': 'Feature', 'properties': {'osmid': 53035778, 'average price/sqft': 407.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2819791, 37.8263688]}}, {'id': '1106', 'type': 'Feature', 'properties': {'osmid': 53035780, 'average price/sqft': 403.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2810523, 37.8275305]}}, {'id': '1107', 'type': 'Feature', 'properties': {'osmid': 53035827, 'average price/sqft': 645.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.132997, 37.7605424]}}, {'id': '1108', 'type': 'Feature', 'properties': {'osmid': 53035828, 'average price/sqft': 645.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1321297, 37.7602845]}}, {'id': '1109', 'type': 'Feature', 'properties': {'osmid': 53036005, 'average price/sqft': 550.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1624103, 37.7697904]}}, {'id': '1110', 'type': 'Feature', 'properties': {'osmid': 53036007, 'average price/sqft': 561.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1616285, 37.7701897]}}, {'id': '1111', 'type': 'Feature', 'properties': {'osmid': 53036009, 'average price/sqft': 540.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1622785, 37.7692685]}}, {'id': '1112', 'type': 'Feature', 'properties': {'osmid': 53036013, 'average price/sqft': 448.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2060564, 37.8135004]}}, {'id': '1113', 'type': 'Feature', 'properties': {'osmid': 53036327, 'average price/sqft': 480.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2033579, 37.7633799]}}, {'id': '1114', 'type': 'Feature', 'properties': {'osmid': 53036328, 'average price/sqft': 464.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.202764, 37.7628513]}}, {'id': '1115', 'type': 'Feature', 'properties': {'osmid': 53036329, 'average price/sqft': 483.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2021731, 37.7623307]}}, {'id': '1116', 'type': 'Feature', 'properties': {'osmid': 53036330, 'average price/sqft': 500.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2016191, 37.7618159]}}, {'id': '1117', 'type': 'Feature', 'properties': {'osmid': 53036331, 'average price/sqft': 490.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2010337, 37.7612999]}}, {'id': '1118', 'type': 'Feature', 'properties': {'osmid': 53036334, 'average price/sqft': 504.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2006024, 37.7609057]}}, {'id': '1119', 'type': 'Feature', 'properties': {'osmid': 53036591, 'average price/sqft': 306.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.229721, 37.7695535]}}, {'id': '1120', 'type': 'Feature', 'properties': {'osmid': 53036594, 'average price/sqft': 332.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2213983, 37.7681548]}}, {'id': '1121', 'type': 'Feature', 'properties': {'osmid': 53036770, 'average price/sqft': 678.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2248729, 37.8458878]}}, {'id': '1122', 'type': 'Feature', 'properties': {'osmid': 53036771, 'average price/sqft': 677.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2253023, 37.8463627]}}, {'id': '1123', 'type': 'Feature', 'properties': {'osmid': 53036775, 'average price/sqft': 694.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2255097, 37.8446475]}}, {'id': '1124', 'type': 'Feature', 'properties': {'osmid': 53037015, 'average price/sqft': 447.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.205858, 37.8138045]}}, {'id': '1125', 'type': 'Feature', 'properties': {'osmid': 53037017, 'average price/sqft': 446.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2060035, 37.8143149]}}, {'id': '1126', 'type': 'Feature', 'properties': {'osmid': 53037210, 'average price/sqft': 520.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2133903, 37.8472837]}}, {'id': '1127', 'type': 'Feature', 'properties': {'osmid': 53037510, 'average price/sqft': 568.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2790873, 37.8082774]}}, {'id': '1128', 'type': 'Feature', 'properties': {'osmid': 53037512, 'average price/sqft': 570.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2782251, 37.8079414]}}, {'id': '1129', 'type': 'Feature', 'properties': {'osmid': 53037517, 'average price/sqft': 405.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2914403, 37.8115857]}}, {'id': '1130', 'type': 'Feature', 'properties': {'osmid': 53037519, 'average price/sqft': 362.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2926178, 37.811857]}}, {'id': '1131', 'type': 'Feature', 'properties': {'osmid': 53037522, 'average price/sqft': 579.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2767294, 37.8073511]}}, {'id': '1132', 'type': 'Feature', 'properties': {'osmid': 53037523, 'average price/sqft': 591.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2755492, 37.8068904]}}, {'id': '1133', 'type': 'Feature', 'properties': {'osmid': 53037525, 'average price/sqft': 604.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2743651, 37.8064221]}}, {'id': '1134', 'type': 'Feature', 'properties': {'osmid': 53037531, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2681901, 37.8043627]}}, {'id': '1135', 'type': 'Feature', 'properties': {'osmid': 53037532, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2670096, 37.8039007]}}, {'id': '1136', 'type': 'Feature', 'properties': {'osmid': 53037537, 'average price/sqft': 314.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2947168, 37.812659]}}, {'id': '1137', 'type': 'Feature', 'properties': {'osmid': 53037538, 'average price/sqft': 289.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.29601, 37.8133038]}}, {'id': '1138', 'type': 'Feature', 'properties': {'osmid': 53037540, 'average price/sqft': 283.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2972842, 37.8139485]}}, {'id': '1139', 'type': 'Feature', 'properties': {'osmid': 53037580, 'average price/sqft': 817.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2549777, 37.8301977]}}, {'id': '1140', 'type': 'Feature', 'properties': {'osmid': 53037581, 'average price/sqft': 817.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2562528, 37.8305375]}}, {'id': '1141', 'type': 'Feature', 'properties': {'osmid': 53037585, 'average price/sqft': 659.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2458481, 37.8005038]}}, {'id': '1142', 'type': 'Feature', 'properties': {'osmid': 53037586, 'average price/sqft': 655.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2447965, 37.7995472]}}, {'id': '1143', 'type': 'Feature', 'properties': {'osmid': 53037589, 'average price/sqft': 652.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2439634, 37.7988107]}}, {'id': '1144', 'type': 'Feature', 'properties': {'osmid': 53037591, 'average price/sqft': 647.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2431353, 37.7980785]}}, {'id': '1145', 'type': 'Feature', 'properties': {'osmid': 53037593, 'average price/sqft': 640.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2423038, 37.7973431]}}, {'id': '1146', 'type': 'Feature', 'properties': {'osmid': 53037596, 'average price/sqft': 618.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2414836, 37.7966183]}}, {'id': '1147', 'type': 'Feature', 'properties': {'osmid': 53037599, 'average price/sqft': 582.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.240643, 37.7958743]}}, {'id': '1148', 'type': 'Feature', 'properties': {'osmid': 53037600, 'average price/sqft': 536.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2398094, 37.7951466]}}, {'id': '1149', 'type': 'Feature', 'properties': {'osmid': 53037601, 'average price/sqft': 494.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2390464, 37.7944654]}}, {'id': '1150', 'type': 'Feature', 'properties': {'osmid': 53037604, 'average price/sqft': 491.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.238631, 37.7941376]}}, {'id': '1151', 'type': 'Feature', 'properties': {'osmid': 53037607, 'average price/sqft': 464.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2382111, 37.793889]}}, {'id': '1152', 'type': 'Feature', 'properties': {'osmid': 53037608, 'average price/sqft': 469.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2375775, 37.7935141]}}, {'id': '1153', 'type': 'Feature', 'properties': {'osmid': 53037610, 'average price/sqft': 461.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2354576, 37.7922543]}}, {'id': '1154', 'type': 'Feature', 'properties': {'osmid': 53037612, 'average price/sqft': 437.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2333712, 37.7910012]}}, {'id': '1155', 'type': 'Feature', 'properties': {'osmid': 53037617, 'average price/sqft': 413.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2215933, 37.7842711]}}, {'id': '1156', 'type': 'Feature', 'properties': {'osmid': 53037619, 'average price/sqft': 422.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2208064, 37.7839025]}}, {'id': '1157', 'type': 'Feature', 'properties': {'osmid': 53037624, 'average price/sqft': 433.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2288905, 37.7882336]}}, {'id': '1158', 'type': 'Feature', 'properties': {'osmid': 53037626, 'average price/sqft': 425.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2274576, 37.7873894]}}, {'id': '1159', 'type': 'Feature', 'properties': {'osmid': 53037628, 'average price/sqft': 417.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.22601, 37.7865404]}}, {'id': '1160', 'type': 'Feature', 'properties': {'osmid': 53037629, 'average price/sqft': 412.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2252905, 37.7861098]}}, {'id': '1161', 'type': 'Feature', 'properties': {'osmid': 53037633, 'average price/sqft': 411.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2240246, 37.7855421]}}, {'id': '1162', 'type': 'Feature', 'properties': {'osmid': 53037634, 'average price/sqft': 410.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2231838, 37.7852506]}}, {'id': '1163', 'type': 'Feature', 'properties': {'osmid': 53037637, 'average price/sqft': 410.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.222283, 37.7849561]}}, {'id': '1164', 'type': 'Feature', 'properties': {'osmid': 53037660, 'average price/sqft': 281.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.3032957, 37.8087075]}}, {'id': '1165', 'type': 'Feature', 'properties': {'osmid': 53037672, 'average price/sqft': 608.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1949337, 37.809223]}}, {'id': '1166', 'type': 'Feature', 'properties': {'osmid': 53037673, 'average price/sqft': 582.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1941028, 37.8091134]}}, {'id': '1167', 'type': 'Feature', 'properties': {'osmid': 53037681, 'average price/sqft': 407.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1806739, 37.774596]}}, {'id': '1168', 'type': 'Feature', 'properties': {'osmid': 53037683, 'average price/sqft': 409.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1906109, 37.7672965]}}, {'id': '1169', 'type': 'Feature', 'properties': {'osmid': 53037684, 'average price/sqft': 409.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1896147, 37.7679849]}}, {'id': '1170', 'type': 'Feature', 'properties': {'osmid': 53037687, 'average price/sqft': 411.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1881939, 37.7689786]}}, {'id': '1171', 'type': 'Feature', 'properties': {'osmid': 53037689, 'average price/sqft': 412.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1854725, 37.7709045]}}, {'id': '1172', 'type': 'Feature', 'properties': {'osmid': 53037940, 'average price/sqft': 611.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2313802, 37.7992718]}}, {'id': '1173', 'type': 'Feature', 'properties': {'osmid': 53037941, 'average price/sqft': 634.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2311672, 37.8000021]}}, {'id': '1174', 'type': 'Feature', 'properties': {'osmid': 53037943, 'average price/sqft': 659.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2309535, 37.8007352]}}, {'id': '1175', 'type': 'Feature', 'properties': {'osmid': 53037945, 'average price/sqft': 675.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.230695, 37.8016215]}}, {'id': '1176', 'type': 'Feature', 'properties': {'osmid': 53038016, 'average price/sqft': 469.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1902838, 37.8085141]}}, {'id': '1177', 'type': 'Feature', 'properties': {'osmid': 53038017, 'average price/sqft': 475.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1897936, 37.8087092]}}, {'id': '1178', 'type': 'Feature', 'properties': {'osmid': 53038057, 'average price/sqft': 876.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2465567, 37.8294811]}}, {'id': '1179', 'type': 'Feature', 'properties': {'osmid': 53038058, 'average price/sqft': 882.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2462013, 37.8297412]}}, {'id': '1180', 'type': 'Feature', 'properties': {'osmid': 53038219, 'average price/sqft': 671.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2477349, 37.8090581]}}, {'id': '1181', 'type': 'Feature', 'properties': {'osmid': 53038220, 'average price/sqft': 671.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2471855, 37.8083389]}}, {'id': '1182', 'type': 'Feature', 'properties': {'osmid': 53038295, 'average price/sqft': 754.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2383804, 37.8446384]}}, {'id': '1183', 'type': 'Feature', 'properties': {'osmid': 53038297, 'average price/sqft': 807.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2387414, 37.8458987]}}, {'id': '1184', 'type': 'Feature', 'properties': {'osmid': 53038375, 'average price/sqft': 698.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2396745, 37.8162703]}}, {'id': '1185', 'type': 'Feature', 'properties': {'osmid': 53038377, 'average price/sqft': 706.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2382868, 37.8149174]}}, {'id': '1186', 'type': 'Feature', 'properties': {'osmid': 53038379, 'average price/sqft': 710.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2380896, 37.8150965]}}, {'id': '1187', 'type': 'Feature', 'properties': {'osmid': 53038382, 'average price/sqft': 720.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2371166, 37.8146774]}}, {'id': '1188', 'type': 'Feature', 'properties': {'osmid': 53038383, 'average price/sqft': 742.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2330163, 37.8145658]}}, {'id': '1189', 'type': 'Feature', 'properties': {'osmid': 53038385, 'average price/sqft': 739.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2320201, 37.8143319]}}, {'id': '1190', 'type': 'Feature', 'properties': {'osmid': 53038387, 'average price/sqft': 739.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2315548, 37.8141688]}}, {'id': '1191', 'type': 'Feature', 'properties': {'osmid': 53038391, 'average price/sqft': 737.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2311983, 37.8143148]}}, {'id': '1192', 'type': 'Feature', 'properties': {'osmid': 53038393, 'average price/sqft': 736.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2309585, 37.8143888]}}, {'id': '1193', 'type': 'Feature', 'properties': {'osmid': 53038412, 'average price/sqft': 587.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2013644, 37.8310071]}}, {'id': '1194', 'type': 'Feature', 'properties': {'osmid': 53038427, 'average price/sqft': 236.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.247752, 37.7884541]}}, {'id': '1195', 'type': 'Feature', 'properties': {'osmid': 53038428, 'average price/sqft': 236.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2481719, 37.7892065]}}, {'id': '1196', 'type': 'Feature', 'properties': {'osmid': 53038433, 'average price/sqft': 289.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2462874, 37.7905404]}}, {'id': '1197', 'type': 'Feature', 'properties': {'osmid': 53038435, 'average price/sqft': 339.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2453376, 37.7912099]}}, {'id': '1198', 'type': 'Feature', 'properties': {'osmid': 53038437, 'average price/sqft': 378.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2444292, 37.7918517]}}, {'id': '1199', 'type': 'Feature', 'properties': {'osmid': 53038439, 'average price/sqft': 418.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2435142, 37.7925047]}}, {'id': '1200', 'type': 'Feature', 'properties': {'osmid': 53038441, 'average price/sqft': 471.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2416649, 37.7938335]}}, {'id': '1201', 'type': 'Feature', 'properties': {'osmid': 53038443, 'average price/sqft': 549.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2388858, 37.7958069]}}, {'id': '1202', 'type': 'Feature', 'properties': {'osmid': 53038444, 'average price/sqft': 559.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.237969, 37.7964684]}}, {'id': '1203', 'type': 'Feature', 'properties': {'osmid': 53038446, 'average price/sqft': 582.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2371224, 37.7970699]}}, {'id': '1204', 'type': 'Feature', 'properties': {'osmid': 53038448, 'average price/sqft': 598.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2366424, 37.797628]}}, {'id': '1205', 'type': 'Feature', 'properties': {'osmid': 53038450, 'average price/sqft': 612.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2360134, 37.7984216]}}, {'id': '1206', 'type': 'Feature', 'properties': {'osmid': 53038452, 'average price/sqft': 628.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2355654, 37.7989907]}}, {'id': '1207', 'type': 'Feature', 'properties': {'osmid': 53038454, 'average price/sqft': 632.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2353887, 37.7992136]}}, {'id': '1208', 'type': 'Feature', 'properties': {'osmid': 53038455, 'average price/sqft': 644.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2347354, 37.7998065]}}, {'id': '1209', 'type': 'Feature', 'properties': {'osmid': 53038457, 'average price/sqft': 644.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2346067, 37.7999028]}}, {'id': '1210', 'type': 'Feature', 'properties': {'osmid': 53038459, 'average price/sqft': 665.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2337817, 37.8005291]}}, {'id': '1211', 'type': 'Feature', 'properties': {'osmid': 53038461, 'average price/sqft': 683.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2330474, 37.8011118]}}, {'id': '1212', 'type': 'Feature', 'properties': {'osmid': 53038463, 'average price/sqft': 693.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2322833, 37.8017167]}}, {'id': '1213', 'type': 'Feature', 'properties': {'osmid': 53038465, 'average price/sqft': 703.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2315972, 37.8022604]}}, {'id': '1214', 'type': 'Feature', 'properties': {'osmid': 53038468, 'average price/sqft': 725.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2307894, 37.8028887]}}, {'id': '1215', 'type': 'Feature', 'properties': {'osmid': 53038469, 'average price/sqft': 739.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.230253, 37.8033169]}}, {'id': '1216', 'type': 'Feature', 'properties': {'osmid': 53038678, 'average price/sqft': 499.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1727594, 37.8003734]}}, {'id': '1217', 'type': 'Feature', 'properties': {'osmid': 53038679, 'average price/sqft': 491.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1725963, 37.8005701]}}, {'id': '1218', 'type': 'Feature', 'properties': {'osmid': 53038702, 'average price/sqft': 467.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1912478, 37.7782478]}}, {'id': '1219', 'type': 'Feature', 'properties': {'osmid': 53038704, 'average price/sqft': 449.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1897055, 37.7768698]}}, {'id': '1220', 'type': 'Feature', 'properties': {'osmid': 53038708, 'average price/sqft': 597.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2131435, 37.8404878]}}, {'id': '1221', 'type': 'Feature', 'properties': {'osmid': 53038764, 'average price/sqft': 703.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2399046, 37.80988]}}, {'id': '1222', 'type': 'Feature', 'properties': {'osmid': 53038766, 'average price/sqft': 714.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2372529, 37.8086143]}}, {'id': '1223', 'type': 'Feature', 'properties': {'osmid': 53038767, 'average price/sqft': 714.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2350127, 37.8088449]}}, {'id': '1224', 'type': 'Feature', 'properties': {'osmid': 53038769, 'average price/sqft': 747.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2326781, 37.8091568]}}, {'id': '1225', 'type': 'Feature', 'properties': {'osmid': 53038836, 'average price/sqft': 685.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2109858, 37.8067187]}}, {'id': '1226', 'type': 'Feature', 'properties': {'osmid': 53038839, 'average price/sqft': 694.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2097986, 37.8084945]}}, {'id': '1227', 'type': 'Feature', 'properties': {'osmid': 53038920, 'average price/sqft': 681.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1925457, 37.7865462]}}, {'id': '1228', 'type': 'Feature', 'properties': {'osmid': 53038922, 'average price/sqft': 686.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1908274, 37.7877646]}}, {'id': '1229', 'type': 'Feature', 'properties': {'osmid': 53038983, 'average price/sqft': 559.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2076575, 37.8118475]}}, {'id': '1230', 'type': 'Feature', 'properties': {'osmid': 53038987, 'average price/sqft': 447.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2047797, 37.8130512]}}, {'id': '1231', 'type': 'Feature', 'properties': {'osmid': 53039038, 'average price/sqft': 396.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1983315, 37.7708858]}}, {'id': '1232', 'type': 'Feature', 'properties': {'osmid': 53039272, 'average price/sqft': 445.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1960637, 37.7761556]}}, {'id': '1233', 'type': 'Feature', 'properties': {'osmid': 53039273, 'average price/sqft': 426.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1938495, 37.7740257]}}, {'id': '1234', 'type': 'Feature', 'properties': {'osmid': 53039314, 'average price/sqft': 835.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2208842, 37.8072914]}}, {'id': '1235', 'type': 'Feature', 'properties': {'osmid': 53039315, 'average price/sqft': 836.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2184636, 37.8080298]}}, {'id': '1236', 'type': 'Feature', 'properties': {'osmid': 53039464, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1832064, 37.7388918]}}, {'id': '1237', 'type': 'Feature', 'properties': {'osmid': 53039466, 'average price/sqft': 294.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2321926, 37.776267]}}, {'id': '1238', 'type': 'Feature', 'properties': {'osmid': 53039473, 'average price/sqft': 307.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2301779, 37.7782043]}}, {'id': '1239', 'type': 'Feature', 'properties': {'osmid': 53039476, 'average price/sqft': 348.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2274893, 37.7809432]}}, {'id': '1240', 'type': 'Feature', 'properties': {'osmid': 53039480, 'average price/sqft': 296.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2361279, 37.7721966]}}, {'id': '1241', 'type': 'Feature', 'properties': {'osmid': 53039484, 'average price/sqft': 296.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2348466, 37.7733926]}}, {'id': '1242', 'type': 'Feature', 'properties': {'osmid': 53039485, 'average price/sqft': 297.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2342373, 37.7739335]}}, {'id': '1243', 'type': 'Feature', 'properties': {'osmid': 53039495, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1998454, 37.7439494]}}, {'id': '1244', 'type': 'Feature', 'properties': {'osmid': 53039496, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2033965, 37.741986]}}, {'id': '1245', 'type': 'Feature', 'properties': {'osmid': 53039506, 'average price/sqft': 432.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2008262, 37.7785441]}}, {'id': '1246', 'type': 'Feature', 'properties': {'osmid': 53039529, 'average price/sqft': 587.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1532254, 37.7701652]}}, {'id': '1247', 'type': 'Feature', 'properties': {'osmid': 53039577, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2684108, 37.7920344]}}, {'id': '1248', 'type': 'Feature', 'properties': {'osmid': 53039584, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2720961, 37.7933778]}}, {'id': '1249', 'type': 'Feature', 'properties': {'osmid': 53039586, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2733273, 37.7938597]}}, {'id': '1250', 'type': 'Feature', 'properties': {'osmid': 53039591, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2767785, 37.795305]}}, {'id': '1251', 'type': 'Feature', 'properties': {'osmid': 53039593, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2780754, 37.7958036]}}, {'id': '1252', 'type': 'Feature', 'properties': {'osmid': 53039595, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2804383, 37.7966834]}}, {'id': '1253', 'type': 'Feature', 'properties': {'osmid': 53039597, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2816259, 37.7971452]}}, {'id': '1254', 'type': 'Feature', 'properties': {'osmid': 53039613, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2907042, 37.8002437]}}, {'id': '1255', 'type': 'Feature', 'properties': {'osmid': 53039767, 'average price/sqft': 469.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2044795, 37.7851102]}}, {'id': '1256', 'type': 'Feature', 'properties': {'osmid': 53039768, 'average price/sqft': 483.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2036373, 37.7856737]}}, {'id': '1257', 'type': 'Feature', 'properties': {'osmid': 53039771, 'average price/sqft': 505.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2027662, 37.7862586]}}, {'id': '1258', 'type': 'Feature', 'properties': {'osmid': 53039773, 'average price/sqft': 520.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2020308, 37.7867547]}}, {'id': '1259', 'type': 'Feature', 'properties': {'osmid': 53039775, 'average price/sqft': 551.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2007867, 37.7875862]}}, {'id': '1260', 'type': 'Feature', 'properties': {'osmid': 53039778, 'average price/sqft': 455.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2059352, 37.7840649]}}, {'id': '1261', 'type': 'Feature', 'properties': {'osmid': 53039779, 'average price/sqft': 453.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2052964, 37.7845108]}}, {'id': '1262', 'type': 'Feature', 'properties': {'osmid': 53039784, 'average price/sqft': 881.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.256358, 37.8416568]}}, {'id': '1263', 'type': 'Feature', 'properties': {'osmid': 53039810, 'average price/sqft': 281.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.304036, 37.8076303]}}, {'id': '1264', 'type': 'Feature', 'properties': {'osmid': 53039812, 'average price/sqft': 282.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.3026709, 37.809504]}}, {'id': '1265', 'type': 'Feature', 'properties': {'osmid': 53039813, 'average price/sqft': 282.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.3020939, 37.8102365]}}, {'id': '1266', 'type': 'Feature', 'properties': {'osmid': 53039815, 'average price/sqft': 283.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.3008637, 37.8117601]}}, {'id': '1267', 'type': 'Feature', 'properties': {'osmid': 53039981, 'average price/sqft': 659.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2486306, 37.8014835]}}, {'id': '1268', 'type': 'Feature', 'properties': {'osmid': 53039983, 'average price/sqft': 661.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2488227, 37.8023377]}}, {'id': '1269', 'type': 'Feature', 'properties': {'osmid': 53039984, 'average price/sqft': 660.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2489832, 37.803029]}}, {'id': '1270', 'type': 'Feature', 'properties': {'osmid': 53039987, 'average price/sqft': 658.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2491913, 37.8038596]}}, {'id': '1271', 'type': 'Feature', 'properties': {'osmid': 53039990, 'average price/sqft': 453.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2015799, 37.7646281]}}, {'id': '1272', 'type': 'Feature', 'properties': {'osmid': 53039991, 'average price/sqft': 445.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2009909, 37.7641014]}}, {'id': '1273', 'type': 'Feature', 'properties': {'osmid': 53039993, 'average price/sqft': 454.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2004158, 37.7635778]}}, {'id': '1274', 'type': 'Feature', 'properties': {'osmid': 53039994, 'average price/sqft': 462.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1998187, 37.7630599]}}, {'id': '1275', 'type': 'Feature', 'properties': {'osmid': 53039995, 'average price/sqft': 459.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1992501, 37.7625419]}}, {'id': '1276', 'type': 'Feature', 'properties': {'osmid': 53039997, 'average price/sqft': 459.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1972964, 37.7609793]}}, {'id': '1277', 'type': 'Feature', 'properties': {'osmid': 53039999, 'average price/sqft': 446.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1963325, 37.7601537]}}, {'id': '1278', 'type': 'Feature', 'properties': {'osmid': 53040000, 'average price/sqft': 426.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1943067, 37.7580836]}}, {'id': '1279', 'type': 'Feature', 'properties': {'osmid': 53040044, 'average price/sqft': 660.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1630814, 37.7858237]}}, {'id': '1280', 'type': 'Feature', 'properties': {'osmid': 53040045, 'average price/sqft': 661.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1638201, 37.7859321]}}, {'id': '1281', 'type': 'Feature', 'properties': {'osmid': 53040048, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1940778, 37.7354018]}}, {'id': '1282', 'type': 'Feature', 'properties': {'osmid': 53040049, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1924103, 37.7351625]}}, {'id': '1283', 'type': 'Feature', 'properties': {'osmid': 53040054, 'average price/sqft': 429.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1806314, 37.7603038]}}, {'id': '1284', 'type': 'Feature', 'properties': {'osmid': 53040063, 'average price/sqft': 411.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1934957, 37.751681]}}, {'id': '1285', 'type': 'Feature', 'properties': {'osmid': 53040065, 'average price/sqft': 408.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1922044, 37.7525114]}}, {'id': '1286', 'type': 'Feature', 'properties': {'osmid': 53040068, 'average price/sqft': 410.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1904378, 37.7536673]}}, {'id': '1287', 'type': 'Feature', 'properties': {'osmid': 53040070, 'average price/sqft': 418.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1886604, 37.7547964]}}, {'id': '1288', 'type': 'Feature', 'properties': {'osmid': 53040072, 'average price/sqft': 429.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1868986, 37.7559406]}}, {'id': '1289', 'type': 'Feature', 'properties': {'osmid': 53040074, 'average price/sqft': 414.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1841139, 37.7577297]}}, {'id': '1290', 'type': 'Feature', 'properties': {'osmid': 53040078, 'average price/sqft': 397.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1763633, 37.7628589]}}, {'id': '1291', 'type': 'Feature', 'properties': {'osmid': 53040079, 'average price/sqft': 392.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1756664, 37.7633117]}}, {'id': '1292', 'type': 'Feature', 'properties': {'osmid': 53040080, 'average price/sqft': 401.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1710476, 37.7659468]}}, {'id': '1293', 'type': 'Feature', 'properties': {'osmid': 53040081, 'average price/sqft': 411.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1691704, 37.7671486]}}, {'id': '1294', 'type': 'Feature', 'properties': {'osmid': 53040150, 'average price/sqft': 301.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2289311, 37.773281]}}, {'id': '1295', 'type': 'Feature', 'properties': {'osmid': 53040153, 'average price/sqft': 302.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2282265, 37.7726156]}}, {'id': '1296', 'type': 'Feature', 'properties': {'osmid': 53040155, 'average price/sqft': 303.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2264372, 37.7717467]}}, {'id': '1297', 'type': 'Feature', 'properties': {'osmid': 53040157, 'average price/sqft': 304.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2257835, 37.7714293]}}, {'id': '1298', 'type': 'Feature', 'properties': {'osmid': 53040182, 'average price/sqft': 541.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1961326, 37.8411432]}}, {'id': '1299', 'type': 'Feature', 'properties': {'osmid': 53040183, 'average price/sqft': 513.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1962476, 37.8419823]}}, {'id': '1300', 'type': 'Feature', 'properties': {'osmid': 53040212, 'average price/sqft': 508.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1943395, 37.8402779]}}, {'id': '1301', 'type': 'Feature', 'properties': {'osmid': 53040236, 'average price/sqft': 819.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.254329, 37.8295895]}}, {'id': '1302', 'type': 'Feature', 'properties': {'osmid': 53040238, 'average price/sqft': 836.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2527006, 37.8317547]}}, {'id': '1303', 'type': 'Feature', 'properties': {'osmid': 53040241, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2004891, 37.7358172]}}, {'id': '1304', 'type': 'Feature', 'properties': {'osmid': 53040270, 'average price/sqft': 426.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1808698, 37.7672446]}}, {'id': '1305', 'type': 'Feature', 'properties': {'osmid': 53040272, 'average price/sqft': 417.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1783768, 37.7648136]}}, {'id': '1306', 'type': 'Feature', 'properties': {'osmid': 53040273, 'average price/sqft': 410.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1776531, 37.7641308]}}, {'id': '1307', 'type': 'Feature', 'properties': {'osmid': 53040275, 'average price/sqft': 405.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1771113, 37.7635858]}}, {'id': '1308', 'type': 'Feature', 'properties': {'osmid': 53040277, 'average price/sqft': 398.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1765038, 37.762994]}}, {'id': '1309', 'type': 'Feature', 'properties': {'osmid': 53040278, 'average price/sqft': 396.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1761597, 37.7626611]}}, {'id': '1310', 'type': 'Feature', 'properties': {'osmid': 53040372, 'average price/sqft': 945.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2442649, 37.8501562]}}, {'id': '1311', 'type': 'Feature', 'properties': {'osmid': 53040409, 'average price/sqft': 382.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2041546, 37.7697218]}}, {'id': '1312', 'type': 'Feature', 'properties': {'osmid': 53040410, 'average price/sqft': 385.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2016561, 37.7685429]}}, {'id': '1313', 'type': 'Feature', 'properties': {'osmid': 53040552, 'average price/sqft': 809.0, 'observation count': 35.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2587184, 37.8446102]}}, {'id': '1314', 'type': 'Feature', 'properties': {'osmid': 53040582, 'average price/sqft': 532.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1920925, 37.8099353]}}, {'id': '1315', 'type': 'Feature', 'properties': {'osmid': 53040585, 'average price/sqft': 449.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1890121, 37.8081993]}}, {'id': '1316', 'type': 'Feature', 'properties': {'osmid': 53040592, 'average price/sqft': 411.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1874986, 37.8066276]}}, {'id': '1317', 'type': 'Feature', 'properties': {'osmid': 53040597, 'average price/sqft': 462.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1815062, 37.8054561]}}, {'id': '1318', 'type': 'Feature', 'properties': {'osmid': 53040602, 'average price/sqft': 461.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1806211, 37.8044855]}}, {'id': '1319', 'type': 'Feature', 'properties': {'osmid': 53040607, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1911993, 37.7380635]}}, {'id': '1320', 'type': 'Feature', 'properties': {'osmid': 53040616, 'average price/sqft': 398.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1980552, 37.7710808]}}, {'id': '1321', 'type': 'Feature', 'properties': {'osmid': 53040618, 'average price/sqft': 406.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1950983, 37.7682262]}}, {'id': '1322', 'type': 'Feature', 'properties': {'osmid': 53040620, 'average price/sqft': 407.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1933786, 37.7666861]}}, {'id': '1323', 'type': 'Feature', 'properties': {'osmid': 53040622, 'average price/sqft': 406.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1921465, 37.765441]}}, {'id': '1324', 'type': 'Feature', 'properties': {'osmid': 53040789, 'average price/sqft': 826.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2492076, 37.8259513]}}, {'id': '1325', 'type': 'Feature', 'properties': {'osmid': 53040790, 'average price/sqft': 862.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2500818, 37.8242843]}}, {'id': '1326', 'type': 'Feature', 'properties': {'osmid': 53040841, 'average price/sqft': 926.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2512978, 37.83714]}}, {'id': '1327', 'type': 'Feature', 'properties': {'osmid': 53040843, 'average price/sqft': 914.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2519723, 37.837467]}}, {'id': '1328', 'type': 'Feature', 'properties': {'osmid': 53040844, 'average price/sqft': 905.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2530825, 37.8380301]}}, {'id': '1329', 'type': 'Feature', 'properties': {'osmid': 53040846, 'average price/sqft': 902.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2538245, 37.8383997]}}, {'id': '1330', 'type': 'Feature', 'properties': {'osmid': 53040849, 'average price/sqft': 893.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2545526, 37.8387743]}}, {'id': '1331', 'type': 'Feature', 'properties': {'osmid': 53040850, 'average price/sqft': 878.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2560094, 37.8395103]}}, {'id': '1332', 'type': 'Feature', 'properties': {'osmid': 53040852, 'average price/sqft': 875.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2567362, 37.8398868]}}, {'id': '1333', 'type': 'Feature', 'properties': {'osmid': 53040854, 'average price/sqft': 863.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2574832, 37.8402622]}}, {'id': '1334', 'type': 'Feature', 'properties': {'osmid': 53040981, 'average price/sqft': 782.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2334778, 37.8444241]}}, {'id': '1335', 'type': 'Feature', 'properties': {'osmid': 53040992, 'average price/sqft': 806.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.236618, 37.8457908]}}, {'id': '1336', 'type': 'Feature', 'properties': {'osmid': 53041048, 'average price/sqft': 606.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.199106, 37.8047161]}}, {'id': '1337', 'type': 'Feature', 'properties': {'osmid': 53041050, 'average price/sqft': 606.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1985957, 37.8052186]}}, {'id': '1338', 'type': 'Feature', 'properties': {'osmid': 53041051, 'average price/sqft': 606.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1981126, 37.8053408]}}, {'id': '1339', 'type': 'Feature', 'properties': {'osmid': 53041178, 'average price/sqft': 604.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2489179, 37.8147217]}}, {'id': '1340', 'type': 'Feature', 'properties': {'osmid': 53041180, 'average price/sqft': 593.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2501563, 37.8136268]}}, {'id': '1341', 'type': 'Feature', 'properties': {'osmid': 53041201, 'average price/sqft': 645.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2429359, 37.800867]}}, {'id': '1342', 'type': 'Feature', 'properties': {'osmid': 53041202, 'average price/sqft': 643.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2421055, 37.8001369]}}, {'id': '1343', 'type': 'Feature', 'properties': {'osmid': 53041204, 'average price/sqft': 641.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2412931, 37.7994047]}}, {'id': '1344', 'type': 'Feature', 'properties': {'osmid': 53041207, 'average price/sqft': 626.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2404627, 37.7986679]}}, {'id': '1345', 'type': 'Feature', 'properties': {'osmid': 53041208, 'average price/sqft': 610.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2396265, 37.7979334]}}, {'id': '1346', 'type': 'Feature', 'properties': {'osmid': 53041210, 'average price/sqft': 585.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.238801, 37.7971993]}}, {'id': '1347', 'type': 'Feature', 'properties': {'osmid': 53041212, 'average price/sqft': 520.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2366951, 37.7953205]}}, {'id': '1348', 'type': 'Feature', 'properties': {'osmid': 53041217, 'average price/sqft': 510.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2362851, 37.7950789]}}, {'id': '1349', 'type': 'Feature', 'properties': {'osmid': 53041218, 'average price/sqft': 507.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2361578, 37.7950042]}}, {'id': '1350', 'type': 'Feature', 'properties': {'osmid': 53041219, 'average price/sqft': 498.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2340498, 37.79375]}}, {'id': '1351', 'type': 'Feature', 'properties': {'osmid': 53041220, 'average price/sqft': 463.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2319585, 37.7924919]}}, {'id': '1352', 'type': 'Feature', 'properties': {'osmid': 53041221, 'average price/sqft': 453.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2301715, 37.7914283]}}, {'id': '1353', 'type': 'Feature', 'properties': {'osmid': 53041222, 'average price/sqft': 448.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.229115, 37.790796]}}, {'id': '1354', 'type': 'Feature', 'properties': {'osmid': 53041226, 'average price/sqft': 442.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2280589, 37.7899917]}}, {'id': '1355', 'type': 'Feature', 'properties': {'osmid': 53041227, 'average price/sqft': 440.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2277609, 37.7898087]}}, {'id': '1356', 'type': 'Feature', 'properties': {'osmid': 53041229, 'average price/sqft': 437.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2272637, 37.7895108]}}, {'id': '1357', 'type': 'Feature', 'properties': {'osmid': 53041230, 'average price/sqft': 432.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.226473, 37.7890406]}}, {'id': '1358', 'type': 'Feature', 'properties': {'osmid': 53041239, 'average price/sqft': 706.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2148108, 37.8037204]}}, {'id': '1359', 'type': 'Feature', 'properties': {'osmid': 53041240, 'average price/sqft': 703.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2136462, 37.803586]}}, {'id': '1360', 'type': 'Feature', 'properties': {'osmid': 53041243, 'average price/sqft': 685.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2095754, 37.8078149]}}, {'id': '1361', 'type': 'Feature', 'properties': {'osmid': 53041245, 'average price/sqft': 661.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2076212, 37.8092713]}}, {'id': '1362', 'type': 'Feature', 'properties': {'osmid': 53041247, 'average price/sqft': 614.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.206118, 37.8111604]}}, {'id': '1363', 'type': 'Feature', 'properties': {'osmid': 53041255, 'average price/sqft': 302.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2283862, 37.7722137]}}, {'id': '1364', 'type': 'Feature', 'properties': {'osmid': 53041257, 'average price/sqft': 305.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.228093, 37.7729635]}}, {'id': '1365', 'type': 'Feature', 'properties': {'osmid': 53041261, 'average price/sqft': 309.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2278651, 37.7734906]}}, {'id': '1366', 'type': 'Feature', 'properties': {'osmid': 53041265, 'average price/sqft': 321.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2270239, 37.7752995]}}, {'id': '1367', 'type': 'Feature', 'properties': {'osmid': 53041269, 'average price/sqft': 327.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2264815, 37.7763839]}}, {'id': '1368', 'type': 'Feature', 'properties': {'osmid': 53041271, 'average price/sqft': 324.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2262972, 37.7767279]}}, {'id': '1369', 'type': 'Feature', 'properties': {'osmid': 53041277, 'average price/sqft': 342.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2252722, 37.7787649]}}, {'id': '1370', 'type': 'Feature', 'properties': {'osmid': 53041278, 'average price/sqft': 372.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2247481, 37.7798014]}}, {'id': '1371', 'type': 'Feature', 'properties': {'osmid': 53041279, 'average price/sqft': 380.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2244947, 37.7803096]}}, {'id': '1372', 'type': 'Feature', 'properties': {'osmid': 53041282, 'average price/sqft': 392.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2240746, 37.7811421]}}, {'id': '1373', 'type': 'Feature', 'properties': {'osmid': 53041287, 'average price/sqft': 415.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2227692, 37.7837412]}}, {'id': '1374', 'type': 'Feature', 'properties': {'osmid': 53041291, 'average price/sqft': 408.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2220128, 37.7856353]}}, {'id': '1375', 'type': 'Feature', 'properties': {'osmid': 53041293, 'average price/sqft': 404.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2217375, 37.7863198]}}, {'id': '1376', 'type': 'Feature', 'properties': {'osmid': 53041294, 'average price/sqft': 407.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2215271, 37.7868507]}}, {'id': '1377', 'type': 'Feature', 'properties': {'osmid': 53041296, 'average price/sqft': 409.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2214655, 37.7870039]}}, {'id': '1378', 'type': 'Feature', 'properties': {'osmid': 53041298, 'average price/sqft': 417.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.221222, 37.7876243]}}, {'id': '1379', 'type': 'Feature', 'properties': {'osmid': 53041300, 'average price/sqft': 417.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2211757, 37.7877392]}}, {'id': '1380', 'type': 'Feature', 'properties': {'osmid': 53041302, 'average price/sqft': 420.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2209061, 37.7884171]}}, {'id': '1381', 'type': 'Feature', 'properties': {'osmid': 53041304, 'average price/sqft': 420.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2208264, 37.7886079]}}, {'id': '1382', 'type': 'Feature', 'properties': {'osmid': 53041305, 'average price/sqft': 420.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2205438, 37.7893255]}}, {'id': '1383', 'type': 'Feature', 'properties': {'osmid': 53041307, 'average price/sqft': 422.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2203246, 37.789877]}}, {'id': '1384', 'type': 'Feature', 'properties': {'osmid': 53041310, 'average price/sqft': 425.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2200622, 37.7905392]}}, {'id': '1385', 'type': 'Feature', 'properties': {'osmid': 53041311, 'average price/sqft': 427.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2198131, 37.7911649]}}, {'id': '1386', 'type': 'Feature', 'properties': {'osmid': 53041313, 'average price/sqft': 434.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2195166, 37.7919098]}}, {'id': '1387', 'type': 'Feature', 'properties': {'osmid': 53041315, 'average price/sqft': 466.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2190538, 37.7930724]}}, {'id': '1388', 'type': 'Feature', 'properties': {'osmid': 53041317, 'average price/sqft': 473.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2189708, 37.793284]}}, {'id': '1389', 'type': 'Feature', 'properties': {'osmid': 53041318, 'average price/sqft': 499.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2187172, 37.7939176]}}, {'id': '1390', 'type': 'Feature', 'properties': {'osmid': 53041320, 'average price/sqft': 527.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2184956, 37.7944745]}}, {'id': '1391', 'type': 'Feature', 'properties': {'osmid': 53041322, 'average price/sqft': 573.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2181438, 37.795358]}}, {'id': '1392', 'type': 'Feature', 'properties': {'osmid': 53041324, 'average price/sqft': 596.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2179514, 37.7958412]}}, {'id': '1393', 'type': 'Feature', 'properties': {'osmid': 53041326, 'average price/sqft': 613.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2178084, 37.7962004]}}, {'id': '1394', 'type': 'Feature', 'properties': {'osmid': 53041328, 'average price/sqft': 645.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2175789, 37.7967768]}}, {'id': '1395', 'type': 'Feature', 'properties': {'osmid': 53041330, 'average price/sqft': 655.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2174326, 37.7971444]}}, {'id': '1396', 'type': 'Feature', 'properties': {'osmid': 53041339, 'average price/sqft': 695.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.216617, 37.7992362]}}, {'id': '1397', 'type': 'Feature', 'properties': {'osmid': 53041341, 'average price/sqft': 711.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2161668, 37.8003577]}}, {'id': '1398', 'type': 'Feature', 'properties': {'osmid': 53041343, 'average price/sqft': 709.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2154924, 37.8020174]}}, {'id': '1399', 'type': 'Feature', 'properties': {'osmid': 53041345, 'average price/sqft': 703.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2151745, 37.8028158]}}, {'id': '1400', 'type': 'Feature', 'properties': {'osmid': 53041387, 'average price/sqft': 811.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2344324, 37.8413888]}}, {'id': '1401', 'type': 'Feature', 'properties': {'osmid': 53041389, 'average price/sqft': 813.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2330449, 37.8411115]}}, {'id': '1402', 'type': 'Feature', 'properties': {'osmid': 53041392, 'average price/sqft': 816.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2342528, 37.840551]}}, {'id': '1403', 'type': 'Feature', 'properties': {'osmid': 53041393, 'average price/sqft': 815.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2343134, 37.8408824]}}, {'id': '1404', 'type': 'Feature', 'properties': {'osmid': 53041486, 'average price/sqft': 580.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1873367, 37.8345002]}}, {'id': '1405', 'type': 'Feature', 'properties': {'osmid': 53041527, 'average price/sqft': 356.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1580161, 37.7467339]}}, {'id': '1406', 'type': 'Feature', 'properties': {'osmid': 53041528, 'average price/sqft': 354.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1569691, 37.7456506]}}, {'id': '1407', 'type': 'Feature', 'properties': {'osmid': 53041530, 'average price/sqft': 348.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1559036, 37.7442202]}}, {'id': '1408', 'type': 'Feature', 'properties': {'osmid': 53041531, 'average price/sqft': 332.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1545681, 37.7421932]}}, {'id': '1409', 'type': 'Feature', 'properties': {'osmid': 53041532, 'average price/sqft': 329.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1542637, 37.7415133]}}, {'id': '1410', 'type': 'Feature', 'properties': {'osmid': 53041533, 'average price/sqft': 330.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.153978, 37.7408647]}}, {'id': '1411', 'type': 'Feature', 'properties': {'osmid': 53041534, 'average price/sqft': 332.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1536893, 37.7402027]}}, {'id': '1412', 'type': 'Feature', 'properties': {'osmid': 53041535, 'average price/sqft': 336.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1533802, 37.7395573]}}, {'id': '1413', 'type': 'Feature', 'properties': {'osmid': 53041545, 'average price/sqft': 595.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2757104, 37.8426504]}}, {'id': '1414', 'type': 'Feature', 'properties': {'osmid': 53041548, 'average price/sqft': 600.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2757586, 37.8437973]}}, {'id': '1415', 'type': 'Feature', 'properties': {'osmid': 53041554, 'average price/sqft': 592.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2752856, 37.8454881]}}, {'id': '1416', 'type': 'Feature', 'properties': {'osmid': 53041619, 'average price/sqft': 373.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1664386, 37.7420229]}}, {'id': '1417', 'type': 'Feature', 'properties': {'osmid': 53041621, 'average price/sqft': 385.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.165112, 37.7423534]}}, {'id': '1418', 'type': 'Feature', 'properties': {'osmid': 53041622, 'average price/sqft': 378.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1626832, 37.7429536]}}, {'id': '1419', 'type': 'Feature', 'properties': {'osmid': 53041624, 'average price/sqft': 361.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1602631, 37.7435541]}}, {'id': '1420', 'type': 'Feature', 'properties': {'osmid': 53041630, 'average price/sqft': 368.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1722699, 37.7393326]}}, {'id': '1421', 'type': 'Feature', 'properties': {'osmid': 53041632, 'average price/sqft': 359.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1703292, 37.7402369]}}, {'id': '1422', 'type': 'Feature', 'properties': {'osmid': 53041634, 'average price/sqft': 314.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1682625, 37.741217]}}, {'id': '1423', 'type': 'Feature', 'properties': {'osmid': 53041638, 'average price/sqft': 366.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1742038, 37.7384094]}}, {'id': '1424', 'type': 'Feature', 'properties': {'osmid': 53041687, 'average price/sqft': 249.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2455372, 37.7898523]}}, {'id': '1425', 'type': 'Feature', 'properties': {'osmid': 53041807, 'average price/sqft': 827.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2533394, 37.8295717]}}, {'id': '1426', 'type': 'Feature', 'properties': {'osmid': 53041808, 'average price/sqft': 833.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2530784, 37.829907]}}, {'id': '1427', 'type': 'Feature', 'properties': {'osmid': 53041809, 'average price/sqft': 844.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2520649, 37.8312068]}}, {'id': '1428', 'type': 'Feature', 'properties': {'osmid': 53041810, 'average price/sqft': 852.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2513111, 37.8321228]}}, {'id': '1429', 'type': 'Feature', 'properties': {'osmid': 53041811, 'average price/sqft': 856.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2508672, 37.8329507]}}, {'id': '1430', 'type': 'Feature', 'properties': {'osmid': 53041812, 'average price/sqft': 867.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2504775, 37.8336564]}}, {'id': '1431', 'type': 'Feature', 'properties': {'osmid': 53041833, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1772499, 37.7257731]}}, {'id': '1432', 'type': 'Feature', 'properties': {'osmid': 53041834, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.17573, 37.7258079]}}, {'id': '1433', 'type': 'Feature', 'properties': {'osmid': 53041836, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1742591, 37.7270864]}}, {'id': '1434', 'type': 'Feature', 'properties': {'osmid': 53041839, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1733811, 37.7271251]}}, {'id': '1435', 'type': 'Feature', 'properties': {'osmid': 53041841, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.172733, 37.7275278]}}, {'id': '1436', 'type': 'Feature', 'properties': {'osmid': 53041843, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1722698, 37.7280093]}}, {'id': '1437', 'type': 'Feature', 'properties': {'osmid': 53041846, 'average price/sqft': 768.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2381642, 37.8601876]}}, {'id': '1438', 'type': 'Feature', 'properties': {'osmid': 53041851, 'average price/sqft': 695.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2357304, 37.8592224]}}, {'id': '1439', 'type': 'Feature', 'properties': {'osmid': 53041854, 'average price/sqft': 679.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.23592, 37.860179]}}, {'id': '1440', 'type': 'Feature', 'properties': {'osmid': 53041855, 'average price/sqft': 662.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2346782, 37.86028]}}, {'id': '1441', 'type': 'Feature', 'properties': {'osmid': 53041860, 'average price/sqft': 589.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2294712, 37.8601609]}}, {'id': '1442', 'type': 'Feature', 'properties': {'osmid': 53041867, 'average price/sqft': 722.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2544567, 37.8248772]}}, {'id': '1443', 'type': 'Feature', 'properties': {'osmid': 53041870, 'average price/sqft': 729.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2523512, 37.8232543]}}, {'id': '1444', 'type': 'Feature', 'properties': {'osmid': 53042003, 'average price/sqft': 504.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2169386, 37.7742816]}}, {'id': '1445', 'type': 'Feature', 'properties': {'osmid': 53042007, 'average price/sqft': 426.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.22214, 37.7773735]}}, {'id': '1446', 'type': 'Feature', 'properties': {'osmid': 53042009, 'average price/sqft': 425.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2216637, 37.7771913]}}, {'id': '1447', 'type': 'Feature', 'properties': {'osmid': 53042012, 'average price/sqft': 285.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2451684, 37.7902563]}}, {'id': '1448', 'type': 'Feature', 'properties': {'osmid': 53042013, 'average price/sqft': 289.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2444618, 37.7898118]}}, {'id': '1449', 'type': 'Feature', 'properties': {'osmid': 53042018, 'average price/sqft': 298.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2423591, 37.7885555]}}, {'id': '1450', 'type': 'Feature', 'properties': {'osmid': 53042021, 'average price/sqft': 304.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2402602, 37.7872969]}}, {'id': '1451', 'type': 'Feature', 'properties': {'osmid': 53042025, 'average price/sqft': 357.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2381628, 37.7860444]}}, {'id': '1452', 'type': 'Feature', 'properties': {'osmid': 53042027, 'average price/sqft': 370.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2371161, 37.7854138]}}, {'id': '1453', 'type': 'Feature', 'properties': {'osmid': 53042030, 'average price/sqft': 398.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2351577, 37.7842448]}}, {'id': '1454', 'type': 'Feature', 'properties': {'osmid': 53042032, 'average price/sqft': 393.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2340994, 37.7836103]}}, {'id': '1455', 'type': 'Feature', 'properties': {'osmid': 53042034, 'average price/sqft': 393.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2336701, 37.7833538]}}, {'id': '1456', 'type': 'Feature', 'properties': {'osmid': 53042036, 'average price/sqft': 390.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2329206, 37.782909]}}, {'id': '1457', 'type': 'Feature', 'properties': {'osmid': 53042037, 'average price/sqft': 384.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.231223, 37.7819428]}}, {'id': '1458', 'type': 'Feature', 'properties': {'osmid': 53042041, 'average price/sqft': 315.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2273653, 37.7794174]}}, {'id': '1459', 'type': 'Feature', 'properties': {'osmid': 53042056, 'average price/sqft': 380.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2020691, 37.7682387]}}, {'id': '1460', 'type': 'Feature', 'properties': {'osmid': 53042057, 'average price/sqft': 380.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2012645, 37.7675188]}}, {'id': '1461', 'type': 'Feature', 'properties': {'osmid': 53042061, 'average price/sqft': 378.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.199694, 37.7663641]}}, {'id': '1462', 'type': 'Feature', 'properties': {'osmid': 53042065, 'average price/sqft': 706.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2562436, 37.7993548]}}, {'id': '1463', 'type': 'Feature', 'properties': {'osmid': 53042068, 'average price/sqft': 712.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2558194, 37.7989778]}}, {'id': '1464', 'type': 'Feature', 'properties': {'osmid': 53042070, 'average price/sqft': 710.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2554144, 37.798615]}}, {'id': '1465', 'type': 'Feature', 'properties': {'osmid': 53042072, 'average price/sqft': 698.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2545862, 37.7978804]}}, {'id': '1466', 'type': 'Feature', 'properties': {'osmid': 53042075, 'average price/sqft': 698.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2529264, 37.7964118]}}, {'id': '1467', 'type': 'Feature', 'properties': {'osmid': 53042077, 'average price/sqft': 686.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2512688, 37.7949438]}}, {'id': '1468', 'type': 'Feature', 'properties': {'osmid': 53042079, 'average price/sqft': 579.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.250435, 37.7942108]}}, {'id': '1469', 'type': 'Feature', 'properties': {'osmid': 53042081, 'average price/sqft': 540.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2496104, 37.7934786]}}, {'id': '1470', 'type': 'Feature', 'properties': {'osmid': 53042083, 'average price/sqft': 475.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2487721, 37.7927391]}}, {'id': '1471', 'type': 'Feature', 'properties': {'osmid': 53042084, 'average price/sqft': 415.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2479495, 37.7920076]}}, {'id': '1472', 'type': 'Feature', 'properties': {'osmid': 53042086, 'average price/sqft': 352.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2471238, 37.7912803]}}, {'id': '1473', 'type': 'Feature', 'properties': {'osmid': 53042092, 'average price/sqft': 519.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1893164, 37.8096852]}}, {'id': '1474', 'type': 'Feature', 'properties': {'osmid': 53042095, 'average price/sqft': 473.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1850284, 37.8096087]}}, {'id': '1475', 'type': 'Feature', 'properties': {'osmid': 53042252, 'average price/sqft': 498.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2163687, 37.7700153]}}, {'id': '1476', 'type': 'Feature', 'properties': {'osmid': 53042256, 'average price/sqft': 528.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2148357, 37.7711472]}}, {'id': '1477', 'type': 'Feature', 'properties': {'osmid': 53042257, 'average price/sqft': 532.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2139702, 37.7718488]}}, {'id': '1478', 'type': 'Feature', 'properties': {'osmid': 53042263, 'average price/sqft': 805.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.230661, 37.841581]}}, {'id': '1479', 'type': 'Feature', 'properties': {'osmid': 53042265, 'average price/sqft': 808.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2305511, 37.8409698]}}, {'id': '1480', 'type': 'Feature', 'properties': {'osmid': 53042266, 'average price/sqft': 810.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2302061, 37.8407201]}}, {'id': '1481', 'type': 'Feature', 'properties': {'osmid': 53042268, 'average price/sqft': 811.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2292022, 37.8400888]}}, {'id': '1482', 'type': 'Feature', 'properties': {'osmid': 53042271, 'average price/sqft': 808.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2277428, 37.8387951]}}, {'id': '1483', 'type': 'Feature', 'properties': {'osmid': 53042273, 'average price/sqft': 802.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2264575, 37.8378188]}}, {'id': '1484', 'type': 'Feature', 'properties': {'osmid': 53042275, 'average price/sqft': 801.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2260377, 37.837395]}}, {'id': '1485', 'type': 'Feature', 'properties': {'osmid': 53042278, 'average price/sqft': 796.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2240381, 37.8370043]}}, {'id': '1486', 'type': 'Feature', 'properties': {'osmid': 53042281, 'average price/sqft': 794.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2237361, 37.8369773]}}, {'id': '1487', 'type': 'Feature', 'properties': {'osmid': 53042283, 'average price/sqft': 790.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2230434, 37.837314]}}, {'id': '1488', 'type': 'Feature', 'properties': {'osmid': 53042413, 'average price/sqft': 553.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2276811, 37.8527526]}}, {'id': '1489', 'type': 'Feature', 'properties': {'osmid': 53042426, 'average price/sqft': 552.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2265356, 37.8523121]}}, {'id': '1490', 'type': 'Feature', 'properties': {'osmid': 53042443, 'average price/sqft': 557.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2259897, 37.8533602]}}, {'id': '1491', 'type': 'Feature', 'properties': {'osmid': 53042590, 'average price/sqft': 462.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1309859, 37.7522233]}}, {'id': '1492', 'type': 'Feature', 'properties': {'osmid': 53042591, 'average price/sqft': 459.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.129429, 37.7500786]}}, {'id': '1493', 'type': 'Feature', 'properties': {'osmid': 53042592, 'average price/sqft': 466.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1278881, 37.7480182]}}, {'id': '1494', 'type': 'Feature', 'properties': {'osmid': 53042594, 'average price/sqft': 479.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1269439, 37.7471529]}}, {'id': '1495', 'type': 'Feature', 'properties': {'osmid': 53042596, 'average price/sqft': 515.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1255384, 37.745401]}}, {'id': '1496', 'type': 'Feature', 'properties': {'osmid': 53042717, 'average price/sqft': 722.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2066896, 37.8357548]}}, {'id': '1497', 'type': 'Feature', 'properties': {'osmid': 53042740, 'average price/sqft': 333.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1486286, 37.7424039]}}, {'id': '1498', 'type': 'Feature', 'properties': {'osmid': 53042742, 'average price/sqft': 329.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1480587, 37.74177]}}, {'id': '1499', 'type': 'Feature', 'properties': {'osmid': 53042746, 'average price/sqft': 322.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1475523, 37.7412338]}}, {'id': '1500', 'type': 'Feature', 'properties': {'osmid': 53042750, 'average price/sqft': 570.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2003971, 37.788511]}}, {'id': '1501', 'type': 'Feature', 'properties': {'osmid': 53042752, 'average price/sqft': 587.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1989543, 37.7869284]}}, {'id': '1502', 'type': 'Feature', 'properties': {'osmid': 53042754, 'average price/sqft': 681.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2040493, 37.8184735]}}, {'id': '1503', 'type': 'Feature', 'properties': {'osmid': 53042912, 'average price/sqft': 808.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2335208, 37.8395295]}}, {'id': '1504', 'type': 'Feature', 'properties': {'osmid': 53043173, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.174331, 37.7317217]}}, {'id': '1505', 'type': 'Feature', 'properties': {'osmid': 53043174, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1738053, 37.7321089]}}, {'id': '1506', 'type': 'Feature', 'properties': {'osmid': 53043175, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1731745, 37.732576]}}, {'id': '1507', 'type': 'Feature', 'properties': {'osmid': 53043176, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1725231, 37.7330323]}}, {'id': '1508', 'type': 'Feature', 'properties': {'osmid': 53043269, 'average price/sqft': 392.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2534011, 37.7905944]}}, {'id': '1509', 'type': 'Feature', 'properties': {'osmid': 53043271, 'average price/sqft': 454.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2533645, 37.7908348]}}, {'id': '1510', 'type': 'Feature', 'properties': {'osmid': 53043273, 'average price/sqft': 520.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2524448, 37.791465]}}, {'id': '1511', 'type': 'Feature', 'properties': {'osmid': 53043278, 'average price/sqft': 520.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2514928, 37.7921467]}}, {'id': '1512', 'type': 'Feature', 'properties': {'osmid': 53043283, 'average price/sqft': 520.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2486864, 37.7941349]}}, {'id': '1513', 'type': 'Feature', 'properties': {'osmid': 53043285, 'average price/sqft': 587.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2477664, 37.7947914]}}, {'id': '1514', 'type': 'Feature', 'properties': {'osmid': 53043286, 'average price/sqft': 610.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.246833, 37.7954512]}}, {'id': '1515', 'type': 'Feature', 'properties': {'osmid': 53043288, 'average price/sqft': 659.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.244985, 37.7967645]}}, {'id': '1516', 'type': 'Feature', 'properties': {'osmid': 53043291, 'average price/sqft': 641.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2422079, 37.7987372]}}, {'id': '1517', 'type': 'Feature', 'properties': {'osmid': 53043293, 'average price/sqft': 667.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2382909, 37.8015366]}}, {'id': '1518', 'type': 'Feature', 'properties': {'osmid': 53043298, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2560796, 37.7885283]}}, {'id': '1519', 'type': 'Feature', 'properties': {'osmid': 53043299, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2554603, 37.7891198]}}, {'id': '1520', 'type': 'Feature', 'properties': {'osmid': 53043341, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2267122, 37.8499614]}}, {'id': '1521', 'type': 'Feature', 'properties': {'osmid': 53043399, 'average price/sqft': 425.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2188207, 37.7897637]}}, {'id': '1522', 'type': 'Feature', 'properties': {'osmid': 53043400, 'average price/sqft': 426.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2186679, 37.7901943]}}, {'id': '1523', 'type': 'Feature', 'properties': {'osmid': 53043402, 'average price/sqft': 428.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.21843, 37.7908124]}}, {'id': '1524', 'type': 'Feature', 'properties': {'osmid': 53043418, 'average price/sqft': 431.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2178714, 37.7905522]}}, {'id': '1525', 'type': 'Feature', 'properties': {'osmid': 53043419, 'average price/sqft': 435.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2174428, 37.7911056]}}, {'id': '1526', 'type': 'Feature', 'properties': {'osmid': 53043427, 'average price/sqft': 622.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2004439, 37.8018193]}}, {'id': '1527', 'type': 'Feature', 'properties': {'osmid': 53043428, 'average price/sqft': 610.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1983975, 37.8000434]}}, {'id': '1528', 'type': 'Feature', 'properties': {'osmid': 53043430, 'average price/sqft': 606.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1979844, 37.7994736]}}, {'id': '1529', 'type': 'Feature', 'properties': {'osmid': 53043433, 'average price/sqft': 607.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1967656, 37.798176]}}, {'id': '1530', 'type': 'Feature', 'properties': {'osmid': 53043435, 'average price/sqft': 610.0, 'observation count': 31.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1961017, 37.7973807]}}, {'id': '1531', 'type': 'Feature', 'properties': {'osmid': 53043436, 'average price/sqft': 611.0, 'observation count': 32.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1955561, 37.7968123]}}, {'id': '1532', 'type': 'Feature', 'properties': {'osmid': 53043437, 'average price/sqft': 629.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1942777, 37.7954281]}}, {'id': '1533', 'type': 'Feature', 'properties': {'osmid': 53043438, 'average price/sqft': 638.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1936828, 37.7947882]}}, {'id': '1534', 'type': 'Feature', 'properties': {'osmid': 53043439, 'average price/sqft': 642.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1930978, 37.7941477]}}, {'id': '1535', 'type': 'Feature', 'properties': {'osmid': 53043520, 'average price/sqft': 485.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1664693, 37.7716213]}}, {'id': '1536', 'type': 'Feature', 'properties': {'osmid': 53043523, 'average price/sqft': 499.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1658135, 37.7721992]}}, {'id': '1537', 'type': 'Feature', 'properties': {'osmid': 53043525, 'average price/sqft': 503.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1635892, 37.7735552]}}, {'id': '1538', 'type': 'Feature', 'properties': {'osmid': 53043527, 'average price/sqft': 497.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1631183, 37.7743044]}}, {'id': '1539', 'type': 'Feature', 'properties': {'osmid': 53043528, 'average price/sqft': 502.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1627615, 37.7749321]}}, {'id': '1540', 'type': 'Feature', 'properties': {'osmid': 53043583, 'average price/sqft': 414.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2245341, 37.7842797]}}, {'id': '1541', 'type': 'Feature', 'properties': {'osmid': 53043585, 'average price/sqft': 526.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.203767, 37.7884079]}}, {'id': '1542', 'type': 'Feature', 'properties': {'osmid': 53043587, 'average price/sqft': 527.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2030137, 37.7876979]}}, {'id': '1543', 'type': 'Feature', 'properties': {'osmid': 53043597, 'average price/sqft': 830.0, 'observation count': 35.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2579637, 37.8442506]}}, {'id': '1544', 'type': 'Feature', 'properties': {'osmid': 53043600, 'average price/sqft': 850.0, 'observation count': 32.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2570245, 37.8435672]}}, {'id': '1545', 'type': 'Feature', 'properties': {'osmid': 53043602, 'average price/sqft': 831.0, 'observation count': 36.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2580839, 37.8440972]}}, {'id': '1546', 'type': 'Feature', 'properties': {'osmid': 53043655, 'average price/sqft': 809.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2350151, 37.8415056]}}, {'id': '1547', 'type': 'Feature', 'properties': {'osmid': 53043657, 'average price/sqft': 809.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2327256, 37.8413908]}}, {'id': '1548', 'type': 'Feature', 'properties': {'osmid': 53043659, 'average price/sqft': 808.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2348059, 37.8402548]}}, {'id': '1549', 'type': 'Feature', 'properties': {'osmid': 53043662, 'average price/sqft': 609.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1941747, 37.8209337]}}, {'id': '1550', 'type': 'Feature', 'properties': {'osmid': 53043664, 'average price/sqft': 608.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1926918, 37.8215579]}}, {'id': '1551', 'type': 'Feature', 'properties': {'osmid': 53043667, 'average price/sqft': 609.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1933601, 37.8218425]}}, {'id': '1552', 'type': 'Feature', 'properties': {'osmid': 53043671, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1842493, 37.7307486]}}, {'id': '1553', 'type': 'Feature', 'properties': {'osmid': 53043674, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1837002, 37.7312471]}}, {'id': '1554', 'type': 'Feature', 'properties': {'osmid': 53043675, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1835647, 37.7317804]}}, {'id': '1555', 'type': 'Feature', 'properties': {'osmid': 53043676, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1828186, 37.7344814]}}, {'id': '1556', 'type': 'Feature', 'properties': {'osmid': 53043798, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.214376, 37.858718]}}, {'id': '1557', 'type': 'Feature', 'properties': {'osmid': 53043842, 'average price/sqft': 308.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2834777, 37.848482]}}, {'id': '1558', 'type': 'Feature', 'properties': {'osmid': 53043866, 'average price/sqft': 767.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.260412, 37.8510289]}}, {'id': '1559', 'type': 'Feature', 'properties': {'osmid': 53043874, 'average price/sqft': 694.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2658629, 37.8503309]}}, {'id': '1560', 'type': 'Feature', 'properties': {'osmid': 53043876, 'average price/sqft': 690.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2667084, 37.8502192]}}, {'id': '1561', 'type': 'Feature', 'properties': {'osmid': 53043878, 'average price/sqft': 686.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2675883, 37.8501032]}}, {'id': '1562', 'type': 'Feature', 'properties': {'osmid': 53044180, 'average price/sqft': 439.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2152903, 37.7851279]}}, {'id': '1563', 'type': 'Feature', 'properties': {'osmid': 53044183, 'average price/sqft': 455.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2136033, 37.7836369]}}, {'id': '1564', 'type': 'Feature', 'properties': {'osmid': 53044212, 'average price/sqft': 280.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2428738, 37.7862681]}}, {'id': '1565', 'type': 'Feature', 'properties': {'osmid': 53044217, 'average price/sqft': 312.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2405225, 37.7887631]}}, {'id': '1566', 'type': 'Feature', 'properties': {'osmid': 53044221, 'average price/sqft': 341.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2397233, 37.7895936]}}, {'id': '1567', 'type': 'Feature', 'properties': {'osmid': 53044225, 'average price/sqft': 414.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2381501, 37.7912639]}}, {'id': '1568', 'type': 'Feature', 'properties': {'osmid': 53044417, 'average price/sqft': 761.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2296879, 37.812186]}}, {'id': '1569', 'type': 'Feature', 'properties': {'osmid': 53044419, 'average price/sqft': 762.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2288234, 37.8119018]}}, {'id': '1570', 'type': 'Feature', 'properties': {'osmid': 53044497, 'average price/sqft': 810.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2331635, 37.8397166]}}, {'id': '1571', 'type': 'Feature', 'properties': {'osmid': 53044499, 'average price/sqft': 814.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2332282, 37.84038]}}, {'id': '1572', 'type': 'Feature', 'properties': {'osmid': 53044502, 'average price/sqft': 816.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2332518, 37.8408226]}}, {'id': '1573', 'type': 'Feature', 'properties': {'osmid': 53044504, 'average price/sqft': 801.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.232607, 37.8421654]}}, {'id': '1574', 'type': 'Feature', 'properties': {'osmid': 53044601, 'average price/sqft': 614.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1909913, 37.8158465]}}, {'id': '1575', 'type': 'Feature', 'properties': {'osmid': 53044717, 'average price/sqft': 402.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1495952, 37.7584518]}}, {'id': '1576', 'type': 'Feature', 'properties': {'osmid': 53044719, 'average price/sqft': 399.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.149755, 37.757642]}}, {'id': '1577', 'type': 'Feature', 'properties': {'osmid': 53044748, 'average price/sqft': 657.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1665048, 37.7866377]}}, {'id': '1578', 'type': 'Feature', 'properties': {'osmid': 53044753, 'average price/sqft': 658.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1666369, 37.78624]}}, {'id': '1579', 'type': 'Feature', 'properties': {'osmid': 53044755, 'average price/sqft': 658.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1661943, 37.7856019]}}, {'id': '1580', 'type': 'Feature', 'properties': {'osmid': 53044767, 'average price/sqft': 658.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1654514, 37.7832723]}}, {'id': '1581', 'type': 'Feature', 'properties': {'osmid': 53044770, 'average price/sqft': 651.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1664241, 37.7824596]}}, {'id': '1582', 'type': 'Feature', 'properties': {'osmid': 53044933, 'average price/sqft': 527.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1957982, 37.8054598]}}, {'id': '1583', 'type': 'Feature', 'properties': {'osmid': 53045190, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2180801, 37.7647922]}}, {'id': '1584', 'type': 'Feature', 'properties': {'osmid': 53045204, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2128024, 37.7586684]}}, {'id': '1585', 'type': 'Feature', 'properties': {'osmid': 53045231, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2036154, 37.7482047]}}, {'id': '1586', 'type': 'Feature', 'properties': {'osmid': 53045242, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2004823, 37.7390293]}}, {'id': '1587', 'type': 'Feature', 'properties': {'osmid': 53045482, 'average price/sqft': 454.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2283557, 37.7914962]}}, {'id': '1588', 'type': 'Feature', 'properties': {'osmid': 53045484, 'average price/sqft': 483.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2288165, 37.7941298]}}, {'id': '1589', 'type': 'Feature', 'properties': {'osmid': 53045489, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2695708, 37.7927174]}}, {'id': '1590', 'type': 'Feature', 'properties': {'osmid': 53045490, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2692399, 37.7932657]}}, {'id': '1591', 'type': 'Feature', 'properties': {'osmid': 53045492, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2688075, 37.7939519]}}, {'id': '1592', 'type': 'Feature', 'properties': {'osmid': 53045494, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2683672, 37.7946514]}}, {'id': '1593', 'type': 'Feature', 'properties': {'osmid': 53045501, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2666479, 37.7974037]}}, {'id': '1594', 'type': 'Feature', 'properties': {'osmid': 53045502, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2662256, 37.7980809]}}, {'id': '1595', 'type': 'Feature', 'properties': {'osmid': 53045505, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.265364, 37.7994621]}}, {'id': '1596', 'type': 'Feature', 'properties': {'osmid': 53045508, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2645023, 37.8008435]}}, {'id': '1597', 'type': 'Feature', 'properties': {'osmid': 53045509, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2640724, 37.8015324]}}, {'id': '1598', 'type': 'Feature', 'properties': {'osmid': 53045510, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2624053, 37.8042049]}}, {'id': '1599', 'type': 'Feature', 'properties': {'osmid': 53045547, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1801069, 37.7303346]}}, {'id': '1600', 'type': 'Feature', 'properties': {'osmid': 53045601, 'average price/sqft': 865.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2563147, 37.846112]}}, {'id': '1601', 'type': 'Feature', 'properties': {'osmid': 53045602, 'average price/sqft': 862.0, 'observation count': 29.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2564215, 37.8468181]}}, {'id': '1602', 'type': 'Feature', 'properties': {'osmid': 53045604, 'average price/sqft': 850.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2565628, 37.8477916]}}, {'id': '1603', 'type': 'Feature', 'properties': {'osmid': 53045606, 'average price/sqft': 842.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2566707, 37.8485184]}}, {'id': '1604', 'type': 'Feature', 'properties': {'osmid': 53045608, 'average price/sqft': 844.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2567093, 37.8487747]}}, {'id': '1605', 'type': 'Feature', 'properties': {'osmid': 53045610, 'average price/sqft': 840.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2567779, 37.8492247]}}, {'id': '1606', 'type': 'Feature', 'properties': {'osmid': 53045612, 'average price/sqft': 842.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2568597, 37.849755]}}, {'id': '1607', 'type': 'Feature', 'properties': {'osmid': 53045614, 'average price/sqft': 843.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2568849, 37.8499311]}}, {'id': '1608', 'type': 'Feature', 'properties': {'osmid': 53045616, 'average price/sqft': 843.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2567147, 37.8507046]}}, {'id': '1609', 'type': 'Feature', 'properties': {'osmid': 53045663, 'average price/sqft': 668.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2321317, 37.8612723]}}, {'id': '1610', 'type': 'Feature', 'properties': {'osmid': 53045748, 'average price/sqft': 321.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2397011, 37.7844111]}}, {'id': '1611', 'type': 'Feature', 'properties': {'osmid': 53045753, 'average price/sqft': 371.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2373734, 37.7868786]}}, {'id': '1612', 'type': 'Feature', 'properties': {'osmid': 53045757, 'average price/sqft': 394.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2365822, 37.787712]}}, {'id': '1613', 'type': 'Feature', 'properties': {'osmid': 53045763, 'average price/sqft': 420.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2349974, 37.7893731]}}, {'id': '1614', 'type': 'Feature', 'properties': {'osmid': 53045765, 'average price/sqft': 447.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2326652, 37.7917492]}}, {'id': '1615', 'type': 'Feature', 'properties': {'osmid': 53045768, 'average price/sqft': 475.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2312643, 37.7932288]}}, {'id': '1616', 'type': 'Feature', 'properties': {'osmid': 53045770, 'average price/sqft': 485.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2305489, 37.7939836]}}, {'id': '1617', 'type': 'Feature', 'properties': {'osmid': 53045772, 'average price/sqft': 499.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2298361, 37.794732]}}, {'id': '1618', 'type': 'Feature', 'properties': {'osmid': 53045774, 'average price/sqft': 514.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2291337, 37.7954801]}}, {'id': '1619', 'type': 'Feature', 'properties': {'osmid': 53045776, 'average price/sqft': 529.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.228416, 37.7962226]}}, {'id': '1620', 'type': 'Feature', 'properties': {'osmid': 53045778, 'average price/sqft': 546.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2277117, 37.7969707]}}, {'id': '1621', 'type': 'Feature', 'properties': {'osmid': 53045782, 'average price/sqft': 554.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2086434, 37.8128139]}}, {'id': '1622', 'type': 'Feature', 'properties': {'osmid': 53045783, 'average price/sqft': 551.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2078991, 37.8121316]}}, {'id': '1623', 'type': 'Feature', 'properties': {'osmid': 53045807, 'average price/sqft': 423.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1946926, 37.7578368]}}, {'id': '1624', 'type': 'Feature', 'properties': {'osmid': 53045809, 'average price/sqft': 419.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1941642, 37.7573151]}}, {'id': '1625', 'type': 'Feature', 'properties': {'osmid': 53045811, 'average price/sqft': 414.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1936301, 37.7567906]}}, {'id': '1626', 'type': 'Feature', 'properties': {'osmid': 53045813, 'average price/sqft': 407.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1930931, 37.7562683]}}, {'id': '1627', 'type': 'Feature', 'properties': {'osmid': 53045815, 'average price/sqft': 403.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1925651, 37.755743]}}, {'id': '1628', 'type': 'Feature', 'properties': {'osmid': 53045819, 'average price/sqft': 409.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1914989, 37.754705]}}, {'id': '1629', 'type': 'Feature', 'properties': {'osmid': 53045821, 'average price/sqft': 411.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1909607, 37.7541763]}}, {'id': '1630', 'type': 'Feature', 'properties': {'osmid': 53045874, 'average price/sqft': 745.0, 'observation count': 36.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2622194, 37.8380075]}}, {'id': '1631', 'type': 'Feature', 'properties': {'osmid': 53045875, 'average price/sqft': 710.0, 'observation count': 37.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2641972, 37.8379063]}}, {'id': '1632', 'type': 'Feature', 'properties': {'osmid': 53045882, 'average price/sqft': 693.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2666869, 37.8374431]}}, {'id': '1633', 'type': 'Feature', 'properties': {'osmid': 53045888, 'average price/sqft': 669.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2693, 37.8370977]}}, {'id': '1634', 'type': 'Feature', 'properties': {'osmid': 53045890, 'average price/sqft': 642.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2711645, 37.8368615]}}, {'id': '1635', 'type': 'Feature', 'properties': {'osmid': 53045891, 'average price/sqft': 616.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2733805, 37.8365727]}}, {'id': '1636', 'type': 'Feature', 'properties': {'osmid': 53045892, 'average price/sqft': 615.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.274753, 37.8364017]}}, {'id': '1637', 'type': 'Feature', 'properties': {'osmid': 53045959, 'average price/sqft': 675.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2678394, 37.8321848]}}, {'id': '1638', 'type': 'Feature', 'properties': {'osmid': 53045961, 'average price/sqft': 650.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2704066, 37.8325986]}}, {'id': '1639', 'type': 'Feature', 'properties': {'osmid': 53045963, 'average price/sqft': 611.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2733381, 37.8330632]}}, {'id': '1640', 'type': 'Feature', 'properties': {'osmid': 53045983, 'average price/sqft': 799.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2588372, 37.8319554]}}, {'id': '1641', 'type': 'Feature', 'properties': {'osmid': 53045984, 'average price/sqft': 777.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2599462, 37.8318562]}}, {'id': '1642', 'type': 'Feature', 'properties': {'osmid': 53045985, 'average price/sqft': 741.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2637916, 37.8315582]}}, {'id': '1643', 'type': 'Feature', 'properties': {'osmid': 53046036, 'average price/sqft': 675.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2514307, 37.8006593]}}, {'id': '1644', 'type': 'Feature', 'properties': {'osmid': 53046038, 'average price/sqft': 655.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2475462, 37.8023716]}}, {'id': '1645', 'type': 'Feature', 'properties': {'osmid': 53046039, 'average price/sqft': 655.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2474453, 37.8024439]}}, {'id': '1646', 'type': 'Feature', 'properties': {'osmid': 53046041, 'average price/sqft': 657.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2465228, 37.8025489]}}, {'id': '1647', 'type': 'Feature', 'properties': {'osmid': 53046045, 'average price/sqft': 656.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2455612, 37.8035606]}}, {'id': '1648', 'type': 'Feature', 'properties': {'osmid': 53046047, 'average price/sqft': 657.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2447584, 37.8046657]}}, {'id': '1649', 'type': 'Feature', 'properties': {'osmid': 53046048, 'average price/sqft': 660.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2433949, 37.8056662]}}, {'id': '1650', 'type': 'Feature', 'properties': {'osmid': 53046049, 'average price/sqft': 669.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2423534, 37.8063095]}}, {'id': '1651', 'type': 'Feature', 'properties': {'osmid': 53046050, 'average price/sqft': 674.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2413232, 37.806993]}}, {'id': '1652', 'type': 'Feature', 'properties': {'osmid': 53046055, 'average price/sqft': 693.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2537522, 37.8002861]}}, {'id': '1653', 'type': 'Feature', 'properties': {'osmid': 53046057, 'average price/sqft': 681.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2522737, 37.8009592]}}, {'id': '1654', 'type': 'Feature', 'properties': {'osmid': 53046104, 'average price/sqft': 642.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2207751, 37.7975207]}}, {'id': '1655', 'type': 'Feature', 'properties': {'osmid': 53046107, 'average price/sqft': 697.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2211274, 37.798847]}}, {'id': '1656', 'type': 'Feature', 'properties': {'osmid': 53046111, 'average price/sqft': 696.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2207684, 37.8000271]}}, {'id': '1657', 'type': 'Feature', 'properties': {'osmid': 53046115, 'average price/sqft': 489.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2216748, 37.7950823]}}, {'id': '1658', 'type': 'Feature', 'properties': {'osmid': 53046138, 'average price/sqft': 847.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2513656, 37.8308904]}}, {'id': '1659', 'type': 'Feature', 'properties': {'osmid': 53046140, 'average price/sqft': 854.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2503483, 37.8316642]}}, {'id': '1660', 'type': 'Feature', 'properties': {'osmid': 53046144, 'average price/sqft': 877.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2208983, 37.8132997]}}, {'id': '1661', 'type': 'Feature', 'properties': {'osmid': 53046262, 'average price/sqft': 459.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1362528, 37.7691082]}}, {'id': '1662', 'type': 'Feature', 'properties': {'osmid': 53046263, 'average price/sqft': 460.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1358907, 37.7687117]}}, {'id': '1663', 'type': 'Feature', 'properties': {'osmid': 53046383, 'average price/sqft': 357.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1586141, 37.7465779]}}, {'id': '1664', 'type': 'Feature', 'properties': {'osmid': 53046384, 'average price/sqft': 355.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1577913, 37.745434]}}, {'id': '1665', 'type': 'Feature', 'properties': {'osmid': 53046385, 'average price/sqft': 348.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1567276, 37.7440166]}}, {'id': '1666', 'type': 'Feature', 'properties': {'osmid': 53046387, 'average price/sqft': 335.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1552427, 37.7420008]}}, {'id': '1667', 'type': 'Feature', 'properties': {'osmid': 53046395, 'average price/sqft': 424.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1832638, 37.7652141]}}, {'id': '1668', 'type': 'Feature', 'properties': {'osmid': 53046396, 'average price/sqft': 425.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1812351, 37.7629786]}}, {'id': '1669', 'type': 'Feature', 'properties': {'osmid': 53046397, 'average price/sqft': 418.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1787543, 37.7605542]}}, {'id': '1670', 'type': 'Feature', 'properties': {'osmid': 53046399, 'average price/sqft': 410.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1777262, 37.7593672]}}, {'id': '1671', 'type': 'Feature', 'properties': {'osmid': 53046506, 'average price/sqft': 617.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1904438, 37.8326563]}}, {'id': '1672', 'type': 'Feature', 'properties': {'osmid': 53046509, 'average price/sqft': 629.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1908644, 37.8346493]}}, {'id': '1673', 'type': 'Feature', 'properties': {'osmid': 53046513, 'average price/sqft': 641.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1927828, 37.8355794]}}, {'id': '1674', 'type': 'Feature', 'properties': {'osmid': 53046603, 'average price/sqft': 439.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2832793, 37.8383644]}}, {'id': '1675', 'type': 'Feature', 'properties': {'osmid': 53046604, 'average price/sqft': 480.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2839626, 37.8406203]}}, {'id': '1676', 'type': 'Feature', 'properties': {'osmid': 53046605, 'average price/sqft': 464.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2845506, 37.8423384]}}, {'id': '1677', 'type': 'Feature', 'properties': {'osmid': 53046606, 'average price/sqft': 453.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2850024, 37.8438077]}}, {'id': '1678', 'type': 'Feature', 'properties': {'osmid': 53046607, 'average price/sqft': 461.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2851995, 37.8444876]}}, {'id': '1679', 'type': 'Feature', 'properties': {'osmid': 53046608, 'average price/sqft': 489.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2854973, 37.845391]}}, {'id': '1680', 'type': 'Feature', 'properties': {'osmid': 53046609, 'average price/sqft': 528.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2857752, 37.8462477]}}, {'id': '1681', 'type': 'Feature', 'properties': {'osmid': 53046610, 'average price/sqft': 553.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2860049, 37.8469724]}}, {'id': '1682', 'type': 'Feature', 'properties': {'osmid': 53046613, 'average price/sqft': 570.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2861456, 37.8473738]}}, {'id': '1683', 'type': 'Feature', 'properties': {'osmid': 53046650, 'average price/sqft': 481.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1849081, 37.7517321]}}, {'id': '1684', 'type': 'Feature', 'properties': {'osmid': 53046652, 'average price/sqft': 481.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.183301, 37.752485]}}, {'id': '1685', 'type': 'Feature', 'properties': {'osmid': 53046653, 'average price/sqft': 506.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1816642, 37.7532521]}}, {'id': '1686', 'type': 'Feature', 'properties': {'osmid': 53046655, 'average price/sqft': 511.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1809793, 37.753573]}}, {'id': '1687', 'type': 'Feature', 'properties': {'osmid': 53046657, 'average price/sqft': 512.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1800838, 37.7540018]}}, {'id': '1688', 'type': 'Feature', 'properties': {'osmid': 53046659, 'average price/sqft': 532.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1783332, 37.7548148]}}, {'id': '1689', 'type': 'Feature', 'properties': {'osmid': 53046663, 'average price/sqft': 394.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1768926, 37.7559269]}}, {'id': '1690', 'type': 'Feature', 'properties': {'osmid': 53046667, 'average price/sqft': 381.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1734293, 37.7575467]}}, {'id': '1691', 'type': 'Feature', 'properties': {'osmid': 53046669, 'average price/sqft': 385.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1717136, 37.7583699]}}, {'id': '1692', 'type': 'Feature', 'properties': {'osmid': 53046671, 'average price/sqft': 394.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1681195, 37.7600389]}}, {'id': '1693', 'type': 'Feature', 'properties': {'osmid': 53046678, 'average price/sqft': 404.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1664076, 37.7611481]}}, {'id': '1694', 'type': 'Feature', 'properties': {'osmid': 53046679, 'average price/sqft': 418.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.164399, 37.7621024]}}, {'id': '1695', 'type': 'Feature', 'properties': {'osmid': 53046682, 'average price/sqft': 499.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1873692, 37.7499974]}}, {'id': '1696', 'type': 'Feature', 'properties': {'osmid': 53046683, 'average price/sqft': 482.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1847219, 37.7515069]}}, {'id': '1697', 'type': 'Feature', 'properties': {'osmid': 53046925, 'average price/sqft': 592.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2052135, 37.840866]}}, {'id': '1698', 'type': 'Feature', 'properties': {'osmid': 53046928, 'average price/sqft': 564.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2030973, 37.8417736]}}, {'id': '1699', 'type': 'Feature', 'properties': {'osmid': 53046942, 'average price/sqft': 361.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1203723, 37.7494859]}}, {'id': '1700', 'type': 'Feature', 'properties': {'osmid': 53047006, 'average price/sqft': 455.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2098834, 37.7838351]}}, {'id': '1701', 'type': 'Feature', 'properties': {'osmid': 53047007, 'average price/sqft': 459.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.207811, 37.7819776]}}, {'id': '1702', 'type': 'Feature', 'properties': {'osmid': 53047008, 'average price/sqft': 462.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2061581, 37.7804907]}}, {'id': '1703', 'type': 'Feature', 'properties': {'osmid': 53047012, 'average price/sqft': 732.0, 'observation count': 36.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2617488, 37.8409682]}}, {'id': '1704', 'type': 'Feature', 'properties': {'osmid': 53047013, 'average price/sqft': 714.0, 'observation count': 36.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.26275, 37.8410749]}}, {'id': '1705', 'type': 'Feature', 'properties': {'osmid': 53047014, 'average price/sqft': 683.0, 'observation count': 36.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2646455, 37.8412491]}}, {'id': '1706', 'type': 'Feature', 'properties': {'osmid': 53047017, 'average price/sqft': 663.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2673897, 37.8409119]}}, {'id': '1707', 'type': 'Feature', 'properties': {'osmid': 53047020, 'average price/sqft': 630.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.271914, 37.8404349]}}, {'id': '1708', 'type': 'Feature', 'properties': {'osmid': 53047023, 'average price/sqft': 619.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2741117, 37.8401523]}}, {'id': '1709', 'type': 'Feature', 'properties': {'osmid': 53047025, 'average price/sqft': 615.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2749285, 37.8400357]}}, {'id': '1710', 'type': 'Feature', 'properties': {'osmid': 53047027, 'average price/sqft': 601.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.276398, 37.8398495]}}, {'id': '1711', 'type': 'Feature', 'properties': {'osmid': 53047031, 'average price/sqft': 560.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.28014, 37.8393255]}}, {'id': '1712', 'type': 'Feature', 'properties': {'osmid': 53047157, 'average price/sqft': 477.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1838212, 37.7531265]}}, {'id': '1713', 'type': 'Feature', 'properties': {'osmid': 53047160, 'average price/sqft': 485.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1827282, 37.7517336]}}, {'id': '1714', 'type': 'Feature', 'properties': {'osmid': 53047161, 'average price/sqft': 488.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1821603, 37.7509716]}}, {'id': '1715', 'type': 'Feature', 'properties': {'osmid': 53047163, 'average price/sqft': 479.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1816024, 37.7502145]}}, {'id': '1716', 'type': 'Feature', 'properties': {'osmid': 53047165, 'average price/sqft': 467.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1810391, 37.7494595]}}, {'id': '1717', 'type': 'Feature', 'properties': {'osmid': 53047168, 'average price/sqft': 449.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1800901, 37.7481516]}}, {'id': '1718', 'type': 'Feature', 'properties': {'osmid': 53047169, 'average price/sqft': 440.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1795963, 37.7475023]}}, {'id': '1719', 'type': 'Feature', 'properties': {'osmid': 53047171, 'average price/sqft': 434.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1791156, 37.7468393]}}, {'id': '1720', 'type': 'Feature', 'properties': {'osmid': 53047174, 'average price/sqft': 428.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1788197, 37.7461038]}}, {'id': '1721', 'type': 'Feature', 'properties': {'osmid': 53047175, 'average price/sqft': 406.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1769656, 37.7436295]}}, {'id': '1722', 'type': 'Feature', 'properties': {'osmid': 53047179, 'average price/sqft': 372.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1743081, 37.7400853]}}, {'id': '1723', 'type': 'Feature', 'properties': {'osmid': 53047284, 'average price/sqft': 337.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1206427, 37.752088]}}, {'id': '1724', 'type': 'Feature', 'properties': {'osmid': 53047285, 'average price/sqft': 326.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1199917, 37.7517724]}}, {'id': '1725', 'type': 'Feature', 'properties': {'osmid': 53047380, 'average price/sqft': 842.0, 'observation count': 33.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2575538, 37.8447568]}}, {'id': '1726', 'type': 'Feature', 'properties': {'osmid': 53047381, 'average price/sqft': 853.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2571994, 37.845199]}}, {'id': '1727', 'type': 'Feature', 'properties': {'osmid': 53047382, 'average price/sqft': 849.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2572385, 37.8459908]}}, {'id': '1728', 'type': 'Feature', 'properties': {'osmid': 53047448, 'average price/sqft': 411.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1818083, 37.7781469]}}, {'id': '1729', 'type': 'Feature', 'properties': {'osmid': 53047461, 'average price/sqft': 749.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2335725, 37.8087509]}}, {'id': '1730', 'type': 'Feature', 'properties': {'osmid': 53047467, 'average price/sqft': 753.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2311333, 37.8093428]}}, {'id': '1731', 'type': 'Feature', 'properties': {'osmid': 53047615, 'average price/sqft': 943.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.252196, 37.8404044]}}, {'id': '1732', 'type': 'Feature', 'properties': {'osmid': 53047769, 'average price/sqft': 447.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2085867, 37.7864008]}}, {'id': '1733', 'type': 'Feature', 'properties': {'osmid': 53047770, 'average price/sqft': 464.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2069154, 37.7873759]}}, {'id': '1734', 'type': 'Feature', 'properties': {'osmid': 53047773, 'average price/sqft': 463.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2067794, 37.7872433]}}, {'id': '1735', 'type': 'Feature', 'properties': {'osmid': 53047774, 'average price/sqft': 501.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2049437, 37.7883201]}}, {'id': '1736', 'type': 'Feature', 'properties': {'osmid': 53047835, 'average price/sqft': 586.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2007734, 37.838701]}}, {'id': '1737', 'type': 'Feature', 'properties': {'osmid': 53047838, 'average price/sqft': 558.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1993377, 37.8390159]}}, {'id': '1738', 'type': 'Feature', 'properties': {'osmid': 53047851, 'average price/sqft': 606.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1868409, 37.8298983]}}, {'id': '1739', 'type': 'Feature', 'properties': {'osmid': 53047852, 'average price/sqft': 606.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1870964, 37.8296939]}}, {'id': '1740', 'type': 'Feature', 'properties': {'osmid': 53047854, 'average price/sqft': 606.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1874912, 37.8300871]}}, {'id': '1741', 'type': 'Feature', 'properties': {'osmid': 53047856, 'average price/sqft': 610.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1875341, 37.8271516]}}, {'id': '1742', 'type': 'Feature', 'properties': {'osmid': 53047871, 'average price/sqft': 489.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.127585, 37.7468094]}}, {'id': '1743', 'type': 'Feature', 'properties': {'osmid': 53047896, 'average price/sqft': 635.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.255008, 37.8088708]}}, {'id': '1744', 'type': 'Feature', 'properties': {'osmid': 53047897, 'average price/sqft': 620.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2551558, 37.8077062]}}, {'id': '1745', 'type': 'Feature', 'properties': {'osmid': 53047920, 'average price/sqft': 785.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2578244, 37.8280996]}}, {'id': '1746', 'type': 'Feature', 'properties': {'osmid': 53047922, 'average price/sqft': 779.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2587681, 37.828301]}}, {'id': '1747', 'type': 'Feature', 'properties': {'osmid': 53047924, 'average price/sqft': 775.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2597772, 37.8284625]}}, {'id': '1748', 'type': 'Feature', 'properties': {'osmid': 53047925, 'average price/sqft': 759.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2608317, 37.8286292]}}, {'id': '1749', 'type': 'Feature', 'properties': {'osmid': 53047926, 'average price/sqft': 747.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2620201, 37.8288173]}}, {'id': '1750', 'type': 'Feature', 'properties': {'osmid': 53047927, 'average price/sqft': 728.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.263206, 37.8290064]}}, {'id': '1751', 'type': 'Feature', 'properties': {'osmid': 53047928, 'average price/sqft': 711.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2644577, 37.8292048]}}, {'id': '1752', 'type': 'Feature', 'properties': {'osmid': 53047935, 'average price/sqft': 649.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2684307, 37.8298335]}}, {'id': '1753', 'type': 'Feature', 'properties': {'osmid': 53047937, 'average price/sqft': 619.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2710135, 37.8302461]}}, {'id': '1754', 'type': 'Feature', 'properties': {'osmid': 53047939, 'average price/sqft': 587.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2739323, 37.8307066]}}, {'id': '1755', 'type': 'Feature', 'properties': {'osmid': 53047940, 'average price/sqft': 566.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2759384, 37.8309602]}}, {'id': '1756', 'type': 'Feature', 'properties': {'osmid': 53047960, 'average price/sqft': 750.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.253395, 37.8256836]}}, {'id': '1757', 'type': 'Feature', 'properties': {'osmid': 53047961, 'average price/sqft': 763.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2541652, 37.8263246]}}, {'id': '1758', 'type': 'Feature', 'properties': {'osmid': 53047997, 'average price/sqft': 685.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2654618, 37.8473185]}}, {'id': '1759', 'type': 'Feature', 'properties': {'osmid': 53047998, 'average price/sqft': 673.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2686611, 37.846901]}}, {'id': '1760', 'type': 'Feature', 'properties': {'osmid': 53048009, 'average price/sqft': 576.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1549173, 37.7736032]}}, {'id': '1761', 'type': 'Feature', 'properties': {'osmid': 53048010, 'average price/sqft': 576.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1549231, 37.773233]}}, {'id': '1762', 'type': 'Feature', 'properties': {'osmid': 53048121, 'average price/sqft': 684.0, 'observation count': 35.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2647538, 37.8420249]}}, {'id': '1763', 'type': 'Feature', 'properties': {'osmid': 53048124, 'average price/sqft': 659.0, 'observation count': 31.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2675487, 37.841675]}}, {'id': '1764', 'type': 'Feature', 'properties': {'osmid': 53048125, 'average price/sqft': 643.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2699148, 37.8413716]}}, {'id': '1765', 'type': 'Feature', 'properties': {'osmid': 53048129, 'average price/sqft': 629.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2720583, 37.8411453]}}, {'id': '1766', 'type': 'Feature', 'properties': {'osmid': 53048130, 'average price/sqft': 619.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2742596, 37.8408831]}}, {'id': '1767', 'type': 'Feature', 'properties': {'osmid': 53048131, 'average price/sqft': 610.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2746183, 37.8408664]}}, {'id': '1768', 'type': 'Feature', 'properties': {'osmid': 53048134, 'average price/sqft': 593.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2765565, 37.8406791]}}, {'id': '1769', 'type': 'Feature', 'properties': {'osmid': 53048139, 'average price/sqft': 564.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.278178, 37.8404385]}}, {'id': '1770', 'type': 'Feature', 'properties': {'osmid': 53048141, 'average price/sqft': 545.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.28036, 37.8400084]}}, {'id': '1771', 'type': 'Feature', 'properties': {'osmid': 53048208, 'average price/sqft': 627.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2559897, 37.822718]}}, {'id': '1772', 'type': 'Feature', 'properties': {'osmid': 53048209, 'average price/sqft': 626.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2557464, 37.8229166]}}, {'id': '1773', 'type': 'Feature', 'properties': {'osmid': 53048478, 'average price/sqft': 629.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2174434, 37.8439227]}}, {'id': '1774', 'type': 'Feature', 'properties': {'osmid': 53048480, 'average price/sqft': 621.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2164705, 37.8442939]}}, {'id': '1775', 'type': 'Feature', 'properties': {'osmid': 53048691, 'average price/sqft': 688.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2022769, 37.8066794]}}, {'id': '1776', 'type': 'Feature', 'properties': {'osmid': 53048693, 'average price/sqft': 678.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2018324, 37.8058453]}}, {'id': '1777', 'type': 'Feature', 'properties': {'osmid': 53048700, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2631334, 37.8116263]}}, {'id': '1778', 'type': 'Feature', 'properties': {'osmid': 53048758, 'average price/sqft': 683.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2082443, 37.8365287]}}, {'id': '1779', 'type': 'Feature', 'properties': {'osmid': 53048762, 'average price/sqft': 643.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.207736, 37.8388239]}}, {'id': '1780', 'type': 'Feature', 'properties': {'osmid': 53048766, 'average price/sqft': 603.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2058803, 37.8379151]}}, {'id': '1781', 'type': 'Feature', 'properties': {'osmid': 53048768, 'average price/sqft': 582.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2052694, 37.8393263]}}, {'id': '1782', 'type': 'Feature', 'properties': {'osmid': 53048812, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2402871, 37.7795634]}}, {'id': '1783', 'type': 'Feature', 'properties': {'osmid': 53048832, 'average price/sqft': 552.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2338279, 37.8571533]}}, {'id': '1784', 'type': 'Feature', 'properties': {'osmid': 53048833, 'average price/sqft': 559.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2326319, 37.8580325]}}, {'id': '1785', 'type': 'Feature', 'properties': {'osmid': 53048971, 'average price/sqft': 390.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2575546, 37.811268]}}, {'id': '1786', 'type': 'Feature', 'properties': {'osmid': 53048973, 'average price/sqft': 455.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2563925, 37.8109131]}}, {'id': '1787', 'type': 'Feature', 'properties': {'osmid': 53048975, 'average price/sqft': 498.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2553466, 37.8106615]}}, {'id': '1788', 'type': 'Feature', 'properties': {'osmid': 53048977, 'average price/sqft': 590.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2536218, 37.8105237]}}, {'id': '1789', 'type': 'Feature', 'properties': {'osmid': 53048979, 'average price/sqft': 617.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2525394, 37.8105767]}}, {'id': '1790', 'type': 'Feature', 'properties': {'osmid': 53048981, 'average price/sqft': 626.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2514698, 37.8108462]}}, {'id': '1791', 'type': 'Feature', 'properties': {'osmid': 53048989, 'average price/sqft': 631.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2504213, 37.8112328]}}, {'id': '1792', 'type': 'Feature', 'properties': {'osmid': 53049299, 'average price/sqft': 400.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1744835, 37.7495999]}}, {'id': '1793', 'type': 'Feature', 'properties': {'osmid': 53049300, 'average price/sqft': 411.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1732785, 37.7501155]}}, {'id': '1794', 'type': 'Feature', 'properties': {'osmid': 53049302, 'average price/sqft': 409.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1727743, 37.7503505]}}, {'id': '1795', 'type': 'Feature', 'properties': {'osmid': 53049304, 'average price/sqft': 406.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1722296, 37.7506018]}}, {'id': '1796', 'type': 'Feature', 'properties': {'osmid': 53049308, 'average price/sqft': 375.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1701373, 37.7515691]}}, {'id': '1797', 'type': 'Feature', 'properties': {'osmid': 53049311, 'average price/sqft': 366.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.169303, 37.7519556]}}, {'id': '1798', 'type': 'Feature', 'properties': {'osmid': 53049313, 'average price/sqft': 363.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1689533, 37.7521174]}}, {'id': '1799', 'type': 'Feature', 'properties': {'osmid': 53049315, 'average price/sqft': 356.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1678849, 37.7526118]}}, {'id': '1800', 'type': 'Feature', 'properties': {'osmid': 53049317, 'average price/sqft': 353.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1675674, 37.752761]}}, {'id': '1801', 'type': 'Feature', 'properties': {'osmid': 53049319, 'average price/sqft': 345.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1668059, 37.7531092]}}, {'id': '1802', 'type': 'Feature', 'properties': {'osmid': 53049323, 'average price/sqft': 326.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1643313, 37.7542546]}}, {'id': '1803', 'type': 'Feature', 'properties': {'osmid': 53049325, 'average price/sqft': 321.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1631261, 37.7548155]}}, {'id': '1804', 'type': 'Feature', 'properties': {'osmid': 53049326, 'average price/sqft': 319.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1603203, 37.7558791]}}, {'id': '1805', 'type': 'Feature', 'properties': {'osmid': 53049333, 'average price/sqft': 443.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1779974, 37.7482529]}}, {'id': '1806', 'type': 'Feature', 'properties': {'osmid': 53049335, 'average price/sqft': 449.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1763739, 37.7490023]}}, {'id': '1807', 'type': 'Feature', 'properties': {'osmid': 53049337, 'average price/sqft': 449.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1746504, 37.7498156]}}, {'id': '1808', 'type': 'Feature', 'properties': {'osmid': 53049710, 'average price/sqft': 686.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2427193, 37.811265]}}, {'id': '1809', 'type': 'Feature', 'properties': {'osmid': 53049711, 'average price/sqft': 716.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2355172, 37.8094508]}}, {'id': '1810', 'type': 'Feature', 'properties': {'osmid': 53049712, 'average price/sqft': 732.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2325713, 37.8098848]}}, {'id': '1811', 'type': 'Feature', 'properties': {'osmid': 53049713, 'average price/sqft': 734.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2324506, 37.8098911]}}, {'id': '1812', 'type': 'Feature', 'properties': {'osmid': 53049714, 'average price/sqft': 738.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2318543, 37.809926]}}, {'id': '1813', 'type': 'Feature', 'properties': {'osmid': 53049718, 'average price/sqft': 754.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2306355, 37.8100955]}}, {'id': '1814', 'type': 'Feature', 'properties': {'osmid': 53049719, 'average price/sqft': 769.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.228627, 37.8111873]}}, {'id': '1815', 'type': 'Feature', 'properties': {'osmid': 53049722, 'average price/sqft': 772.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2276499, 37.8119705]}}, {'id': '1816', 'type': 'Feature', 'properties': {'osmid': 53049861, 'average price/sqft': 476.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.256021, 37.8153429]}}, {'id': '1817', 'type': 'Feature', 'properties': {'osmid': 53049862, 'average price/sqft': 494.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2554703, 37.8146437]}}, {'id': '1818', 'type': 'Feature', 'properties': {'osmid': 53049864, 'average price/sqft': 478.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2551592, 37.8137689]}}, {'id': '1819', 'type': 'Feature', 'properties': {'osmid': 53049866, 'average price/sqft': 463.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.255508, 37.812502]}}, {'id': '1820', 'type': 'Feature', 'properties': {'osmid': 53049868, 'average price/sqft': 472.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2551523, 37.8116231]}}, {'id': '1821', 'type': 'Feature', 'properties': {'osmid': 53049872, 'average price/sqft': 477.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2557273, 37.8098646]}}, {'id': '1822', 'type': 'Feature', 'properties': {'osmid': 53049873, 'average price/sqft': 549.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2561562, 37.8089674]}}, {'id': '1823', 'type': 'Feature', 'properties': {'osmid': 53049876, 'average price/sqft': 571.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2559612, 37.8074896]}}, {'id': '1824', 'type': 'Feature', 'properties': {'osmid': 53049939, 'average price/sqft': 554.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2340338, 37.8572719]}}, {'id': '1825', 'type': 'Feature', 'properties': {'osmid': 53050035, 'average price/sqft': 732.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1491275, 37.7915183]}}, {'id': '1826', 'type': 'Feature', 'properties': {'osmid': 53050039, 'average price/sqft': 727.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1475142, 37.7896753]}}, {'id': '1827', 'type': 'Feature', 'properties': {'osmid': 53050059, 'average price/sqft': 539.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1289381, 37.7683142]}}, {'id': '1828', 'type': 'Feature', 'properties': {'osmid': 53050183, 'average price/sqft': 721.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2571862, 37.7986874]}}, {'id': '1829', 'type': 'Feature', 'properties': {'osmid': 53050199, 'average price/sqft': 821.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2237892, 37.8077326]}}, {'id': '1830', 'type': 'Feature', 'properties': {'osmid': 53050200, 'average price/sqft': 731.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2075356, 37.8237401]}}, {'id': '1831', 'type': 'Feature', 'properties': {'osmid': 53050435, 'average price/sqft': 834.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2228349, 37.8083993]}}, {'id': '1832', 'type': 'Feature', 'properties': {'osmid': 53050438, 'average price/sqft': 832.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2198441, 37.806698]}}, {'id': '1833', 'type': 'Feature', 'properties': {'osmid': 53050440, 'average price/sqft': 824.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2183883, 37.8060143]}}, {'id': '1834', 'type': 'Feature', 'properties': {'osmid': 53050442, 'average price/sqft': 824.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2175178, 37.8057232]}}, {'id': '1835', 'type': 'Feature', 'properties': {'osmid': 53050443, 'average price/sqft': 818.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2166689, 37.8055185]}}, {'id': '1836', 'type': 'Feature', 'properties': {'osmid': 53050537, 'average price/sqft': 317.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2949535, 37.8053081]}}, {'id': '1837', 'type': 'Feature', 'properties': {'osmid': 53050539, 'average price/sqft': 321.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2945819, 37.8063733]}}, {'id': '1838', 'type': 'Feature', 'properties': {'osmid': 53050541, 'average price/sqft': 315.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2942879, 37.8071765]}}, {'id': '1839', 'type': 'Feature', 'properties': {'osmid': 53050543, 'average price/sqft': 315.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2937463, 37.8087122]}}, {'id': '1840', 'type': 'Feature', 'properties': {'osmid': 53050544, 'average price/sqft': 318.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2934922, 37.8094328]}}, {'id': '1841', 'type': 'Feature', 'properties': {'osmid': 53050548, 'average price/sqft': 319.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2933957, 37.8096701]}}, {'id': '1842', 'type': 'Feature', 'properties': {'osmid': 53050550, 'average price/sqft': 326.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.293224, 37.810166]}}, {'id': '1843', 'type': 'Feature', 'properties': {'osmid': 53050554, 'average price/sqft': 328.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2931462, 37.81038]}}, {'id': '1844', 'type': 'Feature', 'properties': {'osmid': 53050555, 'average price/sqft': 339.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2928938, 37.8111198]}}, {'id': '1845', 'type': 'Feature', 'properties': {'osmid': 53050556, 'average price/sqft': 386.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2923733, 37.812598]}}, {'id': '1846', 'type': 'Feature', 'properties': {'osmid': 53050557, 'average price/sqft': 411.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.292113, 37.8133386]}}, {'id': '1847', 'type': 'Feature', 'properties': {'osmid': 53050592, 'average price/sqft': 298.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.29589, 37.8026144]}}, {'id': '1848', 'type': 'Feature', 'properties': {'osmid': 53050593, 'average price/sqft': 316.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2953638, 37.8041136]}}, {'id': '1849', 'type': 'Feature', 'properties': {'osmid': 53050807, 'average price/sqft': 539.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1289247, 37.7667452]}}, {'id': '1850', 'type': 'Feature', 'properties': {'osmid': 53050847, 'average price/sqft': 769.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2266262, 37.8109539]}}, {'id': '1851', 'type': 'Feature', 'properties': {'osmid': 53050944, 'average price/sqft': 508.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2528522, 37.813996]}}, {'id': '1852', 'type': 'Feature', 'properties': {'osmid': 53051019, 'average price/sqft': 694.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2420599, 37.8150917]}}, {'id': '1853', 'type': 'Feature', 'properties': {'osmid': 53051020, 'average price/sqft': 695.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2415878, 37.8145154]}}, {'id': '1854', 'type': 'Feature', 'properties': {'osmid': 53051023, 'average price/sqft': 692.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2411587, 37.8137017]}}, {'id': '1855', 'type': 'Feature', 'properties': {'osmid': 53051025, 'average price/sqft': 693.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.240576, 37.8131603]}}, {'id': '1856', 'type': 'Feature', 'properties': {'osmid': 53051030, 'average price/sqft': 656.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.245524, 37.8163375]}}, {'id': '1857', 'type': 'Feature', 'properties': {'osmid': 53051031, 'average price/sqft': 669.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2443787, 37.8161099]}}, {'id': '1858', 'type': 'Feature', 'properties': {'osmid': 53051033, 'average price/sqft': 678.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2431173, 37.8160727]}}, {'id': '1859', 'type': 'Feature', 'properties': {'osmid': 53051098, 'average price/sqft': 296.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2359796, 37.773709]}}, {'id': '1860', 'type': 'Feature', 'properties': {'osmid': 53051100, 'average price/sqft': 296.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2364991, 37.7737068]}}, {'id': '1861', 'type': 'Feature', 'properties': {'osmid': 53051102, 'average price/sqft': 294.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2373325, 37.7754461]}}, {'id': '1862', 'type': 'Feature', 'properties': {'osmid': 53051112, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1824631, 37.8084585]}}, {'id': '1863', 'type': 'Feature', 'properties': {'osmid': 53051114, 'average price/sqft': 530.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1811382, 37.8085994]}}, {'id': '1864', 'type': 'Feature', 'properties': {'osmid': 53051227, 'average price/sqft': 491.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2138249, 37.7663598]}}, {'id': '1865', 'type': 'Feature', 'properties': {'osmid': 53051229, 'average price/sqft': 491.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2128808, 37.7670829]}}, {'id': '1866', 'type': 'Feature', 'properties': {'osmid': 53051237, 'average price/sqft': 469.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2113555, 37.7682478]}}, {'id': '1867', 'type': 'Feature', 'properties': {'osmid': 53054267, 'average price/sqft': 427.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.221268, 37.7713877]}}, {'id': '1868', 'type': 'Feature', 'properties': {'osmid': 53054269, 'average price/sqft': 414.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2203505, 37.7709458]}}, {'id': '1869', 'type': 'Feature', 'properties': {'osmid': 53054275, 'average price/sqft': 501.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2181405, 37.769884]}}, {'id': '1870', 'type': 'Feature', 'properties': {'osmid': 53054391, 'average price/sqft': 680.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2224586, 37.8416718]}}, {'id': '1871', 'type': 'Feature', 'properties': {'osmid': 53054392, 'average price/sqft': 686.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2220023, 37.841257]}}, {'id': '1872', 'type': 'Feature', 'properties': {'osmid': 53054393, 'average price/sqft': 730.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2206279, 37.8388091]}}, {'id': '1873', 'type': 'Feature', 'properties': {'osmid': 53054405, 'average price/sqft': 734.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2089443, 37.8330864]}}, {'id': '1874', 'type': 'Feature', 'properties': {'osmid': 53054407, 'average price/sqft': 720.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2093466, 37.8321553]}}, {'id': '1875', 'type': 'Feature', 'properties': {'osmid': 53054418, 'average price/sqft': 404.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1744409, 37.7434943]}}, {'id': '1876', 'type': 'Feature', 'properties': {'osmid': 53054420, 'average price/sqft': 413.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1727759, 37.7442737]}}, {'id': '1877', 'type': 'Feature', 'properties': {'osmid': 53054421, 'average price/sqft': 393.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1711158, 37.7450473]}}, {'id': '1878', 'type': 'Feature', 'properties': {'osmid': 53054426, 'average price/sqft': 662.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2439739, 37.807904]}}, {'id': '1879', 'type': 'Feature', 'properties': {'osmid': 53054427, 'average price/sqft': 669.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2434353, 37.8075122]}}, {'id': '1880', 'type': 'Feature', 'properties': {'osmid': 53054441, 'average price/sqft': 941.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.251942, 37.8459678]}}, {'id': '1881', 'type': 'Feature', 'properties': {'osmid': 53054442, 'average price/sqft': 942.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2493531, 37.8469587]}}, {'id': '1882', 'type': 'Feature', 'properties': {'osmid': 53054460, 'average price/sqft': 290.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2351881, 37.7774409]}}, {'id': '1883', 'type': 'Feature', 'properties': {'osmid': 53054462, 'average price/sqft': 291.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2342365, 37.7767812]}}, {'id': '1884', 'type': 'Feature', 'properties': {'osmid': 53054464, 'average price/sqft': 292.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2330348, 37.7758696]}}, {'id': '1885', 'type': 'Feature', 'properties': {'osmid': 53054467, 'average price/sqft': 295.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2327437, 37.7753694]}}, {'id': '1886', 'type': 'Feature', 'properties': {'osmid': 53054472, 'average price/sqft': 317.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.227024, 37.7731283]}}, {'id': '1887', 'type': 'Feature', 'properties': {'osmid': 53054474, 'average price/sqft': 324.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2262435, 37.7728548]}}, {'id': '1888', 'type': 'Feature', 'properties': {'osmid': 53054476, 'average price/sqft': 332.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2254549, 37.7725941]}}, {'id': '1889', 'type': 'Feature', 'properties': {'osmid': 53054478, 'average price/sqft': 344.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2243955, 37.77224]}}, {'id': '1890', 'type': 'Feature', 'properties': {'osmid': 53054662, 'average price/sqft': 708.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2125951, 37.8012935]}}, {'id': '1891', 'type': 'Feature', 'properties': {'osmid': 53054723, 'average price/sqft': 473.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2205637, 37.7959344]}}, {'id': '1892', 'type': 'Feature', 'properties': {'osmid': 53054725, 'average price/sqft': 645.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2204409, 37.7973553]}}, {'id': '1893', 'type': 'Feature', 'properties': {'osmid': 53054731, 'average price/sqft': 277.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2969963, 37.8028694]}}, {'id': '1894', 'type': 'Feature', 'properties': {'osmid': 53054732, 'average price/sqft': 299.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2964477, 37.8043647]}}, {'id': '1895', 'type': 'Feature', 'properties': {'osmid': 53054737, 'average price/sqft': 304.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2960323, 37.8055727]}}, {'id': '1896', 'type': 'Feature', 'properties': {'osmid': 53054739, 'average price/sqft': 310.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2956596, 37.8066174]}}, {'id': '1897', 'type': 'Feature', 'properties': {'osmid': 53054743, 'average price/sqft': 294.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2944486, 37.8098767]}}, {'id': '1898', 'type': 'Feature', 'properties': {'osmid': 53054781, 'average price/sqft': 548.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1885668, 37.8009789]}}, {'id': '1899', 'type': 'Feature', 'properties': {'osmid': 53054784, 'average price/sqft': 585.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1892204, 37.7966782]}}, {'id': '1900', 'type': 'Feature', 'properties': {'osmid': 53054805, 'average price/sqft': 636.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1956169, 37.8274386]}}, {'id': '1901', 'type': 'Feature', 'properties': {'osmid': 53054806, 'average price/sqft': 638.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1961687, 37.8272669]}}, {'id': '1902', 'type': 'Feature', 'properties': {'osmid': 53054816, 'average price/sqft': 627.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2515414, 37.8098674]}}, {'id': '1903', 'type': 'Feature', 'properties': {'osmid': 53054820, 'average price/sqft': 612.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2505143, 37.8100983]}}, {'id': '1904', 'type': 'Feature', 'properties': {'osmid': 53054878, 'average price/sqft': 568.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2317239, 37.8590875]}}, {'id': '1905', 'type': 'Feature', 'properties': {'osmid': 53054883, 'average price/sqft': 517.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2335805, 37.8553236]}}, {'id': '1906', 'type': 'Feature', 'properties': {'osmid': 53054885, 'average price/sqft': 342.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1697447, 37.7394448]}}, {'id': '1907', 'type': 'Feature', 'properties': {'osmid': 53054886, 'average price/sqft': 318.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1693111, 37.7388571]}}, {'id': '1908', 'type': 'Feature', 'properties': {'osmid': 53054888, 'average price/sqft': 314.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1688642, 37.7382415]}}, {'id': '1909', 'type': 'Feature', 'properties': {'osmid': 53054889, 'average price/sqft': 314.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1684028, 37.7376315]}}, {'id': '1910', 'type': 'Feature', 'properties': {'osmid': 53054890, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1679813, 37.737062]}}, {'id': '1911', 'type': 'Feature', 'properties': {'osmid': 53054904, 'average price/sqft': 717.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1468506, 37.7908063]}}, {'id': '1912', 'type': 'Feature', 'properties': {'osmid': 53054908, 'average price/sqft': 722.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.146639, 37.7893845]}}, {'id': '1913', 'type': 'Feature', 'properties': {'osmid': 53054912, 'average price/sqft': 725.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1470876, 37.7885371]}}, {'id': '1914', 'type': 'Feature', 'properties': {'osmid': 53054940, 'average price/sqft': 379.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2356283, 37.7819662]}}, {'id': '1915', 'type': 'Feature', 'properties': {'osmid': 53054942, 'average price/sqft': 379.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2349117, 37.7827308]}}, {'id': '1916', 'type': 'Feature', 'properties': {'osmid': 53054943, 'average price/sqft': 401.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2333628, 37.7844406]}}, {'id': '1917', 'type': 'Feature', 'properties': {'osmid': 53054944, 'average price/sqft': 402.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2330147, 37.7848075]}}, {'id': '1918', 'type': 'Feature', 'properties': {'osmid': 53054969, 'average price/sqft': 308.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2364868, 37.7801628]}}, {'id': '1919', 'type': 'Feature', 'properties': {'osmid': 53055132, 'average price/sqft': 1008.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2469252, 37.83976]}}, {'id': '1920', 'type': 'Feature', 'properties': {'osmid': 53055153, 'average price/sqft': 475.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.145251, 37.7615756]}}, {'id': '1921', 'type': 'Feature', 'properties': {'osmid': 53055207, 'average price/sqft': 711.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2109958, 37.8028517]}}, {'id': '1922', 'type': 'Feature', 'properties': {'osmid': 53055208, 'average price/sqft': 690.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2085845, 37.8012982]}}, {'id': '1923', 'type': 'Feature', 'properties': {'osmid': 53055424, 'average price/sqft': 690.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2414934, 37.815485]}}, {'id': '1924', 'type': 'Feature', 'properties': {'osmid': 53055428, 'average price/sqft': 693.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2399752, 37.8135619]}}, {'id': '1925', 'type': 'Feature', 'properties': {'osmid': 53055431, 'average price/sqft': 692.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.239237, 37.8140546]}}, {'id': '1926', 'type': 'Feature', 'properties': {'osmid': 53055433, 'average price/sqft': 691.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2382234, 37.8134892]}}, {'id': '1927', 'type': 'Feature', 'properties': {'osmid': 53055438, 'average price/sqft': 692.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2368676, 37.8137954]}}, {'id': '1928', 'type': 'Feature', 'properties': {'osmid': 53055444, 'average price/sqft': 621.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1976566, 37.8119146]}}, {'id': '1929', 'type': 'Feature', 'properties': {'osmid': 53055467, 'average price/sqft': 330.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2930497, 37.8069025]}}, {'id': '1930', 'type': 'Feature', 'properties': {'osmid': 53055512, 'average price/sqft': 281.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2995169, 37.8089472]}}, {'id': '1931', 'type': 'Feature', 'properties': {'osmid': 53055513, 'average price/sqft': 282.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.300795, 37.8095839]}}, {'id': '1932', 'type': 'Feature', 'properties': {'osmid': 53055514, 'average price/sqft': 282.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.3014557, 37.8099151]}}, {'id': '1933', 'type': 'Feature', 'properties': {'osmid': 53055577, 'average price/sqft': 557.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2791801, 37.8031797]}}, {'id': '1934', 'type': 'Feature', 'properties': {'osmid': 53055580, 'average price/sqft': 545.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2781244, 37.8027644]}}, {'id': '1935', 'type': 'Feature', 'properties': {'osmid': 53055582, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2769408, 37.802293]}}, {'id': '1936', 'type': 'Feature', 'properties': {'osmid': 53055584, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2745804, 37.8013648]}}, {'id': '1937', 'type': 'Feature', 'properties': {'osmid': 53055589, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2709477, 37.7999425]}}, {'id': '1938', 'type': 'Feature', 'properties': {'osmid': 53055591, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2697645, 37.799473]}}, {'id': '1939', 'type': 'Feature', 'properties': {'osmid': 53055592, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2685819, 37.7990164]}}, {'id': '1940', 'type': 'Feature', 'properties': {'osmid': 53055594, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2674028, 37.7985436]}}, {'id': '1941', 'type': 'Feature', 'properties': {'osmid': 53055597, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2650491, 37.7976185]}}, {'id': '1942', 'type': 'Feature', 'properties': {'osmid': 53055599, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2638622, 37.7971519]}}, {'id': '1943', 'type': 'Feature', 'properties': {'osmid': 53055635, 'average price/sqft': 590.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2602447, 37.8211799]}}, {'id': '1944', 'type': 'Feature', 'properties': {'osmid': 53055636, 'average price/sqft': 609.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2594558, 37.8216243]}}, {'id': '1945', 'type': 'Feature', 'properties': {'osmid': 53055640, 'average price/sqft': 636.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2578738, 37.8225044]}}, {'id': '1946', 'type': 'Feature', 'properties': {'osmid': 53055641, 'average price/sqft': 641.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2574283, 37.8227572]}}, {'id': '1947', 'type': 'Feature', 'properties': {'osmid': 53055644, 'average price/sqft': 649.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2566755, 37.823195]}}, {'id': '1948', 'type': 'Feature', 'properties': {'osmid': 53055646, 'average price/sqft': 675.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2556996, 37.8239347]}}, {'id': '1949', 'type': 'Feature', 'properties': {'osmid': 53055648, 'average price/sqft': 702.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2550221, 37.8244481]}}, {'id': '1950', 'type': 'Feature', 'properties': {'osmid': 53055650, 'average price/sqft': 742.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2537191, 37.8254373]}}, {'id': '1951', 'type': 'Feature', 'properties': {'osmid': 53055653, 'average price/sqft': 764.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.252965, 37.82601]}}, {'id': '1952', 'type': 'Feature', 'properties': {'osmid': 53055655, 'average price/sqft': 808.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2512014, 37.8273434]}}, {'id': '1953', 'type': 'Feature', 'properties': {'osmid': 53055656, 'average price/sqft': 820.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2507619, 37.827677]}}, {'id': '1954', 'type': 'Feature', 'properties': {'osmid': 53055661, 'average price/sqft': 849.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2490564, 37.8289718]}}, {'id': '1955', 'type': 'Feature', 'properties': {'osmid': 53055663, 'average price/sqft': 863.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2482759, 37.8295639]}}, {'id': '1956', 'type': 'Feature', 'properties': {'osmid': 53055665, 'average price/sqft': 866.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.247847, 37.8298898]}}, {'id': '1957', 'type': 'Feature', 'properties': {'osmid': 53055669, 'average price/sqft': 867.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.245455, 37.8316965]}}, {'id': '1958', 'type': 'Feature', 'properties': {'osmid': 53055671, 'average price/sqft': 866.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.245095, 37.8319714]}}, {'id': '1959', 'type': 'Feature', 'properties': {'osmid': 53055759, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1739486, 37.7350313]}}, {'id': '1960', 'type': 'Feature', 'properties': {'osmid': 53055760, 'average price/sqft': 314.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.172233, 37.735837]}}, {'id': '1961', 'type': 'Feature', 'properties': {'osmid': 53055761, 'average price/sqft': 332.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1703247, 37.7367305]}}, {'id': '1962', 'type': 'Feature', 'properties': {'osmid': 53055763, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1670711, 37.738256]}}, {'id': '1963', 'type': 'Feature', 'properties': {'osmid': 53055764, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1663266, 37.7386054]}}, {'id': '1964', 'type': 'Feature', 'properties': {'osmid': 53055765, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1758216, 37.7333387]}}, {'id': '1965', 'type': 'Feature', 'properties': {'osmid': 53055766, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1755031, 37.733576]}}, {'id': '1966', 'type': 'Feature', 'properties': {'osmid': 53055767, 'average price/sqft': 379.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.162266, 37.7400156]}}, {'id': '1967', 'type': 'Feature', 'properties': {'osmid': 53055768, 'average price/sqft': 360.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1601673, 37.7406073]}}, {'id': '1968', 'type': 'Feature', 'properties': {'osmid': 53055769, 'average price/sqft': 359.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.158999, 37.7409284]}}, {'id': '1969', 'type': 'Feature', 'properties': {'osmid': 53055770, 'average price/sqft': 337.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1560495, 37.7417836]}}, {'id': '1970', 'type': 'Feature', 'properties': {'osmid': 53055771, 'average price/sqft': 332.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1534832, 37.7424962]}}, {'id': '1971', 'type': 'Feature', 'properties': {'osmid': 53055772, 'average price/sqft': 333.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.152493, 37.7429648]}}, {'id': '1972', 'type': 'Feature', 'properties': {'osmid': 53055773, 'average price/sqft': 347.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1495569, 37.7446519]}}, {'id': '1973', 'type': 'Feature', 'properties': {'osmid': 53055775, 'average price/sqft': 360.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1484507, 37.7453473]}}, {'id': '1974', 'type': 'Feature', 'properties': {'osmid': 53055776, 'average price/sqft': 378.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1471885, 37.7460378]}}, {'id': '1975', 'type': 'Feature', 'properties': {'osmid': 53055807, 'average price/sqft': 609.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1906728, 37.8329957]}}, {'id': '1976', 'type': 'Feature', 'properties': {'osmid': 53055809, 'average price/sqft': 579.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1878805, 37.8336544]}}, {'id': '1977', 'type': 'Feature', 'properties': {'osmid': 53055810, 'average price/sqft': 568.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1864445, 37.833571]}}, {'id': '1978', 'type': 'Feature', 'properties': {'osmid': 53055943, 'average price/sqft': 636.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.194598, 37.8286702]}}, {'id': '1979', 'type': 'Feature', 'properties': {'osmid': 53055946, 'average price/sqft': 628.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.193307, 37.8284781]}}, {'id': '1980', 'type': 'Feature', 'properties': {'osmid': 53055948, 'average price/sqft': 616.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1915146, 37.8275724]}}, {'id': '1981', 'type': 'Feature', 'properties': {'osmid': 53055949, 'average price/sqft': 616.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1909687, 37.8274605]}}, {'id': '1982', 'type': 'Feature', 'properties': {'osmid': 53055951, 'average price/sqft': 616.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1903455, 37.8273816]}}, {'id': '1983', 'type': 'Feature', 'properties': {'osmid': 53055954, 'average price/sqft': 614.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1891365, 37.8274842]}}, {'id': '1984', 'type': 'Feature', 'properties': {'osmid': 53056076, 'average price/sqft': 659.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2469194, 37.8114735]}}, {'id': '1985', 'type': 'Feature', 'properties': {'osmid': 53056080, 'average price/sqft': 662.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2461568, 37.8109448]}}, {'id': '1986', 'type': 'Feature', 'properties': {'osmid': 53056102, 'average price/sqft': 488.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2821226, 37.8422776]}}, {'id': '1987', 'type': 'Feature', 'properties': {'osmid': 53056103, 'average price/sqft': 476.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2823279, 37.8432511]}}, {'id': '1988', 'type': 'Feature', 'properties': {'osmid': 53056105, 'average price/sqft': 456.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2825196, 37.8441602]}}, {'id': '1989', 'type': 'Feature', 'properties': {'osmid': 53056110, 'average price/sqft': 378.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2829554, 37.8462971]}}, {'id': '1990', 'type': 'Feature', 'properties': {'osmid': 53056112, 'average price/sqft': 350.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.283145, 37.8471941]}}, {'id': '1991', 'type': 'Feature', 'properties': {'osmid': 53056113, 'average price/sqft': 308.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2837182, 37.849231]}}, {'id': '1992', 'type': 'Feature', 'properties': {'osmid': 53056115, 'average price/sqft': 308.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2838837, 37.8497793]}}, {'id': '1993', 'type': 'Feature', 'properties': {'osmid': 53056165, 'average price/sqft': 770.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2128062, 37.8118783]}}, {'id': '1994', 'type': 'Feature', 'properties': {'osmid': 53056166, 'average price/sqft': 759.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2129685, 37.8106631]}}, {'id': '1995', 'type': 'Feature', 'properties': {'osmid': 53056169, 'average price/sqft': 753.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2117051, 37.8108087]}}, {'id': '1996', 'type': 'Feature', 'properties': {'osmid': 53056170, 'average price/sqft': 719.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2099591, 37.810253]}}, {'id': '1997', 'type': 'Feature', 'properties': {'osmid': 53056210, 'average price/sqft': 651.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1657862, 37.7818153]}}, {'id': '1998', 'type': 'Feature', 'properties': {'osmid': 53056228, 'average price/sqft': 652.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1683352, 37.7858621]}}, {'id': '1999', 'type': 'Feature', 'properties': {'osmid': 53056235, 'average price/sqft': 657.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1681808, 37.7865815]}}, {'id': '2000', 'type': 'Feature', 'properties': {'osmid': 53056241, 'average price/sqft': 658.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1703425, 37.787665]}}, {'id': '2001', 'type': 'Feature', 'properties': {'osmid': 53056510, 'average price/sqft': 679.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2382596, 37.804882]}}, {'id': '2002', 'type': 'Feature', 'properties': {'osmid': 53056512, 'average price/sqft': 691.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2372528, 37.8056007]}}, {'id': '2003', 'type': 'Feature', 'properties': {'osmid': 53056533, 'average price/sqft': 853.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.249477, 37.826585]}}, {'id': '2004', 'type': 'Feature', 'properties': {'osmid': 53056535, 'average price/sqft': 779.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.251712, 37.8253569]}}, {'id': '2005', 'type': 'Feature', 'properties': {'osmid': 53056536, 'average price/sqft': 818.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2498744, 37.8263613]}}, {'id': '2006', 'type': 'Feature', 'properties': {'osmid': 53056539, 'average price/sqft': 873.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2467844, 37.8280223]}}, {'id': '2007', 'type': 'Feature', 'properties': {'osmid': 53056560, 'average price/sqft': 491.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1547859, 37.7582679]}}, {'id': '2008', 'type': 'Feature', 'properties': {'osmid': 53056562, 'average price/sqft': 491.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1540515, 37.7586388]}}, {'id': '2009', 'type': 'Feature', 'properties': {'osmid': 53056596, 'average price/sqft': 512.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2721769, 37.8256375]}}, {'id': '2010', 'type': 'Feature', 'properties': {'osmid': 53056597, 'average price/sqft': 466.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2750456, 37.8262756]}}, {'id': '2011', 'type': 'Feature', 'properties': {'osmid': 53056603, 'average price/sqft': 681.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2620319, 37.8237728]}}, {'id': '2012', 'type': 'Feature', 'properties': {'osmid': 53056604, 'average price/sqft': 636.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2656925, 37.8246015]}}, {'id': '2013', 'type': 'Feature', 'properties': {'osmid': 53056608, 'average price/sqft': 403.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2797603, 37.8272245]}}, {'id': '2014', 'type': 'Feature', 'properties': {'osmid': 53056646, 'average price/sqft': 465.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2078844, 37.7770995]}}, {'id': '2015', 'type': 'Feature', 'properties': {'osmid': 53056648, 'average price/sqft': 458.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.206227, 37.7765432]}}, {'id': '2016', 'type': 'Feature', 'properties': {'osmid': 53056651, 'average price/sqft': 715.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2082671, 37.8353033]}}, {'id': '2017', 'type': 'Feature', 'properties': {'osmid': 53056652, 'average price/sqft': 697.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2064576, 37.8366498]}}, {'id': '2018', 'type': 'Feature', 'properties': {'osmid': 53056758, 'average price/sqft': 472.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1992369, 37.7611691]}}, {'id': '2019', 'type': 'Feature', 'properties': {'osmid': 53056762, 'average price/sqft': 520.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1958243, 37.7632905]}}, {'id': '2020', 'type': 'Feature', 'properties': {'osmid': 53056766, 'average price/sqft': 422.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1951559, 37.7634616]}}, {'id': '2021', 'type': 'Feature', 'properties': {'osmid': 53056767, 'average price/sqft': 419.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1944441, 37.7639067]}}, {'id': '2022', 'type': 'Feature', 'properties': {'osmid': 53056769, 'average price/sqft': 410.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1930802, 37.7647861]}}, {'id': '2023', 'type': 'Feature', 'properties': {'osmid': 53056771, 'average price/sqft': 406.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1916632, 37.7657419]}}, {'id': '2024', 'type': 'Feature', 'properties': {'osmid': 53056774, 'average price/sqft': 405.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1908592, 37.7662645]}}, {'id': '2025', 'type': 'Feature', 'properties': {'osmid': 53056778, 'average price/sqft': 408.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1890369, 37.7674411]}}, {'id': '2026', 'type': 'Feature', 'properties': {'osmid': 53056779, 'average price/sqft': 408.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1861106, 37.7693324]}}, {'id': '2027', 'type': 'Feature', 'properties': {'osmid': 53056780, 'average price/sqft': 410.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1845358, 37.770788]}}, {'id': '2028', 'type': 'Feature', 'properties': {'osmid': 53056783, 'average price/sqft': 410.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1832849, 37.7715968]}}, {'id': '2029', 'type': 'Feature', 'properties': {'osmid': 53056785, 'average price/sqft': 408.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1797266, 37.7739287]}}, {'id': '2030', 'type': 'Feature', 'properties': {'osmid': 53056787, 'average price/sqft': 406.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1792388, 37.7746392]}}, {'id': '2031', 'type': 'Feature', 'properties': {'osmid': 53056789, 'average price/sqft': 400.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.178328, 37.775241]}}, {'id': '2032', 'type': 'Feature', 'properties': {'osmid': 53056790, 'average price/sqft': 398.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1776617, 37.7756716]}}, {'id': '2033', 'type': 'Feature', 'properties': {'osmid': 53056791, 'average price/sqft': 397.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1769067, 37.7761383]}}, {'id': '2034', 'type': 'Feature', 'properties': {'osmid': 53056796, 'average price/sqft': 396.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1763485, 37.7768995]}}, {'id': '2035', 'type': 'Feature', 'properties': {'osmid': 53057078, 'average price/sqft': 662.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.196946, 37.8231245]}}, {'id': '2036', 'type': 'Feature', 'properties': {'osmid': 53057112, 'average price/sqft': 463.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1784127, 37.8029637]}}, {'id': '2037', 'type': 'Feature', 'properties': {'osmid': 53057114, 'average price/sqft': 461.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1757083, 37.8002677]}}, {'id': '2038', 'type': 'Feature', 'properties': {'osmid': 53057117, 'average price/sqft': 522.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1720447, 37.7993174]}}, {'id': '2039', 'type': 'Feature', 'properties': {'osmid': 53057119, 'average price/sqft': 529.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1718199, 37.7995934]}}, {'id': '2040', 'type': 'Feature', 'properties': {'osmid': 53057123, 'average price/sqft': 723.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2241264, 37.8426281]}}, {'id': '2041', 'type': 'Feature', 'properties': {'osmid': 53057126, 'average price/sqft': 732.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2229439, 37.8423151]}}, {'id': '2042', 'type': 'Feature', 'properties': {'osmid': 53057230, 'average price/sqft': 347.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2601832, 37.8133091]}}, {'id': '2043', 'type': 'Feature', 'properties': {'osmid': 53057329, 'average price/sqft': 666.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2319225, 37.861357]}}, {'id': '2044', 'type': 'Feature', 'properties': {'osmid': 53057333, 'average price/sqft': 666.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2318754, 37.8618249]}}, {'id': '2045', 'type': 'Feature', 'properties': {'osmid': 53057457, 'average price/sqft': 685.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2249461, 37.8004449]}}, {'id': '2046', 'type': 'Feature', 'properties': {'osmid': 53057458, 'average price/sqft': 687.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2249309, 37.8008077]}}, {'id': '2047', 'type': 'Feature', 'properties': {'osmid': 53057459, 'average price/sqft': 727.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2245575, 37.8020827]}}, {'id': '2048', 'type': 'Feature', 'properties': {'osmid': 53057461, 'average price/sqft': 760.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2241823, 37.8033494]}}, {'id': '2049', 'type': 'Feature', 'properties': {'osmid': 53057464, 'average price/sqft': 590.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2254211, 37.7989169]}}, {'id': '2050', 'type': 'Feature', 'properties': {'osmid': 53057469, 'average price/sqft': 764.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2244327, 37.8033973]}}, {'id': '2051', 'type': 'Feature', 'properties': {'osmid': 53057471, 'average price/sqft': 807.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2236659, 37.8060103]}}, {'id': '2052', 'type': 'Feature', 'properties': {'osmid': 53057472, 'average price/sqft': 806.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2232489, 37.805937]}}, {'id': '2053', 'type': 'Feature', 'properties': {'osmid': 53057719, 'average price/sqft': 442.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1437104, 37.7469785]}}, {'id': '2054', 'type': 'Feature', 'properties': {'osmid': 53057721, 'average price/sqft': 465.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1428471, 37.7472882]}}, {'id': '2055', 'type': 'Feature', 'properties': {'osmid': 53057734, 'average price/sqft': 658.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2476975, 37.8111633]}}, {'id': '2056', 'type': 'Feature', 'properties': {'osmid': 53057735, 'average price/sqft': 667.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2464259, 37.8122173]}}, {'id': '2057', 'type': 'Feature', 'properties': {'osmid': 53057738, 'average price/sqft': 667.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.245404, 37.8136836]}}, {'id': '2058', 'type': 'Feature', 'properties': {'osmid': 53057748, 'average price/sqft': 812.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2320364, 37.8404439]}}, {'id': '2059', 'type': 'Feature', 'properties': {'osmid': 53057752, 'average price/sqft': 810.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2311866, 37.8403402]}}, {'id': '2060', 'type': 'Feature', 'properties': {'osmid': 53057774, 'average price/sqft': 756.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2233674, 37.812452]}}, {'id': '2061', 'type': 'Feature', 'properties': {'osmid': 53057951, 'average price/sqft': 380.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1470141, 37.7459289]}}, {'id': '2062', 'type': 'Feature', 'properties': {'osmid': 53057953, 'average price/sqft': 393.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1451352, 37.745663]}}, {'id': '2063', 'type': 'Feature', 'properties': {'osmid': 53057957, 'average price/sqft': 441.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1431699, 37.7460721]}}, {'id': '2064', 'type': 'Feature', 'properties': {'osmid': 53057959, 'average price/sqft': 471.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1423922, 37.746486]}}, {'id': '2065', 'type': 'Feature', 'properties': {'osmid': 53057961, 'average price/sqft': 503.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1415219, 37.7467606]}}, {'id': '2066', 'type': 'Feature', 'properties': {'osmid': 53057963, 'average price/sqft': 532.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1405743, 37.7469742]}}, {'id': '2067', 'type': 'Feature', 'properties': {'osmid': 53057965, 'average price/sqft': 545.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1399118, 37.7470293]}}, {'id': '2068', 'type': 'Feature', 'properties': {'osmid': 53057969, 'average price/sqft': 558.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1392708, 37.7465903]}}, {'id': '2069', 'type': 'Feature', 'properties': {'osmid': 53057971, 'average price/sqft': 562.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1375139, 37.7472626]}}, {'id': '2070', 'type': 'Feature', 'properties': {'osmid': 53057972, 'average price/sqft': 547.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1369775, 37.74855]}}, {'id': '2071', 'type': 'Feature', 'properties': {'osmid': 53057974, 'average price/sqft': 536.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1362425, 37.7489508]}}, {'id': '2072', 'type': 'Feature', 'properties': {'osmid': 53057978, 'average price/sqft': 489.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1335979, 37.7510207]}}, {'id': '2073', 'type': 'Feature', 'properties': {'osmid': 53057981, 'average price/sqft': 478.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1327304, 37.7514235]}}, {'id': '2074', 'type': 'Feature', 'properties': {'osmid': 53057982, 'average price/sqft': 469.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1318755, 37.7518145]}}, {'id': '2075', 'type': 'Feature', 'properties': {'osmid': 53057985, 'average price/sqft': 447.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1300897, 37.7525885]}}, {'id': '2076', 'type': 'Feature', 'properties': {'osmid': 53057987, 'average price/sqft': 431.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1290556, 37.7524108]}}, {'id': '2077', 'type': 'Feature', 'properties': {'osmid': 53057997, 'average price/sqft': 424.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1825097, 37.7621608]}}, {'id': '2078', 'type': 'Feature', 'properties': {'osmid': 53057998, 'average price/sqft': 430.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1819007, 37.7615913]}}, {'id': '2079', 'type': 'Feature', 'properties': {'osmid': 53058000, 'average price/sqft': 431.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1811266, 37.7608233]}}, {'id': '2080', 'type': 'Feature', 'properties': {'osmid': 53058002, 'average price/sqft': 423.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1801422, 37.7596592]}}, {'id': '2081', 'type': 'Feature', 'properties': {'osmid': 53058004, 'average price/sqft': 424.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1791208, 37.758682]}}, {'id': '2082', 'type': 'Feature', 'properties': {'osmid': 53058006, 'average price/sqft': 419.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.178546, 37.7581193]}}, {'id': '2083', 'type': 'Feature', 'properties': {'osmid': 53058007, 'average price/sqft': 410.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1779995, 37.757386]}}, {'id': '2084', 'type': 'Feature', 'properties': {'osmid': 53058008, 'average price/sqft': 403.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1774391, 37.7566639]}}, {'id': '2085', 'type': 'Feature', 'properties': {'osmid': 53058009, 'average price/sqft': 384.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1763178, 37.7551538]}}, {'id': '2086', 'type': 'Feature', 'properties': {'osmid': 53058011, 'average price/sqft': 380.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1757419, 37.7543897]}}, {'id': '2087', 'type': 'Feature', 'properties': {'osmid': 53058012, 'average price/sqft': 389.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1751726, 37.7536145]}}, {'id': '2088', 'type': 'Feature', 'properties': {'osmid': 53058014, 'average price/sqft': 393.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1747342, 37.753001]}}, {'id': '2089', 'type': 'Feature', 'properties': {'osmid': 53058016, 'average price/sqft': 397.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1742798, 37.7524132]}}, {'id': '2090', 'type': 'Feature', 'properties': {'osmid': 53058018, 'average price/sqft': 402.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1732971, 37.7510964]}}, {'id': '2091', 'type': 'Feature', 'properties': {'osmid': 53058022, 'average price/sqft': 423.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1844539, 37.7636302]}}, {'id': '2092', 'type': 'Feature', 'properties': {'osmid': 53058027, 'average price/sqft': 419.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1726426, 37.7492644]}}, {'id': '2093', 'type': 'Feature', 'properties': {'osmid': 53058029, 'average price/sqft': 414.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1714778, 37.7477079]}}, {'id': '2094', 'type': 'Feature', 'properties': {'osmid': 53058031, 'average price/sqft': 391.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1704404, 37.7463062]}}, {'id': '2095', 'type': 'Feature', 'properties': {'osmid': 53058035, 'average price/sqft': 383.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1686428, 37.7438938]}}, {'id': '2096', 'type': 'Feature', 'properties': {'osmid': 53058039, 'average price/sqft': 373.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1678211, 37.743141]}}, {'id': '2097', 'type': 'Feature', 'properties': {'osmid': 53058072, 'average price/sqft': 399.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1953368, 37.7522016]}}, {'id': '2098', 'type': 'Feature', 'properties': {'osmid': 53058104, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1979195, 37.7343705]}}, {'id': '2099', 'type': 'Feature', 'properties': {'osmid': 53058595, 'average price/sqft': 667.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1997325, 37.8143895]}}, {'id': '2100', 'type': 'Feature', 'properties': {'osmid': 53058707, 'average price/sqft': 514.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2068103, 37.7900891]}}, {'id': '2101', 'type': 'Feature', 'properties': {'osmid': 53058708, 'average price/sqft': 505.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2060185, 37.7893373]}}, {'id': '2102', 'type': 'Feature', 'properties': {'osmid': 53058713, 'average price/sqft': 505.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2044352, 37.7878329]}}, {'id': '2103', 'type': 'Feature', 'properties': {'osmid': 53058714, 'average price/sqft': 512.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2038553, 37.7872878]}}, {'id': '2104', 'type': 'Feature', 'properties': {'osmid': 53058716, 'average price/sqft': 507.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2017005, 37.7852501]}}, {'id': '2105', 'type': 'Feature', 'properties': {'osmid': 53058719, 'average price/sqft': 512.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.200719, 37.7843114]}}, {'id': '2106', 'type': 'Feature', 'properties': {'osmid': 53058721, 'average price/sqft': 482.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2086996, 37.7908862]}}, {'id': '2107', 'type': 'Feature', 'properties': {'osmid': 53058723, 'average price/sqft': 485.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2081882, 37.7903362]}}, {'id': '2108', 'type': 'Feature', 'properties': {'osmid': 53058725, 'average price/sqft': 492.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2075687, 37.789645]}}, {'id': '2109', 'type': 'Feature', 'properties': {'osmid': 53058727, 'average price/sqft': 504.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1997975, 37.7830957]}}, {'id': '2110', 'type': 'Feature', 'properties': {'osmid': 53058728, 'average price/sqft': 510.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1981563, 37.781613]}}, {'id': '2111', 'type': 'Feature', 'properties': {'osmid': 53058731, 'average price/sqft': 452.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.174505, 37.8015315]}}, {'id': '2112', 'type': 'Feature', 'properties': {'osmid': 53058732, 'average price/sqft': 517.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.172034, 37.799974]}}, {'id': '2113', 'type': 'Feature', 'properties': {'osmid': 53058741, 'average price/sqft': 837.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2495653, 37.8278664]}}, {'id': '2114', 'type': 'Feature', 'properties': {'osmid': 53058776, 'average price/sqft': 525.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2124693, 37.7925095]}}, {'id': '2115', 'type': 'Feature', 'properties': {'osmid': 53058777, 'average price/sqft': 532.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2113708, 37.7920229]}}, {'id': '2116', 'type': 'Feature', 'properties': {'osmid': 53058973, 'average price/sqft': 598.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1769698, 37.7856777]}}, {'id': '2117', 'type': 'Feature', 'properties': {'osmid': 53058975, 'average price/sqft': 378.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.176478, 37.7849112]}}, {'id': '2118', 'type': 'Feature', 'properties': {'osmid': 53059071, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1768626, 37.7347816]}}, {'id': '2119', 'type': 'Feature', 'properties': {'osmid': 53059073, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.175923, 37.7349645]}}, {'id': '2120', 'type': 'Feature', 'properties': {'osmid': 53059179, 'average price/sqft': 710.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.211588, 37.8022747]}}, {'id': '2121', 'type': 'Feature', 'properties': {'osmid': 53059181, 'average price/sqft': 690.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2091152, 37.8006796]}}, {'id': '2122', 'type': 'Feature', 'properties': {'osmid': 53059223, 'average price/sqft': 808.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2256607, 37.8077173]}}, {'id': '2123', 'type': 'Feature', 'properties': {'osmid': 53059225, 'average price/sqft': 807.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.225481, 37.8072182]}}, {'id': '2124', 'type': 'Feature', 'properties': {'osmid': 53059228, 'average price/sqft': 806.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.22262, 37.8058204]}}, {'id': '2125', 'type': 'Feature', 'properties': {'osmid': 53059229, 'average price/sqft': 819.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2206878, 37.8054634]}}, {'id': '2126', 'type': 'Feature', 'properties': {'osmid': 53059231, 'average price/sqft': 818.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2198103, 37.805298]}}, {'id': '2127', 'type': 'Feature', 'properties': {'osmid': 53059233, 'average price/sqft': 817.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2189096, 37.8051352]}}, {'id': '2128', 'type': 'Feature', 'properties': {'osmid': 53059251, 'average price/sqft': 417.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2215131, 37.7727079]}}, {'id': '2129', 'type': 'Feature', 'properties': {'osmid': 53059255, 'average price/sqft': 445.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2208331, 37.7736392]}}, {'id': '2130', 'type': 'Feature', 'properties': {'osmid': 53059266, 'average price/sqft': 476.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2167453, 37.7790115]}}, {'id': '2131', 'type': 'Feature', 'properties': {'osmid': 53059268, 'average price/sqft': 477.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2158935, 37.7796176]}}, {'id': '2132', 'type': 'Feature', 'properties': {'osmid': 53059270, 'average price/sqft': 478.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2151278, 37.7801588]}}, {'id': '2133', 'type': 'Feature', 'properties': {'osmid': 53059273, 'average price/sqft': 454.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2090567, 37.7844187]}}, {'id': '2134', 'type': 'Feature', 'properties': {'osmid': 53059275, 'average price/sqft': 455.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2082632, 37.7849811]}}, {'id': '2135', 'type': 'Feature', 'properties': {'osmid': 53059277, 'average price/sqft': 457.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.207458, 37.7854038]}}, {'id': '2136', 'type': 'Feature', 'properties': {'osmid': 53059279, 'average price/sqft': 478.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2057424, 37.7862559]}}, {'id': '2137', 'type': 'Feature', 'properties': {'osmid': 53059281, 'average price/sqft': 493.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2047697, 37.7867527]}}, {'id': '2138', 'type': 'Feature', 'properties': {'osmid': 53059284, 'average price/sqft': 535.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2024737, 37.7877212]}}, {'id': '2139', 'type': 'Feature', 'properties': {'osmid': 53059286, 'average price/sqft': 543.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2020905, 37.7879691]}}, {'id': '2140', 'type': 'Feature', 'properties': {'osmid': 53059287, 'average price/sqft': 560.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2014201, 37.7885131]}}, {'id': '2141', 'type': 'Feature', 'properties': {'osmid': 53059290, 'average price/sqft': 562.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2015866, 37.788675]}}, {'id': '2142', 'type': 'Feature', 'properties': {'osmid': 53059293, 'average price/sqft': 610.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1996963, 37.7897581]}}, {'id': '2143', 'type': 'Feature', 'properties': {'osmid': 53059294, 'average price/sqft': 636.0, 'observation count': 29.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1979411, 37.7907877]}}, {'id': '2144', 'type': 'Feature', 'properties': {'osmid': 53059298, 'average price/sqft': 638.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.197747, 37.7905763]}}, {'id': '2145', 'type': 'Feature', 'properties': {'osmid': 53059300, 'average price/sqft': 643.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1973059, 37.7908316]}}, {'id': '2146', 'type': 'Feature', 'properties': {'osmid': 53059303, 'average price/sqft': 650.0, 'observation count': 31.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1963819, 37.7913779]}}, {'id': '2147', 'type': 'Feature', 'properties': {'osmid': 53059333, 'average price/sqft': 495.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1871599, 37.7482231]}}, {'id': '2148', 'type': 'Feature', 'properties': {'osmid': 53059334, 'average price/sqft': 499.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1866315, 37.7474744]}}, {'id': '2149', 'type': 'Feature', 'properties': {'osmid': 53059374, 'average price/sqft': 928.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2504265, 37.8488156]}}, {'id': '2150', 'type': 'Feature', 'properties': {'osmid': 53059376, 'average price/sqft': 918.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2509931, 37.8497332]}}, {'id': '2151', 'type': 'Feature', 'properties': {'osmid': 53059379, 'average price/sqft': 925.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2503996, 37.8499271]}}, {'id': '2152', 'type': 'Feature', 'properties': {'osmid': 53059380, 'average price/sqft': 926.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.250992, 37.8510504]}}, {'id': '2153', 'type': 'Feature', 'properties': {'osmid': 53059446, 'average price/sqft': 357.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1229719, 37.7510352]}}, {'id': '2154', 'type': 'Feature', 'properties': {'osmid': 53059447, 'average price/sqft': 344.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.122364, 37.7499786]}}, {'id': '2155', 'type': 'Feature', 'properties': {'osmid': 53059468, 'average price/sqft': 691.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.252447, 37.8237273]}}, {'id': '2156', 'type': 'Feature', 'properties': {'osmid': 53059469, 'average price/sqft': 695.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2519268, 37.8241264]}}, {'id': '2157', 'type': 'Feature', 'properties': {'osmid': 53059479, 'average price/sqft': 334.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1511486, 37.7401682]}}, {'id': '2158', 'type': 'Feature', 'properties': {'osmid': 53059491, 'average price/sqft': 432.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.201108, 37.7772363]}}, {'id': '2159', 'type': 'Feature', 'properties': {'osmid': 53059493, 'average price/sqft': 429.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2005312, 37.7767352]}}, {'id': '2160', 'type': 'Feature', 'properties': {'osmid': 53059495, 'average price/sqft': 425.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1999368, 37.7762189]}}, {'id': '2161', 'type': 'Feature', 'properties': {'osmid': 53059497, 'average price/sqft': 424.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1997276, 37.776018]}}, {'id': '2162', 'type': 'Feature', 'properties': {'osmid': 53059499, 'average price/sqft': 422.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1993122, 37.7756529]}}, {'id': '2163', 'type': 'Feature', 'properties': {'osmid': 53059501, 'average price/sqft': 419.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1986065, 37.7750298]}}, {'id': '2164', 'type': 'Feature', 'properties': {'osmid': 53059503, 'average price/sqft': 419.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1980962, 37.7745713]}}, {'id': '2165', 'type': 'Feature', 'properties': {'osmid': 53059504, 'average price/sqft': 417.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1969534, 37.7735567]}}, {'id': '2166', 'type': 'Feature', 'properties': {'osmid': 53059505, 'average price/sqft': 409.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1959081, 37.7726095]}}, {'id': '2167', 'type': 'Feature', 'properties': {'osmid': 53059506, 'average price/sqft': 407.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1926608, 37.7699385]}}, {'id': '2168', 'type': 'Feature', 'properties': {'osmid': 53059679, 'average price/sqft': 391.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1968251, 37.7683753]}}, {'id': '2169', 'type': 'Feature', 'properties': {'osmid': 53059839, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1916311, 37.7371217]}}, {'id': '2170', 'type': 'Feature', 'properties': {'osmid': 53059850, 'average price/sqft': 277.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2980404, 37.8031011]}}, {'id': '2171', 'type': 'Feature', 'properties': {'osmid': 53059852, 'average price/sqft': 287.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2974992, 37.8045935]}}, {'id': '2172', 'type': 'Feature', 'properties': {'osmid': 53059855, 'average price/sqft': 294.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2970636, 37.8057943]}}, {'id': '2173', 'type': 'Feature', 'properties': {'osmid': 53059856, 'average price/sqft': 300.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2966922, 37.8068472]}}, {'id': '2174', 'type': 'Feature', 'properties': {'osmid': 53059859, 'average price/sqft': 296.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2964866, 37.8073856]}}, {'id': '2175', 'type': 'Feature', 'properties': {'osmid': 53059943, 'average price/sqft': 462.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1910072, 37.8388763]}}, {'id': '2176', 'type': 'Feature', 'properties': {'osmid': 53059944, 'average price/sqft': 461.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1912334, 37.8386216]}}, {'id': '2177', 'type': 'Feature', 'properties': {'osmid': 53059958, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2629323, 37.8148168]}}, {'id': '2178', 'type': 'Feature', 'properties': {'osmid': 53059961, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.263098, 37.8150933]}}, {'id': '2179', 'type': 'Feature', 'properties': {'osmid': 53059965, 'average price/sqft': 481.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2678935, 37.8162515]}}, {'id': '2180', 'type': 'Feature', 'properties': {'osmid': 53059973, 'average price/sqft': 475.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2716269, 37.8171298]}}, {'id': '2181', 'type': 'Feature', 'properties': {'osmid': 53059975, 'average price/sqft': 422.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.274199, 37.8175366]}}, {'id': '2182', 'type': 'Feature', 'properties': {'osmid': 53059978, 'average price/sqft': 482.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2775584, 37.817563]}}, {'id': '2183', 'type': 'Feature', 'properties': {'osmid': 53060016, 'average price/sqft': 649.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2438687, 37.8002094]}}, {'id': '2184', 'type': 'Feature', 'properties': {'osmid': 53060018, 'average price/sqft': 645.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.243036, 37.7994707]}}, {'id': '2185', 'type': 'Feature', 'properties': {'osmid': 53060021, 'average price/sqft': 632.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2413839, 37.7980096]}}, {'id': '2186', 'type': 'Feature', 'properties': {'osmid': 53060023, 'average price/sqft': 617.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2405558, 37.7972739]}}, {'id': '2187', 'type': 'Feature', 'properties': {'osmid': 53060025, 'average price/sqft': 583.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2397269, 37.7965411]}}, {'id': '2188', 'type': 'Feature', 'properties': {'osmid': 53060027, 'average price/sqft': 511.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2378928, 37.7948861]}}, {'id': '2189', 'type': 'Feature', 'properties': {'osmid': 53060033, 'average price/sqft': 485.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.236863, 37.7942607]}}, {'id': '2190', 'type': 'Feature', 'properties': {'osmid': 53060035, 'average price/sqft': 478.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2347625, 37.7930003]}}, {'id': '2191', 'type': 'Feature', 'properties': {'osmid': 53060037, 'average price/sqft': 441.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2301683, 37.7902538]}}, {'id': '2192', 'type': 'Feature', 'properties': {'osmid': 53060039, 'average price/sqft': 436.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2282739, 37.7891187]}}, {'id': '2193', 'type': 'Feature', 'properties': {'osmid': 53060044, 'average price/sqft': 426.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2269669, 37.7879652]}}, {'id': '2194', 'type': 'Feature', 'properties': {'osmid': 53060046, 'average price/sqft': 415.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2255013, 37.7870806]}}, {'id': '2195', 'type': 'Feature', 'properties': {'osmid': 53060048, 'average price/sqft': 411.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2247772, 37.7866511]}}, {'id': '2196', 'type': 'Feature', 'properties': {'osmid': 53060056, 'average price/sqft': 407.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2211888, 37.7850248]}}, {'id': '2197', 'type': 'Feature', 'properties': {'osmid': 53060058, 'average price/sqft': 411.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2202754, 37.7845933]}}, {'id': '2198', 'type': 'Feature', 'properties': {'osmid': 53060114, 'average price/sqft': 674.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1999747, 37.8212713]}}, {'id': '2199', 'type': 'Feature', 'properties': {'osmid': 53060140, 'average price/sqft': 668.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1998875, 37.8231885]}}, {'id': '2200', 'type': 'Feature', 'properties': {'osmid': 53060144, 'average price/sqft': 705.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2040028, 37.8068619]}}, {'id': '2201', 'type': 'Feature', 'properties': {'osmid': 53060147, 'average price/sqft': 641.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1963136, 37.8287374]}}, {'id': '2202', 'type': 'Feature', 'properties': {'osmid': 53060148, 'average price/sqft': 633.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1940401, 37.8279787]}}, {'id': '2203', 'type': 'Feature', 'properties': {'osmid': 53060149, 'average price/sqft': 631.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1934805, 37.8277096]}}, {'id': '2204', 'type': 'Feature', 'properties': {'osmid': 53060228, 'average price/sqft': 475.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1462514, 37.7595711]}}, {'id': '2205', 'type': 'Feature', 'properties': {'osmid': 53060232, 'average price/sqft': 469.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1445002, 37.7613017]}}, {'id': '2206', 'type': 'Feature', 'properties': {'osmid': 53060236, 'average price/sqft': 489.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1472534, 37.7608186]}}, {'id': '2207', 'type': 'Feature', 'properties': {'osmid': 53060241, 'average price/sqft': 635.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1898704, 37.8292718]}}, {'id': '2208', 'type': 'Feature', 'properties': {'osmid': 53060243, 'average price/sqft': 634.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1910186, 37.830082]}}, {'id': '2209', 'type': 'Feature', 'properties': {'osmid': 53060313, 'average price/sqft': 626.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1362995, 37.750296]}}, {'id': '2210', 'type': 'Feature', 'properties': {'osmid': 53060409, 'average price/sqft': 554.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2320778, 37.8536039]}}, {'id': '2211', 'type': 'Feature', 'properties': {'osmid': 53060410, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2336042, 37.8543903]}}, {'id': '2212', 'type': 'Feature', 'properties': {'osmid': 53060438, 'average price/sqft': 280.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.3001246, 37.8081778]}}, {'id': '2213', 'type': 'Feature', 'properties': {'osmid': 53060439, 'average price/sqft': 281.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.3014029, 37.808815]}}, {'id': '2214', 'type': 'Feature', 'properties': {'osmid': 53060489, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2554624, 37.7912776]}}, {'id': '2215', 'type': 'Feature', 'properties': {'osmid': 53060491, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2545831, 37.7919057]}}, {'id': '2216', 'type': 'Feature', 'properties': {'osmid': 53060571, 'average price/sqft': 505.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2157329, 37.7744619]}}, {'id': '2217', 'type': 'Feature', 'properties': {'osmid': 53060572, 'average price/sqft': 505.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.215112, 37.7751403]}}, {'id': '2218', 'type': 'Feature', 'properties': {'osmid': 53060574, 'average price/sqft': 503.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2145668, 37.7757425]}}, {'id': '2219', 'type': 'Feature', 'properties': {'osmid': 53060575, 'average price/sqft': 501.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2138713, 37.7765053]}}, {'id': '2220', 'type': 'Feature', 'properties': {'osmid': 53060577, 'average price/sqft': 504.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2123045, 37.7776178]}}, {'id': '2221', 'type': 'Feature', 'properties': {'osmid': 53060590, 'average price/sqft': 466.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2180324, 37.7723482]}}, {'id': '2222', 'type': 'Feature', 'properties': {'osmid': 53060591, 'average price/sqft': 466.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2172477, 37.7734246]}}, {'id': '2223', 'type': 'Feature', 'properties': {'osmid': 53060640, 'average price/sqft': 451.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2906888, 37.8245614]}}, {'id': '2224', 'type': 'Feature', 'properties': {'osmid': 53061118, 'average price/sqft': 557.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2809192, 37.8113791]}}, {'id': '2225', 'type': 'Feature', 'properties': {'osmid': 53061120, 'average price/sqft': 555.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2819492, 37.8116164]}}, {'id': '2226', 'type': 'Feature', 'properties': {'osmid': 53061122, 'average price/sqft': 552.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.284052, 37.8120979]}}, {'id': '2227', 'type': 'Feature', 'properties': {'osmid': 53061124, 'average price/sqft': 548.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2851354, 37.8123647]}}, {'id': '2228', 'type': 'Feature', 'properties': {'osmid': 53061128, 'average price/sqft': 556.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2882, 37.8132464]}}, {'id': '2229', 'type': 'Feature', 'properties': {'osmid': 53061130, 'average price/sqft': 545.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2891587, 37.8134631]}}, {'id': '2230', 'type': 'Feature', 'properties': {'osmid': 53061131, 'average price/sqft': 499.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.290246, 37.8137122]}}, {'id': '2231', 'type': 'Feature', 'properties': {'osmid': 53061134, 'average price/sqft': 486.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2905976, 37.8137906]}}, {'id': '2232', 'type': 'Feature', 'properties': {'osmid': 53061136, 'average price/sqft': 391.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.293076, 37.8147155]}}, {'id': '2233', 'type': 'Feature', 'properties': {'osmid': 53061141, 'average price/sqft': 322.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2956473, 37.8160089]}}, {'id': '2234', 'type': 'Feature', 'properties': {'osmid': 53061151, 'average price/sqft': 566.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2784565, 37.8105159]}}, {'id': '2235', 'type': 'Feature', 'properties': {'osmid': 53061154, 'average price/sqft': 567.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2778489, 37.8102545]}}, {'id': '2236', 'type': 'Feature', 'properties': {'osmid': 53061156, 'average price/sqft': 569.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2767022, 37.8097957]}}, {'id': '2237', 'type': 'Feature', 'properties': {'osmid': 53061162, 'average price/sqft': 576.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2754965, 37.8093195]}}, {'id': '2238', 'type': 'Feature', 'properties': {'osmid': 53061163, 'average price/sqft': 588.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2744475, 37.808657]}}, {'id': '2239', 'type': 'Feature', 'properties': {'osmid': 53061170, 'average price/sqft': 609.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.273261, 37.8081991]}}, {'id': '2240', 'type': 'Feature', 'properties': {'osmid': 53061172, 'average price/sqft': 637.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2723776, 37.8078844]}}, {'id': '2241', 'type': 'Feature', 'properties': {'osmid': 53061176, 'average price/sqft': 665.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2700816, 37.807596]}}, {'id': '2242', 'type': 'Feature', 'properties': {'osmid': 53061203, 'average price/sqft': 384.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2037227, 37.7702964]}}, {'id': '2243', 'type': 'Feature', 'properties': {'osmid': 53061205, 'average price/sqft': 387.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2014455, 37.7686871]}}, {'id': '2244', 'type': 'Feature', 'properties': {'osmid': 53061214, 'average price/sqft': 660.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2489821, 37.806027]}}, {'id': '2245', 'type': 'Feature', 'properties': {'osmid': 53061285, 'average price/sqft': 445.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1524293, 37.7575979]}}, {'id': '2246', 'type': 'Feature', 'properties': {'osmid': 53061306, 'average price/sqft': 419.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1754906, 37.7448846]}}, {'id': '2247', 'type': 'Feature', 'properties': {'osmid': 53061307, 'average price/sqft': 426.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1738169, 37.7456725]}}, {'id': '2248', 'type': 'Feature', 'properties': {'osmid': 53061309, 'average price/sqft': 421.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1721497, 37.7464511]}}, {'id': '2249', 'type': 'Feature', 'properties': {'osmid': 53061366, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1790024, 37.7325221]}}, {'id': '2250', 'type': 'Feature', 'properties': {'osmid': 53061367, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1794669, 37.7326981]}}, {'id': '2251', 'type': 'Feature', 'properties': {'osmid': 53061370, 'average price/sqft': 574.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1948616, 37.8099396]}}, {'id': '2252', 'type': 'Feature', 'properties': {'osmid': 53061373, 'average price/sqft': 567.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1946386, 37.8106956]}}, {'id': '2253', 'type': 'Feature', 'properties': {'osmid': 53061421, 'average price/sqft': 829.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2185162, 37.8126397]}}, {'id': '2254', 'type': 'Feature', 'properties': {'osmid': 53061423, 'average price/sqft': 824.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2177734, 37.812349]}}, {'id': '2255', 'type': 'Feature', 'properties': {'osmid': 53061427, 'average price/sqft': 817.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2165666, 37.8118851]}}, {'id': '2256', 'type': 'Feature', 'properties': {'osmid': 53061473, 'average price/sqft': 943.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2449626, 37.8482912]}}, {'id': '2257', 'type': 'Feature', 'properties': {'osmid': 53061475, 'average price/sqft': 943.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2459046, 37.849514]}}, {'id': '2258', 'type': 'Feature', 'properties': {'osmid': 53061480, 'average price/sqft': 535.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1425139, 37.7589279]}}, {'id': '2259', 'type': 'Feature', 'properties': {'osmid': 53061537, 'average price/sqft': 279.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.299357, 37.8062539]}}, {'id': '2260', 'type': 'Feature', 'properties': {'osmid': 53061541, 'average price/sqft': 281.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2969884, 37.809811]}}, {'id': '2261', 'type': 'Feature', 'properties': {'osmid': 53061543, 'average price/sqft': 281.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2963755, 37.8105753]}}, {'id': '2262', 'type': 'Feature', 'properties': {'osmid': 53061546, 'average price/sqft': 283.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2957575, 37.8113452]}}, {'id': '2263', 'type': 'Feature', 'properties': {'osmid': 53061548, 'average price/sqft': 297.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2952445, 37.8120095]}}, {'id': '2264', 'type': 'Feature', 'properties': {'osmid': 53061551, 'average price/sqft': 334.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2941616, 37.813354]}}, {'id': '2265', 'type': 'Feature', 'properties': {'osmid': 53061553, 'average price/sqft': 360.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2936171, 37.8140363]}}, {'id': '2266', 'type': 'Feature', 'properties': {'osmid': 53061555, 'average price/sqft': 419.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2920011, 37.8160597]}}, {'id': '2267', 'type': 'Feature', 'properties': {'osmid': 53061557, 'average price/sqft': 464.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2908448, 37.8175078]}}, {'id': '2268', 'type': 'Feature', 'properties': {'osmid': 53061562, 'average price/sqft': 451.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2889802, 37.8198268]}}, {'id': '2269', 'type': 'Feature', 'properties': {'osmid': 53061564, 'average price/sqft': 444.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2885531, 37.8203688]}}, {'id': '2270', 'type': 'Feature', 'properties': {'osmid': 53061587, 'average price/sqft': 566.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2312211, 37.8589826]}}, {'id': '2271', 'type': 'Feature', 'properties': {'osmid': 53061678, 'average price/sqft': 828.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2580626, 37.8454404]}}, {'id': '2272', 'type': 'Feature', 'properties': {'osmid': 53061679, 'average price/sqft': 829.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2581514, 37.8458748]}}, {'id': '2273', 'type': 'Feature', 'properties': {'osmid': 53061680, 'average price/sqft': 827.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2582032, 37.846143]}}, {'id': '2274', 'type': 'Feature', 'properties': {'osmid': 53061682, 'average price/sqft': 825.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2582842, 37.8465846]}}, {'id': '2275', 'type': 'Feature', 'properties': {'osmid': 53061742, 'average price/sqft': 678.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2624969, 37.8253982]}}, {'id': '2276', 'type': 'Feature', 'properties': {'osmid': 53061743, 'average price/sqft': 709.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2625669, 37.8267825]}}, {'id': '2277', 'type': 'Feature', 'properties': {'osmid': 53061758, 'average price/sqft': 447.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2098619, 37.7864183]}}, {'id': '2278', 'type': 'Feature', 'properties': {'osmid': 53061759, 'average price/sqft': 443.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2063134, 37.783236]}}, {'id': '2279', 'type': 'Feature', 'properties': {'osmid': 53061872, 'average price/sqft': 739.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2324293, 37.8105092]}}, {'id': '2280', 'type': 'Feature', 'properties': {'osmid': 53062077, 'average price/sqft': 353.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2384239, 37.7875077]}}, {'id': '2281', 'type': 'Feature', 'properties': {'osmid': 53062081, 'average price/sqft': 380.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2376308, 37.788333]}}, {'id': '2282', 'type': 'Feature', 'properties': {'osmid': 53062086, 'average price/sqft': 415.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2360396, 37.7900013]}}, {'id': '2283', 'type': 'Feature', 'properties': {'osmid': 53062095, 'average price/sqft': 731.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2323966, 37.804012]}}, {'id': '2284', 'type': 'Feature', 'properties': {'osmid': 53062096, 'average price/sqft': 724.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2315498, 37.8034748]}}, {'id': '2285', 'type': 'Feature', 'properties': {'osmid': 53062098, 'average price/sqft': 722.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2304618, 37.8025827]}}, {'id': '2286', 'type': 'Feature', 'properties': {'osmid': 53062101, 'average price/sqft': 708.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2291674, 37.8016175]}}, {'id': '2287', 'type': 'Feature', 'properties': {'osmid': 53062105, 'average price/sqft': 743.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2343465, 37.8059308]}}, {'id': '2288', 'type': 'Feature', 'properties': {'osmid': 53062106, 'average price/sqft': 744.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2345347, 37.8057101]}}, {'id': '2289', 'type': 'Feature', 'properties': {'osmid': 53062107, 'average price/sqft': 791.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2606427, 37.8392614]}}, {'id': '2290', 'type': 'Feature', 'properties': {'osmid': 53062110, 'average price/sqft': 802.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2605977, 37.8400769]}}, {'id': '2291', 'type': 'Feature', 'properties': {'osmid': 53062112, 'average price/sqft': 829.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2594925, 37.8405085]}}, {'id': '2292', 'type': 'Feature', 'properties': {'osmid': 53062115, 'average price/sqft': 657.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2416298, 37.8020702]}}, {'id': '2293', 'type': 'Feature', 'properties': {'osmid': 53062118, 'average price/sqft': 664.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2483029, 37.7996983]}}, {'id': '2294', 'type': 'Feature', 'properties': {'osmid': 53062123, 'average price/sqft': 660.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.245811, 37.7974958]}}, {'id': '2295', 'type': 'Feature', 'properties': {'osmid': 53062126, 'average price/sqft': 588.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2433208, 37.7952937]}}, {'id': '2296', 'type': 'Feature', 'properties': {'osmid': 53062130, 'average price/sqft': 448.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2409105, 37.7931572]}}, {'id': '2297', 'type': 'Feature', 'properties': {'osmid': 53062134, 'average price/sqft': 429.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2402171, 37.7925414]}}, {'id': '2298', 'type': 'Feature', 'properties': {'osmid': 53062136, 'average price/sqft': 424.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2391809, 37.791887]}}, {'id': '2299', 'type': 'Feature', 'properties': {'osmid': 53062138, 'average price/sqft': 424.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2370896, 37.7906411]}}, {'id': '2300', 'type': 'Feature', 'properties': {'osmid': 53062140, 'average price/sqft': 425.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2339478, 37.7887427]}}, {'id': '2301', 'type': 'Feature', 'properties': {'osmid': 53062142, 'average price/sqft': 433.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2320267, 37.7876038]}}, {'id': '2302', 'type': 'Feature', 'properties': {'osmid': 53062143, 'average price/sqft': 428.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2304076, 37.786629]}}, {'id': '2303', 'type': 'Feature', 'properties': {'osmid': 53062145, 'average price/sqft': 422.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2295182, 37.7861032]}}, {'id': '2304', 'type': 'Feature', 'properties': {'osmid': 53062147, 'average price/sqft': 419.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2289606, 37.7857939]}}, {'id': '2305', 'type': 'Feature', 'properties': {'osmid': 53062150, 'average price/sqft': 411.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2275138, 37.7849609]}}, {'id': '2306', 'type': 'Feature', 'properties': {'osmid': 53062151, 'average price/sqft': 407.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2268081, 37.7844303]}}, {'id': '2307', 'type': 'Feature', 'properties': {'osmid': 53062171, 'average price/sqft': 641.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2145563, 37.8371195]}}, {'id': '2308', 'type': 'Feature', 'properties': {'osmid': 53062327, 'average price/sqft': 503.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1596471, 37.7757875]}}, {'id': '2309', 'type': 'Feature', 'properties': {'osmid': 53062338, 'average price/sqft': 597.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2536695, 37.8222596]}}, {'id': '2310', 'type': 'Feature', 'properties': {'osmid': 53062374, 'average price/sqft': 683.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1913549, 37.7882403]}}, {'id': '2311', 'type': 'Feature', 'properties': {'osmid': 53062377, 'average price/sqft': 687.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.190274, 37.7872801]}}, {'id': '2312', 'type': 'Feature', 'properties': {'osmid': 53062379, 'average price/sqft': 674.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1894211, 37.7862785]}}, {'id': '2313', 'type': 'Feature', 'properties': {'osmid': 53062381, 'average price/sqft': 656.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1892461, 37.7853034]}}, {'id': '2314', 'type': 'Feature', 'properties': {'osmid': 53062425, 'average price/sqft': 344.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1731778, 37.7370359]}}, {'id': '2315', 'type': 'Feature', 'properties': {'osmid': 53062426, 'average price/sqft': 360.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1712306, 37.7379524]}}, {'id': '2316', 'type': 'Feature', 'properties': {'osmid': 53062427, 'average price/sqft': 314.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1679985, 37.7394758]}}, {'id': '2317', 'type': 'Feature', 'properties': {'osmid': 53062428, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1672405, 37.7398356]}}, {'id': '2318', 'type': 'Feature', 'properties': {'osmid': 53062433, 'average price/sqft': 422.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1675791, 37.7402922]}}, {'id': '2319', 'type': 'Feature', 'properties': {'osmid': 53062437, 'average price/sqft': 383.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1659115, 37.7406725]}}, {'id': '2320', 'type': 'Feature', 'properties': {'osmid': 53062439, 'average price/sqft': 388.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1645724, 37.7409813]}}, {'id': '2321', 'type': 'Feature', 'properties': {'osmid': 53062441, 'average price/sqft': 388.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1621265, 37.741545]}}, {'id': '2322', 'type': 'Feature', 'properties': {'osmid': 53062443, 'average price/sqft': 360.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1596934, 37.7421069]}}, {'id': '2323', 'type': 'Feature', 'properties': {'osmid': 53062444, 'average price/sqft': 361.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1591566, 37.742184]}}, {'id': '2324', 'type': 'Feature', 'properties': {'osmid': 53062447, 'average price/sqft': 363.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1582932, 37.7428575]}}, {'id': '2325', 'type': 'Feature', 'properties': {'osmid': 53062488, 'average price/sqft': 561.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2814004, 37.8100958]}}, {'id': '2326', 'type': 'Feature', 'properties': {'osmid': 53062493, 'average price/sqft': 528.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2801344, 37.8136121]}}, {'id': '2327', 'type': 'Feature', 'properties': {'osmid': 53062497, 'average price/sqft': 478.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2786178, 37.8177714]}}, {'id': '2328', 'type': 'Feature', 'properties': {'osmid': 53062499, 'average price/sqft': 457.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2780556, 37.8193214]}}, {'id': '2329', 'type': 'Feature', 'properties': {'osmid': 53062502, 'average price/sqft': 436.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.277432, 37.8210556]}}, {'id': '2330', 'type': 'Feature', 'properties': {'osmid': 53062544, 'average price/sqft': 637.0, 'observation count': 29.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.202044, 37.8002437]}}, {'id': '2331', 'type': 'Feature', 'properties': {'osmid': 53062546, 'average price/sqft': 626.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1997314, 37.7982954]}}, {'id': '2332', 'type': 'Feature', 'properties': {'osmid': 53062548, 'average price/sqft': 624.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1990638, 37.7977282]}}, {'id': '2333', 'type': 'Feature', 'properties': {'osmid': 53062550, 'average price/sqft': 623.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1988342, 37.7975249]}}, {'id': '2334', 'type': 'Feature', 'properties': {'osmid': 53062588, 'average price/sqft': 615.0, 'observation count': 29.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1977613, 37.7970841]}}, {'id': '2335', 'type': 'Feature', 'properties': {'osmid': 53062590, 'average price/sqft': 616.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1973481, 37.7966484]}}, {'id': '2336', 'type': 'Feature', 'properties': {'osmid': 53062592, 'average price/sqft': 618.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1968161, 37.796077]}}, {'id': '2337', 'type': 'Feature', 'properties': {'osmid': 53062608, 'average price/sqft': 673.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.187633, 37.7867597]}}, {'id': '2338', 'type': 'Feature', 'properties': {'osmid': 53062610, 'average price/sqft': 664.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1857859, 37.788461]}}, {'id': '2339', 'type': 'Feature', 'properties': {'osmid': 53062613, 'average price/sqft': 648.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1896906, 37.7850464]}}, {'id': '2340', 'type': 'Feature', 'properties': {'osmid': 53062615, 'average price/sqft': 661.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1886366, 37.7858429]}}, {'id': '2341', 'type': 'Feature', 'properties': {'osmid': 53062625, 'average price/sqft': 570.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2250324, 37.7981111]}}, {'id': '2342', 'type': 'Feature', 'properties': {'osmid': 53062626, 'average price/sqft': 597.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.224686, 37.7987754]}}, {'id': '2343', 'type': 'Feature', 'properties': {'osmid': 53062629, 'average price/sqft': 675.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2238929, 37.8006164]}}, {'id': '2344', 'type': 'Feature', 'properties': {'osmid': 53062631, 'average price/sqft': 718.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2234956, 37.8018836]}}, {'id': '2345', 'type': 'Feature', 'properties': {'osmid': 53062633, 'average price/sqft': 749.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.223143, 37.8031597]}}, {'id': '2346', 'type': 'Feature', 'properties': {'osmid': 53062638, 'average price/sqft': 751.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2233817, 37.8032053]}}, {'id': '2347', 'type': 'Feature', 'properties': {'osmid': 53062718, 'average price/sqft': 742.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2113851, 37.8323333]}}, {'id': '2348', 'type': 'Feature', 'properties': {'osmid': 53062720, 'average price/sqft': 748.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2118678, 37.8325254]}}, {'id': '2349', 'type': 'Feature', 'properties': {'osmid': 53062722, 'average price/sqft': 670.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1921213, 37.7855449]}}, {'id': '2350', 'type': 'Feature', 'properties': {'osmid': 53062723, 'average price/sqft': 678.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1919851, 37.7860358]}}, {'id': '2351', 'type': 'Feature', 'properties': {'osmid': 53062726, 'average price/sqft': 687.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1910935, 37.7866658]}}, {'id': '2352', 'type': 'Feature', 'properties': {'osmid': 53062898, 'average price/sqft': 418.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2054913, 37.7551785]}}, {'id': '2353', 'type': 'Feature', 'properties': {'osmid': 53062907, 'average price/sqft': 435.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2066312, 37.7563512]}}, {'id': '2354', 'type': 'Feature', 'properties': {'osmid': 53062909, 'average price/sqft': 503.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2045693, 37.7573735]}}, {'id': '2355', 'type': 'Feature', 'properties': {'osmid': 53062911, 'average price/sqft': 872.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.241824, 37.8406732]}}, {'id': '2356', 'type': 'Feature', 'properties': {'osmid': 53062914, 'average price/sqft': 863.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.242183, 37.8418048]}}, {'id': '2357', 'type': 'Feature', 'properties': {'osmid': 53062916, 'average price/sqft': 885.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2418289, 37.8434221]}}, {'id': '2358', 'type': 'Feature', 'properties': {'osmid': 53062917, 'average price/sqft': 891.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2417188, 37.8437392]}}, {'id': '2359', 'type': 'Feature', 'properties': {'osmid': 53062920, 'average price/sqft': 718.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2195094, 37.8376087]}}, {'id': '2360', 'type': 'Feature', 'properties': {'osmid': 53062921, 'average price/sqft': 688.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2185079, 37.836292]}}, {'id': '2361', 'type': 'Feature', 'properties': {'osmid': 53063041, 'average price/sqft': 815.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.217732, 37.808404]}}, {'id': '2362', 'type': 'Feature', 'properties': {'osmid': 53063267, 'average price/sqft': 545.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2750306, 37.8147965]}}, {'id': '2363', 'type': 'Feature', 'properties': {'osmid': 53063268, 'average price/sqft': 551.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2780398, 37.8142119]}}, {'id': '2364', 'type': 'Feature', 'properties': {'osmid': 53063320, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1994789, 37.7376555]}}, {'id': '2365', 'type': 'Feature', 'properties': {'osmid': 53063321, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2015536, 37.7398877]}}, {'id': '2366', 'type': 'Feature', 'properties': {'osmid': 53063324, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2045029, 37.7432455]}}, {'id': '2367', 'type': 'Feature', 'properties': {'osmid': 53063328, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2071374, 37.7462452]}}, {'id': '2368', 'type': 'Feature', 'properties': {'osmid': 53063630, 'average price/sqft': 634.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2305294, 37.8630264]}}, {'id': '2369', 'type': 'Feature', 'properties': {'osmid': 53063694, 'average price/sqft': 400.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1739095, 37.7767263]}}, {'id': '2370', 'type': 'Feature', 'properties': {'osmid': 53063699, 'average price/sqft': 399.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1739957, 37.7761582]}}, {'id': '2371', 'type': 'Feature', 'properties': {'osmid': 53063705, 'average price/sqft': 418.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.170318, 37.7739497]}}, {'id': '2372', 'type': 'Feature', 'properties': {'osmid': 53063706, 'average price/sqft': 422.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1697395, 37.774213]}}, {'id': '2373', 'type': 'Feature', 'properties': {'osmid': 53063712, 'average price/sqft': 428.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1809039, 37.7591653]}}, {'id': '2374', 'type': 'Feature', 'properties': {'osmid': 53063713, 'average price/sqft': 434.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1799963, 37.7582627]}}, {'id': '2375', 'type': 'Feature', 'properties': {'osmid': 53063757, 'average price/sqft': 367.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1683338, 37.7512488]}}, {'id': '2376', 'type': 'Feature', 'properties': {'osmid': 53063760, 'average price/sqft': 374.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1671721, 37.7497002]}}, {'id': '2377', 'type': 'Feature', 'properties': {'osmid': 53063762, 'average price/sqft': 374.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1661454, 37.7483114]}}, {'id': '2378', 'type': 'Feature', 'properties': {'osmid': 53063766, 'average price/sqft': 376.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1642139, 37.7457054]}}, {'id': '2379', 'type': 'Feature', 'properties': {'osmid': 53063768, 'average price/sqft': 375.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1638065, 37.7451492]}}, {'id': '2380', 'type': 'Feature', 'properties': {'osmid': 53063770, 'average price/sqft': 373.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1632339, 37.7443485]}}, {'id': '2381', 'type': 'Feature', 'properties': {'osmid': 53063772, 'average price/sqft': 375.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1629547, 37.743645]}}, {'id': '2382', 'type': 'Feature', 'properties': {'osmid': 53063774, 'average price/sqft': 380.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1624116, 37.7422622]}}, {'id': '2383', 'type': 'Feature', 'properties': {'osmid': 53063776, 'average price/sqft': 388.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1618577, 37.7408483]}}, {'id': '2384', 'type': 'Feature', 'properties': {'osmid': 53063795, 'average price/sqft': 380.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1745649, 37.7590462]}}, {'id': '2385', 'type': 'Feature', 'properties': {'osmid': 53063797, 'average price/sqft': 383.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1740006, 37.7583171]}}, {'id': '2386', 'type': 'Feature', 'properties': {'osmid': 53063798, 'average price/sqft': 385.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1728551, 37.756782]}}, {'id': '2387', 'type': 'Feature', 'properties': {'osmid': 53063799, 'average price/sqft': 392.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1722887, 37.7560084]}}, {'id': '2388', 'type': 'Feature', 'properties': {'osmid': 53063800, 'average price/sqft': 399.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1717308, 37.7552484]}}, {'id': '2389', 'type': 'Feature', 'properties': {'osmid': 53063801, 'average price/sqft': 403.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1712673, 37.7546308]}}, {'id': '2390', 'type': 'Feature', 'properties': {'osmid': 53063802, 'average price/sqft': 401.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1708125, 37.7540341]}}, {'id': '2391', 'type': 'Feature', 'properties': {'osmid': 53063803, 'average price/sqft': 377.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1698339, 37.7527035]}}, {'id': '2392', 'type': 'Feature', 'properties': {'osmid': 53063866, 'average price/sqft': 414.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1759679, 37.7695996]}}, {'id': '2393', 'type': 'Feature', 'properties': {'osmid': 53063867, 'average price/sqft': 408.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1754311, 37.770739]}}, {'id': '2394', 'type': 'Feature', 'properties': {'osmid': 53063868, 'average price/sqft': 410.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1740624, 37.7716173]}}, {'id': '2395', 'type': 'Feature', 'properties': {'osmid': 53063870, 'average price/sqft': 411.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1730724, 37.7722314]}}, {'id': '2396', 'type': 'Feature', 'properties': {'osmid': 53063874, 'average price/sqft': 407.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1988246, 37.7551777]}}, {'id': '2397', 'type': 'Feature', 'properties': {'osmid': 53063876, 'average price/sqft': 413.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1982374, 37.7555622]}}, {'id': '2398', 'type': 'Feature', 'properties': {'osmid': 53063877, 'average price/sqft': 420.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1973576, 37.7561281]}}, {'id': '2399', 'type': 'Feature', 'properties': {'osmid': 53063878, 'average price/sqft': 421.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1964715, 37.7567]}}, {'id': '2400', 'type': 'Feature', 'properties': {'osmid': 53063879, 'average price/sqft': 426.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1937301, 37.758451]}}, {'id': '2401', 'type': 'Feature', 'properties': {'osmid': 53063881, 'average price/sqft': 424.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1929194, 37.7589758]}}, {'id': '2402', 'type': 'Feature', 'properties': {'osmid': 53063883, 'average price/sqft': 418.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1911451, 37.7601156]}}, {'id': '2403', 'type': 'Feature', 'properties': {'osmid': 53063887, 'average price/sqft': 418.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1884545, 37.7619528]}}, {'id': '2404', 'type': 'Feature', 'properties': {'osmid': 53063888, 'average price/sqft': 420.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1874918, 37.7625032]}}, {'id': '2405', 'type': 'Feature', 'properties': {'osmid': 53063890, 'average price/sqft': 424.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1840855, 37.7646863]}}, {'id': '2406', 'type': 'Feature', 'properties': {'osmid': 53063891, 'average price/sqft': 424.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1824496, 37.7657354]}}, {'id': '2407', 'type': 'Feature', 'properties': {'osmid': 53064031, 'average price/sqft': 502.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1833697, 37.809564]}}, {'id': '2408', 'type': 'Feature', 'properties': {'osmid': 53064035, 'average price/sqft': 462.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1817705, 37.804605]}}, {'id': '2409', 'type': 'Feature', 'properties': {'osmid': 53064037, 'average price/sqft': 454.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1825192, 37.8036025]}}, {'id': '2410', 'type': 'Feature', 'properties': {'osmid': 53064052, 'average price/sqft': 612.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1979754, 37.8037462]}}, {'id': '2411', 'type': 'Feature', 'properties': {'osmid': 53064059, 'average price/sqft': 607.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1967885, 37.8044842]}}, {'id': '2412', 'type': 'Feature', 'properties': {'osmid': 53064071, 'average price/sqft': 539.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1271061, 37.7653585]}}, {'id': '2413', 'type': 'Feature', 'properties': {'osmid': 53064257, 'average price/sqft': 309.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2220798, 37.7668848]}}, {'id': '2414', 'type': 'Feature', 'properties': {'osmid': 53064277, 'average price/sqft': 623.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2878417, 37.8469011]}}, {'id': '2415', 'type': 'Feature', 'properties': {'osmid': 53064283, 'average price/sqft': 491.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2116584, 37.7646823]}}, {'id': '2416', 'type': 'Feature', 'properties': {'osmid': 53064284, 'average price/sqft': 491.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2108262, 37.765323]}}, {'id': '2417', 'type': 'Feature', 'properties': {'osmid': 53064287, 'average price/sqft': 456.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2101799, 37.7658372]}}, {'id': '2418', 'type': 'Feature', 'properties': {'osmid': 53064288, 'average price/sqft': 424.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2092002, 37.7666049]}}, {'id': '2419', 'type': 'Feature', 'properties': {'osmid': 53064292, 'average price/sqft': 723.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2289624, 37.8022733]}}, {'id': '2420', 'type': 'Feature', 'properties': {'osmid': 53064294, 'average price/sqft': 725.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2274363, 37.801949]}}, {'id': '2421', 'type': 'Feature', 'properties': {'osmid': 53064334, 'average price/sqft': 164.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2606326, 37.8111715]}}, {'id': '2422', 'type': 'Feature', 'properties': {'osmid': 53064335, 'average price/sqft': 373.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2593094, 37.8119095]}}, {'id': '2423', 'type': 'Feature', 'properties': {'osmid': 53064336, 'average price/sqft': 433.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2584418, 37.8123996]}}, {'id': '2424', 'type': 'Feature', 'properties': {'osmid': 53064337, 'average price/sqft': 453.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2575868, 37.8128911]}}, {'id': '2425', 'type': 'Feature', 'properties': {'osmid': 53064343, 'average price/sqft': 489.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2848264, 37.8404101]}}, {'id': '2426', 'type': 'Feature', 'properties': {'osmid': 53064344, 'average price/sqft': 480.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2857054, 37.8402476]}}, {'id': '2427', 'type': 'Feature', 'properties': {'osmid': 53064394, 'average price/sqft': 825.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2578903, 37.8371981]}}, {'id': '2428', 'type': 'Feature', 'properties': {'osmid': 53064395, 'average price/sqft': 804.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2593621, 37.8379375]}}, {'id': '2429', 'type': 'Feature', 'properties': {'osmid': 53064406, 'average price/sqft': 657.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2479928, 37.8057293]}}, {'id': '2430', 'type': 'Feature', 'properties': {'osmid': 53064408, 'average price/sqft': 656.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2467277, 37.8053292]}}, {'id': '2431', 'type': 'Feature', 'properties': {'osmid': 53064410, 'average price/sqft': 654.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2460528, 37.8051032]}}, {'id': '2432', 'type': 'Feature', 'properties': {'osmid': 53064411, 'average price/sqft': 653.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2453954, 37.8048835]}}, {'id': '2433', 'type': 'Feature', 'properties': {'osmid': 53064413, 'average price/sqft': 659.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2429785, 37.8040717]}}, {'id': '2434', 'type': 'Feature', 'properties': {'osmid': 53064416, 'average price/sqft': 655.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2421706, 37.8037969]}}, {'id': '2435', 'type': 'Feature', 'properties': {'osmid': 53064417, 'average price/sqft': 655.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2415024, 37.8035766]}}, {'id': '2436', 'type': 'Feature', 'properties': {'osmid': 53064441, 'average price/sqft': 413.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1784993, 37.7617116]}}, {'id': '2437', 'type': 'Feature', 'properties': {'osmid': 53064442, 'average price/sqft': 409.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1778639, 37.762115]}}, {'id': '2438', 'type': 'Feature', 'properties': {'osmid': 53064447, 'average price/sqft': 604.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2249794, 37.8605847]}}, {'id': '2439', 'type': 'Feature', 'properties': {'osmid': 53064560, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1774376, 37.7352775]}}, {'id': '2440', 'type': 'Feature', 'properties': {'osmid': 53064561, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1767921, 37.7357398]}}, {'id': '2441', 'type': 'Feature', 'properties': {'osmid': 53064562, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1762181, 37.7361553]}}, {'id': '2442', 'type': 'Feature', 'properties': {'osmid': 53064571, 'average price/sqft': 413.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1784608, 37.7626939]}}, {'id': '2443', 'type': 'Feature', 'properties': {'osmid': 53064616, 'average price/sqft': 461.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.162569, 37.7638878]}}, {'id': '2444', 'type': 'Feature', 'properties': {'osmid': 53064618, 'average price/sqft': 472.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1601019, 37.7632908]}}, {'id': '2445', 'type': 'Feature', 'properties': {'osmid': 53064620, 'average price/sqft': 473.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1595025, 37.7631774]}}, {'id': '2446', 'type': 'Feature', 'properties': {'osmid': 53064638, 'average price/sqft': 408.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1805433, 37.779597]}}, {'id': '2447', 'type': 'Feature', 'properties': {'osmid': 53064640, 'average price/sqft': 404.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.179917, 37.7789801]}}, {'id': '2448', 'type': 'Feature', 'properties': {'osmid': 53064641, 'average price/sqft': 402.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1796448, 37.7787289]}}, {'id': '2449', 'type': 'Feature', 'properties': {'osmid': 53064642, 'average price/sqft': 397.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1780795, 37.7772205]}}, {'id': '2450', 'type': 'Feature', 'properties': {'osmid': 53064644, 'average price/sqft': 400.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1754635, 37.7751704]}}, {'id': '2451', 'type': 'Feature', 'properties': {'osmid': 53064646, 'average price/sqft': 404.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1746963, 37.774701]}}, {'id': '2452', 'type': 'Feature', 'properties': {'osmid': 53064648, 'average price/sqft': 407.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1737962, 37.773419]}}, {'id': '2453', 'type': 'Feature', 'properties': {'osmid': 53064650, 'average price/sqft': 416.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1707249, 37.7712586]}}, {'id': '2454', 'type': 'Feature', 'properties': {'osmid': 53064652, 'average price/sqft': 417.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1699725, 37.770738]}}, {'id': '2455', 'type': 'Feature', 'properties': {'osmid': 53064654, 'average price/sqft': 418.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1690499, 37.7701083]}}, {'id': '2456', 'type': 'Feature', 'properties': {'osmid': 53064656, 'average price/sqft': 418.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1689641, 37.7700405]}}, {'id': '2457', 'type': 'Feature', 'properties': {'osmid': 53064658, 'average price/sqft': 420.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1678769, 37.7692908]}}, {'id': '2458', 'type': 'Feature', 'properties': {'osmid': 53064661, 'average price/sqft': 423.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1662751, 37.7682016]}}, {'id': '2459', 'type': 'Feature', 'properties': {'osmid': 53064919, 'average price/sqft': 754.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2275821, 37.8033132]}}, {'id': '2460', 'type': 'Feature', 'properties': {'osmid': 53064920, 'average price/sqft': 761.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2254381, 37.8029274]}}, {'id': '2461', 'type': 'Feature', 'properties': {'osmid': 53064981, 'average price/sqft': 524.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2001384, 37.7846077]}}, {'id': '2462', 'type': 'Feature', 'properties': {'osmid': 53064982, 'average price/sqft': 516.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1990275, 37.7835972]}}, {'id': '2463', 'type': 'Feature', 'properties': {'osmid': 53064984, 'average price/sqft': 499.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.19817, 37.7828312]}}, {'id': '2464', 'type': 'Feature', 'properties': {'osmid': 53064986, 'average price/sqft': 481.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1967637, 37.7815983]}}, {'id': '2465', 'type': 'Feature', 'properties': {'osmid': 53064987, 'average price/sqft': 473.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1958572, 37.7809751]}}, {'id': '2466', 'type': 'Feature', 'properties': {'osmid': 53064988, 'average price/sqft': 474.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1952932, 37.7804125]}}, {'id': '2467', 'type': 'Feature', 'properties': {'osmid': 53065034, 'average price/sqft': 539.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2319333, 37.7959846]}}, {'id': '2468', 'type': 'Feature', 'properties': {'osmid': 53065036, 'average price/sqft': 478.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2277943, 37.7937318]}}, {'id': '2469', 'type': 'Feature', 'properties': {'osmid': 53065037, 'average price/sqft': 476.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2267282, 37.793564]}}, {'id': '2470', 'type': 'Feature', 'properties': {'osmid': 53065040, 'average price/sqft': 462.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2254207, 37.7930407]}}, {'id': '2471', 'type': 'Feature', 'properties': {'osmid': 53065042, 'average price/sqft': 442.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2240615, 37.7922936]}}, {'id': '2472', 'type': 'Feature', 'properties': {'osmid': 53065044, 'average price/sqft': 440.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.223788, 37.7921488]}}, {'id': '2473', 'type': 'Feature', 'properties': {'osmid': 53065046, 'average price/sqft': 437.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2233107, 37.791896]}}, {'id': '2474', 'type': 'Feature', 'properties': {'osmid': 53065049, 'average price/sqft': 430.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.221805, 37.7910873]}}, {'id': '2475', 'type': 'Feature', 'properties': {'osmid': 53065057, 'average price/sqft': 571.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2332154, 37.7967488]}}, {'id': '2476', 'type': 'Feature', 'properties': {'osmid': 53065060, 'average price/sqft': 427.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2178318, 37.7894796]}}, {'id': '2477', 'type': 'Feature', 'properties': {'osmid': 53065062, 'average price/sqft': 435.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2168671, 37.7890351]}}, {'id': '2478', 'type': 'Feature', 'properties': {'osmid': 53065133, 'average price/sqft': 711.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.226853, 37.8011809]}}, {'id': '2479', 'type': 'Feature', 'properties': {'osmid': 53065134, 'average price/sqft': 750.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.226511, 37.8024448]}}, {'id': '2480', 'type': 'Feature', 'properties': {'osmid': 53065155, 'average price/sqft': 808.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2263232, 37.8068156]}}, {'id': '2481', 'type': 'Feature', 'properties': {'osmid': 53065159, 'average price/sqft': 775.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2264106, 37.8037614]}}, {'id': '2482', 'type': 'Feature', 'properties': {'osmid': 53065166, 'average price/sqft': 619.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1997193, 37.8025377]}}, {'id': '2483', 'type': 'Feature', 'properties': {'osmid': 53065286, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1786089, 37.7330846]}}, {'id': '2484', 'type': 'Feature', 'properties': {'osmid': 53065291, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1760705, 37.7306916]}}, {'id': '2485', 'type': 'Feature', 'properties': {'osmid': 53065292, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1755002, 37.7302317]}}, {'id': '2486', 'type': 'Feature', 'properties': {'osmid': 53065294, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1749739, 37.7300787]}}, {'id': '2487', 'type': 'Feature', 'properties': {'osmid': 53065491, 'average price/sqft': 491.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2040756, 37.8447871]}}, {'id': '2488', 'type': 'Feature', 'properties': {'osmid': 53065528, 'average price/sqft': 668.0, 'observation count': 34.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2665951, 37.8424011]}}, {'id': '2489', 'type': 'Feature', 'properties': {'osmid': 53065529, 'average price/sqft': 665.0, 'observation count': 31.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2667836, 37.8433475]}}, {'id': '2490', 'type': 'Feature', 'properties': {'osmid': 53065530, 'average price/sqft': 655.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2669714, 37.8442597]}}, {'id': '2491', 'type': 'Feature', 'properties': {'osmid': 53065531, 'average price/sqft': 660.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2672486, 37.8456218]}}, {'id': '2492', 'type': 'Feature', 'properties': {'osmid': 53065662, 'average price/sqft': 705.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1573833, 37.7814895]}}, {'id': '2493', 'type': 'Feature', 'properties': {'osmid': 53065664, 'average price/sqft': 773.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1565035, 37.7820343]}}, {'id': '2494', 'type': 'Feature', 'properties': {'osmid': 53065666, 'average price/sqft': 757.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2582579, 37.7965918]}}, {'id': '2495', 'type': 'Feature', 'properties': {'osmid': 53065671, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2557683, 37.7944036]}}, {'id': '2496', 'type': 'Feature', 'properties': {'osmid': 53065673, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2540988, 37.7929272]}}, {'id': '2497', 'type': 'Feature', 'properties': {'osmid': 53065675, 'average price/sqft': 664.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2532656, 37.7921907]}}, {'id': '2498', 'type': 'Feature', 'properties': {'osmid': 53065677, 'average price/sqft': 348.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2516153, 37.7907322]}}, {'id': '2499', 'type': 'Feature', 'properties': {'osmid': 53065678, 'average price/sqft': 236.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2507585, 37.7899972]}}, {'id': '2500', 'type': 'Feature', 'properties': {'osmid': 53065683, 'average price/sqft': 304.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2359746, 37.7798616]}}, {'id': '2501', 'type': 'Feature', 'properties': {'osmid': 53065685, 'average price/sqft': 290.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2341048, 37.7785791]}}, {'id': '2502', 'type': 'Feature', 'properties': {'osmid': 53065764, 'average price/sqft': 398.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2205025, 37.785918]}}, {'id': '2503', 'type': 'Feature', 'properties': {'osmid': 53065917, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1951462, 37.7323772]}}, {'id': '2504', 'type': 'Feature', 'properties': {'osmid': 53065918, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1947948, 37.7327103]}}, {'id': '2505', 'type': 'Feature', 'properties': {'osmid': 53065919, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1905408, 37.7323666]}}, {'id': '2506', 'type': 'Feature', 'properties': {'osmid': 53066063, 'average price/sqft': 539.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1300267, 37.7688436]}}, {'id': '2507', 'type': 'Feature', 'properties': {'osmid': 53066069, 'average price/sqft': 539.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1287129, 37.7661323]}}, {'id': '2508', 'type': 'Feature', 'properties': {'osmid': 53066073, 'average price/sqft': 539.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1288544, 37.765818]}}, {'id': '2509', 'type': 'Feature', 'properties': {'osmid': 53066081, 'average price/sqft': 539.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1293297, 37.7647352]}}, {'id': '2510', 'type': 'Feature', 'properties': {'osmid': 53066098, 'average price/sqft': 624.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2129031, 37.7964208]}}, {'id': '2511', 'type': 'Feature', 'properties': {'osmid': 53066146, 'average price/sqft': 457.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2205593, 37.7780141]}}, {'id': '2512', 'type': 'Feature', 'properties': {'osmid': 53066147, 'average price/sqft': 462.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2191045, 37.7803792]}}, {'id': '2513', 'type': 'Feature', 'properties': {'osmid': 53066148, 'average price/sqft': 462.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2186771, 37.780842]}}, {'id': '2514', 'type': 'Feature', 'properties': {'osmid': 53066156, 'average price/sqft': 377.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2233672, 37.7735947]}}, {'id': '2515', 'type': 'Feature', 'properties': {'osmid': 53066159, 'average price/sqft': 373.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.223116, 37.7739191]}}, {'id': '2516', 'type': 'Feature', 'properties': {'osmid': 53066162, 'average price/sqft': 306.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.225461, 37.770846]}}, {'id': '2517', 'type': 'Feature', 'properties': {'osmid': 53066164, 'average price/sqft': 304.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2247661, 37.7717581]}}, {'id': '2518', 'type': 'Feature', 'properties': {'osmid': 53066168, 'average price/sqft': 406.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2223445, 37.7749668]}}, {'id': '2519', 'type': 'Feature', 'properties': {'osmid': 53066170, 'average price/sqft': 398.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.221846, 37.7756391]}}, {'id': '2520', 'type': 'Feature', 'properties': {'osmid': 53066195, 'average price/sqft': 340.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1536382, 37.7441201]}}, {'id': '2521', 'type': 'Feature', 'properties': {'osmid': 53066196, 'average price/sqft': 337.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1528281, 37.7443559]}}, {'id': '2522', 'type': 'Feature', 'properties': {'osmid': 53066245, 'average price/sqft': 460.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1804821, 37.8018396]}}, {'id': '2523', 'type': 'Feature', 'properties': {'osmid': 53066246, 'average price/sqft': 455.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1779531, 37.7987918]}}, {'id': '2524', 'type': 'Feature', 'properties': {'osmid': 53066248, 'average price/sqft': 454.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1773751, 37.7983963]}}, {'id': '2525', 'type': 'Feature', 'properties': {'osmid': 53066249, 'average price/sqft': 456.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1754452, 37.7976208]}}, {'id': '2526', 'type': 'Feature', 'properties': {'osmid': 53066252, 'average price/sqft': 458.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1752582, 37.7971662]}}, {'id': '2527', 'type': 'Feature', 'properties': {'osmid': 53066256, 'average price/sqft': 460.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1802255, 37.8029936]}}, {'id': '2528', 'type': 'Feature', 'properties': {'osmid': 53066257, 'average price/sqft': 460.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1801077, 37.8021502]}}, {'id': '2529', 'type': 'Feature', 'properties': {'osmid': 53066261, 'average price/sqft': 463.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1777035, 37.8030858]}}, {'id': '2530', 'type': 'Feature', 'properties': {'osmid': 53066296, 'average price/sqft': 571.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2320223, 37.8594613]}}, {'id': '2531', 'type': 'Feature', 'properties': {'osmid': 53066297, 'average price/sqft': 566.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2334356, 37.8592151]}}, {'id': '2532', 'type': 'Feature', 'properties': {'osmid': 53066312, 'average price/sqft': 568.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1883152, 37.7974529]}}, {'id': '2533', 'type': 'Feature', 'properties': {'osmid': 53066314, 'average price/sqft': 562.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1875721, 37.7974228]}}, {'id': '2534', 'type': 'Feature', 'properties': {'osmid': 53066319, 'average price/sqft': 409.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1977014, 37.7550428]}}, {'id': '2535', 'type': 'Feature', 'properties': {'osmid': 53066320, 'average price/sqft': 401.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1971601, 37.7545223]}}, {'id': '2536', 'type': 'Feature', 'properties': {'osmid': 53066394, 'average price/sqft': 790.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2255657, 37.8348235]}}, {'id': '2537', 'type': 'Feature', 'properties': {'osmid': 53066395, 'average price/sqft': 784.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2266292, 37.8340122]}}, {'id': '2538', 'type': 'Feature', 'properties': {'osmid': 53066396, 'average price/sqft': 777.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2264943, 37.8329469]}}, {'id': '2539', 'type': 'Feature', 'properties': {'osmid': 53066397, 'average price/sqft': 771.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2254502, 37.8319365]}}, {'id': '2540', 'type': 'Feature', 'properties': {'osmid': 53066452, 'average price/sqft': 594.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2119137, 37.795355]}}, {'id': '2541', 'type': 'Feature', 'properties': {'osmid': 53066471, 'average price/sqft': 326.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2822569, 37.8473119]}}, {'id': '2542', 'type': 'Feature', 'properties': {'osmid': 53066473, 'average price/sqft': 308.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2824574, 37.8482773]}}, {'id': '2543', 'type': 'Feature', 'properties': {'osmid': 53066475, 'average price/sqft': 486.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1842961, 37.7510189]}}, {'id': '2544', 'type': 'Feature', 'properties': {'osmid': 53066476, 'average price/sqft': 505.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1811176, 37.7524882]}}, {'id': '2545', 'type': 'Feature', 'properties': {'osmid': 53066478, 'average price/sqft': 504.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1795317, 37.753243]}}, {'id': '2546', 'type': 'Feature', 'properties': {'osmid': 53066480, 'average price/sqft': 528.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1777751, 37.7540582]}}, {'id': '2547', 'type': 'Feature', 'properties': {'osmid': 53066484, 'average price/sqft': 389.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1746098, 37.75597]}}, {'id': '2548', 'type': 'Feature', 'properties': {'osmid': 53066485, 'average price/sqft': 388.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1711385, 37.7575827]}}, {'id': '2549', 'type': 'Feature', 'properties': {'osmid': 53066487, 'average price/sqft': 383.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1675513, 37.7592661]}}, {'id': '2550', 'type': 'Feature', 'properties': {'osmid': 53066492, 'average price/sqft': 399.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1652159, 37.7609024]}}, {'id': '2551', 'type': 'Feature', 'properties': {'osmid': 53066493, 'average price/sqft': 407.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1639022, 37.7615322]}}, {'id': '2552', 'type': 'Feature', 'properties': {'osmid': 53066494, 'average price/sqft': 494.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1852425, 37.7505385]}}, {'id': '2553', 'type': 'Feature', 'properties': {'osmid': 53066706, 'average price/sqft': 566.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2032819, 37.8404468]}}, {'id': '2554', 'type': 'Feature', 'properties': {'osmid': 53066708, 'average price/sqft': 566.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.203766, 37.8411035]}}, {'id': '2555', 'type': 'Feature', 'properties': {'osmid': 53066713, 'average price/sqft': 725.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2351532, 37.8168315]}}, {'id': '2556', 'type': 'Feature', 'properties': {'osmid': 53066789, 'average price/sqft': 970.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2470364, 37.8430362]}}, {'id': '2557', 'type': 'Feature', 'properties': {'osmid': 53066790, 'average price/sqft': 964.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2454518, 37.8424439]}}, {'id': '2558', 'type': 'Feature', 'properties': {'osmid': 53066793, 'average price/sqft': 410.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1855714, 37.7687954]}}, {'id': '2559', 'type': 'Feature', 'properties': {'osmid': 53066795, 'average price/sqft': 413.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1850254, 37.7682627]}}, {'id': '2560', 'type': 'Feature', 'properties': {'osmid': 53066799, 'average price/sqft': 420.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1838699, 37.7671321]}}, {'id': '2561', 'type': 'Feature', 'properties': {'osmid': 53066801, 'average price/sqft': 423.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1833272, 37.7665962]}}, {'id': '2562', 'type': 'Feature', 'properties': {'osmid': 53066803, 'average price/sqft': 424.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1827743, 37.7660531]}}, {'id': '2563', 'type': 'Feature', 'properties': {'osmid': 53066805, 'average price/sqft': 425.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1803364, 37.7635578]}}, {'id': '2564', 'type': 'Feature', 'properties': {'osmid': 53066808, 'average price/sqft': 414.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1778994, 37.7611162]}}, {'id': '2565', 'type': 'Feature', 'properties': {'osmid': 53066812, 'average price/sqft': 414.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1776032, 37.7612752]}}, {'id': '2566', 'type': 'Feature', 'properties': {'osmid': 53066813, 'average price/sqft': 405.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1763436, 37.7600269]}}, {'id': '2567', 'type': 'Feature', 'properties': {'osmid': 53067132, 'average price/sqft': 654.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2480379, 37.8114269]}}, {'id': '2568', 'type': 'Feature', 'properties': {'osmid': 53067135, 'average price/sqft': 667.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.246085, 37.8100168]}}, {'id': '2569', 'type': 'Feature', 'properties': {'osmid': 53067163, 'average price/sqft': 678.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2439746, 37.8093938]}}, {'id': '2570', 'type': 'Feature', 'properties': {'osmid': 53067166, 'average price/sqft': 677.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2418528, 37.807508]}}, {'id': '2571', 'type': 'Feature', 'properties': {'osmid': 53067220, 'average price/sqft': 596.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1562491, 37.7699578]}}, {'id': '2572', 'type': 'Feature', 'properties': {'osmid': 53067221, 'average price/sqft': 614.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1551156, 37.7684293]}}, {'id': '2573', 'type': 'Feature', 'properties': {'osmid': 53067224, 'average price/sqft': 620.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1546407, 37.7677497]}}, {'id': '2574', 'type': 'Feature', 'properties': {'osmid': 53067288, 'average price/sqft': 490.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2542871, 37.8120982]}}, {'id': '2575', 'type': 'Feature', 'properties': {'osmid': 53067289, 'average price/sqft': 498.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2533843, 37.8126146]}}, {'id': '2576', 'type': 'Feature', 'properties': {'osmid': 53067290, 'average price/sqft': 519.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2524736, 37.8131249]}}, {'id': '2577', 'type': 'Feature', 'properties': {'osmid': 53067364, 'average price/sqft': 597.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1889187, 37.8204152]}}, {'id': '2578', 'type': 'Feature', 'properties': {'osmid': 53067368, 'average price/sqft': 596.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1885854, 37.8225682]}}, {'id': '2579', 'type': 'Feature', 'properties': {'osmid': 53067371, 'average price/sqft': 604.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1889154, 37.8236292]}}, {'id': '2580', 'type': 'Feature', 'properties': {'osmid': 53067417, 'average price/sqft': 665.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2386083, 37.8037503]}}, {'id': '2581', 'type': 'Feature', 'properties': {'osmid': 53067420, 'average price/sqft': 654.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2372692, 37.8039473]}}, {'id': '2582', 'type': 'Feature', 'properties': {'osmid': 53067423, 'average price/sqft': 731.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2183178, 37.8263936]}}, {'id': '2583', 'type': 'Feature', 'properties': {'osmid': 53067429, 'average price/sqft': 718.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.215662, 37.8255092]}}, {'id': '2584', 'type': 'Feature', 'properties': {'osmid': 53067432, 'average price/sqft': 762.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2203628, 37.8278137]}}, {'id': '2585', 'type': 'Feature', 'properties': {'osmid': 53067447, 'average price/sqft': 668.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2530618, 37.8025944]}}, {'id': '2586', 'type': 'Feature', 'properties': {'osmid': 53067452, 'average price/sqft': 658.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2511492, 37.8036525]}}, {'id': '2587', 'type': 'Feature', 'properties': {'osmid': 53067472, 'average price/sqft': 672.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2534929, 37.8025472]}}, {'id': '2588', 'type': 'Feature', 'properties': {'osmid': 53067506, 'average price/sqft': 694.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2262121, 37.8451631]}}, {'id': '2589', 'type': 'Feature', 'properties': {'osmid': 53067531, 'average price/sqft': 740.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2044832, 37.8349973]}}, {'id': '2590', 'type': 'Feature', 'properties': {'osmid': 53067541, 'average price/sqft': 588.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2047357, 37.8386506]}}, {'id': '2591', 'type': 'Feature', 'properties': {'osmid': 53067797, 'average price/sqft': 485.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1958002, 37.8070525]}}, {'id': '2592', 'type': 'Feature', 'properties': {'osmid': 53067798, 'average price/sqft': 512.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1939997, 37.8069128]}}, {'id': '2593', 'type': 'Feature', 'properties': {'osmid': 53067888, 'average price/sqft': 481.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2681921, 37.8150559]}}, {'id': '2594', 'type': 'Feature', 'properties': {'osmid': 53067889, 'average price/sqft': 481.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2703137, 37.8154031]}}, {'id': '2595', 'type': 'Feature', 'properties': {'osmid': 53067893, 'average price/sqft': 499.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2719922, 37.8156773]}}, {'id': '2596', 'type': 'Feature', 'properties': {'osmid': 53067895, 'average price/sqft': 452.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.274559, 37.8160993]}}, {'id': '2597', 'type': 'Feature', 'properties': {'osmid': 53067897, 'average price/sqft': 468.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.275037, 37.8161768]}}, {'id': '2598', 'type': 'Feature', 'properties': {'osmid': 53068083, 'average price/sqft': 574.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1405422, 37.758606]}}, {'id': '2599', 'type': 'Feature', 'properties': {'osmid': 53068087, 'average price/sqft': 595.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1380167, 37.7596101]}}, {'id': '2600', 'type': 'Feature', 'properties': {'osmid': 53068088, 'average price/sqft': 605.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1374772, 37.7600446]}}, {'id': '2601', 'type': 'Feature', 'properties': {'osmid': 53068089, 'average price/sqft': 654.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1341948, 37.7601662]}}, {'id': '2602', 'type': 'Feature', 'properties': {'osmid': 53068091, 'average price/sqft': 647.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1332797, 37.7598946]}}, {'id': '2603', 'type': 'Feature', 'properties': {'osmid': 53068094, 'average price/sqft': 645.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1324425, 37.7596353]}}, {'id': '2604', 'type': 'Feature', 'properties': {'osmid': 53068096, 'average price/sqft': 645.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1282768, 37.7608371]}}, {'id': '2605', 'type': 'Feature', 'properties': {'osmid': 53068097, 'average price/sqft': 615.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1280686, 37.7614962]}}, {'id': '2606', 'type': 'Feature', 'properties': {'osmid': 53068099, 'average price/sqft': 587.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1280734, 37.7620991]}}, {'id': '2607', 'type': 'Feature', 'properties': {'osmid': 53068152, 'average price/sqft': 695.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2543605, 37.8005794]}}, {'id': '2608', 'type': 'Feature', 'properties': {'osmid': 53068153, 'average price/sqft': 678.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2520227, 37.7996836]}}, {'id': '2609', 'type': 'Feature', 'properties': {'osmid': 53068157, 'average price/sqft': 681.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2485021, 37.796926]}}, {'id': '2610', 'type': 'Feature', 'properties': {'osmid': 53068159, 'average price/sqft': 640.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2476647, 37.7961849]}}, {'id': '2611', 'type': 'Feature', 'properties': {'osmid': 53068160, 'average price/sqft': 551.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2460028, 37.7947171]}}, {'id': '2612', 'type': 'Feature', 'properties': {'osmid': 53068162, 'average price/sqft': 488.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2451716, 37.7939815]}}, {'id': '2613', 'type': 'Feature', 'properties': {'osmid': 53068164, 'average price/sqft': 449.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2443415, 37.7932474]}}, {'id': '2614', 'type': 'Feature', 'properties': {'osmid': 53068166, 'average price/sqft': 393.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2428271, 37.7919092]}}, {'id': '2615', 'type': 'Feature', 'properties': {'osmid': 53068171, 'average price/sqft': 440.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2215615, 37.7812242]}}, {'id': '2616', 'type': 'Feature', 'properties': {'osmid': 53068173, 'average price/sqft': 456.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2200689, 37.7807461]}}, {'id': '2617', 'type': 'Feature', 'properties': {'osmid': 53068180, 'average price/sqft': 487.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2171217, 37.7769684]}}, {'id': '2618', 'type': 'Feature', 'properties': {'osmid': 53068181, 'average price/sqft': 494.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2163761, 37.7765975]}}, {'id': '2619', 'type': 'Feature', 'properties': {'osmid': 53068182, 'average price/sqft': 498.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2156117, 37.7762324]}}, {'id': '2620', 'type': 'Feature', 'properties': {'osmid': 53068187, 'average price/sqft': 393.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2248388, 37.782388]}}, {'id': '2621', 'type': 'Feature', 'properties': {'osmid': 53068224, 'average price/sqft': 423.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1870544, 37.8048776]}}, {'id': '2622', 'type': 'Feature', 'properties': {'osmid': 53068226, 'average price/sqft': 427.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1862337, 37.804538]}}, {'id': '2623', 'type': 'Feature', 'properties': {'osmid': 53068228, 'average price/sqft': 422.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1851312, 37.8043827]}}, {'id': '2624', 'type': 'Feature', 'properties': {'osmid': 53068236, 'average price/sqft': 471.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1612079, 37.7654132]}}, {'id': '2625', 'type': 'Feature', 'properties': {'osmid': 53068237, 'average price/sqft': 478.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1608717, 37.7646791]}}, {'id': '2626', 'type': 'Feature', 'properties': {'osmid': 53068243, 'average price/sqft': 707.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2109682, 37.8039548]}}, {'id': '2627', 'type': 'Feature', 'properties': {'osmid': 53068244, 'average price/sqft': 709.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2103142, 37.8035216]}}, {'id': '2628', 'type': 'Feature', 'properties': {'osmid': 53068246, 'average price/sqft': 688.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2079709, 37.8019932]}}, {'id': '2629', 'type': 'Feature', 'properties': {'osmid': 53068299, 'average price/sqft': 687.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2110053, 37.8363157]}}, {'id': '2630', 'type': 'Feature', 'properties': {'osmid': 53068300, 'average price/sqft': 687.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2108127, 37.8365959]}}, {'id': '2631', 'type': 'Feature', 'properties': {'osmid': 53068303, 'average price/sqft': 687.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2115053, 37.836507]}}, {'id': '2632', 'type': 'Feature', 'properties': {'osmid': 53068631, 'average price/sqft': 673.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2388926, 37.8033433]}}, {'id': '2633', 'type': 'Feature', 'properties': {'osmid': 53068633, 'average price/sqft': 666.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2395992, 37.8037006]}}, {'id': '2634', 'type': 'Feature', 'properties': {'osmid': 53068686, 'average price/sqft': 332.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1521363, 37.7426437]}}, {'id': '2635', 'type': 'Feature', 'properties': {'osmid': 53068687, 'average price/sqft': 331.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1520412, 37.7421365]}}, {'id': '2636', 'type': 'Feature', 'properties': {'osmid': 53068689, 'average price/sqft': 329.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1517397, 37.7414796]}}, {'id': '2637', 'type': 'Feature', 'properties': {'osmid': 53068691, 'average price/sqft': 331.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.151449, 37.7408334]}}, {'id': '2638', 'type': 'Feature', 'properties': {'osmid': 53068848, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1803249, 37.7388052]}}, {'id': '2639', 'type': 'Feature', 'properties': {'osmid': 53068849, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1795929, 37.7381923]}}, {'id': '2640', 'type': 'Feature', 'properties': {'osmid': 53068850, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1790332, 37.7376916]}}, {'id': '2641', 'type': 'Feature', 'properties': {'osmid': 53068851, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1779157, 37.7367118]}}, {'id': '2642', 'type': 'Feature', 'properties': {'osmid': 53068854, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1745714, 37.7338009]}}, {'id': '2643', 'type': 'Feature', 'properties': {'osmid': 53068982, 'average price/sqft': 741.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2203492, 37.8013016]}}, {'id': '2644', 'type': 'Feature', 'properties': {'osmid': 53068984, 'average price/sqft': 761.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2201101, 37.8021029]}}, {'id': '2645', 'type': 'Feature', 'properties': {'osmid': 53068985, 'average price/sqft': 771.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2199686, 37.8025759]}}, {'id': '2646', 'type': 'Feature', 'properties': {'osmid': 53068986, 'average price/sqft': 771.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2205975, 37.8027009]}}, {'id': '2647', 'type': 'Feature', 'properties': {'osmid': 53068989, 'average price/sqft': 406.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1957023, 37.7678019]}}, {'id': '2648', 'type': 'Feature', 'properties': {'osmid': 53068992, 'average price/sqft': 409.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1939669, 37.7662312]}}, {'id': '2649', 'type': 'Feature', 'properties': {'osmid': 53068993, 'average price/sqft': 395.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1987647, 37.7705826]}}, {'id': '2650', 'type': 'Feature', 'properties': {'osmid': 53069043, 'average price/sqft': 530.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1887493, 37.7818856]}}, {'id': '2651', 'type': 'Feature', 'properties': {'osmid': 53069044, 'average price/sqft': 534.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1897618, 37.7814023]}}, {'id': '2652', 'type': 'Feature', 'properties': {'osmid': 53069049, 'average price/sqft': 513.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1883037, 37.7806941]}}, {'id': '2653', 'type': 'Feature', 'properties': {'osmid': 53069248, 'average price/sqft': 548.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.202615, 37.7884977]}}, {'id': '2654', 'type': 'Feature', 'properties': {'osmid': 53069249, 'average price/sqft': 561.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2019076, 37.7889725]}}, {'id': '2655', 'type': 'Feature', 'properties': {'osmid': 53069273, 'average price/sqft': 532.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2669336, 37.8199919]}}, {'id': '2656', 'type': 'Feature', 'properties': {'osmid': 53069276, 'average price/sqft': 431.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2703026, 37.8205201]}}, {'id': '2657', 'type': 'Feature', 'properties': {'osmid': 53069277, 'average price/sqft': 429.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2707559, 37.8205929]}}, {'id': '2658', 'type': 'Feature', 'properties': {'osmid': 53069280, 'average price/sqft': 420.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2733261, 37.821002]}}, {'id': '2659', 'type': 'Feature', 'properties': {'osmid': 53069281, 'average price/sqft': 404.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2762253, 37.8214561]}}, {'id': '2660', 'type': 'Feature', 'properties': {'osmid': 53069293, 'average price/sqft': 772.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2288475, 37.8125596]}}, {'id': '2661', 'type': 'Feature', 'properties': {'osmid': 53069309, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2666341, 37.7927153]}}, {'id': '2662', 'type': 'Feature', 'properties': {'osmid': 53069373, 'average price/sqft': 449.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1802826, 37.8004238]}}, {'id': '2663', 'type': 'Feature', 'properties': {'osmid': 53069377, 'average price/sqft': 452.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1793015, 37.7982348]}}, {'id': '2664', 'type': 'Feature', 'properties': {'osmid': 53069399, 'average price/sqft': 655.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1843121, 37.7915539]}}, {'id': '2665', 'type': 'Feature', 'properties': {'osmid': 53069401, 'average price/sqft': 671.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1838267, 37.7894201]}}, {'id': '2666', 'type': 'Feature', 'properties': {'osmid': 53069402, 'average price/sqft': 668.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1833131, 37.7872383]}}, {'id': '2667', 'type': 'Feature', 'properties': {'osmid': 53069405, 'average price/sqft': 652.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1811432, 37.7848846]}}, {'id': '2668', 'type': 'Feature', 'properties': {'osmid': 53069421, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.181067, 37.7283972]}}, {'id': '2669', 'type': 'Feature', 'properties': {'osmid': 53069423, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1817467, 37.7286773]}}, {'id': '2670', 'type': 'Feature', 'properties': {'osmid': 53069499, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.127736, 37.7638056]}}, {'id': '2671', 'type': 'Feature', 'properties': {'osmid': 53069659, 'average price/sqft': 726.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2108495, 37.811321]}}, {'id': '2672', 'type': 'Feature', 'properties': {'osmid': 53069728, 'average price/sqft': 272.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2947355, 37.8023626]}}, {'id': '2673', 'type': 'Feature', 'properties': {'osmid': 53069731, 'average price/sqft': 482.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2913856, 37.8015797]}}, {'id': '2674', 'type': 'Feature', 'properties': {'osmid': 53069733, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2902974, 37.8013312]}}, {'id': '2675', 'type': 'Feature', 'properties': {'osmid': 53069735, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2892716, 37.8011034]}}, {'id': '2676', 'type': 'Feature', 'properties': {'osmid': 53069736, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2881349, 37.8008379]}}, {'id': '2677', 'type': 'Feature', 'properties': {'osmid': 53069738, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2860313, 37.8003583]}}, {'id': '2678', 'type': 'Feature', 'properties': {'osmid': 53069740, 'average price/sqft': 535.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2839271, 37.7998762]}}, {'id': '2679', 'type': 'Feature', 'properties': {'osmid': 53069742, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.283068, 37.7995576]}}, {'id': '2680', 'type': 'Feature', 'properties': {'osmid': 53069743, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2818867, 37.799091]}}, {'id': '2681', 'type': 'Feature', 'properties': {'osmid': 53069744, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.280702, 37.7986246]}}, {'id': '2682', 'type': 'Feature', 'properties': {'osmid': 53069746, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2795182, 37.798166]}}, {'id': '2683', 'type': 'Feature', 'properties': {'osmid': 53069748, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.277168, 37.7972354]}}, {'id': '2684', 'type': 'Feature', 'properties': {'osmid': 53069751, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2758864, 37.796731]}}, {'id': '2685', 'type': 'Feature', 'properties': {'osmid': 53069753, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2735397, 37.7958076]}}, {'id': '2686', 'type': 'Feature', 'properties': {'osmid': 53069754, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2723652, 37.7953435]}}, {'id': '2687', 'type': 'Feature', 'properties': {'osmid': 53070056, 'average price/sqft': 684.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2437005, 37.8151007]}}, {'id': '2688', 'type': 'Feature', 'properties': {'osmid': 53070057, 'average price/sqft': 687.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2430041, 37.8144883]}}, {'id': '2689', 'type': 'Feature', 'properties': {'osmid': 53070058, 'average price/sqft': 689.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2424133, 37.813949]}}, {'id': '2690', 'type': 'Feature', 'properties': {'osmid': 53070061, 'average price/sqft': 688.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2418592, 37.8134437]}}, {'id': '2691', 'type': 'Feature', 'properties': {'osmid': 53070063, 'average price/sqft': 691.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2410494, 37.8127482]}}, {'id': '2692', 'type': 'Feature', 'properties': {'osmid': 53070152, 'average price/sqft': 630.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1984391, 37.8375671]}}, {'id': '2693', 'type': 'Feature', 'properties': {'osmid': 53070334, 'average price/sqft': 909.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2522968, 37.8494319]}}, {'id': '2694', 'type': 'Feature', 'properties': {'osmid': 53070335, 'average price/sqft': 930.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.249662, 37.8501601]}}, {'id': '2695', 'type': 'Feature', 'properties': {'osmid': 53070336, 'average price/sqft': 934.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2489252, 37.8503913]}}, {'id': '2696', 'type': 'Feature', 'properties': {'osmid': 53070337, 'average price/sqft': 940.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2481245, 37.8506476]}}, {'id': '2697', 'type': 'Feature', 'properties': {'osmid': 53070353, 'average price/sqft': 398.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1731489, 37.7786583]}}, {'id': '2698', 'type': 'Feature', 'properties': {'osmid': 53070354, 'average price/sqft': 394.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1727861, 37.7795733]}}, {'id': '2699', 'type': 'Feature', 'properties': {'osmid': 53070364, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1774827, 37.7286388]}}, {'id': '2700', 'type': 'Feature', 'properties': {'osmid': 53070366, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1769159, 37.7287069]}}, {'id': '2701', 'type': 'Feature', 'properties': {'osmid': 53070369, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.176031, 37.728602]}}, {'id': '2702', 'type': 'Feature', 'properties': {'osmid': 53070371, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1752643, 37.7286345]}}, {'id': '2703', 'type': 'Feature', 'properties': {'osmid': 53070401, 'average price/sqft': 859.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2556203, 37.8508495]}}, {'id': '2704', 'type': 'Feature', 'properties': {'osmid': 53070463, 'average price/sqft': 991.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2491336, 37.8396928]}}, {'id': '2705', 'type': 'Feature', 'properties': {'osmid': 53070465, 'average price/sqft': 977.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2500007, 37.8400269]}}, {'id': '2706', 'type': 'Feature', 'properties': {'osmid': 53070571, 'average price/sqft': 404.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1856528, 37.758464]}}, {'id': '2707', 'type': 'Feature', 'properties': {'osmid': 53070574, 'average price/sqft': 438.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1826843, 37.7596694]}}, {'id': '2708', 'type': 'Feature', 'properties': {'osmid': 53070630, 'average price/sqft': 539.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1850365, 37.8333745]}}, {'id': '2709', 'type': 'Feature', 'properties': {'osmid': 53070631, 'average price/sqft': 474.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1840114, 37.8341727]}}, {'id': '2710', 'type': 'Feature', 'properties': {'osmid': 53070677, 'average price/sqft': 473.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2168354, 37.78046]}}, {'id': '2711', 'type': 'Feature', 'properties': {'osmid': 53070679, 'average price/sqft': 494.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2144977, 37.7783601]}}, {'id': '2712', 'type': 'Feature', 'properties': {'osmid': 53070681, 'average price/sqft': 498.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.213802, 37.777741]}}, {'id': '2713', 'type': 'Feature', 'properties': {'osmid': 53072189, 'average price/sqft': 407.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1772961, 37.7595757]}}, {'id': '2714', 'type': 'Feature', 'properties': {'osmid': 53072190, 'average price/sqft': 398.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1768451, 37.758957]}}, {'id': '2715', 'type': 'Feature', 'properties': {'osmid': 53072193, 'average price/sqft': 391.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1757436, 37.7574952]}}, {'id': '2716', 'type': 'Feature', 'properties': {'osmid': 53072200, 'average price/sqft': 400.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1730108, 37.7538173]}}, {'id': '2717', 'type': 'Feature', 'properties': {'osmid': 53072201, 'average price/sqft': 405.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1725725, 37.7532251]}}, {'id': '2718', 'type': 'Feature', 'properties': {'osmid': 53072202, 'average price/sqft': 406.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1715908, 37.7518998]}}, {'id': '2719', 'type': 'Feature', 'properties': {'osmid': 53072205, 'average price/sqft': 394.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1693327, 37.7487104]}}, {'id': '2720', 'type': 'Feature', 'properties': {'osmid': 53072208, 'average price/sqft': 378.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1662196, 37.7445129]}}, {'id': '2721', 'type': 'Feature', 'properties': {'osmid': 53072212, 'average price/sqft': 382.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1653766, 37.7430302]}}, {'id': '2722', 'type': 'Feature', 'properties': {'osmid': 53072217, 'average price/sqft': 389.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1644506, 37.7406785]}}, {'id': '2723', 'type': 'Feature', 'properties': {'osmid': 53072225, 'average price/sqft': 416.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1782561, 37.7608895]}}, {'id': '2724', 'type': 'Feature', 'properties': {'osmid': 53072226, 'average price/sqft': 407.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1770435, 37.7596971]}}, {'id': '2725', 'type': 'Feature', 'properties': {'osmid': 53072480, 'average price/sqft': 366.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2350819, 37.7808615]}}, {'id': '2726', 'type': 'Feature', 'properties': {'osmid': 53072482, 'average price/sqft': 362.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2347654, 37.7811989]}}, {'id': '2727', 'type': 'Feature', 'properties': {'osmid': 53072484, 'average price/sqft': 364.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2346345, 37.7813307]}}, {'id': '2728', 'type': 'Feature', 'properties': {'osmid': 53072488, 'average price/sqft': 394.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2321478, 37.7837217]}}, {'id': '2729', 'type': 'Feature', 'properties': {'osmid': 53072492, 'average price/sqft': 300.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2362324, 37.7790965]}}, {'id': '2730', 'type': 'Feature', 'properties': {'osmid': 53072497, 'average price/sqft': 302.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2357096, 37.7801436]}}, {'id': '2731', 'type': 'Feature', 'properties': {'osmid': 53072498, 'average price/sqft': 406.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2300183, 37.7846254]}}, {'id': '2732', 'type': 'Feature', 'properties': {'osmid': 53072502, 'average price/sqft': 438.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2249656, 37.7907677]}}, {'id': '2733', 'type': 'Feature', 'properties': {'osmid': 53072525, 'average price/sqft': 444.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.223235, 37.7941379]}}, {'id': '2734', 'type': 'Feature', 'properties': {'osmid': 53072527, 'average price/sqft': 445.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2231745, 37.7943221]}}, {'id': '2735', 'type': 'Feature', 'properties': {'osmid': 53072536, 'average price/sqft': 392.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2317717, 37.7834976]}}, {'id': '2736', 'type': 'Feature', 'properties': {'osmid': 53072602, 'average price/sqft': 962.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2352759, 37.8496743]}}, {'id': '2737', 'type': 'Feature', 'properties': {'osmid': 53072721, 'average price/sqft': 331.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2261247, 37.7749128]}}, {'id': '2738', 'type': 'Feature', 'properties': {'osmid': 53072722, 'average price/sqft': 347.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2252031, 37.7744729]}}, {'id': '2739', 'type': 'Feature', 'properties': {'osmid': 53072723, 'average price/sqft': 364.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2242743, 37.7740286]}}, {'id': '2740', 'type': 'Feature', 'properties': {'osmid': 53072724, 'average price/sqft': 394.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2224391, 37.7731534]}}, {'id': '2741', 'type': 'Feature', 'properties': {'osmid': 53072725, 'average price/sqft': 440.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2205966, 37.7722695]}}, {'id': '2742', 'type': 'Feature', 'properties': {'osmid': 53072726, 'average price/sqft': 429.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2196791, 37.7718306]}}, {'id': '2743', 'type': 'Feature', 'properties': {'osmid': 53072728, 'average price/sqft': 491.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.217148, 37.7706203]}}, {'id': '2744', 'type': 'Feature', 'properties': {'osmid': 53072729, 'average price/sqft': 508.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2156323, 37.769399]}}, {'id': '2745', 'type': 'Feature', 'properties': {'osmid': 53072730, 'average price/sqft': 476.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2142013, 37.768202]}}, {'id': '2746', 'type': 'Feature', 'properties': {'osmid': 53072733, 'average price/sqft': 496.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2121003, 37.7663747]}}, {'id': '2747', 'type': 'Feature', 'properties': {'osmid': 53072735, 'average price/sqft': 491.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2114297, 37.7658319]}}, {'id': '2748', 'type': 'Feature', 'properties': {'osmid': 53072738, 'average price/sqft': 491.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.21022, 37.7648162]}}, {'id': '2749', 'type': 'Feature', 'properties': {'osmid': 53072740, 'average price/sqft': 545.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2096077, 37.7643089]}}, {'id': '2750', 'type': 'Feature', 'properties': {'osmid': 53072747, 'average price/sqft': 545.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2055531, 37.7608807]}}, {'id': '2751', 'type': 'Feature', 'properties': {'osmid': 53072748, 'average price/sqft': 450.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2007544, 37.7568213]}}, {'id': '2752', 'type': 'Feature', 'properties': {'osmid': 53072749, 'average price/sqft': 397.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1977745, 37.7542276]}}, {'id': '2753', 'type': 'Feature', 'properties': {'osmid': 53072750, 'average price/sqft': 397.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1965562, 37.7531718]}}, {'id': '2754', 'type': 'Feature', 'properties': {'osmid': 53072758, 'average price/sqft': 399.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.192371, 37.7497749]}}, {'id': '2755', 'type': 'Feature', 'properties': {'osmid': 53072759, 'average price/sqft': 506.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1890884, 37.7470333]}}, {'id': '2756', 'type': 'Feature', 'properties': {'osmid': 53072762, 'average price/sqft': 411.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1846681, 37.7433174]}}, {'id': '2757', 'type': 'Feature', 'properties': {'osmid': 53072767, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1790372, 37.7385979]}}, {'id': '2758', 'type': 'Feature', 'properties': {'osmid': 53072769, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1784328, 37.7381107]}}, {'id': '2759', 'type': 'Feature', 'properties': {'osmid': 53072770, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1773421, 37.737118]}}, {'id': '2760', 'type': 'Feature', 'properties': {'osmid': 53072779, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.174579, 37.7355585]}}, {'id': '2761', 'type': 'Feature', 'properties': {'osmid': 53072780, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1733663, 37.7345395]}}, {'id': '2762', 'type': 'Feature', 'properties': {'osmid': 53072783, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.172086, 37.733371]}}, {'id': '2763', 'type': 'Feature', 'properties': {'osmid': 53072848, 'average price/sqft': 613.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1891058, 37.832357]}}, {'id': '2764', 'type': 'Feature', 'properties': {'osmid': 53072851, 'average price/sqft': 620.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1888878, 37.8351712]}}, {'id': '2765', 'type': 'Feature', 'properties': {'osmid': 53072873, 'average price/sqft': 576.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2008992, 37.8476259]}}, {'id': '2766', 'type': 'Feature', 'properties': {'osmid': 53072901, 'average price/sqft': 576.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2026078, 37.8467898]}}, {'id': '2767', 'type': 'Feature', 'properties': {'osmid': 53072911, 'average price/sqft': 539.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1965913, 37.8445996]}}, {'id': '2768', 'type': 'Feature', 'properties': {'osmid': 53072915, 'average price/sqft': 576.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2032926, 37.8498573]}}, {'id': '2769', 'type': 'Feature', 'properties': {'osmid': 53072930, 'average price/sqft': 371.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1609099, 37.738183]}}, {'id': '2770', 'type': 'Feature', 'properties': {'osmid': 53072931, 'average price/sqft': 310.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1588242, 37.7387667]}}, {'id': '2771', 'type': 'Feature', 'properties': {'osmid': 53072932, 'average price/sqft': 329.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1575024, 37.7391264]}}, {'id': '2772', 'type': 'Feature', 'properties': {'osmid': 53072933, 'average price/sqft': 333.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1496723, 37.741322]}}, {'id': '2773', 'type': 'Feature', 'properties': {'osmid': 53072986, 'average price/sqft': 610.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1367662, 37.7461731]}}, {'id': '2774', 'type': 'Feature', 'properties': {'osmid': 53073035, 'average price/sqft': 692.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2536635, 37.7985413]}}, {'id': '2775', 'type': 'Feature', 'properties': {'osmid': 53073038, 'average price/sqft': 691.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2520042, 37.7970687]}}, {'id': '2776', 'type': 'Feature', 'properties': {'osmid': 53073040, 'average price/sqft': 633.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2503566, 37.7956078]}}, {'id': '2777', 'type': 'Feature', 'properties': {'osmid': 53073043, 'average price/sqft': 567.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2495137, 37.7948685]}}, {'id': '2778', 'type': 'Feature', 'properties': {'osmid': 53073045, 'average price/sqft': 470.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2478559, 37.7933941]}}, {'id': '2779', 'type': 'Feature', 'properties': {'osmid': 53073047, 'average price/sqft': 423.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.247024, 37.7926634]}}, {'id': '2780', 'type': 'Feature', 'properties': {'osmid': 53073049, 'average price/sqft': 374.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2461937, 37.7919281]}}, {'id': '2781', 'type': 'Feature', 'properties': {'osmid': 53073051, 'average price/sqft': 335.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2441274, 37.7909802]}}, {'id': '2782', 'type': 'Feature', 'properties': {'osmid': 53073052, 'average price/sqft': 333.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2436412, 37.7906499]}}, {'id': '2783', 'type': 'Feature', 'properties': {'osmid': 53073053, 'average price/sqft': 321.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.242624, 37.7900222]}}, {'id': '2784', 'type': 'Feature', 'properties': {'osmid': 53073054, 'average price/sqft': 306.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2415739, 37.7893894]}}, {'id': '2785', 'type': 'Feature', 'properties': {'osmid': 53073058, 'average price/sqft': 324.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2394758, 37.7881364]}}, {'id': '2786', 'type': 'Feature', 'properties': {'osmid': 53073060, 'average price/sqft': 381.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2363199, 37.7862474]}}, {'id': '2787', 'type': 'Feature', 'properties': {'osmid': 53073062, 'average price/sqft': 406.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2341229, 37.7851931]}}, {'id': '2788', 'type': 'Feature', 'properties': {'osmid': 53073063, 'average price/sqft': 405.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2323603, 37.7847659]}}, {'id': '2789', 'type': 'Feature', 'properties': {'osmid': 53073064, 'average price/sqft': 406.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2307462, 37.7846697]}}, {'id': '2790', 'type': 'Feature', 'properties': {'osmid': 53073068, 'average price/sqft': 405.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2279326, 37.784502]}}, {'id': '2791', 'type': 'Feature', 'properties': {'osmid': 53073071, 'average price/sqft': 409.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2255206, 37.7843521]}}, {'id': '2792', 'type': 'Feature', 'properties': {'osmid': 53073074, 'average price/sqft': 414.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2236732, 37.7840372]}}, {'id': '2793', 'type': 'Feature', 'properties': {'osmid': 53073075, 'average price/sqft': 427.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2217059, 37.7833859]}}, {'id': '2794', 'type': 'Feature', 'properties': {'osmid': 53073076, 'average price/sqft': 431.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2213141, 37.7832505]}}, {'id': '2795', 'type': 'Feature', 'properties': {'osmid': 53073079, 'average price/sqft': 437.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2206554, 37.7830266]}}, {'id': '2796', 'type': 'Feature', 'properties': {'osmid': 53073081, 'average price/sqft': 440.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2203223, 37.7829129]}}, {'id': '2797', 'type': 'Feature', 'properties': {'osmid': 53073084, 'average price/sqft': 451.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2191298, 37.7822053]}}, {'id': '2798', 'type': 'Feature', 'properties': {'osmid': 53073085, 'average price/sqft': 457.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.218909, 37.781535]}}, {'id': '2799', 'type': 'Feature', 'properties': {'osmid': 53073088, 'average price/sqft': 468.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2180049, 37.7801835]}}, {'id': '2800', 'type': 'Feature', 'properties': {'osmid': 53073091, 'average price/sqft': 470.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2176624, 37.7798803]}}, {'id': '2801', 'type': 'Feature', 'properties': {'osmid': 53073092, 'average price/sqft': 474.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2171177, 37.7793965]}}, {'id': '2802', 'type': 'Feature', 'properties': {'osmid': 53073093, 'average price/sqft': 484.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2160301, 37.7784262]}}, {'id': '2803', 'type': 'Feature', 'properties': {'osmid': 53073094, 'average price/sqft': 493.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2153384, 37.7778139]}}, {'id': '2804', 'type': 'Feature', 'properties': {'osmid': 53073095, 'average price/sqft': 497.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2147594, 37.7772955]}}, {'id': '2805', 'type': 'Feature', 'properties': {'osmid': 53073096, 'average price/sqft': 498.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2146123, 37.7771646]}}, {'id': '2806', 'type': 'Feature', 'properties': {'osmid': 53073097, 'average price/sqft': 484.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2118023, 37.7746852]}}, {'id': '2807', 'type': 'Feature', 'properties': {'osmid': 53073098, 'average price/sqft': 472.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.21083, 37.7742098]}}, {'id': '2808', 'type': 'Feature', 'properties': {'osmid': 53073099, 'average price/sqft': 429.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2087197, 37.7732113]}}, {'id': '2809', 'type': 'Feature', 'properties': {'osmid': 53073100, 'average price/sqft': 414.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2076776, 37.7727183]}}, {'id': '2810', 'type': 'Feature', 'properties': {'osmid': 53073101, 'average price/sqft': 411.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.207377, 37.7726523]}}, {'id': '2811', 'type': 'Feature', 'properties': {'osmid': 53073103, 'average price/sqft': 403.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2064198, 37.772647]}}, {'id': '2812', 'type': 'Feature', 'properties': {'osmid': 53073105, 'average price/sqft': 401.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2050947, 37.7726424]}}, {'id': '2813', 'type': 'Feature', 'properties': {'osmid': 53073107, 'average price/sqft': 402.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2029798, 37.7726349]}}, {'id': '2814', 'type': 'Feature', 'properties': {'osmid': 53073108, 'average price/sqft': 399.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2018827, 37.7726312]}}, {'id': '2815', 'type': 'Feature', 'properties': {'osmid': 53073109, 'average price/sqft': 399.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1996833, 37.7726235]}}, {'id': '2816', 'type': 'Feature', 'properties': {'osmid': 53073110, 'average price/sqft': 401.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1985713, 37.7726197]}}, {'id': '2817', 'type': 'Feature', 'properties': {'osmid': 53073113, 'average price/sqft': 408.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1930168, 37.7720579]}}, {'id': '2818', 'type': 'Feature', 'properties': {'osmid': 53073116, 'average price/sqft': 409.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1924707, 37.771955]}}, {'id': '2819', 'type': 'Feature', 'properties': {'osmid': 53073118, 'average price/sqft': 412.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1903783, 37.771542]}}, {'id': '2820', 'type': 'Feature', 'properties': {'osmid': 53073120, 'average price/sqft': 414.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1891737, 37.7713867]}}, {'id': '2821', 'type': 'Feature', 'properties': {'osmid': 53073121, 'average price/sqft': 415.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1879193, 37.7712175]}}, {'id': '2822', 'type': 'Feature', 'properties': {'osmid': 53073122, 'average price/sqft': 414.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1867139, 37.7710663]}}, {'id': '2823', 'type': 'Feature', 'properties': {'osmid': 53073123, 'average price/sqft': 413.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1818623, 37.7704254]}}, {'id': '2824', 'type': 'Feature', 'properties': {'osmid': 53073124, 'average price/sqft': 417.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1796403, 37.7701361]}}, {'id': '2825', 'type': 'Feature', 'properties': {'osmid': 53073125, 'average price/sqft': 417.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1784967, 37.76998]}}, {'id': '2826', 'type': 'Feature', 'properties': {'osmid': 53073128, 'average price/sqft': 415.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1774375, 37.7698389]}}, {'id': '2827', 'type': 'Feature', 'properties': {'osmid': 53073129, 'average price/sqft': 409.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1720427, 37.769119]}}, {'id': '2828', 'type': 'Feature', 'properties': {'osmid': 53073196, 'average price/sqft': 348.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1550766, 37.7451761]}}, {'id': '2829', 'type': 'Feature', 'properties': {'osmid': 53073197, 'average price/sqft': 340.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.152781, 37.7451268]}}, {'id': '2830', 'type': 'Feature', 'properties': {'osmid': 53073200, 'average price/sqft': 336.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1473263, 37.7432532]}}, {'id': '2831', 'type': 'Feature', 'properties': {'osmid': 53073202, 'average price/sqft': 324.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1465162, 37.7424719]}}, {'id': '2832', 'type': 'Feature', 'properties': {'osmid': 53073213, 'average price/sqft': 700.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.255148, 37.7999981]}}, {'id': '2833', 'type': 'Feature', 'properties': {'osmid': 53073214, 'average price/sqft': 700.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2544156, 37.7993395]}}, {'id': '2834', 'type': 'Feature', 'properties': {'osmid': 53073257, 'average price/sqft': 428.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2181115, 37.7859258]}}, {'id': '2835', 'type': 'Feature', 'properties': {'osmid': 53073281, 'average price/sqft': 429.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1687819, 37.7743854]}}, {'id': '2836', 'type': 'Feature', 'properties': {'osmid': 53073282, 'average price/sqft': 437.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1667308, 37.7756974]}}, {'id': '2837', 'type': 'Feature', 'properties': {'osmid': 53073286, 'average price/sqft': 431.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1656418, 37.7764098]}}, {'id': '2838', 'type': 'Feature', 'properties': {'osmid': 53073311, 'average price/sqft': 599.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1877672, 37.8225103]}}, {'id': '2839', 'type': 'Feature', 'properties': {'osmid': 53073312, 'average price/sqft': 605.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.186919, 37.823341]}}, {'id': '2840', 'type': 'Feature', 'properties': {'osmid': 53073318, 'average price/sqft': 398.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.178868, 37.7792239]}}, {'id': '2841', 'type': 'Feature', 'properties': {'osmid': 53073320, 'average price/sqft': 397.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.178297, 37.7794688]}}, {'id': '2842', 'type': 'Feature', 'properties': {'osmid': 53073322, 'average price/sqft': 396.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1780056, 37.7793947]}}, {'id': '2843', 'type': 'Feature', 'properties': {'osmid': 53073323, 'average price/sqft': 393.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1767695, 37.7799765]}}, {'id': '2844', 'type': 'Feature', 'properties': {'osmid': 53073372, 'average price/sqft': 406.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.192174, 37.7702805]}}, {'id': '2845', 'type': 'Feature', 'properties': {'osmid': 53073374, 'average price/sqft': 406.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1915387, 37.7697176]}}, {'id': '2846', 'type': 'Feature', 'properties': {'osmid': 53073376, 'average price/sqft': 408.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1908981, 37.7691336]}}, {'id': '2847', 'type': 'Feature', 'properties': {'osmid': 53073378, 'average price/sqft': 410.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1904569, 37.7687336]}}, {'id': '2848', 'type': 'Feature', 'properties': {'osmid': 53073380, 'average price/sqft': 410.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1902543, 37.7685616]}}, {'id': '2849', 'type': 'Feature', 'properties': {'osmid': 53073381, 'average price/sqft': 406.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.188473, 37.7669082]}}, {'id': '2850', 'type': 'Feature', 'properties': {'osmid': 53073383, 'average price/sqft': 406.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1879361, 37.7663728]}}, {'id': '2851', 'type': 'Feature', 'properties': {'osmid': 53073386, 'average price/sqft': 412.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1868033, 37.7652476]}}, {'id': '2852', 'type': 'Feature', 'properties': {'osmid': 53073387, 'average price/sqft': 415.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1862589, 37.764713]}}, {'id': '2853', 'type': 'Feature', 'properties': {'osmid': 53073388, 'average price/sqft': 417.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.185726, 37.7641887]}}, {'id': '2854', 'type': 'Feature', 'properties': {'osmid': 53073409, 'average price/sqft': 568.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1383862, 37.7479376]}}, {'id': '2855', 'type': 'Feature', 'properties': {'osmid': 53073410, 'average price/sqft': 572.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1378766, 37.7480649]}}, {'id': '2856', 'type': 'Feature', 'properties': {'osmid': 53073574, 'average price/sqft': 592.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1604282, 37.772898]}}, {'id': '2857', 'type': 'Feature', 'properties': {'osmid': 53073649, 'average price/sqft': 690.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2400814, 37.8155567]}}, {'id': '2858', 'type': 'Feature', 'properties': {'osmid': 53073650, 'average price/sqft': 692.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2389936, 37.8142436]}}, {'id': '2859', 'type': 'Feature', 'properties': {'osmid': 53073674, 'average price/sqft': 622.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2483888, 37.8138181]}}, {'id': '2860', 'type': 'Feature', 'properties': {'osmid': 53073677, 'average price/sqft': 640.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.247116, 37.8141587]}}, {'id': '2861', 'type': 'Feature', 'properties': {'osmid': 53073680, 'average price/sqft': 636.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2473267, 37.8143539]}}, {'id': '2862', 'type': 'Feature', 'properties': {'osmid': 53073683, 'average price/sqft': 640.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2466841, 37.8161087]}}, {'id': '2863', 'type': 'Feature', 'properties': {'osmid': 53073687, 'average price/sqft': 623.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2461182, 37.8182121]}}, {'id': '2864', 'type': 'Feature', 'properties': {'osmid': 53073759, 'average price/sqft': 559.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2091458, 37.7932457]}}, {'id': '2865', 'type': 'Feature', 'properties': {'osmid': 53073760, 'average price/sqft': 574.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2085325, 37.7938399]}}, {'id': '2866', 'type': 'Feature', 'properties': {'osmid': 53073762, 'average price/sqft': 580.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2081917, 37.7941805]}}, {'id': '2867', 'type': 'Feature', 'properties': {'osmid': 53073764, 'average price/sqft': 583.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2079846, 37.7943861]}}, {'id': '2868', 'type': 'Feature', 'properties': {'osmid': 53073769, 'average price/sqft': 602.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.206838, 37.7954477]}}, {'id': '2869', 'type': 'Feature', 'properties': {'osmid': 53073771, 'average price/sqft': 607.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2065205, 37.7957529]}}, {'id': '2870', 'type': 'Feature', 'properties': {'osmid': 53073773, 'average price/sqft': 608.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2063402, 37.7959699]}}, {'id': '2871', 'type': 'Feature', 'properties': {'osmid': 53073774, 'average price/sqft': 614.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2059797, 37.7963294]}}, {'id': '2872', 'type': 'Feature', 'properties': {'osmid': 53073776, 'average price/sqft': 618.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2057164, 37.7966371]}}, {'id': '2873', 'type': 'Feature', 'properties': {'osmid': 53073778, 'average price/sqft': 621.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2054701, 37.7968846]}}, {'id': '2874', 'type': 'Feature', 'properties': {'osmid': 53073780, 'average price/sqft': 627.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2049332, 37.7973896]}}, {'id': '2875', 'type': 'Feature', 'properties': {'osmid': 53073782, 'average price/sqft': 630.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2043592, 37.797966]}}, {'id': '2876', 'type': 'Feature', 'properties': {'osmid': 53073783, 'average price/sqft': 633.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2038245, 37.7985057]}}, {'id': '2877', 'type': 'Feature', 'properties': {'osmid': 53073784, 'average price/sqft': 635.0, 'observation count': 29.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2031343, 37.799173]}}, {'id': '2878', 'type': 'Feature', 'properties': {'osmid': 53073785, 'average price/sqft': 637.0, 'observation count': 29.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2025933, 37.7997175]}}, {'id': '2879', 'type': 'Feature', 'properties': {'osmid': 53073788, 'average price/sqft': 637.0, 'observation count': 29.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2017489, 37.8005449]}}, {'id': '2880', 'type': 'Feature', 'properties': {'osmid': 53073789, 'average price/sqft': 630.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2011704, 37.8011046]}}, {'id': '2881', 'type': 'Feature', 'properties': {'osmid': 53073790, 'average price/sqft': 626.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.200804, 37.8014632]}}, {'id': '2882', 'type': 'Feature', 'properties': {'osmid': 53073797, 'average price/sqft': 520.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2110083, 37.7910605]}}, {'id': '2883', 'type': 'Feature', 'properties': {'osmid': 53073798, 'average price/sqft': 534.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2105834, 37.7916496]}}, {'id': '2884', 'type': 'Feature', 'properties': {'osmid': 53073799, 'average price/sqft': 559.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2093905, 37.7933519]}}, {'id': '2885', 'type': 'Feature', 'properties': {'osmid': 53073806, 'average price/sqft': 539.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1276533, 37.7651009]}}, {'id': '2886', 'type': 'Feature', 'properties': {'osmid': 53073856, 'average price/sqft': 582.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2546842, 37.8214422]}}, {'id': '2887', 'type': 'Feature', 'properties': {'osmid': 53073857, 'average price/sqft': 589.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2539678, 37.8220272]}}, {'id': '2888', 'type': 'Feature', 'properties': {'osmid': 53073859, 'average price/sqft': 658.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2509135, 37.8233742]}}, {'id': '2889', 'type': 'Feature', 'properties': {'osmid': 53073862, 'average price/sqft': 369.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2602798, 37.8170909]}}, {'id': '2890', 'type': 'Feature', 'properties': {'osmid': 53073864, 'average price/sqft': 395.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2590741, 37.8174514]}}, {'id': '2891', 'type': 'Feature', 'properties': {'osmid': 53073865, 'average price/sqft': 418.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.258362, 37.8180655]}}, {'id': '2892', 'type': 'Feature', 'properties': {'osmid': 53073866, 'average price/sqft': 430.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2574945, 37.8186289]}}, {'id': '2893', 'type': 'Feature', 'properties': {'osmid': 53073867, 'average price/sqft': 443.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2566327, 37.818963]}}, {'id': '2894', 'type': 'Feature', 'properties': {'osmid': 53073868, 'average price/sqft': 477.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2557668, 37.819594]}}, {'id': '2895', 'type': 'Feature', 'properties': {'osmid': 53073914, 'average price/sqft': 423.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1932594, 37.7593393]}}, {'id': '2896', 'type': 'Feature', 'properties': {'osmid': 53073915, 'average price/sqft': 422.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1923849, 37.758452]}}, {'id': '2897', 'type': 'Feature', 'properties': {'osmid': 53073916, 'average price/sqft': 417.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.191851, 37.7579321]}}, {'id': '2898', 'type': 'Feature', 'properties': {'osmid': 53073919, 'average price/sqft': 414.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1913218, 37.757406]}}, {'id': '2899', 'type': 'Feature', 'properties': {'osmid': 53073920, 'average price/sqft': 412.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1907921, 37.7568882]}}, {'id': '2900', 'type': 'Feature', 'properties': {'osmid': 53073924, 'average price/sqft': 410.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.189726, 37.7558363]}}, {'id': '2901', 'type': 'Feature', 'properties': {'osmid': 53073926, 'average price/sqft': 415.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1891754, 37.7552975]}}, {'id': '2902', 'type': 'Feature', 'properties': {'osmid': 53073929, 'average price/sqft': 618.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2083229, 37.7961259]}}, {'id': '2903', 'type': 'Feature', 'properties': {'osmid': 53073931, 'average price/sqft': 623.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2079614, 37.7967333]}}, {'id': '2904', 'type': 'Feature', 'properties': {'osmid': 53074156, 'average price/sqft': 746.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2091969, 37.833571]}}, {'id': '2905', 'type': 'Feature', 'properties': {'osmid': 53074499, 'average price/sqft': 587.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1992461, 37.7867724]}}, {'id': '2906', 'type': 'Feature', 'properties': {'osmid': 53074500, 'average price/sqft': 589.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1983277, 37.7872472]}}, {'id': '2907', 'type': 'Feature', 'properties': {'osmid': 53074502, 'average price/sqft': 590.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1981046, 37.787349]}}, {'id': '2908', 'type': 'Feature', 'properties': {'osmid': 53074534, 'average price/sqft': 527.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2523569, 37.8162073]}}, {'id': '2909', 'type': 'Feature', 'properties': {'osmid': 53074741, 'average price/sqft': 679.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1894659, 37.7918647]}}, {'id': '2910', 'type': 'Feature', 'properties': {'osmid': 53074743, 'average price/sqft': 677.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.188861, 37.7913307]}}, {'id': '2911', 'type': 'Feature', 'properties': {'osmid': 53074747, 'average price/sqft': 675.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.187044, 37.7902983]}}, {'id': '2912', 'type': 'Feature', 'properties': {'osmid': 53074749, 'average price/sqft': 668.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1859365, 37.7898808]}}, {'id': '2913', 'type': 'Feature', 'properties': {'osmid': 53074750, 'average price/sqft': 657.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1854967, 37.7870117]}}, {'id': '2914', 'type': 'Feature', 'properties': {'osmid': 53074751, 'average price/sqft': 653.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1852164, 37.785016]}}, {'id': '2915', 'type': 'Feature', 'properties': {'osmid': 53074752, 'average price/sqft': 651.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1851729, 37.7844845]}}, {'id': '2916', 'type': 'Feature', 'properties': {'osmid': 53074782, 'average price/sqft': 897.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2451324, 37.8309632]}}, {'id': '2917', 'type': 'Feature', 'properties': {'osmid': 53074850, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1951113, 37.7336882]}}, {'id': '2918', 'type': 'Feature', 'properties': {'osmid': 53074851, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1907527, 37.7332682]}}, {'id': '2919', 'type': 'Feature', 'properties': {'osmid': 53074855, 'average price/sqft': 726.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2364149, 37.8172925]}}, {'id': '2920', 'type': 'Feature', 'properties': {'osmid': 53074976, 'average price/sqft': 883.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2446361, 37.8305453]}}, {'id': '2921', 'type': 'Feature', 'properties': {'osmid': 53075005, 'average price/sqft': 338.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1522487, 37.7458743]}}, {'id': '2922', 'type': 'Feature', 'properties': {'osmid': 53075008, 'average price/sqft': 349.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1504956, 37.7467466]}}, {'id': '2923', 'type': 'Feature', 'properties': {'osmid': 53075102, 'average price/sqft': 844.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2525916, 37.8330269]}}, {'id': '2924', 'type': 'Feature', 'properties': {'osmid': 53075110, 'average price/sqft': 448.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2181597, 37.7738752]}}, {'id': '2925', 'type': 'Feature', 'properties': {'osmid': 53075111, 'average price/sqft': 496.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2179665, 37.7738879]}}, {'id': '2926', 'type': 'Feature', 'properties': {'osmid': 53075118, 'average price/sqft': 494.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.216692, 37.7761892]}}, {'id': '2927', 'type': 'Feature', 'properties': {'osmid': 53075121, 'average price/sqft': 493.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2137177, 37.7788969]}}, {'id': '2928', 'type': 'Feature', 'properties': {'osmid': 53075124, 'average price/sqft': 927.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2429216, 37.8443832]}}, {'id': '2929', 'type': 'Feature', 'properties': {'osmid': 53075126, 'average price/sqft': 924.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2409214, 37.8452161]}}, {'id': '2930', 'type': 'Feature', 'properties': {'osmid': 53075128, 'average price/sqft': 862.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2418721, 37.847447]}}, {'id': '2931', 'type': 'Feature', 'properties': {'osmid': 53075130, 'average price/sqft': 853.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2433307, 37.8475825]}}, {'id': '2932', 'type': 'Feature', 'properties': {'osmid': 53075133, 'average price/sqft': 928.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2432086, 37.8432849]}}, {'id': '2933', 'type': 'Feature', 'properties': {'osmid': 53075136, 'average price/sqft': 914.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2426213, 37.8435189]}}, {'id': '2934', 'type': 'Feature', 'properties': {'osmid': 53075295, 'average price/sqft': 793.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.238662, 37.8428584]}}, {'id': '2935', 'type': 'Feature', 'properties': {'osmid': 53075296, 'average price/sqft': 784.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2386266, 37.8417923]}}, {'id': '2936', 'type': 'Feature', 'properties': {'osmid': 53075366, 'average price/sqft': 731.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2185409, 37.8260343]}}, {'id': '2937', 'type': 'Feature', 'properties': {'osmid': 53075370, 'average price/sqft': 642.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2105391, 37.8390863]}}, {'id': '2938', 'type': 'Feature', 'properties': {'osmid': 53075373, 'average price/sqft': 645.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2096969, 37.8387854]}}, {'id': '2939', 'type': 'Feature', 'properties': {'osmid': 53075378, 'average price/sqft': 675.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2411769, 37.8074592]}}, {'id': '2940', 'type': 'Feature', 'properties': {'osmid': 53075618, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.192633, 37.7312529]}}, {'id': '2941', 'type': 'Feature', 'properties': {'osmid': 53075620, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1912516, 37.7310069]}}, {'id': '2942', 'type': 'Feature', 'properties': {'osmid': 53075696, 'average price/sqft': 392.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2001581, 37.7696009]}}, {'id': '2943', 'type': 'Feature', 'properties': {'osmid': 53075770, 'average price/sqft': 760.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2191848, 37.8019272]}}, {'id': '2944', 'type': 'Feature', 'properties': {'osmid': 53075897, 'average price/sqft': 658.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2408801, 37.8047443]}}, {'id': '2945', 'type': 'Feature', 'properties': {'osmid': 53075898, 'average price/sqft': 663.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2404215, 37.8056153]}}, {'id': '2946', 'type': 'Feature', 'properties': {'osmid': 53075899, 'average price/sqft': 674.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2397982, 37.8067472]}}, {'id': '2947', 'type': 'Feature', 'properties': {'osmid': 53075911, 'average price/sqft': 410.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2792935, 37.825259]}}, {'id': '2948', 'type': 'Feature', 'properties': {'osmid': 53075912, 'average price/sqft': 411.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2803787, 37.8255063]}}, {'id': '2949', 'type': 'Feature', 'properties': {'osmid': 53075914, 'average price/sqft': 411.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2814656, 37.8257453]}}, {'id': '2950', 'type': 'Feature', 'properties': {'osmid': 53075916, 'average price/sqft': 407.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.283068, 37.8261056]}}, {'id': '2951', 'type': 'Feature', 'properties': {'osmid': 53075918, 'average price/sqft': 405.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2841006, 37.8258895]}}, {'id': '2952', 'type': 'Feature', 'properties': {'osmid': 53075921, 'average price/sqft': 412.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.286292, 37.8254531]}}, {'id': '2953', 'type': 'Feature', 'properties': {'osmid': 53075923, 'average price/sqft': 428.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2873917, 37.8252306]}}, {'id': '2954', 'type': 'Feature', 'properties': {'osmid': 53075925, 'average price/sqft': 446.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2884979, 37.8250176]}}, {'id': '2955', 'type': 'Feature', 'properties': {'osmid': 53075929, 'average price/sqft': 429.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2754461, 37.8246809]}}, {'id': '2956', 'type': 'Feature', 'properties': {'osmid': 53075932, 'average price/sqft': 486.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2725782, 37.8239919]}}, {'id': '2957', 'type': 'Feature', 'properties': {'osmid': 53075934, 'average price/sqft': 478.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2700528, 37.8233886]}}, {'id': '2958', 'type': 'Feature', 'properties': {'osmid': 53075943, 'average price/sqft': 515.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2678139, 37.8228511]}}, {'id': '2959', 'type': 'Feature', 'properties': {'osmid': 53075945, 'average price/sqft': 581.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2662674, 37.8224656]}}, {'id': '2960', 'type': 'Feature', 'properties': {'osmid': 53075947, 'average price/sqft': 585.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2652037, 37.8221914]}}, {'id': '2961', 'type': 'Feature', 'properties': {'osmid': 53075949, 'average price/sqft': 589.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2642067, 37.8219533]}}, {'id': '2962', 'type': 'Feature', 'properties': {'osmid': 53075953, 'average price/sqft': 650.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2619358, 37.8220732]}}, {'id': '2963', 'type': 'Feature', 'properties': {'osmid': 53076015, 'average price/sqft': 949.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2442164, 37.8487001]}}, {'id': '2964', 'type': 'Feature', 'properties': {'osmid': 53076017, 'average price/sqft': 945.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2449587, 37.8498839]}}, {'id': '2965', 'type': 'Feature', 'properties': {'osmid': 53076044, 'average price/sqft': 674.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2452162, 37.8124779]}}, {'id': '2966', 'type': 'Feature', 'properties': {'osmid': 53076046, 'average price/sqft': 676.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2440387, 37.8116536]}}, {'id': '2967', 'type': 'Feature', 'properties': {'osmid': 53076132, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2579813, 37.7928092]}}, {'id': '2968', 'type': 'Feature', 'properties': {'osmid': 53076133, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.256674, 37.7937433]}}, {'id': '2969', 'type': 'Feature', 'properties': {'osmid': 53076136, 'average price/sqft': 757.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2548089, 37.7950809]}}, {'id': '2970', 'type': 'Feature', 'properties': {'osmid': 53076198, 'average price/sqft': 445.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1907931, 37.7756094]}}, {'id': '2971', 'type': 'Feature', 'properties': {'osmid': 53076212, 'average price/sqft': 435.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1888735, 37.7739807]}}, {'id': '2972', 'type': 'Feature', 'properties': {'osmid': 53076269, 'average price/sqft': 539.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.13068, 37.7695389]}}, {'id': '2973', 'type': 'Feature', 'properties': {'osmid': 53076273, 'average price/sqft': 539.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1296386, 37.7676883]}}, {'id': '2974', 'type': 'Feature', 'properties': {'osmid': 53076287, 'average price/sqft': 366.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.202631, 37.7665741]}}, {'id': '2975', 'type': 'Feature', 'properties': {'osmid': 53076289, 'average price/sqft': 387.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2006489, 37.7679535]}}, {'id': '2976', 'type': 'Feature', 'properties': {'osmid': 53076290, 'average price/sqft': 447.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1897256, 37.775937]}}, {'id': '2977', 'type': 'Feature', 'properties': {'osmid': 53076292, 'average price/sqft': 448.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1887534, 37.7765858]}}, {'id': '2978', 'type': 'Feature', 'properties': {'osmid': 53076294, 'average price/sqft': 458.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1876686, 37.7773543]}}, {'id': '2979', 'type': 'Feature', 'properties': {'osmid': 53076298, 'average price/sqft': 429.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1928435, 37.7738895]}}, {'id': '2980', 'type': 'Feature', 'properties': {'osmid': 53076300, 'average price/sqft': 429.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1922846, 37.774299]}}, {'id': '2981', 'type': 'Feature', 'properties': {'osmid': 53076328, 'average price/sqft': 568.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2513279, 37.820429]}}, {'id': '2982', 'type': 'Feature', 'properties': {'osmid': 53076331, 'average price/sqft': 556.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.249562, 37.8189194]}}, {'id': '2983', 'type': 'Feature', 'properties': {'osmid': 53076333, 'average price/sqft': 573.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2487311, 37.8183202]}}, {'id': '2984', 'type': 'Feature', 'properties': {'osmid': 53076335, 'average price/sqft': 594.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2478778, 37.8177269]}}, {'id': '2985', 'type': 'Feature', 'properties': {'osmid': 53076346, 'average price/sqft': 624.0, 'observation count': 29.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1966175, 37.7864097]}}, {'id': '2986', 'type': 'Feature', 'properties': {'osmid': 53076447, 'average price/sqft': 359.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1681001, 37.7535043]}}, {'id': '2987', 'type': 'Feature', 'properties': {'osmid': 53076448, 'average price/sqft': 329.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1648836, 37.7550043]}}, {'id': '2988', 'type': 'Feature', 'properties': {'osmid': 53076452, 'average price/sqft': 323.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1634276, 37.7556524]}}, {'id': '2989', 'type': 'Feature', 'properties': {'osmid': 53076453, 'average price/sqft': 328.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.161675, 37.7564521]}}, {'id': '2990', 'type': 'Feature', 'properties': {'osmid': 53076456, 'average price/sqft': 450.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1814417, 37.7475097]}}, {'id': '2991', 'type': 'Feature', 'properties': {'osmid': 53076458, 'average price/sqft': 451.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.178482, 37.748908]}}, {'id': '2992', 'type': 'Feature', 'properties': {'osmid': 53076459, 'average price/sqft': 456.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1768596, 37.7496614]}}, {'id': '2993', 'type': 'Feature', 'properties': {'osmid': 53076462, 'average price/sqft': 459.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.175137, 37.7504744]}}, {'id': '2994', 'type': 'Feature', 'properties': {'osmid': 53076677, 'average price/sqft': 354.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.153395, 37.7510384]}}, {'id': '2995', 'type': 'Feature', 'properties': {'osmid': 53076692, 'average price/sqft': 372.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1540784, 37.7500129]}}, {'id': '2996', 'type': 'Feature', 'properties': {'osmid': 53076710, 'average price/sqft': 377.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1556375, 37.7507558]}}, {'id': '2997', 'type': 'Feature', 'properties': {'osmid': 53076792, 'average price/sqft': 468.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2094016, 37.7760711]}}, {'id': '2998', 'type': 'Feature', 'properties': {'osmid': 53076793, 'average price/sqft': 464.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2090818, 37.7759104]}}, {'id': '2999', 'type': 'Feature', 'properties': {'osmid': 53076795, 'average price/sqft': 459.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2086486, 37.7757038]}}, {'id': '3000', 'type': 'Feature', 'properties': {'osmid': 53076797, 'average price/sqft': 442.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2073292, 37.7750781]}}, {'id': '3001', 'type': 'Feature', 'properties': {'osmid': 53076799, 'average price/sqft': 428.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2062786, 37.7745847]}}, {'id': '3002', 'type': 'Feature', 'properties': {'osmid': 53076801, 'average price/sqft': 422.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2052944, 37.7741092]}}, {'id': '3003', 'type': 'Feature', 'properties': {'osmid': 53076803, 'average price/sqft': 414.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2043269, 37.7736653]}}, {'id': '3004', 'type': 'Feature', 'properties': {'osmid': 53076804, 'average price/sqft': 412.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2040291, 37.7735041]}}, {'id': '3005', 'type': 'Feature', 'properties': {'osmid': 53076967, 'average price/sqft': 759.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2297751, 37.8048709]}}, {'id': '3006', 'type': 'Feature', 'properties': {'osmid': 53076980, 'average price/sqft': 415.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1709146, 37.7698821]}}, {'id': '3007', 'type': 'Feature', 'properties': {'osmid': 53076982, 'average price/sqft': 417.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.169897, 37.7691852]}}, {'id': '3008', 'type': 'Feature', 'properties': {'osmid': 53076984, 'average price/sqft': 418.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1688087, 37.7684354]}}, {'id': '3009', 'type': 'Feature', 'properties': {'osmid': 53076986, 'average price/sqft': 420.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1664816, 37.7667184]}}, {'id': '3010', 'type': 'Feature', 'properties': {'osmid': 53076989, 'average price/sqft': 434.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.165229, 37.7653041]}}, {'id': '3011', 'type': 'Feature', 'properties': {'osmid': 53076991, 'average price/sqft': 439.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1649044, 37.764914]}}, {'id': '3012', 'type': 'Feature', 'properties': {'osmid': 53076993, 'average price/sqft': 446.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1635547, 37.7634128]}}, {'id': '3013', 'type': 'Feature', 'properties': {'osmid': 53076996, 'average price/sqft': 466.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1603313, 37.7626303]}}, {'id': '3014', 'type': 'Feature', 'properties': {'osmid': 53076999, 'average price/sqft': 478.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1574149, 37.7623857]}}, {'id': '3015', 'type': 'Feature', 'properties': {'osmid': 53077001, 'average price/sqft': 479.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1570612, 37.7625453]}}, {'id': '3016', 'type': 'Feature', 'properties': {'osmid': 53077037, 'average price/sqft': 407.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.173192, 37.7696605]}}, {'id': '3017', 'type': 'Feature', 'properties': {'osmid': 53077040, 'average price/sqft': 406.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1948825, 37.7551172]}}, {'id': '3018', 'type': 'Feature', 'properties': {'osmid': 53077043, 'average price/sqft': 418.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1895485, 37.7585401]}}, {'id': '3019', 'type': 'Feature', 'properties': {'osmid': 53077045, 'average price/sqft': 414.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1879584, 37.7595851]}}, {'id': '3020', 'type': 'Feature', 'properties': {'osmid': 53077048, 'average price/sqft': 423.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1853601, 37.7615757]}}, {'id': '3021', 'type': 'Feature', 'properties': {'osmid': 53077103, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2763146, 37.7960467]}}, {'id': '3022', 'type': 'Feature', 'properties': {'osmid': 53077106, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2754518, 37.7974269]}}, {'id': '3023', 'type': 'Feature', 'properties': {'osmid': 53077127, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2667432, 37.8114396]}}, {'id': '3024', 'type': 'Feature', 'properties': {'osmid': 53077146, 'average price/sqft': 749.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2574795, 37.8261797]}}, {'id': '3025', 'type': 'Feature', 'properties': {'osmid': 53077159, 'average price/sqft': 947.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2512411, 37.8361554]}}, {'id': '3026', 'type': 'Feature', 'properties': {'osmid': 53077161, 'average price/sqft': 1012.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2494177, 37.8392421]}}, {'id': '3027', 'type': 'Feature', 'properties': {'osmid': 53077164, 'average price/sqft': 973.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2466385, 37.8436692]}}, {'id': '3028', 'type': 'Feature', 'properties': {'osmid': 53077170, 'average price/sqft': 937.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2446719, 37.8467877]}}, {'id': '3029', 'type': 'Feature', 'properties': {'osmid': 53077175, 'average price/sqft': 937.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2441328, 37.8477779]}}, {'id': '3030', 'type': 'Feature', 'properties': {'osmid': 53077331, 'average price/sqft': 617.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2007941, 37.8369422]}}, {'id': '3031', 'type': 'Feature', 'properties': {'osmid': 53077372, 'average price/sqft': 491.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2125097, 37.774112]}}, {'id': '3032', 'type': 'Feature', 'properties': {'osmid': 53077374, 'average price/sqft': 475.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2113816, 37.773497]}}, {'id': '3033', 'type': 'Feature', 'properties': {'osmid': 53077377, 'average price/sqft': 427.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2092642, 37.7724956]}}, {'id': '3034', 'type': 'Feature', 'properties': {'osmid': 53077378, 'average price/sqft': 406.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2082154, 37.7720094]}}, {'id': '3035', 'type': 'Feature', 'properties': {'osmid': 53077438, 'average price/sqft': 610.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2333479, 37.7996365]}}, {'id': '3036', 'type': 'Feature', 'properties': {'osmid': 53077441, 'average price/sqft': 607.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2295032, 37.7989322]}}, {'id': '3037', 'type': 'Feature', 'properties': {'osmid': 53077443, 'average price/sqft': 564.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2263226, 37.7983489]}}, {'id': '3038', 'type': 'Feature', 'properties': {'osmid': 53077454, 'average price/sqft': 386.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1725514, 37.7823189]}}, {'id': '3039', 'type': 'Feature', 'properties': {'osmid': 53077457, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1860778, 37.7365757]}}, {'id': '3040', 'type': 'Feature', 'properties': {'osmid': 53077459, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1848699, 37.7358772]}}, {'id': '3041', 'type': 'Feature', 'properties': {'osmid': 53077541, 'average price/sqft': 443.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2811591, 37.8465371]}}, {'id': '3042', 'type': 'Feature', 'properties': {'osmid': 53077543, 'average price/sqft': 522.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2803983, 37.8425943]}}, {'id': '3043', 'type': 'Feature', 'properties': {'osmid': 53077545, 'average price/sqft': 505.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2805883, 37.8434843]}}, {'id': '3044', 'type': 'Feature', 'properties': {'osmid': 53077546, 'average price/sqft': 480.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2807733, 37.8443744]}}, {'id': '3045', 'type': 'Feature', 'properties': {'osmid': 53077555, 'average price/sqft': 838.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2287351, 37.8433307]}}, {'id': '3046', 'type': 'Feature', 'properties': {'osmid': 53077580, 'average price/sqft': 668.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2098399, 37.8107805]}}, {'id': '3047', 'type': 'Feature', 'properties': {'osmid': 53077582, 'average price/sqft': 685.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2095517, 37.8114609]}}, {'id': '3048', 'type': 'Feature', 'properties': {'osmid': 53077662, 'average price/sqft': 672.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.201023, 37.8169439]}}, {'id': '3049', 'type': 'Feature', 'properties': {'osmid': 53077725, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2716161, 37.7967283]}}, {'id': '3050', 'type': 'Feature', 'properties': {'osmid': 53077727, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2726914, 37.7971522]}}, {'id': '3051', 'type': 'Feature', 'properties': {'osmid': 53077741, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2855063, 37.8018128]}}, {'id': '3052', 'type': 'Feature', 'properties': {'osmid': 53077742, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2876097, 37.8022963]}}, {'id': '3053', 'type': 'Feature', 'properties': {'osmid': 53077744, 'average price/sqft': 528.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2885856, 37.8027942]}}, {'id': '3054', 'type': 'Feature', 'properties': {'osmid': 53077751, 'average price/sqft': 375.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2927857, 37.8035159]}}, {'id': '3055', 'type': 'Feature', 'properties': {'osmid': 53077755, 'average price/sqft': 340.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2940971, 37.8038207]}}, {'id': '3056', 'type': 'Feature', 'properties': {'osmid': 53077777, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2703193, 37.79623]}}, {'id': '3057', 'type': 'Feature', 'properties': {'osmid': 53077932, 'average price/sqft': 744.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2628919, 37.835037]}}, {'id': '3058', 'type': 'Feature', 'properties': {'osmid': 53077933, 'average price/sqft': 726.0, 'observation count': 29.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2638422, 37.8351932]}}, {'id': '3059', 'type': 'Feature', 'properties': {'osmid': 53077936, 'average price/sqft': 725.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.26494, 37.8353675]}}, {'id': '3060', 'type': 'Feature', 'properties': {'osmid': 53077949, 'average price/sqft': 800.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2589421, 37.8343322]}}, {'id': '3061', 'type': 'Feature', 'properties': {'osmid': 53077951, 'average price/sqft': 780.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2601747, 37.8342628]}}, {'id': '3062', 'type': 'Feature', 'properties': {'osmid': 53077952, 'average price/sqft': 764.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2615803, 37.8345099]}}, {'id': '3063', 'type': 'Feature', 'properties': {'osmid': 53077953, 'average price/sqft': 744.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2629692, 37.8347436]}}, {'id': '3064', 'type': 'Feature', 'properties': {'osmid': 53077962, 'average price/sqft': 590.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2789732, 37.8373821]}}, {'id': '3065', 'type': 'Feature', 'properties': {'osmid': 53078002, 'average price/sqft': 828.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2191005, 37.8103373]}}, {'id': '3066', 'type': 'Feature', 'properties': {'osmid': 53078004, 'average price/sqft': 827.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.218564, 37.8109783]}}, {'id': '3067', 'type': 'Feature', 'properties': {'osmid': 53078027, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1798032, 37.7322023]}}, {'id': '3068', 'type': 'Feature', 'properties': {'osmid': 53078029, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1792624, 37.7320026]}}, {'id': '3069', 'type': 'Feature', 'properties': {'osmid': 53078072, 'average price/sqft': 416.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1959339, 37.7561769]}}, {'id': '3070', 'type': 'Feature', 'properties': {'osmid': 53078073, 'average price/sqft': 411.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1954066, 37.7556501]}}, {'id': '3071', 'type': 'Feature', 'properties': {'osmid': 53078074, 'average price/sqft': 399.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1943335, 37.754609]}}, {'id': '3072', 'type': 'Feature', 'properties': {'osmid': 53078076, 'average price/sqft': 405.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1932566, 37.7535529]}}, {'id': '3073', 'type': 'Feature', 'properties': {'osmid': 53078077, 'average price/sqft': 408.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1927256, 37.7530269]}}, {'id': '3074', 'type': 'Feature', 'properties': {'osmid': 53078080, 'average price/sqft': 822.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2515406, 37.8283131]}}, {'id': '3075', 'type': 'Feature', 'properties': {'osmid': 53078081, 'average price/sqft': 825.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2523143, 37.8289837]}}, {'id': '3076', 'type': 'Feature', 'properties': {'osmid': 53078082, 'average price/sqft': 824.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2537095, 37.8296738]}}, {'id': '3077', 'type': 'Feature', 'properties': {'osmid': 53078083, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2677241, 37.8003958]}}, {'id': '3078', 'type': 'Feature', 'properties': {'osmid': 53078085, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2668676, 37.8017705]}}, {'id': '3079', 'type': 'Feature', 'properties': {'osmid': 53078086, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2664361, 37.8024626]}}, {'id': '3080', 'type': 'Feature', 'properties': {'osmid': 53078087, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2647765, 37.8051269]}}, {'id': '3081', 'type': 'Feature', 'properties': {'osmid': 53078088, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.264285, 37.8059158]}}, {'id': '3082', 'type': 'Feature', 'properties': {'osmid': 53078101, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2716009, 37.7941962]}}, {'id': '3083', 'type': 'Feature', 'properties': {'osmid': 53078102, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2711725, 37.7948848]}}, {'id': '3084', 'type': 'Feature', 'properties': {'osmid': 53078105, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2707335, 37.7955653]}}, {'id': '3085', 'type': 'Feature', 'properties': {'osmid': 53078109, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2690103, 37.7983312]}}, {'id': '3086', 'type': 'Feature', 'properties': {'osmid': 53078213, 'average price/sqft': 751.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2300002, 37.8095298]}}, {'id': '3087', 'type': 'Feature', 'properties': {'osmid': 53078219, 'average price/sqft': 751.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2311008, 37.8059582]}}, {'id': '3088', 'type': 'Feature', 'properties': {'osmid': 53078221, 'average price/sqft': 755.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2310293, 37.8071904]}}, {'id': '3089', 'type': 'Feature', 'properties': {'osmid': 53078224, 'average price/sqft': 753.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2309298, 37.8077805]}}, {'id': '3090', 'type': 'Feature', 'properties': {'osmid': 53078311, 'average price/sqft': 331.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1479299, 37.742822]}}, {'id': '3091', 'type': 'Feature', 'properties': {'osmid': 53078313, 'average price/sqft': 306.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1470287, 37.7418404]}}, {'id': '3092', 'type': 'Feature', 'properties': {'osmid': 53078408, 'average price/sqft': 452.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1786654, 37.7984358]}}, {'id': '3093', 'type': 'Feature', 'properties': {'osmid': 53078460, 'average price/sqft': 313.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2446749, 37.7905948]}}, {'id': '3094', 'type': 'Feature', 'properties': {'osmid': 53078536, 'average price/sqft': 417.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1890101, 37.7580189]}}, {'id': '3095', 'type': 'Feature', 'properties': {'osmid': 53078539, 'average price/sqft': 424.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.184595, 37.7608262]}}, {'id': '3096', 'type': 'Feature', 'properties': {'osmid': 53078541, 'average price/sqft': 422.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.183835, 37.7614737]}}, {'id': '3097', 'type': 'Feature', 'properties': {'osmid': 53078542, 'average price/sqft': 424.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1818833, 37.7625636]}}, {'id': '3098', 'type': 'Feature', 'properties': {'osmid': 53078545, 'average price/sqft': 424.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1797502, 37.7639314]}}, {'id': '3099', 'type': 'Feature', 'properties': {'osmid': 53078547, 'average price/sqft': 420.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1790918, 37.7643536]}}, {'id': '3100', 'type': 'Feature', 'properties': {'osmid': 53078550, 'average price/sqft': 415.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1776851, 37.7652644]}}, {'id': '3101', 'type': 'Feature', 'properties': {'osmid': 53078551, 'average price/sqft': 412.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1769154, 37.7658788]}}, {'id': '3102', 'type': 'Feature', 'properties': {'osmid': 53078554, 'average price/sqft': 405.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1733651, 37.7682375]}}, {'id': '3103', 'type': 'Feature', 'properties': {'osmid': 53078557, 'average price/sqft': 417.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1696969, 37.7711702]}}, {'id': '3104', 'type': 'Feature', 'properties': {'osmid': 53078559, 'average price/sqft': 420.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1690152, 37.7724399]}}, {'id': '3105', 'type': 'Feature', 'properties': {'osmid': 53078575, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.194566, 37.7349371]}}, {'id': '3106', 'type': 'Feature', 'properties': {'osmid': 53078576, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1949236, 37.7343352]}}, {'id': '3107', 'type': 'Feature', 'properties': {'osmid': 53078579, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1939473, 37.7321397]}}, {'id': '3108', 'type': 'Feature', 'properties': {'osmid': 53078580, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1933598, 37.7317451]}}, {'id': '3109', 'type': 'Feature', 'properties': {'osmid': 53078583, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1918586, 37.7307528]}}, {'id': '3110', 'type': 'Feature', 'properties': {'osmid': 53078587, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1914146, 37.7301094]}}, {'id': '3111', 'type': 'Feature', 'properties': {'osmid': 53078589, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1897094, 37.7292862]}}, {'id': '3112', 'type': 'Feature', 'properties': {'osmid': 53078591, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.188459, 37.7289539]}}, {'id': '3113', 'type': 'Feature', 'properties': {'osmid': 53078592, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1870579, 37.7283473]}}, {'id': '3114', 'type': 'Feature', 'properties': {'osmid': 53078600, 'average price/sqft': 564.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2024386, 37.7894838]}}, {'id': '3115', 'type': 'Feature', 'properties': {'osmid': 53078875, 'average price/sqft': 719.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2221765, 37.842903]}}, {'id': '3116', 'type': 'Feature', 'properties': {'osmid': 53078876, 'average price/sqft': 716.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2217548, 37.842553]}}, {'id': '3117', 'type': 'Feature', 'properties': {'osmid': 53079050, 'average price/sqft': 838.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2205542, 37.809461]}}, {'id': '3118', 'type': 'Feature', 'properties': {'osmid': 53079108, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1807639, 37.7332579]}}, {'id': '3119', 'type': 'Feature', 'properties': {'osmid': 53079193, 'average price/sqft': 567.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2815362, 37.8053753]}}, {'id': '3120', 'type': 'Feature', 'properties': {'osmid': 53079195, 'average price/sqft': 571.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2806935, 37.8057955]}}, {'id': '3121', 'type': 'Feature', 'properties': {'osmid': 53079199, 'average price/sqft': 569.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.280347, 37.8062516]}}, {'id': '3122', 'type': 'Feature', 'properties': {'osmid': 53079202, 'average price/sqft': 568.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2799489, 37.8068896]}}, {'id': '3123', 'type': 'Feature', 'properties': {'osmid': 53079204, 'average price/sqft': 535.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2719055, 37.8267107]}}, {'id': '3124', 'type': 'Feature', 'properties': {'osmid': 53079206, 'average price/sqft': 559.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2716965, 37.8275297]}}, {'id': '3125', 'type': 'Feature', 'properties': {'osmid': 53079208, 'average price/sqft': 586.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2714285, 37.8286006]}}, {'id': '3126', 'type': 'Feature', 'properties': {'osmid': 53079210, 'average price/sqft': 604.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2712186, 37.8294362]}}, {'id': '3127', 'type': 'Feature', 'properties': {'osmid': 53079213, 'average price/sqft': 650.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.270578, 37.8318936]}}, {'id': '3128', 'type': 'Feature', 'properties': {'osmid': 53079216, 'average price/sqft': 656.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.270062, 37.8339976]}}, {'id': '3129', 'type': 'Feature', 'properties': {'osmid': 53079219, 'average price/sqft': 657.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.269887, 37.834701]}}, {'id': '3130', 'type': 'Feature', 'properties': {'osmid': 53079221, 'average price/sqft': 658.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2697125, 37.8354019]}}, {'id': '3131', 'type': 'Feature', 'properties': {'osmid': 53079223, 'average price/sqft': 666.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2695193, 37.8361591]}}, {'id': '3132', 'type': 'Feature', 'properties': {'osmid': 53079226, 'average price/sqft': 666.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2692352, 37.838023]}}, {'id': '3133', 'type': 'Feature', 'properties': {'osmid': 53079228, 'average price/sqft': 668.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2689776, 37.8380567]}}, {'id': '3134', 'type': 'Feature', 'properties': {'osmid': 53079261, 'average price/sqft': 568.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2786725, 37.808937]}}, {'id': '3135', 'type': 'Feature', 'properties': {'osmid': 53079263, 'average price/sqft': 567.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2780379, 37.8099519]}}, {'id': '3136', 'type': 'Feature', 'properties': {'osmid': 53079265, 'average price/sqft': 561.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2774532, 37.8108923]}}, {'id': '3137', 'type': 'Feature', 'properties': {'osmid': 53079269, 'average price/sqft': 553.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.277053, 37.8115258]}}, {'id': '3138', 'type': 'Feature', 'properties': {'osmid': 53079271, 'average price/sqft': 545.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2766554, 37.8121718]}}, {'id': '3139', 'type': 'Feature', 'properties': {'osmid': 53079275, 'average price/sqft': 543.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2756896, 37.8137126]}}, {'id': '3140', 'type': 'Feature', 'properties': {'osmid': 53079279, 'average price/sqft': 481.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2747832, 37.8153985]}}, {'id': '3141', 'type': 'Feature', 'properties': {'osmid': 53079280, 'average price/sqft': 434.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2743861, 37.8167901]}}, {'id': '3142', 'type': 'Feature', 'properties': {'osmid': 53079282, 'average price/sqft': 415.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2740225, 37.818238]}}, {'id': '3143', 'type': 'Feature', 'properties': {'osmid': 53079284, 'average price/sqft': 410.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.273795, 37.8191458]}}, {'id': '3144', 'type': 'Feature', 'properties': {'osmid': 53079286, 'average price/sqft': 411.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2735617, 37.8200663]}}, {'id': '3145', 'type': 'Feature', 'properties': {'osmid': 53079287, 'average price/sqft': 446.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.273093, 37.8219424]}}, {'id': '3146', 'type': 'Feature', 'properties': {'osmid': 53079288, 'average price/sqft': 460.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.27293, 37.8225781]}}, {'id': '3147', 'type': 'Feature', 'properties': {'osmid': 53079291, 'average price/sqft': 474.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2727497, 37.8232889]}}, {'id': '3148', 'type': 'Feature', 'properties': {'osmid': 53079294, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1862836, 37.7341863]}}, {'id': '3149', 'type': 'Feature', 'properties': {'osmid': 53079299, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1853427, 37.7332958]}}, {'id': '3150', 'type': 'Feature', 'properties': {'osmid': 53079352, 'average price/sqft': 672.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2521503, 37.8026863]}}, {'id': '3151', 'type': 'Feature', 'properties': {'osmid': 53079354, 'average price/sqft': 682.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2514285, 37.8016711]}}, {'id': '3152', 'type': 'Feature', 'properties': {'osmid': 53079362, 'average price/sqft': 659.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2482834, 37.8032016]}}, {'id': '3153', 'type': 'Feature', 'properties': {'osmid': 53079630, 'average price/sqft': 675.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2636052, 37.8256497]}}, {'id': '3154', 'type': 'Feature', 'properties': {'osmid': 53079631, 'average price/sqft': 701.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2632673, 37.8268558]}}, {'id': '3155', 'type': 'Feature', 'properties': {'osmid': 53079867, 'average price/sqft': 491.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.200568, 37.7826284]}}, {'id': '3156', 'type': 'Feature', 'properties': {'osmid': 53079875, 'average price/sqft': 488.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2113806, 37.7757708]}}, {'id': '3157', 'type': 'Feature', 'properties': {'osmid': 53079877, 'average price/sqft': 486.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2106144, 37.7757846]}}, {'id': '3158', 'type': 'Feature', 'properties': {'osmid': 53079880, 'average price/sqft': 468.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2071498, 37.7779393]}}, {'id': '3159', 'type': 'Feature', 'properties': {'osmid': 53079881, 'average price/sqft': 460.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2056074, 37.779477]}}, {'id': '3160', 'type': 'Feature', 'properties': {'osmid': 53079884, 'average price/sqft': 456.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2032161, 37.7817254]}}, {'id': '3161', 'type': 'Feature', 'properties': {'osmid': 53079959, 'average price/sqft': 707.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2177508, 37.7995092]}}, {'id': '3162', 'type': 'Feature', 'properties': {'osmid': 53079961, 'average price/sqft': 646.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2114424, 37.7973175]}}, {'id': '3163', 'type': 'Feature', 'properties': {'osmid': 53079963, 'average price/sqft': 673.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2107596, 37.799]}}, {'id': '3164', 'type': 'Feature', 'properties': {'osmid': 53079965, 'average price/sqft': 689.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2097292, 37.8001514]}}, {'id': '3165', 'type': 'Feature', 'properties': {'osmid': 53079970, 'average price/sqft': 682.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2072391, 37.8026991]}}, {'id': '3166', 'type': 'Feature', 'properties': {'osmid': 53079971, 'average price/sqft': 675.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2067604, 37.8031745]}}, {'id': '3167', 'type': 'Feature', 'properties': {'osmid': 53079972, 'average price/sqft': 675.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2067376, 37.8031983]}}, {'id': '3168', 'type': 'Feature', 'properties': {'osmid': 53079975, 'average price/sqft': 681.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2060713, 37.8038545]}}, {'id': '3169', 'type': 'Feature', 'properties': {'osmid': 53079976, 'average price/sqft': 683.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.205397, 37.8045251]}}, {'id': '3170', 'type': 'Feature', 'properties': {'osmid': 53079985, 'average price/sqft': 425.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2186979, 37.7866515]}}, {'id': '3171', 'type': 'Feature', 'properties': {'osmid': 53079994, 'average price/sqft': 420.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2239633, 37.7886946]}}, {'id': '3172', 'type': 'Feature', 'properties': {'osmid': 53080010, 'average price/sqft': 375.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.166703, 37.7426926]}}, {'id': '3173', 'type': 'Feature', 'properties': {'osmid': 53080015, 'average price/sqft': 360.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1605406, 37.7442665]}}, {'id': '3174', 'type': 'Feature', 'properties': {'osmid': 53080020, 'average price/sqft': 369.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1747561, 37.7389922]}}, {'id': '3175', 'type': 'Feature', 'properties': {'osmid': 53080021, 'average price/sqft': 370.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1728142, 37.7399079]}}, {'id': '3176', 'type': 'Feature', 'properties': {'osmid': 53080023, 'average price/sqft': 366.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1712811, 37.7406189]}}, {'id': '3177', 'type': 'Feature', 'properties': {'osmid': 53080186, 'average price/sqft': 719.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1479428, 37.7889719]}}, {'id': '3178', 'type': 'Feature', 'properties': {'osmid': 53080188, 'average price/sqft': 727.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1445338, 37.7878239]}}, {'id': '3179', 'type': 'Feature', 'properties': {'osmid': 53080190, 'average price/sqft': 726.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1440792, 37.7876554]}}, {'id': '3180', 'type': 'Feature', 'properties': {'osmid': 53080207, 'average price/sqft': 701.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2073333, 37.8064179]}}, {'id': '3181', 'type': 'Feature', 'properties': {'osmid': 53080208, 'average price/sqft': 702.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.206022, 37.8055819]}}, {'id': '3182', 'type': 'Feature', 'properties': {'osmid': 53080217, 'average price/sqft': 540.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2023637, 37.8150859]}}, {'id': '3183', 'type': 'Feature', 'properties': {'osmid': 53080219, 'average price/sqft': 607.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1994125, 37.811622]}}, {'id': '3184', 'type': 'Feature', 'properties': {'osmid': 53080221, 'average price/sqft': 624.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1979349, 37.8103876]}}, {'id': '3185', 'type': 'Feature', 'properties': {'osmid': 53080223, 'average price/sqft': 594.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1970674, 37.8097023]}}, {'id': '3186', 'type': 'Feature', 'properties': {'osmid': 53080226, 'average price/sqft': 511.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1925836, 37.8051525]}}, {'id': '3187', 'type': 'Feature', 'properties': {'osmid': 53080228, 'average price/sqft': 542.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1899764, 37.8011533]}}, {'id': '3188', 'type': 'Feature', 'properties': {'osmid': 53080230, 'average price/sqft': 554.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1901653, 37.7997766]}}, {'id': '3189', 'type': 'Feature', 'properties': {'osmid': 53080231, 'average price/sqft': 576.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1900794, 37.7973011]}}, {'id': '3190', 'type': 'Feature', 'properties': {'osmid': 53080233, 'average price/sqft': 586.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1901079, 37.796653]}}, {'id': '3191', 'type': 'Feature', 'properties': {'osmid': 53080235, 'average price/sqft': 606.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.189161, 37.7957819]}}, {'id': '3192', 'type': 'Feature', 'properties': {'osmid': 53080278, 'average price/sqft': 440.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2223721, 37.7939463]}}, {'id': '3193', 'type': 'Feature', 'properties': {'osmid': 53080557, 'average price/sqft': 431.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2032716, 37.8115424]}}, {'id': '3194', 'type': 'Feature', 'properties': {'osmid': 53080572, 'average price/sqft': 663.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1994519, 37.8201541]}}, {'id': '3195', 'type': 'Feature', 'properties': {'osmid': 53080573, 'average price/sqft': 658.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1963588, 37.8173954]}}, {'id': '3196', 'type': 'Feature', 'properties': {'osmid': 53080672, 'average price/sqft': 462.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1501547, 37.7596534]}}, {'id': '3197', 'type': 'Feature', 'properties': {'osmid': 53080676, 'average price/sqft': 561.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1576136, 37.7664152]}}, {'id': '3198', 'type': 'Feature', 'properties': {'osmid': 53080691, 'average price/sqft': 953.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2445183, 37.8437937]}}, {'id': '3199', 'type': 'Feature', 'properties': {'osmid': 53080695, 'average price/sqft': 804.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2577362, 37.8333762]}}, {'id': '3200', 'type': 'Feature', 'properties': {'osmid': 53080696, 'average price/sqft': 831.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.256764, 37.8356737]}}, {'id': '3201', 'type': 'Feature', 'properties': {'osmid': 53080697, 'average price/sqft': 835.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.256488, 37.836336]}}, {'id': '3202', 'type': 'Feature', 'properties': {'osmid': 53080700, 'average price/sqft': 931.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.252938, 37.8407764]}}, {'id': '3203', 'type': 'Feature', 'properties': {'osmid': 53080702, 'average price/sqft': 946.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2515796, 37.842364]}}, {'id': '3204', 'type': 'Feature', 'properties': {'osmid': 53080704, 'average price/sqft': 953.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2479722, 37.8439333]}}, {'id': '3205', 'type': 'Feature', 'properties': {'osmid': 53080714, 'average price/sqft': 716.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2415524, 37.8097351]}}, {'id': '3206', 'type': 'Feature', 'properties': {'osmid': 53080716, 'average price/sqft': 720.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2420325, 37.8091291]}}, {'id': '3207', 'type': 'Feature', 'properties': {'osmid': 53080826, 'average price/sqft': 601.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2177155, 37.8452341]}}, {'id': '3208', 'type': 'Feature', 'properties': {'osmid': 53080827, 'average price/sqft': 615.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2192876, 37.8450239]}}, {'id': '3209', 'type': 'Feature', 'properties': {'osmid': 53080831, 'average price/sqft': 654.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2234641, 37.8450144]}}, {'id': '3210', 'type': 'Feature', 'properties': {'osmid': 53080838, 'average price/sqft': 626.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2193782, 37.8460991]}}, {'id': '3211', 'type': 'Feature', 'properties': {'osmid': 53080890, 'average price/sqft': 399.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1779352, 37.7783385]}}, {'id': '3212', 'type': 'Feature', 'properties': {'osmid': 53080891, 'average price/sqft': 401.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1750519, 37.7773978]}}, {'id': '3213', 'type': 'Feature', 'properties': {'osmid': 53080893, 'average price/sqft': 402.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1739399, 37.7776895]}}, {'id': '3214', 'type': 'Feature', 'properties': {'osmid': 53080897, 'average price/sqft': 414.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1709515, 37.7763461]}}, {'id': '3215', 'type': 'Feature', 'properties': {'osmid': 53080899, 'average price/sqft': 419.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1690523, 37.7777117]}}, {'id': '3216', 'type': 'Feature', 'properties': {'osmid': 53080901, 'average price/sqft': 420.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1688039, 37.7779782]}}, {'id': '3217', 'type': 'Feature', 'properties': {'osmid': 53081006, 'average price/sqft': 604.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2152313, 37.8597647]}}, {'id': '3218', 'type': 'Feature', 'properties': {'osmid': 53081214, 'average price/sqft': 407.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2593794, 37.8098081]}}, {'id': '3219', 'type': 'Feature', 'properties': {'osmid': 53081227, 'average price/sqft': 678.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1933174, 37.7872257]}}, {'id': '3220', 'type': 'Feature', 'properties': {'osmid': 53081228, 'average price/sqft': 681.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1920229, 37.7878978]}}, {'id': '3221', 'type': 'Feature', 'properties': {'osmid': 53081231, 'average price/sqft': 684.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1906283, 37.788614]}}, {'id': '3222', 'type': 'Feature', 'properties': {'osmid': 53081232, 'average price/sqft': 691.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1898806, 37.789]}}, {'id': '3223', 'type': 'Feature', 'properties': {'osmid': 53081233, 'average price/sqft': 686.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1891431, 37.7893772]}}, {'id': '3224', 'type': 'Feature', 'properties': {'osmid': 53081234, 'average price/sqft': 682.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1881424, 37.7898898]}}, {'id': '3225', 'type': 'Feature', 'properties': {'osmid': 53081267, 'average price/sqft': 629.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1928948, 37.8328133]}}, {'id': '3226', 'type': 'Feature', 'properties': {'osmid': 53081292, 'average price/sqft': 624.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2681117, 37.8289526]}}, {'id': '3227', 'type': 'Feature', 'properties': {'osmid': 53081294, 'average price/sqft': 629.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.268632, 37.8290336]}}, {'id': '3228', 'type': 'Feature', 'properties': {'osmid': 53081296, 'average price/sqft': 567.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2741368, 37.8298987]}}, {'id': '3229', 'type': 'Feature', 'properties': {'osmid': 53081306, 'average price/sqft': 696.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2646721, 37.8284119]}}, {'id': '3230', 'type': 'Feature', 'properties': {'osmid': 53081350, 'average price/sqft': 775.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.237037, 37.8070421]}}, {'id': '3231', 'type': 'Feature', 'properties': {'osmid': 53081355, 'average price/sqft': 761.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2339365, 37.8070406]}}, {'id': '3232', 'type': 'Feature', 'properties': {'osmid': 53081384, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2775943, 37.7965489]}}, {'id': '3233', 'type': 'Feature', 'properties': {'osmid': 53081391, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2767378, 37.7979261]}}, {'id': '3234', 'type': 'Feature', 'properties': {'osmid': 53081395, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.275008, 37.8006779]}}, {'id': '3235', 'type': 'Feature', 'properties': {'osmid': 53081476, 'average price/sqft': 509.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.138774, 37.7757727]}}, {'id': '3236', 'type': 'Feature', 'properties': {'osmid': 53081477, 'average price/sqft': 509.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1380702, 37.7763086]}}, {'id': '3237', 'type': 'Feature', 'properties': {'osmid': 53081714, 'average price/sqft': 621.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1883582, 37.7956652]}}, {'id': '3238', 'type': 'Feature', 'properties': {'osmid': 53081720, 'average price/sqft': 615.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1876092, 37.7961657]}}, {'id': '3239', 'type': 'Feature', 'properties': {'osmid': 53081722, 'average price/sqft': 607.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.187987, 37.7965329]}}, {'id': '3240', 'type': 'Feature', 'properties': {'osmid': 53081725, 'average price/sqft': 645.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1268536, 37.7610127]}}, {'id': '3241', 'type': 'Feature', 'properties': {'osmid': 53081728, 'average price/sqft': 645.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1266626, 37.7607324]}}, {'id': '3242', 'type': 'Feature', 'properties': {'osmid': 53081753, 'average price/sqft': 650.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1480466, 37.7555317]}}, {'id': '3243', 'type': 'Feature', 'properties': {'osmid': 53081769, 'average price/sqft': 562.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2710017, 37.8130002]}}, {'id': '3244', 'type': 'Feature', 'properties': {'osmid': 53081772, 'average price/sqft': 481.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2703045, 37.8146475]}}, {'id': '3245', 'type': 'Feature', 'properties': {'osmid': 53081780, 'average price/sqft': 943.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2477872, 37.8502155]}}, {'id': '3246', 'type': 'Feature', 'properties': {'osmid': 53081824, 'average price/sqft': 419.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1906126, 37.7595913]}}, {'id': '3247', 'type': 'Feature', 'properties': {'osmid': 53081826, 'average price/sqft': 419.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1900776, 37.7590696]}}, {'id': '3248', 'type': 'Feature', 'properties': {'osmid': 53081832, 'average price/sqft': 419.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1879411, 37.7569766]}}, {'id': '3249', 'type': 'Feature', 'properties': {'osmid': 53081833, 'average price/sqft': 425.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1873877, 37.7564463]}}, {'id': '3250', 'type': 'Feature', 'properties': {'osmid': 53081835, 'average price/sqft': 432.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1865668, 37.755604]}}, {'id': '3251', 'type': 'Feature', 'properties': {'osmid': 53081837, 'average price/sqft': 438.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.185987, 37.7550536]}}, {'id': '3252', 'type': 'Feature', 'properties': {'osmid': 53081842, 'average price/sqft': 443.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1865002, 37.7547241]}}, {'id': '3253', 'type': 'Feature', 'properties': {'osmid': 53081844, 'average price/sqft': 451.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1858123, 37.7540531]}}, {'id': '3254', 'type': 'Feature', 'properties': {'osmid': 53081846, 'average price/sqft': 461.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1850475, 37.7532891]}}, {'id': '3255', 'type': 'Feature', 'properties': {'osmid': 53081848, 'average price/sqft': 469.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1845918, 37.7527643]}}, {'id': '3256', 'type': 'Feature', 'properties': {'osmid': 53081883, 'average price/sqft': 745.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2184368, 37.8015333]}}, {'id': '3257', 'type': 'Feature', 'properties': {'osmid': 53081885, 'average price/sqft': 750.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2179697, 37.8014661]}}, {'id': '3258', 'type': 'Feature', 'properties': {'osmid': 53081898, 'average price/sqft': 755.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2304712, 37.8061406]}}, {'id': '3259', 'type': 'Feature', 'properties': {'osmid': 53081901, 'average price/sqft': 792.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2272748, 37.8069493]}}, {'id': '3260', 'type': 'Feature', 'properties': {'osmid': 53081932, 'average price/sqft': 761.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2612468, 37.8501031]}}, {'id': '3261', 'type': 'Feature', 'properties': {'osmid': 53081933, 'average price/sqft': 752.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2614812, 37.8513684]}}, {'id': '3262', 'type': 'Feature', 'properties': {'osmid': 53082033, 'average price/sqft': 341.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.15287, 37.7463717]}}, {'id': '3263', 'type': 'Feature', 'properties': {'osmid': 53082035, 'average price/sqft': 342.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.150336, 37.7457953]}}, {'id': '3264', 'type': 'Feature', 'properties': {'osmid': 53082045, 'average price/sqft': 614.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1866317, 37.7968058]}}, {'id': '3265', 'type': 'Feature', 'properties': {'osmid': 53082046, 'average price/sqft': 628.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1857696, 37.7958785]}}, {'id': '3266', 'type': 'Feature', 'properties': {'osmid': 53082047, 'average price/sqft': 636.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1851774, 37.7950963]}}, {'id': '3267', 'type': 'Feature', 'properties': {'osmid': 53082048, 'average price/sqft': 645.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1841435, 37.7924778]}}, {'id': '3268', 'type': 'Feature', 'properties': {'osmid': 53082049, 'average price/sqft': 647.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1837828, 37.7920824]}}, {'id': '3269', 'type': 'Feature', 'properties': {'osmid': 53082052, 'average price/sqft': 669.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1831121, 37.7893749]}}, {'id': '3270', 'type': 'Feature', 'properties': {'osmid': 53082054, 'average price/sqft': 667.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1815672, 37.7865306]}}, {'id': '3271', 'type': 'Feature', 'properties': {'osmid': 53082057, 'average price/sqft': 654.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1800861, 37.7852003]}}, {'id': '3272', 'type': 'Feature', 'properties': {'osmid': 53082058, 'average price/sqft': 656.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.179994, 37.7849559]}}, {'id': '3273', 'type': 'Feature', 'properties': {'osmid': 53082075, 'average price/sqft': 639.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1976021, 37.8211294]}}, {'id': '3274', 'type': 'Feature', 'properties': {'osmid': 53082134, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1834337, 37.7298197]}}, {'id': '3275', 'type': 'Feature', 'properties': {'osmid': 53082310, 'average price/sqft': 446.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1444104, 37.7481354]}}, {'id': '3276', 'type': 'Feature', 'properties': {'osmid': 53082350, 'average price/sqft': 659.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2074943, 37.8396281]}}, {'id': '3277', 'type': 'Feature', 'properties': {'osmid': 53082351, 'average price/sqft': 654.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2072197, 37.8392475]}}, {'id': '3278', 'type': 'Feature', 'properties': {'osmid': 53082367, 'average price/sqft': 750.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2353049, 37.846995]}}, {'id': '3279', 'type': 'Feature', 'properties': {'osmid': 53082494, 'average price/sqft': 519.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2199091, 37.794854]}}, {'id': '3280', 'type': 'Feature', 'properties': {'osmid': 53082498, 'average price/sqft': 500.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2152599, 37.7931948]}}, {'id': '3281', 'type': 'Feature', 'properties': {'osmid': 53082500, 'average price/sqft': 493.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2141252, 37.7926575]}}, {'id': '3282', 'type': 'Feature', 'properties': {'osmid': 53082503, 'average price/sqft': 489.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2142237, 37.7925289]}}, {'id': '3283', 'type': 'Feature', 'properties': {'osmid': 53082505, 'average price/sqft': 501.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.212878, 37.7919142]}}, {'id': '3284', 'type': 'Feature', 'properties': {'osmid': 53082507, 'average price/sqft': 514.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2104862, 37.7908158]}}, {'id': '3285', 'type': 'Feature', 'properties': {'osmid': 53082511, 'average price/sqft': 612.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2567389, 37.8220002]}}, {'id': '3286', 'type': 'Feature', 'properties': {'osmid': 53082689, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2731046, 37.7965038]}}, {'id': '3287', 'type': 'Feature', 'properties': {'osmid': 53082829, 'average price/sqft': 380.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2917387, 37.8108578]}}, {'id': '3288', 'type': 'Feature', 'properties': {'osmid': 53082831, 'average price/sqft': 281.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2965376, 37.8126586]}}, {'id': '3289', 'type': 'Feature', 'properties': {'osmid': 53082833, 'average price/sqft': 283.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2978092, 37.8132933]}}, {'id': '3290', 'type': 'Feature', 'properties': {'osmid': 53082854, 'average price/sqft': 570.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2786923, 37.8072201]}}, {'id': '3291', 'type': 'Feature', 'properties': {'osmid': 53082859, 'average price/sqft': 580.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2771503, 37.8066648]}}, {'id': '3292', 'type': 'Feature', 'properties': {'osmid': 53082860, 'average price/sqft': 593.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2759787, 37.8062016]}}, {'id': '3293', 'type': 'Feature', 'properties': {'osmid': 53082861, 'average price/sqft': 591.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2747932, 37.805735]}}, {'id': '3294', 'type': 'Feature', 'properties': {'osmid': 53082887, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2687996, 37.803389]}}, {'id': '3295', 'type': 'Feature', 'properties': {'osmid': 53082889, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2676172, 37.8029263]}}, {'id': '3296', 'type': 'Feature', 'properties': {'osmid': 53082891, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2652556, 37.8019989]}}, {'id': '3297', 'type': 'Feature', 'properties': {'osmid': 53082893, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2629095, 37.8010666]}}, {'id': '3298', 'type': 'Feature', 'properties': {'osmid': 53082915, 'average price/sqft': 440.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.290245, 37.810518]}}, {'id': '3299', 'type': 'Feature', 'properties': {'osmid': 53082959, 'average price/sqft': 481.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2201752, 37.7942571]}}, {'id': '3300', 'type': 'Feature', 'properties': {'osmid': 53082978, 'average price/sqft': 677.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2439092, 37.8126542]}}, {'id': '3301', 'type': 'Feature', 'properties': {'osmid': 53083133, 'average price/sqft': 793.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2280727, 37.8415763]}}, {'id': '3302', 'type': 'Feature', 'properties': {'osmid': 53083425, 'average price/sqft': 766.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2362854, 37.8467115]}}, {'id': '3303', 'type': 'Feature', 'properties': {'osmid': 53083431, 'average price/sqft': 577.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1954051, 37.8007788]}}, {'id': '3304', 'type': 'Feature', 'properties': {'osmid': 53083435, 'average price/sqft': 558.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1932579, 37.8011131]}}, {'id': '3305', 'type': 'Feature', 'properties': {'osmid': 53083437, 'average price/sqft': 543.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1920297, 37.8019108]}}, {'id': '3306', 'type': 'Feature', 'properties': {'osmid': 53083440, 'average price/sqft': 549.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.191736, 37.8014042]}}, {'id': '3307', 'type': 'Feature', 'properties': {'osmid': 53083449, 'average price/sqft': 374.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1690872, 37.7548344]}}, {'id': '3308', 'type': 'Feature', 'properties': {'osmid': 53083450, 'average price/sqft': 336.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1658769, 37.7563521]}}, {'id': '3309', 'type': 'Feature', 'properties': {'osmid': 53083453, 'average price/sqft': 337.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1655203, 37.7565232]}}, {'id': '3310', 'type': 'Feature', 'properties': {'osmid': 53083455, 'average price/sqft': 335.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.165125, 37.7567005]}}, {'id': '3311', 'type': 'Feature', 'properties': {'osmid': 53083457, 'average price/sqft': 472.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.182483, 37.7487938]}}, {'id': '3312', 'type': 'Feature', 'properties': {'osmid': 53083459, 'average price/sqft': 468.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1794536, 37.7502181]}}, {'id': '3313', 'type': 'Feature', 'properties': {'osmid': 53083461, 'average price/sqft': 473.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1778235, 37.7509696]}}, {'id': '3314', 'type': 'Feature', 'properties': {'osmid': 53083463, 'average price/sqft': 482.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1760951, 37.7517889]}}, {'id': '3315', 'type': 'Feature', 'properties': {'osmid': 53083621, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1548372, 37.7798653]}}, {'id': '3316', 'type': 'Feature', 'properties': {'osmid': 53083623, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1554045, 37.7793489]}}, {'id': '3317', 'type': 'Feature', 'properties': {'osmid': 53083634, 'average price/sqft': 420.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1914636, 37.7726907]}}, {'id': '3318', 'type': 'Feature', 'properties': {'osmid': 53083730, 'average price/sqft': 425.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1806145, 37.7452702]}}, {'id': '3319', 'type': 'Feature', 'properties': {'osmid': 53083732, 'average price/sqft': 422.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.179962, 37.7444118]}}, {'id': '3320', 'type': 'Feature', 'properties': {'osmid': 53083869, 'average price/sqft': 478.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2850868, 37.8157524]}}, {'id': '3321', 'type': 'Feature', 'properties': {'osmid': 53083870, 'average price/sqft': 475.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2839174, 37.8189797]}}, {'id': '3322', 'type': 'Feature', 'properties': {'osmid': 53083871, 'average price/sqft': 457.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2833603, 37.8205358]}}, {'id': '3323', 'type': 'Feature', 'properties': {'osmid': 53083873, 'average price/sqft': 423.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2827256, 37.8222683]}}, {'id': '3324', 'type': 'Feature', 'properties': {'osmid': 53083875, 'average price/sqft': 414.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2820973, 37.8240082]}}, {'id': '3325', 'type': 'Feature', 'properties': {'osmid': 53083885, 'average price/sqft': 582.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2877639, 37.8083538]}}, {'id': '3326', 'type': 'Feature', 'properties': {'osmid': 53083887, 'average price/sqft': 562.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2866843, 37.8113015]}}, {'id': '3327', 'type': 'Feature', 'properties': {'osmid': 53083914, 'average price/sqft': 632.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1925098, 37.8316485]}}, {'id': '3328', 'type': 'Feature', 'properties': {'osmid': 53083915, 'average price/sqft': 411.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1907676, 37.7712685]}}, {'id': '3329', 'type': 'Feature', 'properties': {'osmid': 53083918, 'average price/sqft': 410.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1895045, 37.7701189]}}, {'id': '3330', 'type': 'Feature', 'properties': {'osmid': 53083919, 'average price/sqft': 410.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1888462, 37.7695349]}}, {'id': '3331', 'type': 'Feature', 'properties': {'osmid': 53083923, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1915855, 37.7368417]}}, {'id': '3332', 'type': 'Feature', 'properties': {'osmid': 53083951, 'average price/sqft': 683.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1996117, 37.8327196]}}, {'id': '3333', 'type': 'Feature', 'properties': {'osmid': 53084033, 'average price/sqft': 809.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.228441, 37.8382181]}}, {'id': '3334', 'type': 'Feature', 'properties': {'osmid': 53084035, 'average price/sqft': 805.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2280263, 37.8376259]}}, {'id': '3335', 'type': 'Feature', 'properties': {'osmid': 53084116, 'average price/sqft': 459.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2071959, 37.8154732]}}, {'id': '3336', 'type': 'Feature', 'properties': {'osmid': 53084117, 'average price/sqft': 467.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2056714, 37.8166296]}}, {'id': '3337', 'type': 'Feature', 'properties': {'osmid': 53084276, 'average price/sqft': 236.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2490053, 37.7899428]}}, {'id': '3338', 'type': 'Feature', 'properties': {'osmid': 53084281, 'average price/sqft': 411.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2452668, 37.7925883]}}, {'id': '3339', 'type': 'Feature', 'properties': {'osmid': 53084285, 'average price/sqft': 636.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2360774, 37.7994458]}}, {'id': '3340', 'type': 'Feature', 'properties': {'osmid': 53084334, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1890963, 37.7330837]}}, {'id': '3341', 'type': 'Feature', 'properties': {'osmid': 53084335, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1887348, 37.7329572]}}, {'id': '3342', 'type': 'Feature', 'properties': {'osmid': 53084347, 'average price/sqft': 460.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2089049, 37.8161904]}}, {'id': '3343', 'type': 'Feature', 'properties': {'osmid': 53084397, 'average price/sqft': 549.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1392559, 37.7477692]}}, {'id': '3344', 'type': 'Feature', 'properties': {'osmid': 53084418, 'average price/sqft': 425.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1836323, 37.7642503]}}, {'id': '3345', 'type': 'Feature', 'properties': {'osmid': 53084423, 'average price/sqft': 415.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1783939, 37.7590313]}}, {'id': '3346', 'type': 'Feature', 'properties': {'osmid': 53084439, 'average price/sqft': 419.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1704872, 37.775592]}}, {'id': '3347', 'type': 'Feature', 'properties': {'osmid': 53084441, 'average price/sqft': 425.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1681382, 37.7770871]}}, {'id': '3348', 'type': 'Feature', 'properties': {'osmid': 53084444, 'average price/sqft': 426.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.167677, 37.777428]}}, {'id': '3349', 'type': 'Feature', 'properties': {'osmid': 53084509, 'average price/sqft': 634.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2049998, 37.7989644]}}, {'id': '3350', 'type': 'Feature', 'properties': {'osmid': 53084510, 'average price/sqft': 636.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2044198, 37.799771]}}, {'id': '3351', 'type': 'Feature', 'properties': {'osmid': 53084567, 'average price/sqft': 407.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1910613, 37.7651462]}}, {'id': '3352', 'type': 'Feature', 'properties': {'osmid': 53084568, 'average price/sqft': 409.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1904954, 37.7646012]}}, {'id': '3353', 'type': 'Feature', 'properties': {'osmid': 53084575, 'average price/sqft': 413.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.189829, 37.7633011]}}, {'id': '3354', 'type': 'Feature', 'properties': {'osmid': 53084577, 'average price/sqft': 415.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.189538, 37.7630157]}}, {'id': '3355', 'type': 'Feature', 'properties': {'osmid': 53084579, 'average price/sqft': 416.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1892869, 37.7627695]}}, {'id': '3356', 'type': 'Feature', 'properties': {'osmid': 53084580, 'average price/sqft': 417.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.188994, 37.7624822]}}, {'id': '3357', 'type': 'Feature', 'properties': {'osmid': 53084581, 'average price/sqft': 418.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1887545, 37.7622473]}}, {'id': '3358', 'type': 'Feature', 'properties': {'osmid': 53084582, 'average price/sqft': 420.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1879533, 37.7614664]}}, {'id': '3359', 'type': 'Feature', 'properties': {'osmid': 53084692, 'average price/sqft': 941.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2469565, 37.846028]}}, {'id': '3360', 'type': 'Feature', 'properties': {'osmid': 53084700, 'average price/sqft': 937.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2475018, 37.8468991]}}, {'id': '3361', 'type': 'Feature', 'properties': {'osmid': 53084702, 'average price/sqft': 940.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2484916, 37.8485013]}}, {'id': '3362', 'type': 'Feature', 'properties': {'osmid': 53084839, 'average price/sqft': 680.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2082067, 37.8400143]}}, {'id': '3363', 'type': 'Feature', 'properties': {'osmid': 53084894, 'average price/sqft': 451.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1893367, 37.7771199]}}, {'id': '3364', 'type': 'Feature', 'properties': {'osmid': 53084896, 'average price/sqft': 437.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1876118, 37.7755682]}}, {'id': '3365', 'type': 'Feature', 'properties': {'osmid': 53084898, 'average price/sqft': 430.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.187057, 37.775047]}}, {'id': '3366', 'type': 'Feature', 'properties': {'osmid': 53084900, 'average price/sqft': 421.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1864541, 37.7744844]}}, {'id': '3367', 'type': 'Feature', 'properties': {'osmid': 53084902, 'average price/sqft': 418.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1858153, 37.7739072]}}, {'id': '3368', 'type': 'Feature', 'properties': {'osmid': 53084904, 'average price/sqft': 413.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1851774, 37.7733183]}}, {'id': '3369', 'type': 'Feature', 'properties': {'osmid': 53084906, 'average price/sqft': 410.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1845345, 37.7727416]}}, {'id': '3370', 'type': 'Feature', 'properties': {'osmid': 53084913, 'average price/sqft': 473.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1905906, 37.7787131]}}, {'id': '3371', 'type': 'Feature', 'properties': {'osmid': 53084916, 'average price/sqft': 454.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1890376, 37.7773256]}}, {'id': '3372', 'type': 'Feature', 'properties': {'osmid': 53084946, 'average price/sqft': 741.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2002659, 37.8080091]}}, {'id': '3373', 'type': 'Feature', 'properties': {'osmid': 53085032, 'average price/sqft': 544.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2541302, 37.8198345]}}, {'id': '3374', 'type': 'Feature', 'properties': {'osmid': 53085036, 'average price/sqft': 539.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2509799, 37.817648]}}, {'id': '3375', 'type': 'Feature', 'properties': {'osmid': 53085038, 'average price/sqft': 560.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2503856, 37.8172438]}}, {'id': '3376', 'type': 'Feature', 'properties': {'osmid': 53085039, 'average price/sqft': 591.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2495557, 37.8163215]}}, {'id': '3377', 'type': 'Feature', 'properties': {'osmid': 53085261, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2807652, 37.7961692]}}, {'id': '3378', 'type': 'Feature', 'properties': {'osmid': 53085264, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2799583, 37.7974741]}}, {'id': '3379', 'type': 'Feature', 'properties': {'osmid': 53085268, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2790937, 37.7988556]}}, {'id': '3380', 'type': 'Feature', 'properties': {'osmid': 53085276, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2773693, 37.8016117]}}, {'id': '3381', 'type': 'Feature', 'properties': {'osmid': 53085285, 'average price/sqft': 608.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2739548, 37.8070852]}}, {'id': '3382', 'type': 'Feature', 'properties': {'osmid': 53085286, 'average price/sqft': 604.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2736155, 37.8076294]}}, {'id': '3383', 'type': 'Feature', 'properties': {'osmid': 53085288, 'average price/sqft': 615.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2726677, 37.8087892]}}, {'id': '3384', 'type': 'Feature', 'properties': {'osmid': 53085331, 'average price/sqft': 695.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2637706, 37.8269061]}}, {'id': '3385', 'type': 'Feature', 'properties': {'osmid': 53085351, 'average price/sqft': 770.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2610543, 37.8364287]}}, {'id': '3386', 'type': 'Feature', 'properties': {'osmid': 53085353, 'average price/sqft': 770.0, 'observation count': 32.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2608822, 37.837129]}}, {'id': '3387', 'type': 'Feature', 'properties': {'osmid': 53085355, 'average price/sqft': 769.0, 'observation count': 32.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2611093, 37.8378682]}}, {'id': '3388', 'type': 'Feature', 'properties': {'osmid': 53085357, 'average price/sqft': 759.0, 'observation count': 34.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2616219, 37.8383299]}}, {'id': '3389', 'type': 'Feature', 'properties': {'osmid': 53085394, 'average price/sqft': 468.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2301301, 37.7928868]}}, {'id': '3390', 'type': 'Feature', 'properties': {'osmid': 53085396, 'average price/sqft': 480.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2300522, 37.7938026]}}, {'id': '3391', 'type': 'Feature', 'properties': {'osmid': 53085427, 'average price/sqft': 550.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2775159, 37.8470248]}}, {'id': '3392', 'type': 'Feature', 'properties': {'osmid': 53085428, 'average price/sqft': 555.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2773928, 37.8468672]}}, {'id': '3393', 'type': 'Feature', 'properties': {'osmid': 53085430, 'average price/sqft': 573.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2767988, 37.8462081]}}, {'id': '3394', 'type': 'Feature', 'properties': {'osmid': 53085432, 'average price/sqft': 588.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2760638, 37.8453898]}}, {'id': '3395', 'type': 'Feature', 'properties': {'osmid': 53085433, 'average price/sqft': 605.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2752757, 37.8443781]}}, {'id': '3396', 'type': 'Feature', 'properties': {'osmid': 53085434, 'average price/sqft': 610.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2750365, 37.8438221]}}, {'id': '3397', 'type': 'Feature', 'properties': {'osmid': 53085437, 'average price/sqft': 612.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2748419, 37.8430481]}}, {'id': '3398', 'type': 'Feature', 'properties': {'osmid': 53085438, 'average price/sqft': 612.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2746747, 37.8423242]}}, {'id': '3399', 'type': 'Feature', 'properties': {'osmid': 53085443, 'average price/sqft': 618.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2739288, 37.8392551]}}, {'id': '3400', 'type': 'Feature', 'properties': {'osmid': 53085444, 'average price/sqft': 618.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2737447, 37.8383635]}}, {'id': '3401', 'type': 'Feature', 'properties': {'osmid': 53085445, 'average price/sqft': 616.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.273563, 37.8374678]}}, {'id': '3402', 'type': 'Feature', 'properties': {'osmid': 53085446, 'average price/sqft': 616.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.273257, 37.8359728]}}, {'id': '3403', 'type': 'Feature', 'properties': {'osmid': 53085447, 'average price/sqft': 619.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2731027, 37.8352135]}}, {'id': '3404', 'type': 'Feature', 'properties': {'osmid': 53085450, 'average price/sqft': 623.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.272981, 37.8344629]}}, {'id': '3405', 'type': 'Feature', 'properties': {'osmid': 53085452, 'average price/sqft': 609.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2735163, 37.8323628]}}, {'id': '3406', 'type': 'Feature', 'properties': {'osmid': 53085455, 'average price/sqft': 541.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2743531, 37.8290202]}}, {'id': '3407', 'type': 'Feature', 'properties': {'osmid': 53085456, 'average price/sqft': 508.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.274616, 37.8279888]}}, {'id': '3408', 'type': 'Feature', 'properties': {'osmid': 53085459, 'average price/sqft': 484.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2748277, 37.8271462]}}, {'id': '3409', 'type': 'Feature', 'properties': {'osmid': 53085491, 'average price/sqft': 553.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2796556, 37.8117554]}}, {'id': '3410', 'type': 'Feature', 'properties': {'osmid': 53085496, 'average price/sqft': 543.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2794043, 37.8124521]}}, {'id': '3411', 'type': 'Feature', 'properties': {'osmid': 53085498, 'average price/sqft': 533.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2791516, 37.8131505]}}, {'id': '3412', 'type': 'Feature', 'properties': {'osmid': 53085499, 'average price/sqft': 530.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2790611, 37.8134129]}}, {'id': '3413', 'type': 'Feature', 'properties': {'osmid': 53085504, 'average price/sqft': 513.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2784711, 37.8150255]}}, {'id': '3414', 'type': 'Feature', 'properties': {'osmid': 53085506, 'average price/sqft': 493.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2778504, 37.8167584]}}, {'id': '3415', 'type': 'Feature', 'properties': {'osmid': 53085509, 'average price/sqft': 457.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2770111, 37.8190748]}}, {'id': '3416', 'type': 'Feature', 'properties': {'osmid': 53085511, 'average price/sqft': 399.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2764574, 37.8205911]}}, {'id': '3417', 'type': 'Feature', 'properties': {'osmid': 53085515, 'average price/sqft': 407.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2760186, 37.822403]}}, {'id': '3418', 'type': 'Feature', 'properties': {'osmid': 53085517, 'average price/sqft': 409.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2758033, 37.8232634]}}, {'id': '3419', 'type': 'Feature', 'properties': {'osmid': 53085519, 'average price/sqft': 416.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.275624, 37.8239705]}}, {'id': '3420', 'type': 'Feature', 'properties': {'osmid': 53085754, 'average price/sqft': 700.0, 'observation count': 35.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2642782, 37.8384876]}}, {'id': '3421', 'type': 'Feature', 'properties': {'osmid': 53085804, 'average price/sqft': 695.0, 'observation count': 33.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2643817, 37.8392039]}}, {'id': '3422', 'type': 'Feature', 'properties': {'osmid': 53085821, 'average price/sqft': 943.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.243366, 37.8492043]}}, {'id': '3423', 'type': 'Feature', 'properties': {'osmid': 53085823, 'average price/sqft': 617.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1992149, 37.7994655]}}, {'id': '3424', 'type': 'Feature', 'properties': {'osmid': 53085825, 'average price/sqft': 614.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1984307, 37.7987729]}}, {'id': '3425', 'type': 'Feature', 'properties': {'osmid': 53085933, 'average price/sqft': 635.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1476185, 37.7559446]}}, {'id': '3426', 'type': 'Feature', 'properties': {'osmid': 53085939, 'average price/sqft': 558.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2101601, 37.7936853]}}, {'id': '3427', 'type': 'Feature', 'properties': {'osmid': 53085940, 'average price/sqft': 573.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2096487, 37.7943401]}}, {'id': '3428', 'type': 'Feature', 'properties': {'osmid': 53085941, 'average price/sqft': 585.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2092274, 37.7949368]}}, {'id': '3429', 'type': 'Feature', 'properties': {'osmid': 53085942, 'average price/sqft': 585.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2090243, 37.7952025]}}, {'id': '3430', 'type': 'Feature', 'properties': {'osmid': 53085953, 'average price/sqft': 886.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.254317, 37.8480971]}}, {'id': '3431', 'type': 'Feature', 'properties': {'osmid': 53085957, 'average price/sqft': 787.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2596931, 37.8473919]}}, {'id': '3432', 'type': 'Feature', 'properties': {'osmid': 53085958, 'average price/sqft': 764.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.260939, 37.8472287]}}, {'id': '3433', 'type': 'Feature', 'properties': {'osmid': 53085960, 'average price/sqft': 742.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2622107, 37.847062]}}, {'id': '3434', 'type': 'Feature', 'properties': {'osmid': 53085964, 'average price/sqft': 677.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2653662, 37.8466001]}}, {'id': '3435', 'type': 'Feature', 'properties': {'osmid': 53085965, 'average price/sqft': 667.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2685073, 37.8461763]}}, {'id': '3436', 'type': 'Feature', 'properties': {'osmid': 53085967, 'average price/sqft': 651.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2708979, 37.8460616]}}, {'id': '3437', 'type': 'Feature', 'properties': {'osmid': 53085971, 'average price/sqft': 639.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.272676, 37.845838]}}, {'id': '3438', 'type': 'Feature', 'properties': {'osmid': 53085973, 'average price/sqft': 594.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2735085, 37.8456737]}}, {'id': '3439', 'type': 'Feature', 'properties': {'osmid': 53085979, 'average price/sqft': 568.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2772439, 37.845245]}}, {'id': '3440', 'type': 'Feature', 'properties': {'osmid': 53085984, 'average price/sqft': 541.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2790282, 37.8450356]}}, {'id': '3441', 'type': 'Feature', 'properties': {'osmid': 53085989, 'average price/sqft': 529.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2789382, 37.8445984]}}, {'id': '3442', 'type': 'Feature', 'properties': {'osmid': 53085992, 'average price/sqft': 478.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2858555, 37.8435695]}}, {'id': '3443', 'type': 'Feature', 'properties': {'osmid': 53085993, 'average price/sqft': 495.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2866994, 37.8433466]}}, {'id': '3444', 'type': 'Feature', 'properties': {'osmid': 53085999, 'average price/sqft': 737.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2623114, 37.8474672]}}, {'id': '3445', 'type': 'Feature', 'properties': {'osmid': 53086000, 'average price/sqft': 685.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2654275, 37.8470608]}}, {'id': '3446', 'type': 'Feature', 'properties': {'osmid': 53086024, 'average price/sqft': 946.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2437132, 37.8452201]}}, {'id': '3447', 'type': 'Feature', 'properties': {'osmid': 53086025, 'average price/sqft': 942.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2430697, 37.8457151]}}, {'id': '3448', 'type': 'Feature', 'properties': {'osmid': 53086026, 'average price/sqft': 947.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2425934, 37.8463117]}}, {'id': '3449', 'type': 'Feature', 'properties': {'osmid': 53086032, 'average price/sqft': 811.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2321125, 37.8398127]}}, {'id': '3450', 'type': 'Feature', 'properties': {'osmid': 53086037, 'average price/sqft': 817.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2300064, 37.8386138]}}, {'id': '3451', 'type': 'Feature', 'properties': {'osmid': 53086042, 'average price/sqft': 805.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2280904, 37.8371377]}}, {'id': '3452', 'type': 'Feature', 'properties': {'osmid': 53086044, 'average price/sqft': 801.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2271635, 37.8375117]}}, {'id': '3453', 'type': 'Feature', 'properties': {'osmid': 53086049, 'average price/sqft': 793.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2261352, 37.8351101]}}, {'id': '3454', 'type': 'Feature', 'properties': {'osmid': 53086051, 'average price/sqft': 784.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.224658, 37.8343535]}}, {'id': '3455', 'type': 'Feature', 'properties': {'osmid': 53086054, 'average price/sqft': 779.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2241766, 37.8338444]}}, {'id': '3456', 'type': 'Feature', 'properties': {'osmid': 53086056, 'average price/sqft': 770.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2234582, 37.8332145]}}, {'id': '3457', 'type': 'Feature', 'properties': {'osmid': 53086058, 'average price/sqft': 758.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2211454, 37.8326562]}}, {'id': '3458', 'type': 'Feature', 'properties': {'osmid': 53086067, 'average price/sqft': 773.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2202442, 37.8290336]}}, {'id': '3459', 'type': 'Feature', 'properties': {'osmid': 53086069, 'average price/sqft': 773.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2205342, 37.8286383]}}, {'id': '3460', 'type': 'Feature', 'properties': {'osmid': 53086204, 'average price/sqft': 639.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2702063, 37.842759]}}, {'id': '3461', 'type': 'Feature', 'properties': {'osmid': 53086207, 'average price/sqft': 626.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2723462, 37.8425359]}}, {'id': '3462', 'type': 'Feature', 'properties': {'osmid': 53086209, 'average price/sqft': 616.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2740404, 37.8423711]}}, {'id': '3463', 'type': 'Feature', 'properties': {'osmid': 53086213, 'average price/sqft': 592.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2768271, 37.8421213]}}, {'id': '3464', 'type': 'Feature', 'properties': {'osmid': 53086217, 'average price/sqft': 561.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.278601, 37.8417709]}}, {'id': '3465', 'type': 'Feature', 'properties': {'osmid': 53086219, 'average price/sqft': 543.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2807858, 37.8413374]}}, {'id': '3466', 'type': 'Feature', 'properties': {'osmid': 53086288, 'average price/sqft': 470.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1952925, 37.779683]}}, {'id': '3467', 'type': 'Feature', 'properties': {'osmid': 53086289, 'average price/sqft': 495.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1925407, 37.7815312]}}, {'id': '3468', 'type': 'Feature', 'properties': {'osmid': 53086292, 'average price/sqft': 436.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1985818, 37.7772283]}}, {'id': '3469', 'type': 'Feature', 'properties': {'osmid': 53086309, 'average price/sqft': 719.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.230942, 37.86463]}}, {'id': '3470', 'type': 'Feature', 'properties': {'osmid': 53086318, 'average price/sqft': 780.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2389172, 37.8592417]}}, {'id': '3471', 'type': 'Feature', 'properties': {'osmid': 53086323, 'average price/sqft': 729.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2346968, 37.8611534]}}, {'id': '3472', 'type': 'Feature', 'properties': {'osmid': 53086325, 'average price/sqft': 697.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2329739, 37.8618059]}}, {'id': '3473', 'type': 'Feature', 'properties': {'osmid': 53086417, 'average price/sqft': 704.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.215044, 37.8000711]}}, {'id': '3474', 'type': 'Feature', 'properties': {'osmid': 53086418, 'average price/sqft': 708.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2146686, 37.801017]}}, {'id': '3475', 'type': 'Feature', 'properties': {'osmid': 53086521, 'average price/sqft': 792.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.235283, 37.8394017]}}, {'id': '3476', 'type': 'Feature', 'properties': {'osmid': 53086523, 'average price/sqft': 761.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2331741, 37.8375952]}}, {'id': '3477', 'type': 'Feature', 'properties': {'osmid': 53086530, 'average price/sqft': 339.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.159398, 37.7507046]}}, {'id': '3478', 'type': 'Feature', 'properties': {'osmid': 53086632, 'average price/sqft': 713.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2127052, 37.8029126]}}, {'id': '3479', 'type': 'Feature', 'properties': {'osmid': 53086675, 'average price/sqft': 667.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1958807, 37.7885231]}}, {'id': '3480', 'type': 'Feature', 'properties': {'osmid': 53086676, 'average price/sqft': 673.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1951451, 37.7889024]}}, {'id': '3481', 'type': 'Feature', 'properties': {'osmid': 53086677, 'average price/sqft': 668.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1918737, 37.7912472]}}, {'id': '3482', 'type': 'Feature', 'properties': {'osmid': 53086678, 'average price/sqft': 714.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1882563, 37.793842]}}, {'id': '3483', 'type': 'Feature', 'properties': {'osmid': 53086685, 'average price/sqft': 829.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.219382, 37.8117797]}}, {'id': '3484', 'type': 'Feature', 'properties': {'osmid': 53086894, 'average price/sqft': 582.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2506431, 37.8148537]}}, {'id': '3485', 'type': 'Feature', 'properties': {'osmid': 53086897, 'average price/sqft': 609.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2470409, 37.8184007]}}, {'id': '3486', 'type': 'Feature', 'properties': {'osmid': 53086899, 'average price/sqft': 617.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2462031, 37.8193008]}}, {'id': '3487', 'type': 'Feature', 'properties': {'osmid': 53086903, 'average price/sqft': 641.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2447207, 37.8188327]}}, {'id': '3488', 'type': 'Feature', 'properties': {'osmid': 53086921, 'average price/sqft': 754.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2120847, 37.8114665]}}, {'id': '3489', 'type': 'Feature', 'properties': {'osmid': 53086936, 'average price/sqft': 298.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2335613, 37.7728221]}}, {'id': '3490', 'type': 'Feature', 'properties': {'osmid': 53086937, 'average price/sqft': 299.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2331261, 37.7734331]}}, {'id': '3491', 'type': 'Feature', 'properties': {'osmid': 53086938, 'average price/sqft': 300.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2326774, 37.7740744]}}, {'id': '3492', 'type': 'Feature', 'properties': {'osmid': 53087072, 'average price/sqft': 236.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2431587, 37.7836363]}}, {'id': '3493', 'type': 'Feature', 'properties': {'osmid': 53087079, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2531582, 37.7886601]}}, {'id': '3494', 'type': 'Feature', 'properties': {'osmid': 53087233, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2680469, 37.7927999]}}, {'id': '3495', 'type': 'Feature', 'properties': {'osmid': 53087237, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.26719, 37.7941863]}}, {'id': '3496', 'type': 'Feature', 'properties': {'osmid': 53087242, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2659, 37.7962461]}}, {'id': '3497', 'type': 'Feature', 'properties': {'osmid': 53087243, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2654698, 37.7969414]}}, {'id': '3498', 'type': 'Feature', 'properties': {'osmid': 53087250, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2633221, 37.8003809]}}, {'id': '3499', 'type': 'Feature', 'properties': {'osmid': 53087343, 'average price/sqft': 245.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.243173, 37.787685]}}, {'id': '3500', 'type': 'Feature', 'properties': {'osmid': 53087344, 'average price/sqft': 287.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2410828, 37.7864347]}}, {'id': '3501', 'type': 'Feature', 'properties': {'osmid': 53087356, 'average price/sqft': 374.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2315029, 37.7807381]}}, {'id': '3502', 'type': 'Feature', 'properties': {'osmid': 53087362, 'average price/sqft': 294.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2281245, 37.7786785]}}, {'id': '3503', 'type': 'Feature', 'properties': {'osmid': 53087366, 'average price/sqft': 341.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2245881, 37.7769516]}}, {'id': '3504', 'type': 'Feature', 'properties': {'osmid': 53087368, 'average price/sqft': 386.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2238928, 37.7766153]}}, {'id': '3505', 'type': 'Feature', 'properties': {'osmid': 53087372, 'average price/sqft': 405.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2209133, 37.7751944]}}, {'id': '3506', 'type': 'Feature', 'properties': {'osmid': 53087379, 'average price/sqft': 526.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.216197, 37.7729159]}}, {'id': '3507', 'type': 'Feature', 'properties': {'osmid': 53087381, 'average price/sqft': 528.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2129817, 37.7714067]}}, {'id': '3508', 'type': 'Feature', 'properties': {'osmid': 53087383, 'average price/sqft': 485.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2111471, 37.7705388]}}, {'id': '3509', 'type': 'Feature', 'properties': {'osmid': 53087394, 'average price/sqft': 491.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2060906, 37.7681165]}}, {'id': '3510', 'type': 'Feature', 'properties': {'osmid': 53087395, 'average price/sqft': 382.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2055586, 37.7678719]}}, {'id': '3511', 'type': 'Feature', 'properties': {'osmid': 53087397, 'average price/sqft': 491.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2050218, 37.767701]}}, {'id': '3512', 'type': 'Feature', 'properties': {'osmid': 53087399, 'average price/sqft': 364.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2037072, 37.7670808]}}, {'id': '3513', 'type': 'Feature', 'properties': {'osmid': 53087403, 'average price/sqft': 477.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2003914, 37.7654676]}}, {'id': '3514', 'type': 'Feature', 'properties': {'osmid': 53087407, 'average price/sqft': 495.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.198761, 37.7647455]}}, {'id': '3515', 'type': 'Feature', 'properties': {'osmid': 53087410, 'average price/sqft': 552.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1979794, 37.7643753]}}, {'id': '3516', 'type': 'Feature', 'properties': {'osmid': 53087416, 'average price/sqft': 461.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1943563, 37.7626507]}}, {'id': '3517', 'type': 'Feature', 'properties': {'osmid': 53087417, 'average price/sqft': 412.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1937832, 37.7623777]}}, {'id': '3518', 'type': 'Feature', 'properties': {'osmid': 53087419, 'average price/sqft': 440.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1933231, 37.7621597]}}, {'id': '3519', 'type': 'Feature', 'properties': {'osmid': 53087421, 'average price/sqft': 412.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1929084, 37.7619664]}}, {'id': '3520', 'type': 'Feature', 'properties': {'osmid': 53087431, 'average price/sqft': 417.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1887434, 37.7599424]}}, {'id': '3521', 'type': 'Feature', 'properties': {'osmid': 53087433, 'average price/sqft': 460.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1862627, 37.7588102]}}, {'id': '3522', 'type': 'Feature', 'properties': {'osmid': 53087436, 'average price/sqft': 408.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1848565, 37.7580862]}}, {'id': '3523', 'type': 'Feature', 'properties': {'osmid': 53087444, 'average price/sqft': 383.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1795653, 37.755553]}}, {'id': '3524', 'type': 'Feature', 'properties': {'osmid': 53087446, 'average price/sqft': 534.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1792052, 37.7553888]}}, {'id': '3525', 'type': 'Feature', 'properties': {'osmid': 53087454, 'average price/sqft': 497.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1766576, 37.7525461]}}, {'id': '3526', 'type': 'Feature', 'properties': {'osmid': 53087470, 'average price/sqft': 443.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1741534, 37.7491656]}}, {'id': '3527', 'type': 'Feature', 'properties': {'osmid': 53087484, 'average price/sqft': 432.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1731584, 37.7478234]}}, {'id': '3528', 'type': 'Feature', 'properties': {'osmid': 53087511, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1658996, 37.7380429]}}, {'id': '3529', 'type': 'Feature', 'properties': {'osmid': 53087516, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1642179, 37.7359208]}}, {'id': '3530', 'type': 'Feature', 'properties': {'osmid': 53087927, 'average price/sqft': 621.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1982643, 37.8383312]}}, {'id': '3531', 'type': 'Feature', 'properties': {'osmid': 53087956, 'average price/sqft': 669.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2505511, 37.8052205]}}, {'id': '3532', 'type': 'Feature', 'properties': {'osmid': 53087958, 'average price/sqft': 663.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2496113, 37.8048979]}}, {'id': '3533', 'type': 'Feature', 'properties': {'osmid': 53087959, 'average price/sqft': 658.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2478219, 37.8043151]}}, {'id': '3534', 'type': 'Feature', 'properties': {'osmid': 53087960, 'average price/sqft': 654.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2466557, 37.8039247]}}, {'id': '3535', 'type': 'Feature', 'properties': {'osmid': 53087963, 'average price/sqft': 656.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.244564, 37.8032261]}}, {'id': '3536', 'type': 'Feature', 'properties': {'osmid': 53087966, 'average price/sqft': 660.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2435921, 37.8029141]}}, {'id': '3537', 'type': 'Feature', 'properties': {'osmid': 53087968, 'average price/sqft': 658.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2427834, 37.8026392]}}, {'id': '3538', 'type': 'Feature', 'properties': {'osmid': 53088062, 'average price/sqft': 354.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2283833, 37.7814804]}}, {'id': '3539', 'type': 'Feature', 'properties': {'osmid': 53088142, 'average price/sqft': 666.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1855516, 37.7902662]}}, {'id': '3540', 'type': 'Feature', 'properties': {'osmid': 53088144, 'average price/sqft': 671.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1850271, 37.789598]}}, {'id': '3541', 'type': 'Feature', 'properties': {'osmid': 53088145, 'average price/sqft': 667.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1845347, 37.7877144]}}, {'id': '3542', 'type': 'Feature', 'properties': {'osmid': 53088147, 'average price/sqft': 662.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1840111, 37.7866127]}}, {'id': '3543', 'type': 'Feature', 'properties': {'osmid': 53088150, 'average price/sqft': 652.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1826691, 37.7846164]}}, {'id': '3544', 'type': 'Feature', 'properties': {'osmid': 53088154, 'average price/sqft': 674.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1874015, 37.791224]}}, {'id': '3545', 'type': 'Feature', 'properties': {'osmid': 53088156, 'average price/sqft': 672.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1865005, 37.7908351]}}, {'id': '3546', 'type': 'Feature', 'properties': {'osmid': 53088158, 'average price/sqft': 665.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1854656, 37.7903553]}}, {'id': '3547', 'type': 'Feature', 'properties': {'osmid': 53088195, 'average price/sqft': 439.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1678805, 37.7740519]}}, {'id': '3548', 'type': 'Feature', 'properties': {'osmid': 53088198, 'average price/sqft': 447.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1660969, 37.775074]}}, {'id': '3549', 'type': 'Feature', 'properties': {'osmid': 53088302, 'average price/sqft': 877.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2544605, 37.8490791]}}, {'id': '3550', 'type': 'Feature', 'properties': {'osmid': 53088305, 'average price/sqft': 466.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2842386, 37.8447602]}}, {'id': '3551', 'type': 'Feature', 'properties': {'osmid': 53088307, 'average price/sqft': 494.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2860566, 37.8442589]}}, {'id': '3552', 'type': 'Feature', 'properties': {'osmid': 53088309, 'average price/sqft': 516.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2868994, 37.8440298]}}, {'id': '3553', 'type': 'Feature', 'properties': {'osmid': 53088317, 'average price/sqft': 518.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2791721, 37.8457234]}}, {'id': '3554', 'type': 'Feature', 'properties': {'osmid': 53088321, 'average price/sqft': 560.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2773937, 37.8461321]}}, {'id': '3555', 'type': 'Feature', 'properties': {'osmid': 53088332, 'average price/sqft': 675.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2687337, 37.8472596]}}, {'id': '3556', 'type': 'Feature', 'properties': {'osmid': 53088335, 'average price/sqft': 678.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2688072, 37.8476115]}}, {'id': '3557', 'type': 'Feature', 'properties': {'osmid': 53088336, 'average price/sqft': 687.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2655256, 37.8477989]}}, {'id': '3558', 'type': 'Feature', 'properties': {'osmid': 53088338, 'average price/sqft': 736.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2624846, 37.8481898]}}, {'id': '3559', 'type': 'Feature', 'properties': {'osmid': 53088342, 'average price/sqft': 781.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2598306, 37.848097]}}, {'id': '3560', 'type': 'Feature', 'properties': {'osmid': 53088344, 'average price/sqft': 765.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.260833, 37.8479684]}}, {'id': '3561', 'type': 'Feature', 'properties': {'osmid': 53088345, 'average price/sqft': 738.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2623827, 37.8477651]}}, {'id': '3562', 'type': 'Feature', 'properties': {'osmid': 53088354, 'average price/sqft': 448.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.218366, 37.7842139]}}, {'id': '3563', 'type': 'Feature', 'properties': {'osmid': 53088356, 'average price/sqft': 446.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2175433, 37.7837165]}}, {'id': '3564', 'type': 'Feature', 'properties': {'osmid': 53088358, 'average price/sqft': 452.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2166726, 37.783199]}}, {'id': '3565', 'type': 'Feature', 'properties': {'osmid': 53088472, 'average price/sqft': 659.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.246255, 37.8142538]}}, {'id': '3566', 'type': 'Feature', 'properties': {'osmid': 53088474, 'average price/sqft': 668.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2452725, 37.8135946]}}, {'id': '3567', 'type': 'Feature', 'properties': {'osmid': 53088476, 'average price/sqft': 674.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.244602, 37.8131348]}}, {'id': '3568', 'type': 'Feature', 'properties': {'osmid': 53088478, 'average price/sqft': 678.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2432287, 37.8121834]}}, {'id': '3569', 'type': 'Feature', 'properties': {'osmid': 53088479, 'average price/sqft': 678.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2429792, 37.8120117]}}, {'id': '3570', 'type': 'Feature', 'properties': {'osmid': 53088482, 'average price/sqft': 683.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2422216, 37.8115556]}}, {'id': '3571', 'type': 'Feature', 'properties': {'osmid': 53088483, 'average price/sqft': 689.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2394891, 37.8104535]}}, {'id': '3572', 'type': 'Feature', 'properties': {'osmid': 53088485, 'average price/sqft': 717.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2348941, 37.8108383]}}, {'id': '3573', 'type': 'Feature', 'properties': {'osmid': 53088488, 'average price/sqft': 724.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2344032, 37.8112367]}}, {'id': '3574', 'type': 'Feature', 'properties': {'osmid': 53088494, 'average price/sqft': 758.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2262025, 37.8131608]}}, {'id': '3575', 'type': 'Feature', 'properties': {'osmid': 53088495, 'average price/sqft': 751.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2252329, 37.8143464]}}, {'id': '3576', 'type': 'Feature', 'properties': {'osmid': 53088521, 'average price/sqft': 570.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.220852, 37.860283]}}, {'id': '3577', 'type': 'Feature', 'properties': {'osmid': 53088542, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2265983, 37.8503528]}}, {'id': '3578', 'type': 'Feature', 'properties': {'osmid': 53088562, 'average price/sqft': 567.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2223643, 37.8574558]}}, {'id': '3579', 'type': 'Feature', 'properties': {'osmid': 53088568, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2156955, 37.8561954]}}, {'id': '3580', 'type': 'Feature', 'properties': {'osmid': 53088570, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.21418, 37.8561298]}}, {'id': '3581', 'type': 'Feature', 'properties': {'osmid': 53088618, 'average price/sqft': 391.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1756961, 37.7640561]}}, {'id': '3582', 'type': 'Feature', 'properties': {'osmid': 53088620, 'average price/sqft': 405.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1717291, 37.7666176]}}, {'id': '3583', 'type': 'Feature', 'properties': {'osmid': 53088622, 'average price/sqft': 414.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1700258, 37.7677306]}}, {'id': '3584', 'type': 'Feature', 'properties': {'osmid': 53088728, 'average price/sqft': 433.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1521256, 37.7568728]}}, {'id': '3585', 'type': 'Feature', 'properties': {'osmid': 53088731, 'average price/sqft': 576.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2027841, 37.8491095]}}, {'id': '3586', 'type': 'Feature', 'properties': {'osmid': 53088736, 'average price/sqft': 641.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2287568, 37.8624513]}}, {'id': '3587', 'type': 'Feature', 'properties': {'osmid': 53088875, 'average price/sqft': 665.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2697569, 37.808941]}}, {'id': '3588', 'type': 'Feature', 'properties': {'osmid': 53089018, 'average price/sqft': 659.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.204021, 37.8031613]}}, {'id': '3589', 'type': 'Feature', 'properties': {'osmid': 53089020, 'average price/sqft': 646.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2029372, 37.8024802]}}, {'id': '3590', 'type': 'Feature', 'properties': {'osmid': 53089024, 'average price/sqft': 644.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2026676, 37.802744]}}, {'id': '3591', 'type': 'Feature', 'properties': {'osmid': 53089131, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2237615, 37.7655957]}}, {'id': '3592', 'type': 'Feature', 'properties': {'osmid': 53089135, 'average price/sqft': 527.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.21559, 37.7718111]}}, {'id': '3593', 'type': 'Feature', 'properties': {'osmid': 53089136, 'average price/sqft': 501.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2129737, 37.7737575]}}, {'id': '3594', 'type': 'Feature', 'properties': {'osmid': 53089137, 'average price/sqft': 488.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2108215, 37.7755596]}}, {'id': '3595', 'type': 'Feature', 'properties': {'osmid': 53089141, 'average price/sqft': 464.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2064236, 37.7802055]}}, {'id': '3596', 'type': 'Feature', 'properties': {'osmid': 53089144, 'average price/sqft': 460.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2054925, 37.7811972]}}, {'id': '3597', 'type': 'Feature', 'properties': {'osmid': 53089148, 'average price/sqft': 463.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2047067, 37.7820143]}}, {'id': '3598', 'type': 'Feature', 'properties': {'osmid': 53089150, 'average price/sqft': 464.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2041556, 37.782526]}}, {'id': '3599', 'type': 'Feature', 'properties': {'osmid': 53089151, 'average price/sqft': 467.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2033607, 37.7829458]}}, {'id': '3600', 'type': 'Feature', 'properties': {'osmid': 53089153, 'average price/sqft': 478.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2025667, 37.7833563]}}, {'id': '3601', 'type': 'Feature', 'properties': {'osmid': 53089155, 'average price/sqft': 493.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2018094, 37.7837515]}}, {'id': '3602', 'type': 'Feature', 'properties': {'osmid': 53089157, 'average price/sqft': 544.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1993619, 37.7850113]}}, {'id': '3603', 'type': 'Feature', 'properties': {'osmid': 53089158, 'average price/sqft': 564.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1984466, 37.7854808]}}, {'id': '3604', 'type': 'Feature', 'properties': {'osmid': 53089159, 'average price/sqft': 604.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1972739, 37.7860809]}}, {'id': '3605', 'type': 'Feature', 'properties': {'osmid': 53089165, 'average price/sqft': 660.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.194827, 37.7873467]}}, {'id': '3606', 'type': 'Feature', 'properties': {'osmid': 53089166, 'average price/sqft': 670.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1939155, 37.7877862]}}, {'id': '3607', 'type': 'Feature', 'properties': {'osmid': 53089168, 'average price/sqft': 676.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1926797, 37.7885111]}}, {'id': '3608', 'type': 'Feature', 'properties': {'osmid': 53089170, 'average price/sqft': 679.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1914693, 37.789128]}}, {'id': '3609', 'type': 'Feature', 'properties': {'osmid': 53089172, 'average price/sqft': 679.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1912936, 37.7892159]}}, {'id': '3610', 'type': 'Feature', 'properties': {'osmid': 53089174, 'average price/sqft': 677.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1902247, 37.7897819]}}, {'id': '3611', 'type': 'Feature', 'properties': {'osmid': 53089176, 'average price/sqft': 680.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1896924, 37.7900521]}}, {'id': '3612', 'type': 'Feature', 'properties': {'osmid': 53089178, 'average price/sqft': 680.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1886664, 37.7905703]}}, {'id': '3613', 'type': 'Feature', 'properties': {'osmid': 53089314, 'average price/sqft': 738.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2287877, 37.8028628]}}, {'id': '3614', 'type': 'Feature', 'properties': {'osmid': 53089395, 'average price/sqft': 699.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2084375, 37.8053492]}}, {'id': '3615', 'type': 'Feature', 'properties': {'osmid': 53089648, 'average price/sqft': 647.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1873363, 37.784794]}}, {'id': '3616', 'type': 'Feature', 'properties': {'osmid': 53089651, 'average price/sqft': 656.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.187177, 37.785327]}}, {'id': '3617', 'type': 'Feature', 'properties': {'osmid': 53089652, 'average price/sqft': 657.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1866867, 37.7859175]}}, {'id': '3618', 'type': 'Feature', 'properties': {'osmid': 53089733, 'average price/sqft': 355.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1598751, 37.7477154]}}, {'id': '3619', 'type': 'Feature', 'properties': {'osmid': 53089735, 'average price/sqft': 357.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1590393, 37.7464669]}}, {'id': '3620', 'type': 'Feature', 'properties': {'osmid': 53089789, 'average price/sqft': 317.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2273363, 37.7767748]}}, {'id': '3621', 'type': 'Feature', 'properties': {'osmid': 53089791, 'average price/sqft': 315.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2270616, 37.7771824]}}, {'id': '3622', 'type': 'Feature', 'properties': {'osmid': 53090194, 'average price/sqft': 633.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2729441, 37.8452711]}}, {'id': '3623', 'type': 'Feature', 'properties': {'osmid': 53090195, 'average price/sqft': 631.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2730914, 37.844857]}}, {'id': '3624', 'type': 'Feature', 'properties': {'osmid': 53090196, 'average price/sqft': 624.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2734576, 37.8438909]}}, {'id': '3625', 'type': 'Feature', 'properties': {'osmid': 53090197, 'average price/sqft': 620.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2737536, 37.8431284]}}, {'id': '3626', 'type': 'Feature', 'properties': {'osmid': 53090198, 'average price/sqft': 614.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2751645, 37.8394094]}}, {'id': '3627', 'type': 'Feature', 'properties': {'osmid': 53090199, 'average price/sqft': 613.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2752879, 37.8390777]}}, {'id': '3628', 'type': 'Feature', 'properties': {'osmid': 53090200, 'average price/sqft': 610.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2754408, 37.8386748]}}, {'id': '3629', 'type': 'Feature', 'properties': {'osmid': 53090201, 'average price/sqft': 608.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.27564, 37.8381463]}}, {'id': '3630', 'type': 'Feature', 'properties': {'osmid': 53090202, 'average price/sqft': 605.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2757921, 37.837756]}}, {'id': '3631', 'type': 'Feature', 'properties': {'osmid': 53090203, 'average price/sqft': 602.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2760193, 37.8371508]}}, {'id': '3632', 'type': 'Feature', 'properties': {'osmid': 53090224, 'average price/sqft': 413.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2810069, 37.8237694]}}, {'id': '3633', 'type': 'Feature', 'properties': {'osmid': 53090227, 'average price/sqft': 427.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2816425, 37.8220207]}}, {'id': '3634', 'type': 'Feature', 'properties': {'osmid': 53090229, 'average price/sqft': 457.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2822724, 37.8202807]}}, {'id': '3635', 'type': 'Feature', 'properties': {'osmid': 53090231, 'average price/sqft': 481.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2828348, 37.8187254]}}, {'id': '3636', 'type': 'Feature', 'properties': {'osmid': 53090235, 'average price/sqft': 518.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2843925, 37.8144197]}}, {'id': '3637', 'type': 'Feature', 'properties': {'osmid': 53090237, 'average price/sqft': 534.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2847947, 37.8133066]}}, {'id': '3638', 'type': 'Feature', 'properties': {'osmid': 53090239, 'average price/sqft': 554.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2856125, 37.81106]}}, {'id': '3639', 'type': 'Feature', 'properties': {'osmid': 53090248, 'average price/sqft': 519.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2881861, 37.8039333]}}, {'id': '3640', 'type': 'Feature', 'properties': {'osmid': 53090250, 'average price/sqft': 501.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2878587, 37.8048441]}}, {'id': '3641', 'type': 'Feature', 'properties': {'osmid': 53090252, 'average price/sqft': 577.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2866762, 37.8081074]}}, {'id': '3642', 'type': 'Feature', 'properties': {'osmid': 53090362, 'average price/sqft': 543.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2851774, 37.802662]}}, {'id': '3643', 'type': 'Feature', 'properties': {'osmid': 53090364, 'average price/sqft': 548.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2849708, 37.8032363]}}, {'id': '3644', 'type': 'Feature', 'properties': {'osmid': 53090367, 'average price/sqft': 554.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2846462, 37.8041084]}}, {'id': '3645', 'type': 'Feature', 'properties': {'osmid': 53090368, 'average price/sqft': 570.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2834764, 37.807377]}}, {'id': '3646', 'type': 'Feature', 'properties': {'osmid': 53090370, 'average price/sqft': 561.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.282425, 37.8103267]}}, {'id': '3647', 'type': 'Feature', 'properties': {'osmid': 53090374, 'average price/sqft': 528.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2811509, 37.8138019]}}, {'id': '3648', 'type': 'Feature', 'properties': {'osmid': 53090377, 'average price/sqft': 491.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2796519, 37.8180085]}}, {'id': '3649', 'type': 'Feature', 'properties': {'osmid': 53090379, 'average price/sqft': 447.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2790863, 37.8195545]}}, {'id': '3650', 'type': 'Feature', 'properties': {'osmid': 53090381, 'average price/sqft': 429.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2784534, 37.8212938]}}, {'id': '3651', 'type': 'Feature', 'properties': {'osmid': 53090382, 'average price/sqft': 410.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2778277, 37.8230391]}}, {'id': '3652', 'type': 'Feature', 'properties': {'osmid': 53090459, 'average price/sqft': 339.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2386372, 37.7837909]}}, {'id': '3653', 'type': 'Feature', 'properties': {'osmid': 53090466, 'average price/sqft': 294.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2362609, 37.7755757]}}, {'id': '3654', 'type': 'Feature', 'properties': {'osmid': 53090547, 'average price/sqft': 583.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.158042, 37.7679196]}}, {'id': '3655', 'type': 'Feature', 'properties': {'osmid': 53090548, 'average price/sqft': 592.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1569233, 37.76951]}}, {'id': '3656', 'type': 'Feature', 'properties': {'osmid': 53090551, 'average price/sqft': 598.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1555747, 37.7703925]}}, {'id': '3657', 'type': 'Feature', 'properties': {'osmid': 53090636, 'average price/sqft': 411.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1943617, 37.7659463]}}, {'id': '3658', 'type': 'Feature', 'properties': {'osmid': 53090640, 'average price/sqft': 407.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1964935, 37.7672461]}}, {'id': '3659', 'type': 'Feature', 'properties': {'osmid': 53090642, 'average price/sqft': 413.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1947565, 37.7656748]}}, {'id': '3660', 'type': 'Feature', 'properties': {'osmid': 53090694, 'average price/sqft': 906.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2524082, 37.8503512]}}, {'id': '3661', 'type': 'Feature', 'properties': {'osmid': 53090697, 'average price/sqft': 924.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2521598, 37.8481327]}}, {'id': '3662', 'type': 'Feature', 'properties': {'osmid': 53090699, 'average price/sqft': 932.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2520565, 37.8471268]}}, {'id': '3663', 'type': 'Feature', 'properties': {'osmid': 53090700, 'average price/sqft': 940.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2519639, 37.84619]}}, {'id': '3664', 'type': 'Feature', 'properties': {'osmid': 53090701, 'average price/sqft': 940.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2518515, 37.8451001]}}, {'id': '3665', 'type': 'Feature', 'properties': {'osmid': 53090703, 'average price/sqft': 939.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2517435, 37.8440202]}}, {'id': '3666', 'type': 'Feature', 'properties': {'osmid': 53090705, 'average price/sqft': 944.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2516729, 37.8432822]}}, {'id': '3667', 'type': 'Feature', 'properties': {'osmid': 53090707, 'average price/sqft': 952.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2515152, 37.8417391]}}, {'id': '3668', 'type': 'Feature', 'properties': {'osmid': 53090709, 'average price/sqft': 950.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2513559, 37.84008]}}, {'id': '3669', 'type': 'Feature', 'properties': {'osmid': 53090710, 'average price/sqft': 946.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2513164, 37.8381244]}}, {'id': '3670', 'type': 'Feature', 'properties': {'osmid': 53090793, 'average price/sqft': 726.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2111465, 37.8258713]}}, {'id': '3671', 'type': 'Feature', 'properties': {'osmid': 53090794, 'average price/sqft': 752.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2095469, 37.8238452]}}, {'id': '3672', 'type': 'Feature', 'properties': {'osmid': 53090797, 'average price/sqft': 767.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2090839, 37.8232883]}}, {'id': '3673', 'type': 'Feature', 'properties': {'osmid': 53090848, 'average price/sqft': 430.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1765944, 37.7463526]}}, {'id': '3674', 'type': 'Feature', 'properties': {'osmid': 53090849, 'average price/sqft': 436.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1748401, 37.7470489]}}, {'id': '3675', 'type': 'Feature', 'properties': {'osmid': 53090909, 'average price/sqft': 621.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1926151, 37.8252071]}}, {'id': '3676', 'type': 'Feature', 'properties': {'osmid': 53090913, 'average price/sqft': 609.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1898028, 37.8258336]}}, {'id': '3677', 'type': 'Feature', 'properties': {'osmid': 53091064, 'average price/sqft': 744.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.231755, 37.8045117]}}, {'id': '3678', 'type': 'Feature', 'properties': {'osmid': 53091067, 'average price/sqft': 642.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1858718, 37.793801]}}, {'id': '3679', 'type': 'Feature', 'properties': {'osmid': 53091068, 'average price/sqft': 641.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1868779, 37.7937065]}}, {'id': '3680', 'type': 'Feature', 'properties': {'osmid': 53091071, 'average price/sqft': 930.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2501938, 37.8512237]}}, {'id': '3681', 'type': 'Feature', 'properties': {'osmid': 53091106, 'average price/sqft': 404.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1940356, 37.7699968]}}, {'id': '3682', 'type': 'Feature', 'properties': {'osmid': 53091107, 'average price/sqft': 408.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1933981, 37.7694206]}}, {'id': '3683', 'type': 'Feature', 'properties': {'osmid': 53091168, 'average price/sqft': 589.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2144158, 37.795538]}}, {'id': '3684', 'type': 'Feature', 'properties': {'osmid': 53091171, 'average price/sqft': 577.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2134362, 37.7951463]}}, {'id': '3685', 'type': 'Feature', 'properties': {'osmid': 53091172, 'average price/sqft': 571.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.212527, 37.7947433]}}, {'id': '3686', 'type': 'Feature', 'properties': {'osmid': 53091173, 'average price/sqft': 561.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2112768, 37.7941797]}}, {'id': '3687', 'type': 'Feature', 'properties': {'osmid': 53091178, 'average price/sqft': 554.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.208628, 37.7930095]}}, {'id': '3688', 'type': 'Feature', 'properties': {'osmid': 53091179, 'average price/sqft': 551.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.207822, 37.792658]}}, {'id': '3689', 'type': 'Feature', 'properties': {'osmid': 53091188, 'average price/sqft': 545.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2067608, 37.7920496]}}, {'id': '3690', 'type': 'Feature', 'properties': {'osmid': 53091190, 'average price/sqft': 543.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2061859, 37.7915083]}}, {'id': '3691', 'type': 'Feature', 'properties': {'osmid': 53091192, 'average price/sqft': 542.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2054825, 37.790868]}}, {'id': '3692', 'type': 'Feature', 'properties': {'osmid': 53091208, 'average price/sqft': 574.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2195681, 37.7957096]}}, {'id': '3693', 'type': 'Feature', 'properties': {'osmid': 53091331, 'average price/sqft': 399.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2111007, 37.8490754]}}, {'id': '3694', 'type': 'Feature', 'properties': {'osmid': 53091421, 'average price/sqft': 470.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.143634, 37.7485785]}}, {'id': '3695', 'type': 'Feature', 'properties': {'osmid': 53091483, 'average price/sqft': 781.0, 'observation count': 31.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2600589, 37.8370256]}}, {'id': '3696', 'type': 'Feature', 'properties': {'osmid': 53091486, 'average price/sqft': 881.0, 'observation count': 31.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2558706, 37.8422634]}}, {'id': '3697', 'type': 'Feature', 'properties': {'osmid': 53091492, 'average price/sqft': 904.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2544903, 37.8438209]}}, {'id': '3698', 'type': 'Feature', 'properties': {'osmid': 53091495, 'average price/sqft': 935.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2466475, 37.8474864]}}, {'id': '3699', 'type': 'Feature', 'properties': {'osmid': 53091497, 'average price/sqft': 940.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2457431, 37.8479912]}}, {'id': '3700', 'type': 'Feature', 'properties': {'osmid': 53091554, 'average price/sqft': 939.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2436477, 37.8503929]}}, {'id': '3701', 'type': 'Feature', 'properties': {'osmid': 53091556, 'average price/sqft': 941.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2438338, 37.8513796]}}, {'id': '3702', 'type': 'Feature', 'properties': {'osmid': 53091582, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2676658, 37.8123945]}}, {'id': '3703', 'type': 'Feature', 'properties': {'osmid': 53091594, 'average price/sqft': 718.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2361792, 37.8167265]}}, {'id': '3704', 'type': 'Feature', 'properties': {'osmid': 53091669, 'average price/sqft': 594.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1784677, 37.7903199]}}, {'id': '3705', 'type': 'Feature', 'properties': {'osmid': 53091671, 'average price/sqft': 593.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.177265, 37.7900812]}}, {'id': '3706', 'type': 'Feature', 'properties': {'osmid': 53091717, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2625976, 37.7992578]}}, {'id': '3707', 'type': 'Feature', 'properties': {'osmid': 53091719, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2621085, 37.799891]}}, {'id': '3708', 'type': 'Feature', 'properties': {'osmid': 53091729, 'average price/sqft': 492.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1863741, 37.7486333]}}, {'id': '3709', 'type': 'Feature', 'properties': {'osmid': 53091772, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1809385, 37.7286539]}}, {'id': '3710', 'type': 'Feature', 'properties': {'osmid': 53091776, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1792405, 37.7282424]}}, {'id': '3711', 'type': 'Feature', 'properties': {'osmid': 53091777, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1785524, 37.7281569]}}, {'id': '3712', 'type': 'Feature', 'properties': {'osmid': 53091778, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1775353, 37.7280306]}}, {'id': '3713', 'type': 'Feature', 'properties': {'osmid': 53091799, 'average price/sqft': 622.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1985155, 37.7982262]}}, {'id': '3714', 'type': 'Feature', 'properties': {'osmid': 53091953, 'average price/sqft': 589.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2874663, 37.8457718]}}, {'id': '3715', 'type': 'Feature', 'properties': {'osmid': 53091971, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2548319, 37.7910396]}}, {'id': '3716', 'type': 'Feature', 'properties': {'osmid': 53091973, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2541732, 37.7915448]}}, {'id': '3717', 'type': 'Feature', 'properties': {'osmid': 53091975, 'average price/sqft': 588.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2523172, 37.7928802]}}, {'id': '3718', 'type': 'Feature', 'properties': {'osmid': 53091979, 'average price/sqft': 639.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2485834, 37.7955227]}}, {'id': '3719', 'type': 'Feature', 'properties': {'osmid': 53091984, 'average price/sqft': 650.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2413833, 37.8005452]}}, {'id': '3720', 'type': 'Feature', 'properties': {'osmid': 53092071, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1775688, 37.7277711]}}, {'id': '3721', 'type': 'Feature', 'properties': {'osmid': 53092075, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1783099, 37.7317782]}}, {'id': '3722', 'type': 'Feature', 'properties': {'osmid': 53092124, 'average price/sqft': 750.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1969489, 37.8256294]}}, {'id': '3723', 'type': 'Feature', 'properties': {'osmid': 53092132, 'average price/sqft': 659.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1992196, 37.8284745]}}, {'id': '3724', 'type': 'Feature', 'properties': {'osmid': 53092228, 'average price/sqft': 682.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2170769, 37.8229461]}}, {'id': '3725', 'type': 'Feature', 'properties': {'osmid': 53092231, 'average price/sqft': 727.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.212099, 37.8252603]}}, {'id': '3726', 'type': 'Feature', 'properties': {'osmid': 53092233, 'average price/sqft': 726.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2105547, 37.8262253]}}, {'id': '3727', 'type': 'Feature', 'properties': {'osmid': 53092234, 'average price/sqft': 723.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2088245, 37.8271049]}}, {'id': '3728', 'type': 'Feature', 'properties': {'osmid': 53092243, 'average price/sqft': 718.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.214627, 37.8255868]}}, {'id': '3729', 'type': 'Feature', 'properties': {'osmid': 53092247, 'average price/sqft': 723.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2132993, 37.8258503]}}, {'id': '3730', 'type': 'Feature', 'properties': {'osmid': 53092293, 'average price/sqft': 436.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2695613, 37.8225268]}}, {'id': '3731', 'type': 'Feature', 'properties': {'osmid': 53092295, 'average price/sqft': 448.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2702298, 37.822685]}}, {'id': '3732', 'type': 'Feature', 'properties': {'osmid': 53092298, 'average price/sqft': 564.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2664836, 37.8216633]}}, {'id': '3733', 'type': 'Feature', 'properties': {'osmid': 53092380, 'average price/sqft': 399.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.150693, 37.7554509]}}, {'id': '3734', 'type': 'Feature', 'properties': {'osmid': 53092382, 'average price/sqft': 402.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1507281, 37.7558342]}}, {'id': '3735', 'type': 'Feature', 'properties': {'osmid': 53092406, 'average price/sqft': 788.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2322903, 37.8440053]}}, {'id': '3736', 'type': 'Feature', 'properties': {'osmid': 53092423, 'average price/sqft': 800.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2385665, 37.8486505]}}, {'id': '3737', 'type': 'Feature', 'properties': {'osmid': 53092485, 'average price/sqft': 786.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.235576, 37.8460662]}}, {'id': '3738', 'type': 'Feature', 'properties': {'osmid': 53092502, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1852812, 37.7406929]}}, {'id': '3739', 'type': 'Feature', 'properties': {'osmid': 53092546, 'average price/sqft': 598.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1914051, 37.8363915]}}, {'id': '3740', 'type': 'Feature', 'properties': {'osmid': 53092548, 'average price/sqft': 596.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1916712, 37.8359237]}}, {'id': '3741', 'type': 'Feature', 'properties': {'osmid': 53092561, 'average price/sqft': 602.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.276296, 37.8392668]}}, {'id': '3742', 'type': 'Feature', 'properties': {'osmid': 53092565, 'average price/sqft': 567.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.279942, 37.8387061]}}, {'id': '3743', 'type': 'Feature', 'properties': {'osmid': 53092567, 'average price/sqft': 534.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2821714, 37.8383427]}}, {'id': '3744', 'type': 'Feature', 'properties': {'osmid': 53092569, 'average price/sqft': 407.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2822399, 37.8385514]}}, {'id': '3745', 'type': 'Feature', 'properties': {'osmid': 53092571, 'average price/sqft': 437.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2841351, 37.8381792]}}, {'id': '3746', 'type': 'Feature', 'properties': {'osmid': 53092573, 'average price/sqft': 439.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2849848, 37.8380152]}}, {'id': '3747', 'type': 'Feature', 'properties': {'osmid': 53092580, 'average price/sqft': 727.0, 'observation count': 36.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2619191, 37.8402097]}}, {'id': '3748', 'type': 'Feature', 'properties': {'osmid': 53092586, 'average price/sqft': 683.0, 'observation count': 34.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.26454, 37.8404524]}}, {'id': '3749', 'type': 'Feature', 'properties': {'osmid': 53092588, 'average price/sqft': 670.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2672245, 37.8401146]}}, {'id': '3750', 'type': 'Feature', 'properties': {'osmid': 53092590, 'average price/sqft': 650.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2695878, 37.8398154]}}, {'id': '3751', 'type': 'Feature', 'properties': {'osmid': 53092592, 'average price/sqft': 634.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2717242, 37.8395353]}}, {'id': '3752', 'type': 'Feature', 'properties': {'osmid': 53092596, 'average price/sqft': 440.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2119869, 37.7870602]}}, {'id': '3753', 'type': 'Feature', 'properties': {'osmid': 53092597, 'average price/sqft': 448.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2106726, 37.785855]}}, {'id': '3754', 'type': 'Feature', 'properties': {'osmid': 53092599, 'average price/sqft': 451.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.209729, 37.7850086]}}, {'id': '3755', 'type': 'Feature', 'properties': {'osmid': 53092651, 'average price/sqft': 584.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2537177, 37.8096915]}}, {'id': '3756', 'type': 'Feature', 'properties': {'osmid': 53092653, 'average price/sqft': 642.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.253835, 37.8087756]}}, {'id': '3757', 'type': 'Feature', 'properties': {'osmid': 53092655, 'average price/sqft': 651.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2539691, 37.8077253]}}, {'id': '3758', 'type': 'Feature', 'properties': {'osmid': 53092672, 'average price/sqft': 379.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1669659, 37.7433705]}}, {'id': '3759', 'type': 'Feature', 'properties': {'osmid': 53092677, 'average price/sqft': 374.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1644213, 37.7440369]}}, {'id': '3760', 'type': 'Feature', 'properties': {'osmid': 53092679, 'average price/sqft': 371.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1619877, 37.7446763]}}, {'id': '3761', 'type': 'Feature', 'properties': {'osmid': 53092681, 'average price/sqft': 362.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1608172, 37.7449856]}}, {'id': '3762', 'type': 'Feature', 'properties': {'osmid': 53092684, 'average price/sqft': 355.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1586128, 37.7452176]}}, {'id': '3763', 'type': 'Feature', 'properties': {'osmid': 53092685, 'average price/sqft': 353.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1561555, 37.7459042]}}, {'id': '3764', 'type': 'Feature', 'properties': {'osmid': 53092687, 'average price/sqft': 371.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1753094, 37.7396116]}}, {'id': '3765', 'type': 'Feature', 'properties': {'osmid': 53092690, 'average price/sqft': 371.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1734068, 37.7405099]}}, {'id': '3766', 'type': 'Feature', 'properties': {'osmid': 53092692, 'average price/sqft': 373.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1725253, 37.7409281]}}, {'id': '3767', 'type': 'Feature', 'properties': {'osmid': 53092693, 'average price/sqft': 368.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1716182, 37.741347]}}, {'id': '3768', 'type': 'Feature', 'properties': {'osmid': 53092698, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1801475, 37.7368619]}}, {'id': '3769', 'type': 'Feature', 'properties': {'osmid': 53092699, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1796771, 37.7372255]}}, {'id': '3770', 'type': 'Feature', 'properties': {'osmid': 53092794, 'average price/sqft': 621.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2877019, 37.846494]}}, {'id': '3771', 'type': 'Feature', 'properties': {'osmid': 53093001, 'average price/sqft': 267.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2439245, 37.7868914]}}, {'id': '3772', 'type': 'Feature', 'properties': {'osmid': 53093059, 'average price/sqft': 604.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2551575, 37.8221014]}}, {'id': '3773', 'type': 'Feature', 'properties': {'osmid': 53093183, 'average price/sqft': 422.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1696123, 37.7743793]}}, {'id': '3774', 'type': 'Feature', 'properties': {'osmid': 53093190, 'average price/sqft': 517.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1635686, 37.7693319]}}, {'id': '3775', 'type': 'Feature', 'properties': {'osmid': 53093196, 'average price/sqft': 527.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1600523, 37.7668552]}}, {'id': '3776', 'type': 'Feature', 'properties': {'osmid': 53093206, 'average price/sqft': 707.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2259934, 37.8010111]}}, {'id': '3777', 'type': 'Feature', 'properties': {'osmid': 53093208, 'average price/sqft': 745.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2256272, 37.8022808]}}, {'id': '3778', 'type': 'Feature', 'properties': {'osmid': 53093210, 'average price/sqft': 775.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2252546, 37.8035524]}}, {'id': '3779', 'type': 'Feature', 'properties': {'osmid': 53093215, 'average price/sqft': 780.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2254726, 37.8035906]}}, {'id': '3780', 'type': 'Feature', 'properties': {'osmid': 53093283, 'average price/sqft': 692.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2097229, 37.8116287]}}, {'id': '3781', 'type': 'Feature', 'properties': {'osmid': 53093316, 'average price/sqft': 607.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2051893, 37.7946979]}}, {'id': '3782', 'type': 'Feature', 'properties': {'osmid': 53093322, 'average price/sqft': 593.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2024846, 37.7927556]}}, {'id': '3783', 'type': 'Feature', 'properties': {'osmid': 53093325, 'average price/sqft': 645.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2097375, 37.7975287]}}, {'id': '3784', 'type': 'Feature', 'properties': {'osmid': 53093409, 'average price/sqft': 481.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1793816, 37.8050179]}}, {'id': '3785', 'type': 'Feature', 'properties': {'osmid': 53093412, 'average price/sqft': 460.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1748741, 37.8011369]}}, {'id': '3786', 'type': 'Feature', 'properties': {'osmid': 53093414, 'average price/sqft': 522.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1721893, 37.7998083]}}, {'id': '3787', 'type': 'Feature', 'properties': {'osmid': 53093421, 'average price/sqft': 643.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1647536, 37.7982965]}}, {'id': '3788', 'type': 'Feature', 'properties': {'osmid': 53093426, 'average price/sqft': 643.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1637544, 37.7973822]}}, {'id': '3789', 'type': 'Feature', 'properties': {'osmid': 53093429, 'average price/sqft': 660.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1613163, 37.7955746]}}, {'id': '3790', 'type': 'Feature', 'properties': {'osmid': 53093432, 'average price/sqft': 741.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1581635, 37.7933746]}}, {'id': '3791', 'type': 'Feature', 'properties': {'osmid': 53093435, 'average price/sqft': 755.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1565557, 37.7921959]}}, {'id': '3792', 'type': 'Feature', 'properties': {'osmid': 53093442, 'average price/sqft': 751.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1518612, 37.7911461]}}, {'id': '3793', 'type': 'Feature', 'properties': {'osmid': 53093448, 'average price/sqft': 741.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1497195, 37.789134]}}, {'id': '3794', 'type': 'Feature', 'properties': {'osmid': 53093458, 'average price/sqft': 491.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1418985, 37.7836554]}}, {'id': '3795', 'type': 'Feature', 'properties': {'osmid': 53093460, 'average price/sqft': 489.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.141658, 37.7816543]}}, {'id': '3796', 'type': 'Feature', 'properties': {'osmid': 53093463, 'average price/sqft': 539.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1321917, 37.7742189]}}, {'id': '3797', 'type': 'Feature', 'properties': {'osmid': 53093497, 'average price/sqft': 522.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.184804, 37.8359119]}}, {'id': '3798', 'type': 'Feature', 'properties': {'osmid': 53093499, 'average price/sqft': 526.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1847821, 37.835756]}}, {'id': '3799', 'type': 'Feature', 'properties': {'osmid': 53093508, 'average price/sqft': 612.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1880135, 37.82644]}}, {'id': '3800', 'type': 'Feature', 'properties': {'osmid': 53093510, 'average price/sqft': 610.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1870864, 37.8247333]}}, {'id': '3801', 'type': 'Feature', 'properties': {'osmid': 53093512, 'average price/sqft': 609.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1869449, 37.8246685]}}, {'id': '3802', 'type': 'Feature', 'properties': {'osmid': 53093515, 'average price/sqft': 601.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1872033, 37.8222566]}}, {'id': '3803', 'type': 'Feature', 'properties': {'osmid': 53093556, 'average price/sqft': 574.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1856846, 37.831761]}}, {'id': '3804', 'type': 'Feature', 'properties': {'osmid': 53093608, 'average price/sqft': 421.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1862643, 37.7624667]}}, {'id': '3805', 'type': 'Feature', 'properties': {'osmid': 53093609, 'average price/sqft': 422.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1859718, 37.7621783]}}, {'id': '3806', 'type': 'Feature', 'properties': {'osmid': 53093612, 'average price/sqft': 604.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1977441, 37.8085926]}}, {'id': '3807', 'type': 'Feature', 'properties': {'osmid': 53093657, 'average price/sqft': 451.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1801936, 37.7976386]}}, {'id': '3808', 'type': 'Feature', 'properties': {'osmid': 53093691, 'average price/sqft': 446.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1927359, 37.775826]}}, {'id': '3809', 'type': 'Feature', 'properties': {'osmid': 53093692, 'average price/sqft': 452.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1922885, 37.7764945]}}, {'id': '3810', 'type': 'Feature', 'properties': {'osmid': 53093694, 'average price/sqft': 453.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.192149, 37.7767012]}}, {'id': '3811', 'type': 'Feature', 'properties': {'osmid': 53093696, 'average price/sqft': 460.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1916373, 37.7775085]}}, {'id': '3812', 'type': 'Feature', 'properties': {'osmid': 53093698, 'average price/sqft': 465.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1916458, 37.7780919]}}, {'id': '3813', 'type': 'Feature', 'properties': {'osmid': 53093699, 'average price/sqft': 471.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1920688, 37.7788811]}}, {'id': '3814', 'type': 'Feature', 'properties': {'osmid': 53093702, 'average price/sqft': 474.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1920515, 37.779735]}}, {'id': '3815', 'type': 'Feature', 'properties': {'osmid': 53093704, 'average price/sqft': 481.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1920284, 37.7805005]}}, {'id': '3816', 'type': 'Feature', 'properties': {'osmid': 53093707, 'average price/sqft': 505.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1930951, 37.7820644]}}, {'id': '3817', 'type': 'Feature', 'properties': {'osmid': 53093708, 'average price/sqft': 505.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.193539, 37.7825581]}}, {'id': '3818', 'type': 'Feature', 'properties': {'osmid': 53093709, 'average price/sqft': 514.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1935719, 37.7830038]}}, {'id': '3819', 'type': 'Feature', 'properties': {'osmid': 53093711, 'average price/sqft': 525.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1939957, 37.7834564]}}, {'id': '3820', 'type': 'Feature', 'properties': {'osmid': 53093760, 'average price/sqft': 657.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1680155, 37.7875352]}}, {'id': '3821', 'type': 'Feature', 'properties': {'osmid': 53093761, 'average price/sqft': 657.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1682516, 37.7874843]}}, {'id': '3822', 'type': 'Feature', 'properties': {'osmid': 53093808, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.183843, 37.7302792]}}, {'id': '3823', 'type': 'Feature', 'properties': {'osmid': 53093810, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1829317, 37.7305696]}}, {'id': '3824', 'type': 'Feature', 'properties': {'osmid': 53093827, 'average price/sqft': 878.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2463773, 37.8276373]}}, {'id': '3825', 'type': 'Feature', 'properties': {'osmid': 53093909, 'average price/sqft': 585.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1954615, 37.7851777]}}, {'id': '3826', 'type': 'Feature', 'properties': {'osmid': 53094025, 'average price/sqft': 429.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2612032, 37.8184307]}}, {'id': '3827', 'type': 'Feature', 'properties': {'osmid': 53094026, 'average price/sqft': 530.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2634227, 37.8188068]}}, {'id': '3828', 'type': 'Feature', 'properties': {'osmid': 53094029, 'average price/sqft': 506.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2646627, 37.8190169]}}, {'id': '3829', 'type': 'Feature', 'properties': {'osmid': 53094031, 'average price/sqft': 498.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2661096, 37.8192621]}}, {'id': '3830', 'type': 'Feature', 'properties': {'osmid': 53094033, 'average price/sqft': 518.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2670855, 37.8194274]}}, {'id': '3831', 'type': 'Feature', 'properties': {'osmid': 53094039, 'average price/sqft': 436.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2709918, 37.8196552]}}, {'id': '3832', 'type': 'Feature', 'properties': {'osmid': 53094041, 'average price/sqft': 509.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2671863, 37.8190533]}}, {'id': '3833', 'type': 'Feature', 'properties': {'osmid': 53094043, 'average price/sqft': 431.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2765428, 37.8208595]}}, {'id': '3834', 'type': 'Feature', 'properties': {'osmid': 53094047, 'average price/sqft': 433.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.280554, 37.8217749]}}, {'id': '3835', 'type': 'Feature', 'properties': {'osmid': 53094050, 'average price/sqft': 428.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2838259, 37.8225165]}}, {'id': '3836', 'type': 'Feature', 'properties': {'osmid': 53094060, 'average price/sqft': 425.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.196806, 37.7743978]}}, {'id': '3837', 'type': 'Feature', 'properties': {'osmid': 53094061, 'average price/sqft': 433.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1966686, 37.7755326]}}, {'id': '3838', 'type': 'Feature', 'properties': {'osmid': 53094068, 'average price/sqft': 453.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1959971, 37.7769333]}}, {'id': '3839', 'type': 'Feature', 'properties': {'osmid': 53094069, 'average price/sqft': 461.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1957057, 37.7782157]}}, {'id': '3840', 'type': 'Feature', 'properties': {'osmid': 53094074, 'average price/sqft': 512.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1925072, 37.7823506]}}, {'id': '3841', 'type': 'Feature', 'properties': {'osmid': 53094075, 'average price/sqft': 525.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1920813, 37.7828783]}}, {'id': '3842', 'type': 'Feature', 'properties': {'osmid': 53094076, 'average price/sqft': 550.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.191002, 37.7841422]}}, {'id': '3843', 'type': 'Feature', 'properties': {'osmid': 53094112, 'average price/sqft': 434.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2131909, 37.7863556]}}, {'id': '3844', 'type': 'Feature', 'properties': {'osmid': 53094114, 'average price/sqft': 445.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.211765, 37.785087]}}, {'id': '3845', 'type': 'Feature', 'properties': {'osmid': 53094187, 'average price/sqft': 458.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2597453, 37.8191895]}}, {'id': '3846', 'type': 'Feature', 'properties': {'osmid': 53094189, 'average price/sqft': 436.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2571357, 37.8174121]}}, {'id': '3847', 'type': 'Feature', 'properties': {'osmid': 53094217, 'average price/sqft': 905.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2522243, 37.8370875]}}, {'id': '3848', 'type': 'Feature', 'properties': {'osmid': 53094219, 'average price/sqft': 885.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.253848, 37.8370649]}}, {'id': '3849', 'type': 'Feature', 'properties': {'osmid': 53094245, 'average price/sqft': 771.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2149488, 37.8074837]}}, {'id': '3850', 'type': 'Feature', 'properties': {'osmid': 53094246, 'average price/sqft': 772.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2144536, 37.8074323]}}, {'id': '3851', 'type': 'Feature', 'properties': {'osmid': 53095019, 'average price/sqft': 867.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2534397, 37.8351351]}}, {'id': '3852', 'type': 'Feature', 'properties': {'osmid': 53095020, 'average price/sqft': 888.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.252817, 37.8361491]}}, {'id': '3853', 'type': 'Feature', 'properties': {'osmid': 53095023, 'average price/sqft': 905.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2524522, 37.8367227]}}, {'id': '3854', 'type': 'Feature', 'properties': {'osmid': 53095068, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1919715, 37.7418534]}}, {'id': '3855', 'type': 'Feature', 'properties': {'osmid': 53095097, 'average price/sqft': 814.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2249821, 37.808228]}}, {'id': '3856', 'type': 'Feature', 'properties': {'osmid': 53095099, 'average price/sqft': 816.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2253656, 37.8087811]}}, {'id': '3857', 'type': 'Feature', 'properties': {'osmid': 53095101, 'average price/sqft': 817.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2257384, 37.80942]}}, {'id': '3858', 'type': 'Feature', 'properties': {'osmid': 53095103, 'average price/sqft': 826.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2265334, 37.8099662]}}, {'id': '3859', 'type': 'Feature', 'properties': {'osmid': 53095114, 'average price/sqft': 816.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2560891, 37.8311913]}}, {'id': '3860', 'type': 'Feature', 'properties': {'osmid': 53095115, 'average price/sqft': 808.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2570152, 37.831152]}}, {'id': '3861', 'type': 'Feature', 'properties': {'osmid': 53095117, 'average price/sqft': 799.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2580397, 37.8311108]}}, {'id': '3862', 'type': 'Feature', 'properties': {'osmid': 53095119, 'average price/sqft': 793.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2590833, 37.8310629]}}, {'id': '3863', 'type': 'Feature', 'properties': {'osmid': 53095121, 'average price/sqft': 775.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2601915, 37.831016]}}, {'id': '3864', 'type': 'Feature', 'properties': {'osmid': 53095122, 'average price/sqft': 745.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.263159, 37.8308888]}}, {'id': '3865', 'type': 'Feature', 'properties': {'osmid': 53095124, 'average price/sqft': 736.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2640121, 37.8308695]}}, {'id': '3866', 'type': 'Feature', 'properties': {'osmid': 53095131, 'average price/sqft': 675.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2680153, 37.8314853]}}, {'id': '3867', 'type': 'Feature', 'properties': {'osmid': 53095232, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1918578, 37.734524]}}, {'id': '3868', 'type': 'Feature', 'properties': {'osmid': 53095247, 'average price/sqft': 406.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1728125, 37.7676866]}}, {'id': '3869', 'type': 'Feature', 'properties': {'osmid': 53095248, 'average price/sqft': 411.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1713459, 37.7686248]}}, {'id': '3870', 'type': 'Feature', 'properties': {'osmid': 53095315, 'average price/sqft': 741.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2623649, 37.8499529]}}, {'id': '3871', 'type': 'Feature', 'properties': {'osmid': 53095316, 'average price/sqft': 733.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2628926, 37.8516897]}}, {'id': '3872', 'type': 'Feature', 'properties': {'osmid': 53095322, 'average price/sqft': 942.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2440187, 37.8502521]}}, {'id': '3873', 'type': 'Feature', 'properties': {'osmid': 53095450, 'average price/sqft': 771.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2149429, 37.8071339]}}, {'id': '3874', 'type': 'Feature', 'properties': {'osmid': 53095453, 'average price/sqft': 756.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2144129, 37.8095251]}}, {'id': '3875', 'type': 'Feature', 'properties': {'osmid': 53095569, 'average price/sqft': 460.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1513485, 37.7546947]}}, {'id': '3876', 'type': 'Feature', 'properties': {'osmid': 53095614, 'average price/sqft': 608.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2143966, 37.8403658]}}, {'id': '3877', 'type': 'Feature', 'properties': {'osmid': 53095632, 'average price/sqft': 500.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1404587, 37.7615011]}}, {'id': '3878', 'type': 'Feature', 'properties': {'osmid': 53095634, 'average price/sqft': 500.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1393263, 37.7607503]}}, {'id': '3879', 'type': 'Feature', 'properties': {'osmid': 53095810, 'average price/sqft': 750.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2329955, 37.8627332]}}, {'id': '3880', 'type': 'Feature', 'properties': {'osmid': 53095827, 'average price/sqft': 609.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1959645, 37.8218645]}}, {'id': '3881', 'type': 'Feature', 'properties': {'osmid': 53095829, 'average price/sqft': 606.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.196733, 37.8221063]}}, {'id': '3882', 'type': 'Feature', 'properties': {'osmid': 53095970, 'average price/sqft': 938.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2427991, 37.8452419]}}, {'id': '3883', 'type': 'Feature', 'properties': {'osmid': 53096024, 'average price/sqft': 742.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2635076, 37.833007]}}, {'id': '3884', 'type': 'Feature', 'properties': {'osmid': 53096027, 'average price/sqft': 733.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.263743, 37.8344487]}}, {'id': '3885', 'type': 'Feature', 'properties': {'osmid': 53096031, 'average price/sqft': 707.0, 'observation count': 31.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2640646, 37.8368532]}}, {'id': '3886', 'type': 'Feature', 'properties': {'osmid': 53096036, 'average price/sqft': 691.0, 'observation count': 34.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2644216, 37.8395572]}}, {'id': '3887', 'type': 'Feature', 'properties': {'osmid': 53096037, 'average price/sqft': 688.0, 'observation count': 35.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2648332, 37.8426403]}}, {'id': '3888', 'type': 'Feature', 'properties': {'osmid': 53096039, 'average price/sqft': 684.0, 'observation count': 34.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2649594, 37.843599]}}, {'id': '3889', 'type': 'Feature', 'properties': {'osmid': 53096041, 'average price/sqft': 671.0, 'observation count': 33.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2650837, 37.8445156]}}, {'id': '3890', 'type': 'Feature', 'properties': {'osmid': 53096042, 'average price/sqft': 669.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2652662, 37.8458801]}}, {'id': '3891', 'type': 'Feature', 'properties': {'osmid': 53096045, 'average price/sqft': 691.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2656311, 37.8485932]}}, {'id': '3892', 'type': 'Feature', 'properties': {'osmid': 53096046, 'average price/sqft': 698.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2657525, 37.8495029]}}, {'id': '3893', 'type': 'Feature', 'properties': {'osmid': 53096049, 'average price/sqft': 690.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2659447, 37.8509386]}}, {'id': '3894', 'type': 'Feature', 'properties': {'osmid': 53096051, 'average price/sqft': 690.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2660314, 37.8515858]}}, {'id': '3895', 'type': 'Feature', 'properties': {'osmid': 53096150, 'average price/sqft': 351.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1589609, 37.7481533]}}, {'id': '3896', 'type': 'Feature', 'properties': {'osmid': 53096207, 'average price/sqft': 740.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2633468, 37.8336188]}}, {'id': '3897', 'type': 'Feature', 'properties': {'osmid': 53096214, 'average price/sqft': 681.0, 'observation count': 29.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2673102, 37.8342889]}}, {'id': '3898', 'type': 'Feature', 'properties': {'osmid': 53096301, 'average price/sqft': 400.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1791973, 37.7760819]}}, {'id': '3899', 'type': 'Feature', 'properties': {'osmid': 53096304, 'average price/sqft': 407.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1756017, 37.7735142]}}, {'id': '3900', 'type': 'Feature', 'properties': {'osmid': 53096305, 'average price/sqft': 405.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1745889, 37.7725236]}}, {'id': '3901', 'type': 'Feature', 'properties': {'osmid': 53096318, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1675245, 37.7388656]}}, {'id': '3902', 'type': 'Feature', 'properties': {'osmid': 53096325, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.166653, 37.7376854]}}, {'id': '3903', 'type': 'Feature', 'properties': {'osmid': 53096356, 'average price/sqft': 563.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2771709, 37.8448161]}}, {'id': '3904', 'type': 'Feature', 'properties': {'osmid': 53096359, 'average price/sqft': 573.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.277021, 37.8439563]}}, {'id': '3905', 'type': 'Feature', 'properties': {'osmid': 53096361, 'average price/sqft': 575.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.276949, 37.8435912]}}, {'id': '3906', 'type': 'Feature', 'properties': {'osmid': 53096363, 'average price/sqft': 585.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2769412, 37.8428018]}}, {'id': '3907', 'type': 'Feature', 'properties': {'osmid': 53096366, 'average price/sqft': 595.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.276709, 37.8414383]}}, {'id': '3908', 'type': 'Feature', 'properties': {'osmid': 53096368, 'average price/sqft': 603.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2761552, 37.8385906]}}, {'id': '3909', 'type': 'Feature', 'properties': {'osmid': 53096377, 'average price/sqft': 672.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2457982, 37.8117829]}}, {'id': '3910', 'type': 'Feature', 'properties': {'osmid': 53096379, 'average price/sqft': 687.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2411812, 37.8157177]}}, {'id': '3911', 'type': 'Feature', 'properties': {'osmid': 53096381, 'average price/sqft': 685.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2413917, 37.815919]}}, {'id': '3912', 'type': 'Feature', 'properties': {'osmid': 53096571, 'average price/sqft': 565.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2474632, 37.8194397]}}, {'id': '3913', 'type': 'Feature', 'properties': {'osmid': 53096585, 'average price/sqft': 584.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.201988, 37.838608]}}, {'id': '3914', 'type': 'Feature', 'properties': {'osmid': 53096587, 'average price/sqft': 573.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2022294, 37.8374893]}}, {'id': '3915', 'type': 'Feature', 'properties': {'osmid': 53096667, 'average price/sqft': 585.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.179977, 37.787927]}}, {'id': '3916', 'type': 'Feature', 'properties': {'osmid': 53096728, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1959113, 37.7346245]}}, {'id': '3917', 'type': 'Feature', 'properties': {'osmid': 53096730, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1950291, 37.7365949]}}, {'id': '3918', 'type': 'Feature', 'properties': {'osmid': 53096737, 'average price/sqft': 376.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1650049, 37.7448337]}}, {'id': '3919', 'type': 'Feature', 'properties': {'osmid': 53096799, 'average price/sqft': 378.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1694986, 37.7507045]}}, {'id': '3920', 'type': 'Feature', 'properties': {'osmid': 53096801, 'average price/sqft': 385.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.168238, 37.7492151]}}, {'id': '3921', 'type': 'Feature', 'properties': {'osmid': 53096803, 'average price/sqft': 374.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1672193, 37.7478097]}}, {'id': '3922', 'type': 'Feature', 'properties': {'osmid': 53096804, 'average price/sqft': 374.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1661852, 37.7464056]}}, {'id': '3923', 'type': 'Feature', 'properties': {'osmid': 53096889, 'average price/sqft': 860.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2407343, 37.8431992]}}, {'id': '3924', 'type': 'Feature', 'properties': {'osmid': 53097147, 'average price/sqft': 736.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2185673, 37.8009584]}}, {'id': '3925', 'type': 'Feature', 'properties': {'osmid': 53097173, 'average price/sqft': 604.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1879178, 37.7826888]}}, {'id': '3926', 'type': 'Feature', 'properties': {'osmid': 53097191, 'average price/sqft': 605.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1868718, 37.7828732]}}, {'id': '3927', 'type': 'Feature', 'properties': {'osmid': 53097204, 'average price/sqft': 570.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1839823, 37.7816484]}}, {'id': '3928', 'type': 'Feature', 'properties': {'osmid': 53097222, 'average price/sqft': 303.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2259875, 37.7723348]}}, {'id': '3929', 'type': 'Feature', 'properties': {'osmid': 53097252, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2559738, 37.7915994]}}, {'id': '3930', 'type': 'Feature', 'properties': {'osmid': 53097255, 'average price/sqft': 236.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2521902, 37.7902684]}}, {'id': '3931', 'type': 'Feature', 'properties': {'osmid': 53097256, 'average price/sqft': 236.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2509043, 37.7897902]}}, {'id': '3932', 'type': 'Feature', 'properties': {'osmid': 53097258, 'average price/sqft': 236.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2473262, 37.7883368]}}, {'id': '3933', 'type': 'Feature', 'properties': {'osmid': 53097260, 'average price/sqft': 236.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2465616, 37.7877751]}}, {'id': '3934', 'type': 'Feature', 'properties': {'osmid': 53097262, 'average price/sqft': 491.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2128808, 37.7656983]}}, {'id': '3935', 'type': 'Feature', 'properties': {'osmid': 53097264, 'average price/sqft': 491.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2122691, 37.7651898]}}, {'id': '3936', 'type': 'Feature', 'properties': {'osmid': 53097265, 'average price/sqft': 491.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.211048, 37.7641749]}}, {'id': '3937', 'type': 'Feature', 'properties': {'osmid': 53097340, 'average price/sqft': 547.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1424843, 37.7580054]}}, {'id': '3938', 'type': 'Feature', 'properties': {'osmid': 53097341, 'average price/sqft': 546.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1420406, 37.7583034]}}, {'id': '3939', 'type': 'Feature', 'properties': {'osmid': 53097351, 'average price/sqft': 612.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2045676, 37.7951771]}}, {'id': '3940', 'type': 'Feature', 'properties': {'osmid': 53097353, 'average price/sqft': 617.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2035031, 37.7943124]}}, {'id': '3941', 'type': 'Feature', 'properties': {'osmid': 53097394, 'average price/sqft': 444.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2039753, 37.7775059]}}, {'id': '3942', 'type': 'Feature', 'properties': {'osmid': 53097397, 'average price/sqft': 503.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2119983, 37.768769]}}, {'id': '3943', 'type': 'Feature', 'properties': {'osmid': 53097475, 'average price/sqft': 555.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2053577, 37.8458573]}}, {'id': '3944', 'type': 'Feature', 'properties': {'osmid': 53097492, 'average price/sqft': 609.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1962566, 37.8204215]}}, {'id': '3945', 'type': 'Feature', 'properties': {'osmid': 53097564, 'average price/sqft': 613.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1982763, 37.8388688]}}, {'id': '3946', 'type': 'Feature', 'properties': {'osmid': 53097568, 'average price/sqft': 618.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1963404, 37.8391978]}}, {'id': '3947', 'type': 'Feature', 'properties': {'osmid': 53097570, 'average price/sqft': 624.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.195113, 37.838608]}}, {'id': '3948', 'type': 'Feature', 'properties': {'osmid': 53097578, 'average price/sqft': 564.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1881572, 37.8359009]}}, {'id': '3949', 'type': 'Feature', 'properties': {'osmid': 53097698, 'average price/sqft': 408.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1932412, 37.7695308]}}, {'id': '3950', 'type': 'Feature', 'properties': {'osmid': 53097699, 'average price/sqft': 412.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.191392, 37.7680225]}}, {'id': '3951', 'type': 'Feature', 'properties': {'osmid': 53097701, 'average price/sqft': 407.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1903963, 37.7670861]}}, {'id': '3952', 'type': 'Feature', 'properties': {'osmid': 53097705, 'average price/sqft': 405.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1966619, 37.7720579]}}, {'id': '3953', 'type': 'Feature', 'properties': {'osmid': 53097963, 'average price/sqft': 576.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.204974, 37.8470754]}}, {'id': '3954', 'type': 'Feature', 'properties': {'osmid': 53097965, 'average price/sqft': 576.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2047628, 37.8469696]}}, {'id': '3955', 'type': 'Feature', 'properties': {'osmid': 53097974, 'average price/sqft': 640.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2502235, 37.822868]}}, {'id': '3956', 'type': 'Feature', 'properties': {'osmid': 53098103, 'average price/sqft': 738.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2322834, 37.8102922]}}, {'id': '3957', 'type': 'Feature', 'properties': {'osmid': 53098112, 'average price/sqft': 754.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2304601, 37.8127689]}}, {'id': '3958', 'type': 'Feature', 'properties': {'osmid': 53098113, 'average price/sqft': 750.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2309283, 37.8132399]}}, {'id': '3959', 'type': 'Feature', 'properties': {'osmid': 53098152, 'average price/sqft': 436.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2704063, 37.8219831]}}, {'id': '3960', 'type': 'Feature', 'properties': {'osmid': 53098248, 'average price/sqft': 416.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.290006, 37.805347]}}, {'id': '3961', 'type': 'Feature', 'properties': {'osmid': 53098249, 'average price/sqft': 374.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.291283, 37.8056289]}}, {'id': '3962', 'type': 'Feature', 'properties': {'osmid': 53098255, 'average price/sqft': 339.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2931569, 37.806049]}}, {'id': '3963', 'type': 'Feature', 'properties': {'osmid': 53098267, 'average price/sqft': 545.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2794043, 37.8024377]}}, {'id': '3964', 'type': 'Feature', 'properties': {'osmid': 53098272, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2713725, 37.7992606]}}, {'id': '3965', 'type': 'Feature', 'properties': {'osmid': 53098274, 'average price/sqft': 531.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2701906, 37.7987929]}}, {'id': '3966', 'type': 'Feature', 'properties': {'osmid': 53098275, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2678248, 37.7978662]}}, {'id': '3967', 'type': 'Feature', 'properties': {'osmid': 53098281, 'average price/sqft': 540.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2798118, 37.8018944]}}, {'id': '3968', 'type': 'Feature', 'properties': {'osmid': 53098298, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1793301, 37.7279502]}}, {'id': '3969', 'type': 'Feature', 'properties': {'osmid': 53098300, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1785022, 37.7310548]}}, {'id': '3970', 'type': 'Feature', 'properties': {'osmid': 53098453, 'average price/sqft': 422.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1800392, 37.767779]}}, {'id': '3971', 'type': 'Feature', 'properties': {'osmid': 53098511, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.182799, 37.7317087]}}, {'id': '3972', 'type': 'Feature', 'properties': {'osmid': 53098512, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1821185, 37.7343761]}}, {'id': '3973', 'type': 'Feature', 'properties': {'osmid': 53098527, 'average price/sqft': 475.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.161409, 37.7644161]}}, {'id': '3974', 'type': 'Feature', 'properties': {'osmid': 53098528, 'average price/sqft': 479.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1597917, 37.7640629]}}, {'id': '3975', 'type': 'Feature', 'properties': {'osmid': 53098603, 'average price/sqft': 667.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2002067, 37.819094]}}, {'id': '3976', 'type': 'Feature', 'properties': {'osmid': 53098604, 'average price/sqft': 669.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1997821, 37.8168838]}}, {'id': '3977', 'type': 'Feature', 'properties': {'osmid': 53098667, 'average price/sqft': 650.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1946617, 37.8374401]}}, {'id': '3978', 'type': 'Feature', 'properties': {'osmid': 53098669, 'average price/sqft': 647.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1929169, 37.8361842]}}, {'id': '3979', 'type': 'Feature', 'properties': {'osmid': 53098672, 'average price/sqft': 633.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1923949, 37.8346326]}}, {'id': '3980', 'type': 'Feature', 'properties': {'osmid': 53098673, 'average price/sqft': 632.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1920795, 37.8339392]}}, {'id': '3981', 'type': 'Feature', 'properties': {'osmid': 53098675, 'average price/sqft': 680.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2051085, 37.833246]}}, {'id': '3982', 'type': 'Feature', 'properties': {'osmid': 53098677, 'average price/sqft': 680.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2050163, 37.8330077]}}, {'id': '3983', 'type': 'Feature', 'properties': {'osmid': 53098680, 'average price/sqft': 686.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2007798, 37.8331232]}}, {'id': '3984', 'type': 'Feature', 'properties': {'osmid': 53098682, 'average price/sqft': 676.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2000397, 37.8335512]}}, {'id': '3985', 'type': 'Feature', 'properties': {'osmid': 53098685, 'average price/sqft': 692.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1983815, 37.8351839]}}, {'id': '3986', 'type': 'Feature', 'properties': {'osmid': 53098687, 'average price/sqft': 670.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1965348, 37.8349382]}}, {'id': '3987', 'type': 'Feature', 'properties': {'osmid': 53098689, 'average price/sqft': 673.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1964262, 37.8342291]}}, {'id': '3988', 'type': 'Feature', 'properties': {'osmid': 53098694, 'average price/sqft': 675.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1951467, 37.8347268]}}, {'id': '3989', 'type': 'Feature', 'properties': {'osmid': 53098772, 'average price/sqft': 851.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2484447, 37.8265497]}}, {'id': '3990', 'type': 'Feature', 'properties': {'osmid': 53098894, 'average price/sqft': 724.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.208066, 37.8261595]}}, {'id': '3991', 'type': 'Feature', 'properties': {'osmid': 53098922, 'average price/sqft': 661.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.242351, 37.805247]}}, {'id': '3992', 'type': 'Feature', 'properties': {'osmid': 53098926, 'average price/sqft': 661.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2418894, 37.805096]}}, {'id': '3993', 'type': 'Feature', 'properties': {'osmid': 53098930, 'average price/sqft': 666.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2414408, 37.8059597]}}, {'id': '3994', 'type': 'Feature', 'properties': {'osmid': 53098934, 'average price/sqft': 674.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2409747, 37.8068334]}}, {'id': '3995', 'type': 'Feature', 'properties': {'osmid': 53098941, 'average price/sqft': 481.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1590622, 37.7647211]}}, {'id': '3996', 'type': 'Feature', 'properties': {'osmid': 53098954, 'average price/sqft': 666.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2497065, 37.8093281]}}, {'id': '3997', 'type': 'Feature', 'properties': {'osmid': 53098973, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1541635, 37.7781539]}}, {'id': '3998', 'type': 'Feature', 'properties': {'osmid': 53098974, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1546699, 37.7777807]}}, {'id': '3999', 'type': 'Feature', 'properties': {'osmid': 53098980, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1534082, 37.7770752]}}, {'id': '4000', 'type': 'Feature', 'properties': {'osmid': 53099033, 'average price/sqft': 510.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1376068, 37.7746736]}}, {'id': '4001', 'type': 'Feature', 'properties': {'osmid': 53099037, 'average price/sqft': 516.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1363375, 37.7722342]}}, {'id': '4002', 'type': 'Feature', 'properties': {'osmid': 53099062, 'average price/sqft': 663.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.195883, 37.8351035]}}, {'id': '4003', 'type': 'Feature', 'properties': {'osmid': 53099064, 'average price/sqft': 658.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1957653, 37.8358221]}}, {'id': '4004', 'type': 'Feature', 'properties': {'osmid': 53099198, 'average price/sqft': 697.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2345768, 37.8022887]}}, {'id': '4005', 'type': 'Feature', 'properties': {'osmid': 53099201, 'average price/sqft': 662.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2290684, 37.8003945]}}, {'id': '4006', 'type': 'Feature', 'properties': {'osmid': 53099204, 'average price/sqft': 660.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2275383, 37.8001023]}}, {'id': '4007', 'type': 'Feature', 'properties': {'osmid': 53099292, 'average price/sqft': 758.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2602741, 37.852027]}}, {'id': '4008', 'type': 'Feature', 'properties': {'osmid': 53099294, 'average price/sqft': 773.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2605253, 37.8501964]}}, {'id': '4009', 'type': 'Feature', 'properties': {'osmid': 53099295, 'average price/sqft': 769.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2606301, 37.8494466]}}, {'id': '4010', 'type': 'Feature', 'properties': {'osmid': 53099297, 'average price/sqft': 768.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.260731, 37.8487034]}}, {'id': '4011', 'type': 'Feature', 'properties': {'osmid': 53099298, 'average price/sqft': 765.0, 'observation count': 29.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2610456, 37.8464891]}}, {'id': '4012', 'type': 'Feature', 'properties': {'osmid': 53099300, 'average price/sqft': 764.0, 'observation count': 32.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2611421, 37.8457573]}}, {'id': '4013', 'type': 'Feature', 'properties': {'osmid': 53099301, 'average price/sqft': 756.0, 'observation count': 34.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2612485, 37.845034]}}, {'id': '4014', 'type': 'Feature', 'properties': {'osmid': 53099302, 'average price/sqft': 749.0, 'observation count': 34.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2613532, 37.8442822]}}, {'id': '4015', 'type': 'Feature', 'properties': {'osmid': 53099304, 'average price/sqft': 744.0, 'observation count': 35.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2613942, 37.8439846]}}, {'id': '4016', 'type': 'Feature', 'properties': {'osmid': 53099306, 'average price/sqft': 742.0, 'observation count': 35.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2615216, 37.843051]}}, {'id': '4017', 'type': 'Feature', 'properties': {'osmid': 53099316, 'average price/sqft': 747.0, 'observation count': 35.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.262326, 37.8372737]}}, {'id': '4018', 'type': 'Feature', 'properties': {'osmid': 53099319, 'average price/sqft': 741.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2630754, 37.8343474]}}, {'id': '4019', 'type': 'Feature', 'properties': {'osmid': 53099323, 'average price/sqft': 678.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2649062, 37.8275433]}}, {'id': '4020', 'type': 'Feature', 'properties': {'osmid': 53099325, 'average price/sqft': 676.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2650352, 37.8270427]}}, {'id': '4021', 'type': 'Feature', 'properties': {'osmid': 53099327, 'average price/sqft': 660.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2652218, 37.8263497]}}, {'id': '4022', 'type': 'Feature', 'properties': {'osmid': 53099328, 'average price/sqft': 656.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.265412, 37.8256622]}}, {'id': '4023', 'type': 'Feature', 'properties': {'osmid': 53099330, 'average price/sqft': 651.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2654878, 37.8253728]}}, {'id': '4024', 'type': 'Feature', 'properties': {'osmid': 53099338, 'average price/sqft': 548.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2666811, 37.8209296]}}, {'id': '4025', 'type': 'Feature', 'properties': {'osmid': 53099342, 'average price/sqft': 497.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2674043, 37.818231]}}, {'id': '4026', 'type': 'Feature', 'properties': {'osmid': 53099343, 'average price/sqft': 490.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2676199, 37.8173322]}}, {'id': '4027', 'type': 'Feature', 'properties': {'osmid': 53099344, 'average price/sqft': 484.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2677281, 37.8168803]}}, {'id': '4028', 'type': 'Feature', 'properties': {'osmid': 53099345, 'average price/sqft': 481.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2677925, 37.8166175]}}, {'id': '4029', 'type': 'Feature', 'properties': {'osmid': 53099348, 'average price/sqft': 481.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2681, 37.8154442]}}, {'id': '4030', 'type': 'Feature', 'properties': {'osmid': 53099350, 'average price/sqft': 481.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2682931, 37.8146645]}}, {'id': '4031', 'type': 'Feature', 'properties': {'osmid': 53099352, 'average price/sqft': 481.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2683709, 37.8143551]}}, {'id': '4032', 'type': 'Feature', 'properties': {'osmid': 53099355, 'average price/sqft': 481.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2688249, 37.8126014]}}, {'id': '4033', 'type': 'Feature', 'properties': {'osmid': 53099361, 'average price/sqft': 665.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.269399, 37.810337]}}, {'id': '4034', 'type': 'Feature', 'properties': {'osmid': 53099362, 'average price/sqft': 665.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2695941, 37.8095673]}}, {'id': '4035', 'type': 'Feature', 'properties': {'osmid': 53099365, 'average price/sqft': 665.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2699221, 37.808256]}}, {'id': '4036', 'type': 'Feature', 'properties': {'osmid': 53099369, 'average price/sqft': 665.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2702746, 37.8068288]}}, {'id': '4037', 'type': 'Feature', 'properties': {'osmid': 53099444, 'average price/sqft': 553.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2284659, 37.8556465]}}, {'id': '4038', 'type': 'Feature', 'properties': {'osmid': 53099445, 'average price/sqft': 554.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2293445, 37.8557993]}}, {'id': '4039', 'type': 'Feature', 'properties': {'osmid': 53099449, 'average price/sqft': 870.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2504996, 37.8241173]}}, {'id': '4040', 'type': 'Feature', 'properties': {'osmid': 53099485, 'average price/sqft': 236.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2460337, 37.788146]}}, {'id': '4041', 'type': 'Feature', 'properties': {'osmid': 53099492, 'average price/sqft': 375.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2428459, 37.7914548]}}, {'id': '4042', 'type': 'Feature', 'properties': {'osmid': 53099699, 'average price/sqft': 824.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2396715, 37.8440835]}}, {'id': '4043', 'type': 'Feature', 'properties': {'osmid': 53099705, 'average price/sqft': 804.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2371335, 37.8456537]}}, {'id': '4044', 'type': 'Feature', 'properties': {'osmid': 53099761, 'average price/sqft': 673.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2016277, 37.8186774]}}, {'id': '4045', 'type': 'Feature', 'properties': {'osmid': 53099763, 'average price/sqft': 671.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2011471, 37.8173532]}}, {'id': '4046', 'type': 'Feature', 'properties': {'osmid': 53099768, 'average price/sqft': 663.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2083299, 37.7989301]}}, {'id': '4047', 'type': 'Feature', 'properties': {'osmid': 53099769, 'average price/sqft': 657.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.207845, 37.7986701]}}, {'id': '4048', 'type': 'Feature', 'properties': {'osmid': 53099889, 'average price/sqft': 373.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1240689, 37.7533799]}}, {'id': '4049', 'type': 'Feature', 'properties': {'osmid': 53099890, 'average price/sqft': 365.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.123341, 37.7523903]}}, {'id': '4050', 'type': 'Feature', 'properties': {'osmid': 53099946, 'average price/sqft': 382.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2367121, 37.782611]}}, {'id': '4051', 'type': 'Feature', 'properties': {'osmid': 53099947, 'average price/sqft': 417.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2333238, 37.7857727]}}, {'id': '4052', 'type': 'Feature', 'properties': {'osmid': 53099951, 'average price/sqft': 454.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2284384, 37.7914143]}}, {'id': '4053', 'type': 'Feature', 'properties': {'osmid': 53099954, 'average price/sqft': 464.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2276502, 37.7922266]}}, {'id': '4054', 'type': 'Feature', 'properties': {'osmid': 53099955, 'average price/sqft': 492.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2264293, 37.7944914]}}, {'id': '4055', 'type': 'Feature', 'properties': {'osmid': 53099956, 'average price/sqft': 512.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2261196, 37.7954764]}}, {'id': '4056', 'type': 'Feature', 'properties': {'osmid': 53099958, 'average price/sqft': 533.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2258047, 37.7964613]}}, {'id': '4057', 'type': 'Feature', 'properties': {'osmid': 53099965, 'average price/sqft': 296.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2361349, 37.7747507]}}, {'id': '4058', 'type': 'Feature', 'properties': {'osmid': 53100168, 'average price/sqft': 649.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1685961, 37.8026273]}}, {'id': '4059', 'type': 'Feature', 'properties': {'osmid': 53100171, 'average price/sqft': 644.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1670688, 37.8023472]}}, {'id': '4060', 'type': 'Feature', 'properties': {'osmid': 53100176, 'average price/sqft': 679.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.20413, 37.8334836]}}, {'id': '4061', 'type': 'Feature', 'properties': {'osmid': 53100178, 'average price/sqft': 679.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2040798, 37.8336008]}}, {'id': '4062', 'type': 'Feature', 'properties': {'osmid': 53100179, 'average price/sqft': 657.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2015145, 37.8339033]}}, {'id': '4063', 'type': 'Feature', 'properties': {'osmid': 53100204, 'average price/sqft': 620.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1973197, 37.8323804]}}, {'id': '4064', 'type': 'Feature', 'properties': {'osmid': 53100207, 'average price/sqft': 625.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1940318, 37.8332214]}}, {'id': '4065', 'type': 'Feature', 'properties': {'osmid': 53100273, 'average price/sqft': 478.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1327625, 37.7505031]}}, {'id': '4066', 'type': 'Feature', 'properties': {'osmid': 53100274, 'average price/sqft': 478.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1321112, 37.7502472]}}, {'id': '4067', 'type': 'Feature', 'properties': {'osmid': 53100276, 'average price/sqft': 473.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1314929, 37.7496852]}}, {'id': '4068', 'type': 'Feature', 'properties': {'osmid': 53100301, 'average price/sqft': 553.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2274037, 37.8553726]}}, {'id': '4069', 'type': 'Feature', 'properties': {'osmid': 53100302, 'average price/sqft': 551.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2273016, 37.8561222]}}, {'id': '4070', 'type': 'Feature', 'properties': {'osmid': 53100319, 'average price/sqft': 541.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2301536, 37.8563918]}}, {'id': '4071', 'type': 'Feature', 'properties': {'osmid': 53100432, 'average price/sqft': 607.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1845575, 37.7971608]}}, {'id': '4072', 'type': 'Feature', 'properties': {'osmid': 53100529, 'average price/sqft': 872.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2534379, 37.8511384]}}, {'id': '4073', 'type': 'Feature', 'properties': {'osmid': 53100566, 'average price/sqft': 589.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2297485, 37.7981917]}}, {'id': '4074', 'type': 'Feature', 'properties': {'osmid': 53100568, 'average price/sqft': 533.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2268483, 37.7966665]}}, {'id': '4075', 'type': 'Feature', 'properties': {'osmid': 53100570, 'average price/sqft': 533.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2252221, 37.796337]}}, {'id': '4076', 'type': 'Feature', 'properties': {'osmid': 53100607, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.186385, 37.7387834]}}, {'id': '4077', 'type': 'Feature', 'properties': {'osmid': 53100610, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1856859, 37.7381702]}}, {'id': '4078', 'type': 'Feature', 'properties': {'osmid': 53100683, 'average price/sqft': 408.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1720214, 37.7777774]}}, {'id': '4079', 'type': 'Feature', 'properties': {'osmid': 53100685, 'average price/sqft': 407.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1709256, 37.7786806]}}, {'id': '4080', 'type': 'Feature', 'properties': {'osmid': 53100687, 'average price/sqft': 406.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1706688, 37.7789663]}}, {'id': '4081', 'type': 'Feature', 'properties': {'osmid': 53100698, 'average price/sqft': 346.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1220889, 37.755635]}}, {'id': '4082', 'type': 'Feature', 'properties': {'osmid': 53100699, 'average price/sqft': 333.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1218376, 37.7565437]}}, {'id': '4083', 'type': 'Feature', 'properties': {'osmid': 53100711, 'average price/sqft': 291.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2337087, 37.7773645]}}, {'id': '4084', 'type': 'Feature', 'properties': {'osmid': 53100746, 'average price/sqft': 412.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2044503, 37.7735005]}}, {'id': '4085', 'type': 'Feature', 'properties': {'osmid': 53100751, 'average price/sqft': 414.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.202959, 37.7745557]}}, {'id': '4086', 'type': 'Feature', 'properties': {'osmid': 53100756, 'average price/sqft': 500.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2109701, 37.7662203]}}, {'id': '4087', 'type': 'Feature', 'properties': {'osmid': 53100757, 'average price/sqft': 444.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2099286, 37.7671469]}}, {'id': '4088', 'type': 'Feature', 'properties': {'osmid': 53100763, 'average price/sqft': 698.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.235235, 37.8625362]}}, {'id': '4089', 'type': 'Feature', 'properties': {'osmid': 53100782, 'average price/sqft': 539.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.128929, 37.7647012]}}, {'id': '4090', 'type': 'Feature', 'properties': {'osmid': 53100783, 'average price/sqft': 526.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1911056, 37.7813864]}}, {'id': '4091', 'type': 'Feature', 'properties': {'osmid': 53100785, 'average price/sqft': 547.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1904538, 37.7818443]}}, {'id': '4092', 'type': 'Feature', 'properties': {'osmid': 53100845, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1642923, 37.7404444]}}, {'id': '4093', 'type': 'Feature', 'properties': {'osmid': 53100852, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.176621, 37.7345541]}}, {'id': '4094', 'type': 'Feature', 'properties': {'osmid': 53100855, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1751391, 37.7353027]}}, {'id': '4095', 'type': 'Feature', 'properties': {'osmid': 53100859, 'average price/sqft': 321.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1727033, 37.7364448]}}, {'id': '4096', 'type': 'Feature', 'properties': {'osmid': 53100861, 'average price/sqft': 352.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1707731, 37.7373506]}}, {'id': '4097', 'type': 'Feature', 'properties': {'osmid': 53100866, 'average price/sqft': 380.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1627409, 37.7406421]}}, {'id': '4098', 'type': 'Feature', 'properties': {'osmid': 53100867, 'average price/sqft': 365.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1606205, 37.7411336]}}, {'id': '4099', 'type': 'Feature', 'properties': {'osmid': 53100868, 'average price/sqft': 361.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1594704, 37.7415272]}}, {'id': '4100', 'type': 'Feature', 'properties': {'osmid': 53100870, 'average price/sqft': 354.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1580268, 37.7419425]}}, {'id': '4101', 'type': 'Feature', 'properties': {'osmid': 53100872, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1825035, 37.7255412]}}, {'id': '4102', 'type': 'Feature', 'properties': {'osmid': 53100873, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1811958, 37.72814]}}, {'id': '4103', 'type': 'Feature', 'properties': {'osmid': 53100900, 'average price/sqft': 437.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1990838, 37.7777912]}}, {'id': '4104', 'type': 'Feature', 'properties': {'osmid': 53100902, 'average price/sqft': 463.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1967074, 37.7793777]}}, {'id': '4105', 'type': 'Feature', 'properties': {'osmid': 53100966, 'average price/sqft': 477.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1607015, 37.7657931]}}, {'id': '4106', 'type': 'Feature', 'properties': {'osmid': 53101159, 'average price/sqft': 678.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2250105, 37.8468846]}}, {'id': '4107', 'type': 'Feature', 'properties': {'osmid': 53101192, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1875666, 37.736954]}}, {'id': '4108', 'type': 'Feature', 'properties': {'osmid': 53101194, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1871307, 37.7368532]}}, {'id': '4109', 'type': 'Feature', 'properties': {'osmid': 53101205, 'average price/sqft': 829.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2200379, 37.811614]}}, {'id': '4110', 'type': 'Feature', 'properties': {'osmid': 53101220, 'average price/sqft': 571.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.193097, 37.7840156]}}, {'id': '4111', 'type': 'Feature', 'properties': {'osmid': 53101299, 'average price/sqft': 348.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1596709, 37.7400064]}}, {'id': '4112', 'type': 'Feature', 'properties': {'osmid': 53101302, 'average price/sqft': 332.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1591418, 37.7394047]}}, {'id': '4113', 'type': 'Feature', 'properties': {'osmid': 53101304, 'average price/sqft': 278.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1585496, 37.7381151]}}, {'id': '4114', 'type': 'Feature', 'properties': {'osmid': 53101348, 'average price/sqft': 381.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1695421, 37.7554248]}}, {'id': '4115', 'type': 'Feature', 'properties': {'osmid': 53101350, 'average price/sqft': 346.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1659508, 37.7571166]}}, {'id': '4116', 'type': 'Feature', 'properties': {'osmid': 53101352, 'average price/sqft': 346.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1654144, 37.7573675]}}, {'id': '4117', 'type': 'Feature', 'properties': {'osmid': 53101516, 'average price/sqft': 778.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2210588, 37.8286706]}}, {'id': '4118', 'type': 'Feature', 'properties': {'osmid': 53101517, 'average price/sqft': 783.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2219711, 37.8292381]}}, {'id': '4119', 'type': 'Feature', 'properties': {'osmid': 53101563, 'average price/sqft': 481.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2718185, 37.8163683]}}, {'id': '4120', 'type': 'Feature', 'properties': {'osmid': 53101569, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2634493, 37.8146433]}}, {'id': '4121', 'type': 'Feature', 'properties': {'osmid': 53101575, 'average price/sqft': 480.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2817663, 37.8184911]}}, {'id': '4122', 'type': 'Feature', 'properties': {'osmid': 53101577, 'average price/sqft': 470.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2849823, 37.8192238]}}, {'id': '4123', 'type': 'Feature', 'properties': {'osmid': 53101579, 'average price/sqft': 466.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2859687, 37.8194491]}}, {'id': '4124', 'type': 'Feature', 'properties': {'osmid': 53101581, 'average price/sqft': 458.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.286912, 37.8196662]}}, {'id': '4125', 'type': 'Feature', 'properties': {'osmid': 53101583, 'average price/sqft': 445.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.288926, 37.8205683]}}, {'id': '4126', 'type': 'Feature', 'properties': {'osmid': 53101587, 'average price/sqft': 446.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.289282, 37.8207461]}}, {'id': '4127', 'type': 'Feature', 'properties': {'osmid': 53101588, 'average price/sqft': 448.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2898277, 37.8210238]}}, {'id': '4128', 'type': 'Feature', 'properties': {'osmid': 53101590, 'average price/sqft': 451.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2911205, 37.8216743]}}, {'id': '4129', 'type': 'Feature', 'properties': {'osmid': 53101737, 'average price/sqft': 461.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1750942, 37.8008861]}}, {'id': '4130', 'type': 'Feature', 'properties': {'osmid': 53101751, 'average price/sqft': 303.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2290768, 37.7776585]}}, {'id': '4131', 'type': 'Feature', 'properties': {'osmid': 53101960, 'average price/sqft': 768.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2277703, 37.8105629]}}, {'id': '4132', 'type': 'Feature', 'properties': {'osmid': 53102003, 'average price/sqft': 435.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1979267, 37.7766506]}}, {'id': '4133', 'type': 'Feature', 'properties': {'osmid': 53102019, 'average price/sqft': 678.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2494868, 37.8075359]}}, {'id': '4134', 'type': 'Feature', 'properties': {'osmid': 53102030, 'average price/sqft': 489.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2847389, 37.8401285]}}, {'id': '4135', 'type': 'Feature', 'properties': {'osmid': 53102032, 'average price/sqft': 479.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2853885, 37.8421702]}}, {'id': '4136', 'type': 'Feature', 'properties': {'osmid': 53102055, 'average price/sqft': 330.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1191594, 37.7533909]}}, {'id': '4137', 'type': 'Feature', 'properties': {'osmid': 53102103, 'average price/sqft': 337.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1213562, 37.7553568]}}, {'id': '4138', 'type': 'Feature', 'properties': {'osmid': 53102105, 'average price/sqft': 329.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1209206, 37.7557652]}}, {'id': '4139', 'type': 'Feature', 'properties': {'osmid': 53102398, 'average price/sqft': 367.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1225822, 37.7540776]}}, {'id': '4140', 'type': 'Feature', 'properties': {'osmid': 53102407, 'average price/sqft': 457.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2073357, 37.7862322]}}, {'id': '4141', 'type': 'Feature', 'properties': {'osmid': 53102409, 'average price/sqft': 467.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2063424, 37.7868286]}}, {'id': '4142', 'type': 'Feature', 'properties': {'osmid': 53102412, 'average price/sqft': 564.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2026344, 37.7896699]}}, {'id': '4143', 'type': 'Feature', 'properties': {'osmid': 53102601, 'average price/sqft': 414.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2223126, 37.7897664]}}, {'id': '4144', 'type': 'Feature', 'properties': {'osmid': 53102649, 'average price/sqft': 412.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2029744, 37.7735047]}}, {'id': '4145', 'type': 'Feature', 'properties': {'osmid': 53102650, 'average price/sqft': 435.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2035122, 37.7764267]}}, {'id': '4146', 'type': 'Feature', 'properties': {'osmid': 53102651, 'average price/sqft': 451.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2043089, 37.7782965]}}, {'id': '4147', 'type': 'Feature', 'properties': {'osmid': 53102665, 'average price/sqft': 434.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2147704, 37.7864829]}}, {'id': '4148', 'type': 'Feature', 'properties': {'osmid': 53102669, 'average price/sqft': 435.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2132704, 37.7873611]}}, {'id': '4149', 'type': 'Feature', 'properties': {'osmid': 53102682, 'average price/sqft': 447.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2104545, 37.7890095]}}, {'id': '4150', 'type': 'Feature', 'properties': {'osmid': 53102718, 'average price/sqft': 620.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2269176, 37.8623111]}}, {'id': '4151', 'type': 'Feature', 'properties': {'osmid': 53102723, 'average price/sqft': 368.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1660917, 37.7502061]}}, {'id': '4152', 'type': 'Feature', 'properties': {'osmid': 53102724, 'average price/sqft': 370.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1650717, 37.7488107]}}, {'id': '4153', 'type': 'Feature', 'properties': {'osmid': 53102727, 'average price/sqft': 376.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1631404, 37.7462036]}}, {'id': '4154', 'type': 'Feature', 'properties': {'osmid': 53102729, 'average price/sqft': 374.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1625812, 37.7454675]}}, {'id': '4155', 'type': 'Feature', 'properties': {'osmid': 53102734, 'average price/sqft': 377.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1733181, 37.7606901]}}, {'id': '4156', 'type': 'Feature', 'properties': {'osmid': 53102736, 'average price/sqft': 379.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1727522, 37.7599442]}}, {'id': '4157', 'type': 'Feature', 'properties': {'osmid': 53102738, 'average price/sqft': 384.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1722023, 37.759213]}}, {'id': '4158', 'type': 'Feature', 'properties': {'osmid': 53102741, 'average price/sqft': 390.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1705806, 37.7568159]}}, {'id': '4159', 'type': 'Feature', 'properties': {'osmid': 53102743, 'average price/sqft': 388.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1699884, 37.7560559]}}, {'id': '4160', 'type': 'Feature', 'properties': {'osmid': 53102747, 'average price/sqft': 362.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.167245, 37.7517507]}}, {'id': '4161', 'type': 'Feature', 'properties': {'osmid': 53102778, 'average price/sqft': 372.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1745792, 37.7629123]}}, {'id': '4162', 'type': 'Feature', 'properties': {'osmid': 53102780, 'average price/sqft': 386.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1735916, 37.761673]}}, {'id': '4163', 'type': 'Feature', 'properties': {'osmid': 53102829, 'average price/sqft': 948.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2309592, 37.8155951]}}, {'id': '4164', 'type': 'Feature', 'properties': {'osmid': 53102830, 'average price/sqft': 895.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2290956, 37.8149378]}}, {'id': '4165', 'type': 'Feature', 'properties': {'osmid': 53102885, 'average price/sqft': 657.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1675672, 37.7870101]}}, {'id': '4166', 'type': 'Feature', 'properties': {'osmid': 53102897, 'average price/sqft': 630.0, 'observation count': 29.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2020796, 37.797088]}}, {'id': '4167', 'type': 'Feature', 'properties': {'osmid': 53102906, 'average price/sqft': 618.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1998556, 37.7951824]}}, {'id': '4168', 'type': 'Feature', 'properties': {'osmid': 53102910, 'average price/sqft': 619.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1993214, 37.7946133]}}, {'id': '4169', 'type': 'Feature', 'properties': {'osmid': 53102912, 'average price/sqft': 639.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1980546, 37.7932221]}}, {'id': '4170', 'type': 'Feature', 'properties': {'osmid': 53102914, 'average price/sqft': 645.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1974734, 37.7925753]}}, {'id': '4171', 'type': 'Feature', 'properties': {'osmid': 53102917, 'average price/sqft': 648.0, 'observation count': 29.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1968869, 37.79193]}}, {'id': '4172', 'type': 'Feature', 'properties': {'osmid': 53102924, 'average price/sqft': 443.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1869698, 37.7544231]}}, {'id': '4173', 'type': 'Feature', 'properties': {'osmid': 53102925, 'average price/sqft': 442.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1815681, 37.7575112]}}, {'id': '4174', 'type': 'Feature', 'properties': {'osmid': 53102927, 'average price/sqft': 439.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1807914, 37.7578855]}}, {'id': '4175', 'type': 'Feature', 'properties': {'osmid': 53102931, 'average price/sqft': 404.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1758764, 37.7602495]}}, {'id': '4176', 'type': 'Feature', 'properties': {'osmid': 53102938, 'average price/sqft': 400.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1696801, 37.7641369]}}, {'id': '4177', 'type': 'Feature', 'properties': {'osmid': 53102939, 'average price/sqft': 392.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.167639, 37.7651419]}}, {'id': '4178', 'type': 'Feature', 'properties': {'osmid': 53102948, 'average price/sqft': 613.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1968771, 37.812487]}}, {'id': '4179', 'type': 'Feature', 'properties': {'osmid': 53102995, 'average price/sqft': 582.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1924262, 37.7986365]}}, {'id': '4180', 'type': 'Feature', 'properties': {'osmid': 53103030, 'average price/sqft': 915.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2413656, 37.8507489]}}, {'id': '4181', 'type': 'Feature', 'properties': {'osmid': 53103033, 'average price/sqft': 690.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2402838, 37.8121753]}}, {'id': '4182', 'type': 'Feature', 'properties': {'osmid': 53103035, 'average price/sqft': 690.0, 'observation count': 22.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2392871, 37.8113742]}}, {'id': '4183', 'type': 'Feature', 'properties': {'osmid': 53103036, 'average price/sqft': 710.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2354687, 37.8119176]}}, {'id': '4184', 'type': 'Feature', 'properties': {'osmid': 53103063, 'average price/sqft': 503.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2080609, 37.7578272]}}, {'id': '4185', 'type': 'Feature', 'properties': {'osmid': 53103064, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2060143, 37.7586351]}}, {'id': '4186', 'type': 'Feature', 'properties': {'osmid': 53103102, 'average price/sqft': 654.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.20487, 37.8309467]}}, {'id': '4187', 'type': 'Feature', 'properties': {'osmid': 53103103, 'average price/sqft': 655.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2045268, 37.8303565]}}, {'id': '4188', 'type': 'Feature', 'properties': {'osmid': 53103105, 'average price/sqft': 657.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2037155, 37.8295438]}}, {'id': '4189', 'type': 'Feature', 'properties': {'osmid': 53103107, 'average price/sqft': 652.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.204931, 37.828414]}}, {'id': '4190', 'type': 'Feature', 'properties': {'osmid': 53103113, 'average price/sqft': 589.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1511854, 37.7725067]}}, {'id': '4191', 'type': 'Feature', 'properties': {'osmid': 53103193, 'average price/sqft': 405.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.181341, 37.7749817]}}, {'id': '4192', 'type': 'Feature', 'properties': {'osmid': 53103195, 'average price/sqft': 403.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1802911, 37.7752551]}}, {'id': '4193', 'type': 'Feature', 'properties': {'osmid': 53103200, 'average price/sqft': 401.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1795841, 37.7756612]}}, {'id': '4194', 'type': 'Feature', 'properties': {'osmid': 53103203, 'average price/sqft': 397.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.178787, 37.7767738]}}, {'id': '4195', 'type': 'Feature', 'properties': {'osmid': 53103207, 'average price/sqft': 529.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2023534, 37.7603697]}}, {'id': '4196', 'type': 'Feature', 'properties': {'osmid': 53103208, 'average price/sqft': 514.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.201776, 37.7607558]}}, {'id': '4197', 'type': 'Feature', 'properties': {'osmid': 53103210, 'average price/sqft': 468.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2001532, 37.7619274]}}, {'id': '4198', 'type': 'Feature', 'properties': {'osmid': 53103214, 'average price/sqft': 421.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1964056, 37.7645443]}}, {'id': '4199', 'type': 'Feature', 'properties': {'osmid': 53103215, 'average price/sqft': 417.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1957011, 37.7650381]}}, {'id': '4200', 'type': 'Feature', 'properties': {'osmid': 53103221, 'average price/sqft': 410.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1926206, 37.7672296]}}, {'id': '4201', 'type': 'Feature', 'properties': {'osmid': 53103223, 'average price/sqft': 410.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1922184, 37.7675]}}, {'id': '4202', 'type': 'Feature', 'properties': {'osmid': 53103291, 'average price/sqft': 871.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2547357, 37.8509698]}}, {'id': '4203', 'type': 'Feature', 'properties': {'osmid': 53103314, 'average price/sqft': 876.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2545983, 37.8500511]}}, {'id': '4204', 'type': 'Feature', 'properties': {'osmid': 53103317, 'average price/sqft': 900.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2541971, 37.847076]}}, {'id': '4205', 'type': 'Feature', 'properties': {'osmid': 53103573, 'average price/sqft': 357.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1594259, 37.746366]}}, {'id': '4206', 'type': 'Feature', 'properties': {'osmid': 53103576, 'average price/sqft': 348.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1575515, 37.7437994]}}, {'id': '4207', 'type': 'Feature', 'properties': {'osmid': 53103587, 'average price/sqft': 826.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2400544, 37.841405]}}, {'id': '4208', 'type': 'Feature', 'properties': {'osmid': 53103589, 'average price/sqft': 827.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2395241, 37.841917]}}, {'id': '4209', 'type': 'Feature', 'properties': {'osmid': 53103714, 'average price/sqft': 769.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2268516, 37.8107292]}}, {'id': '4210', 'type': 'Feature', 'properties': {'osmid': 53103787, 'average price/sqft': 278.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1604722, 37.7375789]}}, {'id': '4211', 'type': 'Feature', 'properties': {'osmid': 53103813, 'average price/sqft': 368.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1264399, 37.7545968]}}, {'id': '4212', 'type': 'Feature', 'properties': {'osmid': 53103814, 'average price/sqft': 361.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1243502, 37.7549781]}}, {'id': '4213', 'type': 'Feature', 'properties': {'osmid': 53103817, 'average price/sqft': 358.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1235336, 37.7553563]}}, {'id': '4214', 'type': 'Feature', 'properties': {'osmid': 53103820, 'average price/sqft': 327.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1207225, 37.7546365]}}, {'id': '4215', 'type': 'Feature', 'properties': {'osmid': 53103821, 'average price/sqft': 341.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1199189, 37.753927]}}, {'id': '4216', 'type': 'Feature', 'properties': {'osmid': 53103843, 'average price/sqft': 416.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1868502, 37.805791]}}, {'id': '4217', 'type': 'Feature', 'properties': {'osmid': 53103845, 'average price/sqft': 433.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.184545, 37.8053611]}}, {'id': '4218', 'type': 'Feature', 'properties': {'osmid': 53103873, 'average price/sqft': 754.0, 'observation count': 23.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2329987, 37.8069342]}}, {'id': '4219', 'type': 'Feature', 'properties': {'osmid': 53103891, 'average price/sqft': 514.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2149779, 37.8467797]}}, {'id': '4220', 'type': 'Feature', 'properties': {'osmid': 53103895, 'average price/sqft': 523.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2157497, 37.8479665]}}, {'id': '4221', 'type': 'Feature', 'properties': {'osmid': 53103960, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1842553, 37.7318619]}}, {'id': '4222', 'type': 'Feature', 'properties': {'osmid': 53103964, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.183554, 37.734499]}}, {'id': '4223', 'type': 'Feature', 'properties': {'osmid': 53103966, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1835153, 37.7346672]}}, {'id': '4224', 'type': 'Feature', 'properties': {'osmid': 53104320, 'average price/sqft': 627.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.19336, 37.8323787]}}, {'id': '4225', 'type': 'Feature', 'properties': {'osmid': 53104328, 'average price/sqft': 323.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2949133, 37.8146738]}}, {'id': '4226', 'type': 'Feature', 'properties': {'osmid': 53104329, 'average price/sqft': 302.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2961813, 37.815331]}}, {'id': '4227', 'type': 'Feature', 'properties': {'osmid': 53104337, 'average price/sqft': 457.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2908673, 37.8130533]}}, {'id': '4228', 'type': 'Feature', 'properties': {'osmid': 53104343, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2612169, 37.8037367]}}, {'id': '4229', 'type': 'Feature', 'properties': {'osmid': 53104346, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.263581, 37.8046737]}}, {'id': '4230', 'type': 'Feature', 'properties': {'osmid': 53104347, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2661649, 37.8052495]}}, {'id': '4231', 'type': 'Feature', 'properties': {'osmid': 53104355, 'average price/sqft': 586.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2747768, 37.8081289]}}, {'id': '4232', 'type': 'Feature', 'properties': {'osmid': 53104357, 'average price/sqft': 575.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2759334, 37.8086264]}}, {'id': '4233', 'type': 'Feature', 'properties': {'osmid': 53104396, 'average price/sqft': 398.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2616386, 37.8164293]}}, {'id': '4234', 'type': 'Feature', 'properties': {'osmid': 53104398, 'average price/sqft': 401.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2614416, 37.8171688]}}, {'id': '4235', 'type': 'Feature', 'properties': {'osmid': 53104408, 'average price/sqft': 709.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2188887, 37.7996697]}}, {'id': '4236', 'type': 'Feature', 'properties': {'osmid': 53104410, 'average price/sqft': 735.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2187557, 37.8009869]}}, {'id': '4237', 'type': 'Feature', 'properties': {'osmid': 53104413, 'average price/sqft': 710.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2193318, 37.7993533]}}, {'id': '4238', 'type': 'Feature', 'properties': {'osmid': 53104414, 'average price/sqft': 705.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2192119, 37.7997292]}}, {'id': '4239', 'type': 'Feature', 'properties': {'osmid': 53104512, 'average price/sqft': 391.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1729599, 37.7831982]}}, {'id': '4240', 'type': 'Feature', 'properties': {'osmid': 53104518, 'average price/sqft': 396.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1761492, 37.7840543]}}, {'id': '4241', 'type': 'Feature', 'properties': {'osmid': 53104936, 'average price/sqft': 629.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1929742, 37.8269626]}}, {'id': '4242', 'type': 'Feature', 'properties': {'osmid': 53104937, 'average price/sqft': 625.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1922172, 37.8265766]}}, {'id': '4243', 'type': 'Feature', 'properties': {'osmid': 53104939, 'average price/sqft': 616.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1904936, 37.826911]}}, {'id': '4244', 'type': 'Feature', 'properties': {'osmid': 53105026, 'average price/sqft': 629.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1799861, 37.7943595]}}, {'id': '4245', 'type': 'Feature', 'properties': {'osmid': 53105029, 'average price/sqft': 391.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1748527, 37.7791677]}}, {'id': '4246', 'type': 'Feature', 'properties': {'osmid': 53105042, 'average price/sqft': 629.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2059313, 37.7988059]}}, {'id': '4247', 'type': 'Feature', 'properties': {'osmid': 53105043, 'average price/sqft': 627.0, 'observation count': 29.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2027184, 37.7966169]}}, {'id': '4248', 'type': 'Feature', 'properties': {'osmid': 53105045, 'average price/sqft': 633.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2008855, 37.7951376]}}, {'id': '4249', 'type': 'Feature', 'properties': {'osmid': 53105061, 'average price/sqft': 718.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2131604, 37.8237571]}}, {'id': '4250', 'type': 'Feature', 'properties': {'osmid': 53105256, 'average price/sqft': 619.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2624631, 37.8210848]}}, {'id': '4251', 'type': 'Feature', 'properties': {'osmid': 53105258, 'average price/sqft': 593.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2629117, 37.820753]}}, {'id': '4252', 'type': 'Feature', 'properties': {'osmid': 53105260, 'average price/sqft': 565.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2654909, 37.8211642]}}, {'id': '4253', 'type': 'Feature', 'properties': {'osmid': 53105267, 'average price/sqft': 539.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1292794, 37.7660101]}}, {'id': '4254', 'type': 'Feature', 'properties': {'osmid': 53105272, 'average price/sqft': 539.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.128285, 37.7641658]}}, {'id': '4255', 'type': 'Feature', 'properties': {'osmid': 53105388, 'average price/sqft': 425.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1760307, 37.7455938]}}, {'id': '4256', 'type': 'Feature', 'properties': {'osmid': 53105389, 'average price/sqft': 431.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1743449, 37.7463855]}}, {'id': '4257', 'type': 'Feature', 'properties': {'osmid': 53105391, 'average price/sqft': 404.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1703806, 37.7482031]}}, {'id': '4258', 'type': 'Feature', 'properties': {'osmid': 53105396, 'average price/sqft': 360.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1650274, 37.7507355]}}, {'id': '4259', 'type': 'Feature', 'properties': {'osmid': 53105398, 'average price/sqft': 347.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1629675, 37.7516924]}}, {'id': '4260', 'type': 'Feature', 'properties': {'osmid': 53105400, 'average price/sqft': 342.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1619214, 37.7521907]}}, {'id': '4261', 'type': 'Feature', 'properties': {'osmid': 53105401, 'average price/sqft': 338.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1603764, 37.7529115]}}, {'id': '4262', 'type': 'Feature', 'properties': {'osmid': 53105403, 'average price/sqft': 339.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1593918, 37.7533663]}}, {'id': '4263', 'type': 'Feature', 'properties': {'osmid': 53105405, 'average price/sqft': 337.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1573713, 37.7538097]}}, {'id': '4264', 'type': 'Feature', 'properties': {'osmid': 53105410, 'average price/sqft': 408.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1794067, 37.7440843]}}, {'id': '4265', 'type': 'Feature', 'properties': {'osmid': 53105412, 'average price/sqft': 411.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1787497, 37.7443957]}}, {'id': '4266', 'type': 'Feature', 'properties': {'osmid': 53105479, 'average price/sqft': 523.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.232636, 37.7952416]}}, {'id': '4267', 'type': 'Feature', 'properties': {'osmid': 53105484, 'average price/sqft': 451.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.226615, 37.79169]}}, {'id': '4268', 'type': 'Feature', 'properties': {'osmid': 53105486, 'average price/sqft': 443.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2257838, 37.791224]}}, {'id': '4269', 'type': 'Feature', 'properties': {'osmid': 53105496, 'average price/sqft': 562.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2342914, 37.7961864]}}, {'id': '4270', 'type': 'Feature', 'properties': {'osmid': 53105499, 'average price/sqft': 637.0, 'observation count': 29.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1982467, 37.7911268]}}, {'id': '4271', 'type': 'Feature', 'properties': {'osmid': 53105502, 'average price/sqft': 655.0, 'observation count': 29.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1949717, 37.7930526]}}, {'id': '4272', 'type': 'Feature', 'properties': {'osmid': 53105504, 'average price/sqft': 652.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1942941, 37.7934469]}}, {'id': '4273', 'type': 'Feature', 'properties': {'osmid': 53105512, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1865576, 37.732122]}}, {'id': '4274', 'type': 'Feature', 'properties': {'osmid': 53105513, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1851501, 37.7319565]}}, {'id': '4275', 'type': 'Feature', 'properties': {'osmid': 53105527, 'average price/sqft': 555.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2586889, 37.8207692]}}, {'id': '4276', 'type': 'Feature', 'properties': {'osmid': 53105616, 'average price/sqft': 263.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1612191, 37.7583627]}}, {'id': '4277', 'type': 'Feature', 'properties': {'osmid': 53105620, 'average price/sqft': 344.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1564014, 37.7517399]}}, {'id': '4278', 'type': 'Feature', 'properties': {'osmid': 53105626, 'average price/sqft': 339.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1540325, 37.7477154]}}, {'id': '4279', 'type': 'Feature', 'properties': {'osmid': 53105627, 'average price/sqft': 342.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1535947, 37.7472268]}}, {'id': '4280', 'type': 'Feature', 'properties': {'osmid': 53105630, 'average price/sqft': 341.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1533094, 37.7474975]}}, {'id': '4281', 'type': 'Feature', 'properties': {'osmid': 53105631, 'average price/sqft': 340.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1525755, 37.7468202]}}, {'id': '4282', 'type': 'Feature', 'properties': {'osmid': 53105637, 'average price/sqft': 359.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1542509, 37.7481656]}}, {'id': '4283', 'type': 'Feature', 'properties': {'osmid': 53105647, 'average price/sqft': 562.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1970998, 37.8410199]}}, {'id': '4284', 'type': 'Feature', 'properties': {'osmid': 53105752, 'average price/sqft': 430.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1779272, 37.7465158]}}, {'id': '4285', 'type': 'Feature', 'properties': {'osmid': 53105754, 'average price/sqft': 411.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1760705, 37.7440517]}}, {'id': '4286', 'type': 'Feature', 'properties': {'osmid': 53105799, 'average price/sqft': 664.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2437072, 37.8071187]}}, {'id': '4287', 'type': 'Feature', 'properties': {'osmid': 53106235, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1832984, 37.7285366]}}, {'id': '4288', 'type': 'Feature', 'properties': {'osmid': 53106276, 'average price/sqft': 755.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2210918, 37.8021104]}}, {'id': '4289', 'type': 'Feature', 'properties': {'osmid': 53106277, 'average price/sqft': 761.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2215417, 37.8021792]}}, {'id': '4290', 'type': 'Feature', 'properties': {'osmid': 53106335, 'average price/sqft': 790.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2521468, 37.8248314]}}, {'id': '4291', 'type': 'Feature', 'properties': {'osmid': 53106417, 'average price/sqft': 764.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1564304, 37.7916864]}}, {'id': '4292', 'type': 'Feature', 'properties': {'osmid': 53106431, 'average price/sqft': 736.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2626783, 37.8489713]}}, {'id': '4293', 'type': 'Feature', 'properties': {'osmid': 53106433, 'average price/sqft': 685.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2689206, 37.8481541]}}, {'id': '4294', 'type': 'Feature', 'properties': {'osmid': 53106446, 'average price/sqft': 504.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2793915, 37.846772]}}, {'id': '4295', 'type': 'Feature', 'properties': {'osmid': 53106458, 'average price/sqft': 512.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2845306, 37.8456674]}}, {'id': '4296', 'type': 'Feature', 'properties': {'osmid': 53106460, 'average price/sqft': 551.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2872011, 37.8449178]}}, {'id': '4297', 'type': 'Feature', 'properties': {'osmid': 53106469, 'average price/sqft': 810.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2581622, 37.849042]}}, {'id': '4298', 'type': 'Feature', 'properties': {'osmid': 53106471, 'average price/sqft': 780.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2599711, 37.8488012]}}, {'id': '4299', 'type': 'Feature', 'properties': {'osmid': 53106473, 'average price/sqft': 738.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.262551, 37.8484598]}}, {'id': '4300', 'type': 'Feature', 'properties': {'osmid': 53106496, 'average price/sqft': 515.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1798731, 37.7968504]}}, {'id': '4301', 'type': 'Feature', 'properties': {'osmid': 53106499, 'average price/sqft': 513.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1782522, 37.7954092]}}, {'id': '4302', 'type': 'Feature', 'properties': {'osmid': 53106512, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.259166, 37.7959397]}}, {'id': '4303', 'type': 'Feature', 'properties': {'osmid': 53106515, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.255009, 37.7922864]}}, {'id': '4304', 'type': 'Feature', 'properties': {'osmid': 53106522, 'average price/sqft': 500.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2118265, 37.7666234]}}, {'id': '4305', 'type': 'Feature', 'properties': {'osmid': 53106526, 'average price/sqft': 501.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2093659, 37.7654623]}}, {'id': '4306', 'type': 'Feature', 'properties': {'osmid': 53106528, 'average price/sqft': 498.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2086041, 37.765095]}}, {'id': '4307', 'type': 'Feature', 'properties': {'osmid': 53106534, 'average price/sqft': 290.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2346544, 37.7780067]}}, {'id': '4308', 'type': 'Feature', 'properties': {'osmid': 53106646, 'average price/sqft': 717.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2134429, 37.8239942]}}, {'id': '4309', 'type': 'Feature', 'properties': {'osmid': 53106655, 'average price/sqft': 726.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2115366, 37.8217342]}}, {'id': '4310', 'type': 'Feature', 'properties': {'osmid': 53106666, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1838889, 37.739483]}}, {'id': '4311', 'type': 'Feature', 'properties': {'osmid': 53106705, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1488791, 37.7718502]}}, {'id': '4312', 'type': 'Feature', 'properties': {'osmid': 53106724, 'average price/sqft': 539.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1449107, 37.7742763]}}, {'id': '4313', 'type': 'Feature', 'properties': {'osmid': 53106726, 'average price/sqft': 539.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1446991, 37.7743451]}}, {'id': '4314', 'type': 'Feature', 'properties': {'osmid': 53106731, 'average price/sqft': 539.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1444496, 37.7738519]}}, {'id': '4315', 'type': 'Feature', 'properties': {'osmid': 53106733, 'average price/sqft': 539.0, 'observation count': 1.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1454002, 37.7751553]}}, {'id': '4316', 'type': 'Feature', 'properties': {'osmid': 53106744, 'average price/sqft': 406.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1672336, 37.7634739]}}, {'id': '4317', 'type': 'Feature', 'properties': {'osmid': 53106745, 'average price/sqft': 419.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1661798, 37.762079]}}, {'id': '4318', 'type': 'Feature', 'properties': {'osmid': 53106757, 'average price/sqft': 348.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1580072, 37.7485881]}}, {'id': '4319', 'type': 'Feature', 'properties': {'osmid': 53106760, 'average price/sqft': 367.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1620668, 37.7467069]}}, {'id': '4320', 'type': 'Feature', 'properties': {'osmid': 53106799, 'average price/sqft': 501.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2664659, 37.8180229]}}, {'id': '4321', 'type': 'Feature', 'properties': {'osmid': 53106803, 'average price/sqft': 403.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1691546, 37.7634342]}}, {'id': '4322', 'type': 'Feature', 'properties': {'osmid': 53106805, 'average price/sqft': 423.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1665968, 37.7646468]}}, {'id': '4323', 'type': 'Feature', 'properties': {'osmid': 53106812, 'average price/sqft': 427.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2174826, 37.7867035]}}, {'id': '4324', 'type': 'Feature', 'properties': {'osmid': 53106813, 'average price/sqft': 439.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2162981, 37.7866764]}}, {'id': '4325', 'type': 'Feature', 'properties': {'osmid': 53106815, 'average price/sqft': 437.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2148069, 37.7854092]}}, {'id': '4326', 'type': 'Feature', 'properties': {'osmid': 53106832, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2627338, 37.8059423]}}, {'id': '4327', 'type': 'Feature', 'properties': {'osmid': 53106842, 'average price/sqft': 637.0, 'observation count': 29.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1988381, 37.7917802]}}, {'id': '4328', 'type': 'Feature', 'properties': {'osmid': 53106845, 'average price/sqft': 652.0, 'observation count': 31.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1955545, 37.7936903]}}, {'id': '4329', 'type': 'Feature', 'properties': {'osmid': 53106905, 'average price/sqft': 340.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1589592, 37.7522353]}}, {'id': '4330', 'type': 'Feature', 'properties': {'osmid': 53106960, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2205187, 37.7629304]}}, {'id': '4331', 'type': 'Feature', 'properties': {'osmid': 53107025, 'average price/sqft': 1013.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2485503, 37.8389023]}}, {'id': '4332', 'type': 'Feature', 'properties': {'osmid': 53107049, 'average price/sqft': 757.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1589115, 37.7932295]}}, {'id': '4333', 'type': 'Feature', 'properties': {'osmid': 53107128, 'average price/sqft': 657.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2052486, 37.8296275]}}, {'id': '4334', 'type': 'Feature', 'properties': {'osmid': 53107222, 'average price/sqft': 450.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1402837, 37.7638859]}}, {'id': '4335', 'type': 'Feature', 'properties': {'osmid': 53107223, 'average price/sqft': 439.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1416199, 37.7641847]}}, {'id': '4336', 'type': 'Feature', 'properties': {'osmid': 53107225, 'average price/sqft': 430.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1417502, 37.7649529]}}, {'id': '4337', 'type': 'Feature', 'properties': {'osmid': 53107227, 'average price/sqft': 434.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1392342, 37.7659494]}}, {'id': '4338', 'type': 'Feature', 'properties': {'osmid': 53107228, 'average price/sqft': 441.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1383518, 37.7658922]}}, {'id': '4339', 'type': 'Feature', 'properties': {'osmid': 53107233, 'average price/sqft': 552.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1417948, 37.7579534]}}, {'id': '4340', 'type': 'Feature', 'properties': {'osmid': 53107234, 'average price/sqft': 527.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1420278, 37.7593379]}}, {'id': '4341', 'type': 'Feature', 'properties': {'osmid': 53107237, 'average price/sqft': 500.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1414601, 37.7612516]}}, {'id': '4342', 'type': 'Feature', 'properties': {'osmid': 53107239, 'average price/sqft': 471.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.14114, 37.7628933]}}, {'id': '4343', 'type': 'Feature', 'properties': {'osmid': 53107410, 'average price/sqft': 455.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1778981, 37.7976196]}}, {'id': '4344', 'type': 'Feature', 'properties': {'osmid': 53107443, 'average price/sqft': 766.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2256849, 37.8113289]}}, {'id': '4345', 'type': 'Feature', 'properties': {'osmid': 53107483, 'average price/sqft': 411.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1764283, 37.7712233]}}, {'id': '4346', 'type': 'Feature', 'properties': {'osmid': 53107533, 'average price/sqft': 747.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2349645, 37.8060189]}}, {'id': '4347', 'type': 'Feature', 'properties': {'osmid': 53107559, 'average price/sqft': 572.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2070608, 37.7932584]}}, {'id': '4348', 'type': 'Feature', 'properties': {'osmid': 53107566, 'average price/sqft': 618.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2039465, 37.7956523]}}, {'id': '4349', 'type': 'Feature', 'properties': {'osmid': 53107568, 'average price/sqft': 625.0, 'observation count': 29.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.203319, 37.7961327]}}, {'id': '4350', 'type': 'Feature', 'properties': {'osmid': 53107569, 'average price/sqft': 631.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2013576, 37.797647]}}, {'id': '4351', 'type': 'Feature', 'properties': {'osmid': 53107577, 'average price/sqft': 626.0, 'observation count': 30.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2004883, 37.7969216]}}, {'id': '4352', 'type': 'Feature', 'properties': {'osmid': 53107578, 'average price/sqft': 627.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2000081, 37.7975132]}}, {'id': '4353', 'type': 'Feature', 'properties': {'osmid': 53107697, 'average price/sqft': 364.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1478668, 37.7447598]}}, {'id': '4354', 'type': 'Feature', 'properties': {'osmid': 53107699, 'average price/sqft': 356.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1472095, 37.7442403]}}, {'id': '4355', 'type': 'Feature', 'properties': {'osmid': 53107745, 'average price/sqft': 423.0, 'observation count': 13.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2194299, 37.7896532]}}, {'id': '4356', 'type': 'Feature', 'properties': {'osmid': 53107859, 'average price/sqft': 740.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2592733, 37.8264243]}}, {'id': '4357', 'type': 'Feature', 'properties': {'osmid': 53107868, 'average price/sqft': 605.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1649089, 37.793186]}}, {'id': '4358', 'type': 'Feature', 'properties': {'osmid': 53107920, 'average price/sqft': 583.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2765108, 37.8437715]}}, {'id': '4359', 'type': 'Feature', 'properties': {'osmid': 53107931, 'average price/sqft': 662.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2663216, 37.8457366]}}, {'id': '4360', 'type': 'Feature', 'properties': {'osmid': 53107933, 'average price/sqft': 659.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2683514, 37.8454775]}}, {'id': '4361', 'type': 'Feature', 'properties': {'osmid': 53107934, 'average price/sqft': 646.0, 'observation count': 26.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2707117, 37.8451692]}}, {'id': '4362', 'type': 'Feature', 'properties': {'osmid': 53107936, 'average price/sqft': 632.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2728392, 37.8448877]}}, {'id': '4363', 'type': 'Feature', 'properties': {'osmid': 53107940, 'average price/sqft': 595.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2764938, 37.8444179]}}, {'id': '4364', 'type': 'Feature', 'properties': {'osmid': 53107943, 'average price/sqft': 796.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2595529, 37.8466891]}}, {'id': '4365', 'type': 'Feature', 'properties': {'osmid': 53107946, 'average price/sqft': 749.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2620346, 37.846359]}}, {'id': '4366', 'type': 'Feature', 'properties': {'osmid': 53107953, 'average price/sqft': 834.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2180484, 37.8073969]}}, {'id': '4367', 'type': 'Feature', 'properties': {'osmid': 53108004, 'average price/sqft': 553.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.226399, 37.8559493]}}, {'id': '4368', 'type': 'Feature', 'properties': {'osmid': 53108015, 'average price/sqft': 566.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2246388, 37.8547383]}}, {'id': '4369', 'type': 'Feature', 'properties': {'osmid': 53108018, 'average price/sqft': 554.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2263462, 37.8552938]}}, {'id': '4370', 'type': 'Feature', 'properties': {'osmid': 53108117, 'average price/sqft': 689.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.189049, 37.7882763]}}, {'id': '4371', 'type': 'Feature', 'properties': {'osmid': 53108118, 'average price/sqft': 694.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.188304, 37.7876154]}}, {'id': '4372', 'type': 'Feature', 'properties': {'osmid': 53108173, 'average price/sqft': 772.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2603885, 37.8302624]}}, {'id': '4373', 'type': 'Feature', 'properties': {'osmid': 53108276, 'average price/sqft': 657.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2051822, 37.8299323]}}, {'id': '4374', 'type': 'Feature', 'properties': {'osmid': 53108292, 'average price/sqft': 621.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.255733, 37.8225353]}}, {'id': '4375', 'type': 'Feature', 'properties': {'osmid': 53108295, 'average price/sqft': 674.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2574969, 37.8237916]}}, {'id': '4376', 'type': 'Feature', 'properties': {'osmid': 53108301, 'average price/sqft': 682.0, 'observation count': 16.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2616491, 37.8251999]}}, {'id': '4377', 'type': 'Feature', 'properties': {'osmid': 53108304, 'average price/sqft': 630.0, 'observation count': 17.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2668051, 37.8267586]}}, {'id': '4378', 'type': 'Feature', 'properties': {'osmid': 53108310, 'average price/sqft': 585.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2691094, 37.8271347]}}, {'id': '4379', 'type': 'Feature', 'properties': {'osmid': 53108388, 'average price/sqft': 360.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2418172, 37.7908506]}}, {'id': '4380', 'type': 'Feature', 'properties': {'osmid': 53108390, 'average price/sqft': 407.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1974313, 37.7665873]}}, {'id': '4381', 'type': 'Feature', 'properties': {'osmid': 53108391, 'average price/sqft': 410.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.196582, 37.7658199]}}, {'id': '4382', 'type': 'Feature', 'properties': {'osmid': 53108400, 'average price/sqft': 453.0, 'observation count': 2.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2461, 37.7933243]}}, {'id': '4383', 'type': 'Feature', 'properties': {'osmid': 53108406, 'average price/sqft': 354.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2386752, 37.7889708]}}, {'id': '4384', 'type': 'Feature', 'properties': {'osmid': 53108409, 'average price/sqft': 400.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2355328, 37.7870849]}}, {'id': '4385', 'type': 'Feature', 'properties': {'osmid': 53108411, 'average price/sqft': 412.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.231992, 37.7849618]}}, {'id': '4386', 'type': 'Feature', 'properties': {'osmid': 53108419, 'average price/sqft': 342.0, 'observation count': 6.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2260506, 37.7813854]}}, {'id': '4387', 'type': 'Feature', 'properties': {'osmid': 53108424, 'average price/sqft': 383.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2258254, 37.7816871]}}, {'id': '4388', 'type': 'Feature', 'properties': {'osmid': 53108430, 'average price/sqft': 414.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2229415, 37.7811104]}}, {'id': '4389', 'type': 'Feature', 'properties': {'osmid': 53108432, 'average price/sqft': 435.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2217926, 37.7807562]}}, {'id': '4390', 'type': 'Feature', 'properties': {'osmid': 53108435, 'average price/sqft': 430.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2220286, 37.7802989]}}, {'id': '4391', 'type': 'Feature', 'properties': {'osmid': 53108438, 'average price/sqft': 451.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2206217, 37.7798514]}}, {'id': '4392', 'type': 'Feature', 'properties': {'osmid': 53108439, 'average price/sqft': 498.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2159502, 37.7758298]}}, {'id': '4393', 'type': 'Feature', 'properties': {'osmid': 53108443, 'average price/sqft': 383.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2291916, 37.7831658]}}, {'id': '4394', 'type': 'Feature', 'properties': {'osmid': 53108445, 'average price/sqft': 381.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2282886, 37.7826267]}}, {'id': '4395', 'type': 'Feature', 'properties': {'osmid': 53108504, 'average price/sqft': 398.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1699229, 37.7621671]}}, {'id': '4396', 'type': 'Feature', 'properties': {'osmid': 53108510, 'average price/sqft': 396.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1694991, 37.761234]}}, {'id': '4397', 'type': 'Feature', 'properties': {'osmid': 53108512, 'average price/sqft': 399.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1691007, 37.7607071]}}, {'id': '4398', 'type': 'Feature', 'properties': {'osmid': 53108515, 'average price/sqft': 401.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1687427, 37.7608789]}}, {'id': '4399', 'type': 'Feature', 'properties': {'osmid': 53108518, 'average price/sqft': 369.0, 'observation count': 12.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1669715, 37.7584976]}}, {'id': '4400', 'type': 'Feature', 'properties': {'osmid': 53108519, 'average price/sqft': 355.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1664113, 37.7577307]}}, {'id': '4401', 'type': 'Feature', 'properties': {'osmid': 53108545, 'average price/sqft': 535.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.250469, 37.8181024]}}, {'id': '4402', 'type': 'Feature', 'properties': {'osmid': 53108547, 'average price/sqft': 539.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2524304, 37.8198572]}}, {'id': '4403', 'type': 'Feature', 'properties': {'osmid': 53108549, 'average price/sqft': 549.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.253145, 37.8205304]}}, {'id': '4404', 'type': 'Feature', 'properties': {'osmid': 53108595, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2157842, 37.8565616]}}, {'id': '4405', 'type': 'Feature', 'properties': {'osmid': 53108617, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.2176314, 37.8581262]}}, {'id': '4406', 'type': 'Feature', 'properties': {'osmid': 53108632, 'average price/sqft': 594.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2249634, 37.8591647]}}, {'id': '4407', 'type': 'Feature', 'properties': {'osmid': 53108635, 'average price/sqft': 608.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2243703, 37.862792]}}, {'id': '4408', 'type': 'Feature', 'properties': {'osmid': 53108686, 'average price/sqft': 393.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1783898, 37.7429582]}}, {'id': '4409', 'type': 'Feature', 'properties': {'osmid': 53108687, 'average price/sqft': 399.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1778568, 37.7432082]}}, {'id': '4410', 'type': 'Feature', 'properties': {'osmid': 53108689, 'average price/sqft': 416.0, 'observation count': 5.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1751771, 37.7444681]}}, {'id': '4411', 'type': 'Feature', 'properties': {'osmid': 53108718, 'average price/sqft': 586.0, 'observation count': 3.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1449195, 37.7841099]}}, {'id': '4412', 'type': 'Feature', 'properties': {'osmid': 53108762, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1845787, 37.7400846]}}, {'id': '4413', 'type': 'Feature', 'properties': {'osmid': 53108767, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1881978, 37.7345461]}}, {'id': '4414', 'type': 'Feature', 'properties': {'osmid': 53108769, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1883914, 37.7338013]}}, {'id': '4415', 'type': 'Feature', 'properties': {'osmid': 53108771, 'average price/sqft': null, 'observation count': null}, 'geometry': {'type': 'Point', 'coordinates': [-122.1885705, 37.7331969]}}, {'id': '4416', 'type': 'Feature', 'properties': {'osmid': 53108779, 'average price/sqft': 650.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2013479, 37.8043448]}}, {'id': '4417', 'type': 'Feature', 'properties': {'osmid': 53108780, 'average price/sqft': 649.0, 'observation count': 20.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2010362, 37.8041398]}}, {'id': '4418', 'type': 'Feature', 'properties': {'osmid': 53108996, 'average price/sqft': 657.0, 'observation count': 10.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2527714, 37.8086871]}}, {'id': '4419', 'type': 'Feature', 'properties': {'osmid': 53109168, 'average price/sqft': 830.0, 'observation count': 9.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2154773, 37.8105322]}}, {'id': '4420', 'type': 'Feature', 'properties': {'osmid': 53109321, 'average price/sqft': 731.0, 'observation count': 7.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2109512, 37.8210586]}}, {'id': '4421', 'type': 'Feature', 'properties': {'osmid': 53109368, 'average price/sqft': 578.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2107774, 37.7948458]}}, {'id': '4422', 'type': 'Feature', 'properties': {'osmid': 53109433, 'average price/sqft': 362.0, 'observation count': 4.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2247146, 37.7734442]}}, {'id': '4423', 'type': 'Feature', 'properties': {'osmid': 53109440, 'average price/sqft': 396.0, 'observation count': 8.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2231022, 37.7755889]}}, {'id': '4424', 'type': 'Feature', 'properties': {'osmid': 53109443, 'average price/sqft': 444.0, 'observation count': 11.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2215203, 37.7783824]}}, {'id': '4425', 'type': 'Feature', 'properties': {'osmid': 53109448, 'average price/sqft': 449.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2183154, 37.7829736]}}, {'id': '4426', 'type': 'Feature', 'properties': {'osmid': 53109452, 'average price/sqft': 446.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.216769, 37.784232]}}, {'id': '4427', 'type': 'Feature', 'properties': {'osmid': 53109453, 'average price/sqft': 438.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2155869, 37.7849563]}}, {'id': '4428', 'type': 'Feature', 'properties': {'osmid': 53109456, 'average price/sqft': 437.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2145909, 37.7855356]}}, {'id': '4429', 'type': 'Feature', 'properties': {'osmid': 53109458, 'average price/sqft': 433.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2140321, 37.7858629]}}, {'id': '4430', 'type': 'Feature', 'properties': {'osmid': 53109460, 'average price/sqft': 433.0, 'observation count': 14.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2138914, 37.7859453]}}, {'id': '4431', 'type': 'Feature', 'properties': {'osmid': 53109461, 'average price/sqft': 436.0, 'observation count': 15.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2126355, 37.7866809]}}, {'id': '4432', 'type': 'Feature', 'properties': {'osmid': 53109469, 'average price/sqft': 446.0, 'observation count': 18.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.210396, 37.7879913]}}, {'id': '4433', 'type': 'Feature', 'properties': {'osmid': 53109478, 'average price/sqft': 452.0, 'observation count': 19.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2098231, 37.7883259]}}, {'id': '4434', 'type': 'Feature', 'properties': {'osmid': 53109482, 'average price/sqft': 469.0, 'observation count': 21.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2086481, 37.7890128]}}, {'id': '4435', 'type': 'Feature', 'properties': {'osmid': 53109488, 'average price/sqft': 534.0, 'observation count': 24.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2059088, 37.7906171]}}, {'id': '4436', 'type': 'Feature', 'properties': {'osmid': 53109491, 'average price/sqft': 552.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2050066, 37.7911455]}}, {'id': '4437', 'type': 'Feature', 'properties': {'osmid': 53109493, 'average price/sqft': 557.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2047828, 37.7912765]}}, {'id': '4438', 'type': 'Feature', 'properties': {'osmid': 53109496, 'average price/sqft': 572.0, 'observation count': 25.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2039007, 37.7918189]}}, {'id': '4439', 'type': 'Feature', 'properties': {'osmid': 53109504, 'average price/sqft': 611.0, 'observation count': 27.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.2006892, 37.7938118]}}, {'id': '4440', 'type': 'Feature', 'properties': {'osmid': 53109505, 'average price/sqft': 623.0, 'observation count': 28.0}, 'geometry': {'type': 'Point', 'coordinates': [-122.1980634, 37.7953452]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment