Skip to content

Instantly share code, notes, and snippets.

@MaxHalford
Last active October 26, 2023 15:29
Show Gist options
  • Save MaxHalford/f57a540333d47b21e6eaff49071e3ff1 to your computer and use it in GitHub Desktop.
Save MaxHalford/f57a540333d47b21e6eaff49071e3ff1 to your computer and use it in GitHub Desktop.
maxhalford.github.io/slides/online-machine-learning-on-the-road.pdf
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# River workshop"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Dictionaries are great"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"Taxi ride durations in New York City.\n",
"\n",
"The goal is to predict the duration of taxi rides in New York City.\n",
"\n",
" Name Taxis \n",
" Task Regression \n",
" Samples 1,458,644 \n",
" Features 8 \n",
" Sparse False \n",
" Path /Users/max/river_data/Taxis/train.csv \n",
" URL https://maxhalford.github.io/files/datasets/nyc_taxis.zip\n",
" Size 186.23 MB \n",
"Downloaded True "
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from river import datasets\n",
"\n",
"dataset = datasets.Taxis()\n",
"dataset\n"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\"><span style=\"font-weight: bold\">{</span>\n",
" <span style=\"color: #008000; text-decoration-color: #008000\">'vendor_id'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'2'</span>,\n",
" <span style=\"color: #008000; text-decoration-color: #008000\">'pickup_datetime'</span>: <span style=\"color: #800080; text-decoration-color: #800080; font-weight: bold\">datetime.datetime</span><span style=\"font-weight: bold\">(</span><span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">2016</span>, <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1</span>, <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">1</span>, <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">0</span>, <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">0</span>, <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">17</span><span style=\"font-weight: bold\">)</span>,\n",
" <span style=\"color: #008000; text-decoration-color: #008000\">'passenger_count'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">5</span>,\n",
" <span style=\"color: #008000; text-decoration-color: #008000\">'pickup_longitude'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">-73.98174285888672</span>,\n",
" <span style=\"color: #008000; text-decoration-color: #008000\">'pickup_latitude'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">40.71915817260742</span>,\n",
" <span style=\"color: #008000; text-decoration-color: #008000\">'dropoff_longitude'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">-73.93882751464845</span>,\n",
" <span style=\"color: #008000; text-decoration-color: #008000\">'dropoff_latitude'</span>: <span style=\"color: #008080; text-decoration-color: #008080; font-weight: bold\">40.82918167114258</span>,\n",
" <span style=\"color: #008000; text-decoration-color: #008000\">'store_and_fwd_flag'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'N'</span>\n",
"<span style=\"font-weight: bold\">}</span>\n",
"</pre>\n"
],
"text/plain": [
"\u001b[1m{\u001b[0m\n",
" \u001b[32m'vendor_id'\u001b[0m: \u001b[32m'2'\u001b[0m,\n",
" \u001b[32m'pickup_datetime'\u001b[0m: \u001b[1;35mdatetime.datetime\u001b[0m\u001b[1m(\u001b[0m\u001b[1;36m2016\u001b[0m, \u001b[1;36m1\u001b[0m, \u001b[1;36m1\u001b[0m, \u001b[1;36m0\u001b[0m, \u001b[1;36m0\u001b[0m, \u001b[1;36m17\u001b[0m\u001b[1m)\u001b[0m,\n",
" \u001b[32m'passenger_count'\u001b[0m: \u001b[1;36m5\u001b[0m,\n",
" \u001b[32m'pickup_longitude'\u001b[0m: \u001b[1;36m-73.98174285888672\u001b[0m,\n",
" \u001b[32m'pickup_latitude'\u001b[0m: \u001b[1;36m40.71915817260742\u001b[0m,\n",
" \u001b[32m'dropoff_longitude'\u001b[0m: \u001b[1;36m-73.93882751464845\u001b[0m,\n",
" \u001b[32m'dropoff_latitude'\u001b[0m: \u001b[1;36m40.82918167114258\u001b[0m,\n",
" \u001b[32m'store_and_fwd_flag'\u001b[0m: \u001b[32m'N'\u001b[0m\n",
"\u001b[1m}\u001b[0m\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"first_sample = next(iter(dataset))\n",
"\n",
"x, y = first_sample\n",
"pprint(x)\n"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\"><span style=\"font-weight: bold\">{</span>\n",
" <span style=\"color: #008000; text-decoration-color: #008000\">'vendor_id'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'str'</span>,\n",
" <span style=\"color: #008000; text-decoration-color: #008000\">'pickup_datetime'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'datetime'</span>,\n",
" <span style=\"color: #008000; text-decoration-color: #008000\">'passenger_count'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'int'</span>,\n",
" <span style=\"color: #008000; text-decoration-color: #008000\">'pickup_longitude'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'float'</span>,\n",
" <span style=\"color: #008000; text-decoration-color: #008000\">'pickup_latitude'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'float'</span>,\n",
" <span style=\"color: #008000; text-decoration-color: #008000\">'dropoff_longitude'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'float'</span>,\n",
" <span style=\"color: #008000; text-decoration-color: #008000\">'dropoff_latitude'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'float'</span>,\n",
" <span style=\"color: #008000; text-decoration-color: #008000\">'store_and_fwd_flag'</span>: <span style=\"color: #008000; text-decoration-color: #008000\">'str'</span>\n",
"<span style=\"font-weight: bold\">}</span>\n",
"</pre>\n"
],
"text/plain": [
"\u001b[1m{\u001b[0m\n",
" \u001b[32m'vendor_id'\u001b[0m: \u001b[32m'str'\u001b[0m,\n",
" \u001b[32m'pickup_datetime'\u001b[0m: \u001b[32m'datetime'\u001b[0m,\n",
" \u001b[32m'passenger_count'\u001b[0m: \u001b[32m'int'\u001b[0m,\n",
" \u001b[32m'pickup_longitude'\u001b[0m: \u001b[32m'float'\u001b[0m,\n",
" \u001b[32m'pickup_latitude'\u001b[0m: \u001b[32m'float'\u001b[0m,\n",
" \u001b[32m'dropoff_longitude'\u001b[0m: \u001b[32m'float'\u001b[0m,\n",
" \u001b[32m'dropoff_latitude'\u001b[0m: \u001b[32m'float'\u001b[0m,\n",
" \u001b[32m'store_and_fwd_flag'\u001b[0m: \u001b[32m'str'\u001b[0m\n",
"\u001b[1m}\u001b[0m\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"pprint({\n",
" key: value.__class__.__name__\n",
" for key, value in x.items()\n",
"})\n"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"{\n",
" \"vendor_id\": \"2\",\n",
" \"pickup_datetime\": \"2016-01-01 00:00:17\",\n",
" \"passenger_count\": 5,\n",
" \"pickup_longitude\": -73.98174285888672,\n",
" \"pickup_latitude\": 40.71915817260742,\n",
" \"dropoff_longitude\": -73.93882751464845,\n",
" \"dropoff_latitude\": 40.82918167114258,\n",
" \"store_and_fwd_flag\": \"N\"\n",
"}\n"
]
}
],
"source": [
"import json\n",
"\n",
"print(json.dumps(x, indent=4, default=str))\n"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"collections.defaultdict"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import collections\n",
"\n",
"collections.Counter\n",
"collections.ChainMap\n",
"collections.defaultdict\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Manual progressive validation"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"MAE: 541.162842"
]
},
"execution_count": 13,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from river import compose\n",
"from river import linear_model\n",
"from river import metrics\n",
"from river import preprocessing\n",
"\n",
"def distances(x):\n",
" return {\n",
" 'L1': (\n",
" abs(x['pickup_latitude'] - x['dropoff_latitude']) +\n",
" abs(x['pickup_longitude'] - x['dropoff_longitude'])\n",
" ),\n",
" 'L2': (\n",
" (x['pickup_latitude'] - x['dropoff_latitude']) ** 2 +\n",
" (x['pickup_longitude'] - x['dropoff_longitude']) ** 2\n",
" ) ** 0.5\n",
" }\n",
"\n",
"model = compose.Pipeline(\n",
" distances,\n",
" preprocessing.StandardScaler(),\n",
" linear_model.LinearRegression()\n",
")\n",
"\n",
"metric = metrics.MAE()\n",
"\n",
"for x, y in dataset.take(10_000):\n",
" y_pred = model.predict_one(x)\n",
" metric.update(y, y_pred)\n",
" model.learn_one(x, y)\n",
"\n",
"metric\n"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"0:09:01.162842\n"
]
}
],
"source": [
"import datetime as dt\n",
"\n",
"print(dt.timedelta(seconds=metric.get()))\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Progressive validation one-liner"
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"[1,000] MAE: 488.670795\n",
"[2,000] MAE: 590.143499\n",
"[3,000] MAE: 510.149582\n",
"[4,000] MAE: 501.422914\n",
"[5,000] MAE: 579.632231\n",
"[6,000] MAE: 592.055439\n",
"[7,000] MAE: 613.247012\n",
"[8,000] MAE: 579.196832\n",
"[9,000] MAE: 561.097898\n",
"[10,000] MAE: 541.162842\n"
]
}
],
"source": [
"from river import evaluate\n",
"\n",
"_ = evaluate.progressive_val_score(\n",
" dataset=dataset.take(10_000),\n",
" model=model.clone(),\n",
" metric=metric.clone(),\n",
" print_every=1000\n",
")\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Delayed progressive validation"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"2016-01-01 00:00:17 - trip #0 departs\n",
"2016-01-01 00:00:53 - trip #1 departs\n",
"2016-01-01 00:01:01 - trip #2 departs\n",
"2016-01-01 00:01:14 - trip #3 departs\n",
"2016-01-01 00:01:20 - trip #4 departs\n",
"2016-01-01 00:01:33 - trip #5 departs\n",
"2016-01-01 00:01:37 - trip #6 departs\n",
"2016-01-01 00:01:47 - trip #7 departs\n",
"2016-01-01 00:02:06 - trip #8 departs\n",
"2016-01-01 00:02:45 - trip #9 departs\n",
"2016-01-01 00:03:02 - trip #10 departs\n",
"2016-01-01 00:03:31 - trip #6 arrives after 114 seconds\n",
"2016-01-01 00:03:31 - trip #11 departs\n",
"2016-01-01 00:03:35 - trip #12 departs\n",
"2016-01-01 00:04:42 - trip #13 departs\n",
"2016-01-01 00:04:57 - trip #14 departs\n",
"2016-01-01 00:05:07 - trip #15 departs\n",
"2016-01-01 00:05:08 - trip #16 departs\n",
"2016-01-01 00:05:18 - trip #17 departs\n",
"2016-01-01 00:05:35 - trip #18 departs\n",
"2016-01-01 00:05:39 - trip #19 departs\n",
"2016-01-01 00:05:54 - trip #3 arrives after 280 seconds\n",
"2016-01-01 00:06:04 - trip #20 departs\n",
"2016-01-01 00:06:12 - trip #21 departs\n",
"2016-01-01 00:06:22 - trip #22 departs\n",
"2016-01-01 00:06:24 - trip #23 departs\n",
"2016-01-01 00:06:47 - trip #24 departs\n",
"2016-01-01 00:06:56 - trip #25 departs\n",
"2016-01-01 00:06:59 - trip #26 departs\n",
"2016-01-01 00:07:04 - trip #27 departs\n",
"2016-01-01 00:07:06 - trip #28 departs\n",
"2016-01-01 00:07:07 - trip #29 departs\n",
"2016-01-01 00:07:13 - trip #21 arrives after 61 seconds\n",
"2016-01-01 00:07:22 - trip #30 departs\n",
"2016-01-01 00:07:25 - trip #10 arrives after 263 seconds\n",
"2016-01-01 00:07:27 - trip #31 departs\n",
"2016-01-01 00:07:29 - trip #32 departs\n",
"2016-01-01 00:07:34 - trip #33 departs\n",
"2016-01-01 00:07:46 - trip #34 departs\n",
"2016-01-01 00:07:47 - trip #35 departs\n"
]
}
],
"source": [
"import itertools\n",
"from river import stream\n",
"\n",
"dataset_with_delays = stream.simulate_qa(\n",
" dataset=dataset,\n",
" moment='pickup_datetime',\n",
" delay=lambda _, y: dt.timedelta(seconds=y)\n",
")\n",
"\n",
"for i, x, y in itertools.islice(dataset_with_delays, 40):\n",
" if y is None:\n",
" print(f'{x[\"pickup_datetime\"]} - trip #{i} departs')\n",
" else:\n",
" arrival_date = x['pickup_datetime'] + dt.timedelta(seconds=y)\n",
" print(f'{arrival_date} - trip #{i} arrives after {y} seconds')\n"
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"MAE: 457.783569"
]
},
"execution_count": 20,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"evaluate.progressive_val_score(\n",
" dataset=dataset.take(10_000),\n",
" model=model.clone(),\n",
" metric=metric.clone(),\n",
" # Same parameters as stream.simulate_qa\n",
" moment='pickup_datetime',\n",
" delay=lambda _, y: dt.timedelta(seconds=y)\n",
")\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Feature engineering"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Window aggregates"
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"MAE: 448.031811"
]
},
"execution_count": 23,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from river import feature_extraction\n",
"from river import stats\n",
"\n",
"def munge(x):\n",
" return {\n",
" **x,\n",
" 'weekday': x['pickup_datetime'].weekday()\n",
" }\n",
"\n",
"model = compose.Pipeline(\n",
" munge,\n",
" [\n",
" distances,\n",
" feature_extraction.TargetAgg(by='weekday', how=stats.Mean())\n",
" ],\n",
" preprocessing.StandardScaler(),\n",
" linear_model.LinearRegression()\n",
")\n",
"\n",
"evaluate.progressive_val_score(\n",
" dataset=dataset.take(10_000),\n",
" model=model,\n",
" metric=metric.clone(),\n",
" moment='pickup_datetime',\n",
" delay=lambda _, y: dt.timedelta(seconds=y)\n",
")\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Geographical aggregates"
]
},
{
"cell_type": "code",
"execution_count": 27,
"metadata": {},
"outputs": [],
"source": [
"import statistics\n",
"\n",
"min_lat = statistics.quantiles((x['pickup_latitude'] for x, _ in dataset.take(10_000)), n=100)[0]\n",
"max_lat = statistics.quantiles((x['pickup_latitude'] for x, _ in dataset.take(10_000)), n=100)[-1]\n",
"min_lon = statistics.quantiles((x['pickup_longitude'] for x, _ in dataset.take(10_000)), n=100)[0]\n",
"max_lon = statistics.quantiles((x['pickup_longitude'] for x, _ in dataset.take(10_000)), n=100)[-1]\n"
]
},
{
"cell_type": "code",
"execution_count": 31,
"metadata": {},
"outputs": [],
"source": [
"grid_size = 20\n",
"lat_cuts = [min_lat + i * (max_lat - min_lat) / grid_size for i in range(grid_size)]\n",
"lon_cuts = [min_lon + i * (max_lon - min_lon) / grid_size for i in range(grid_size)]\n"
]
},
{
"cell_type": "code",
"execution_count": 32,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div style=\"width:100%;\"><div style=\"position:relative;width:100%;height:0;padding-bottom:60%;\"><span style=\"color:#565656\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\"&lt;!DOCTYPE html&gt;\n",
"&lt;html&gt;\n",
"&lt;head&gt;\n",
" \n",
" &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\n",
" \n",
" &lt;script&gt;\n",
" L_NO_TOUCH = false;\n",
" L_DISABLE_3D = false;\n",
" &lt;/script&gt;\n",
" \n",
" &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\n",
" &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\n",
" &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\n",
" &lt;script src=&quot;https://code.jquery.com/jquery-1.12.4.min.js&quot;&gt;&lt;/script&gt;\n",
" &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\n",
" &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\n",
" \n",
" &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\n",
" initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\n",
" &lt;style&gt;\n",
" #map_75a09e82f3e585f35ce63623251317d1 {\n",
" position: relative;\n",
" width: 100.0%;\n",
" height: 100.0%;\n",
" left: 0.0%;\n",
" top: 0.0%;\n",
" }\n",
" .leaflet-container { font-size: 1rem; }\n",
" &lt;/style&gt;\n",
" \n",
"&lt;/head&gt;\n",
"&lt;body&gt;\n",
" \n",
" \n",
" &lt;div class=&quot;folium-map&quot; id=&quot;map_75a09e82f3e585f35ce63623251317d1&quot; &gt;&lt;/div&gt;\n",
" \n",
"&lt;/body&gt;\n",
"&lt;script&gt;\n",
" \n",
" \n",
" var map_75a09e82f3e585f35ce63623251317d1 = L.map(\n",
" &quot;map_75a09e82f3e585f35ce63623251317d1&quot;,\n",
" {\n",
" center: [40.73295534133911, -73.89804077148438],\n",
" crs: L.CRS.EPSG3857,\n",
" zoom: 11,\n",
" zoomControl: true,\n",
" preferCanvas: false,\n",
" }\n",
" );\n",
"\n",
" \n",
"\n",
" \n",
" \n",
" var tile_layer_4d254844a43e5abe0e28125e881b9e21 = L.tileLayer(\n",
" &quot;https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png&quot;,\n",
" {&quot;attribution&quot;: &quot;Data by \\u0026copy; \\u003ca target=\\&quot;_blank\\&quot; href=\\&quot;http://openstreetmap.org\\&quot;\\u003eOpenStreetMap\\u003c/a\\u003e, under \\u003ca target=\\&quot;_blank\\&quot; href=\\&quot;http://www.openstreetmap.org/copyright\\&quot;\\u003eODbL\\u003c/a\\u003e.&quot;, &quot;detectRetina&quot;: false, &quot;maxNativeZoom&quot;: 18, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\n",
" ).addTo(map_75a09e82f3e585f35ce63623251317d1);\n",
" \n",
" \n",
"\n",
" function geo_json_1842d1d99c2e6d99a0c14691d71dc570_onEachFeature(feature, layer) {\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_1842d1d99c2e6d99a0c14691d71dc570 = L.geoJson(null, {\n",
" onEachFeature: geo_json_1842d1d99c2e6d99a0c14691d71dc570_onEachFeature,\n",
" \n",
" });\n",
"\n",
" function geo_json_1842d1d99c2e6d99a0c14691d71dc570_add (data) {\n",
" geo_json_1842d1d99c2e6d99a0c14691d71dc570\n",
" .addData(data)\n",
" .addTo(map_75a09e82f3e585f35ce63623251317d1);\n",
" }\n",
" geo_json_1842d1d99c2e6d99a0c14691d71dc570_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.812317159652714], [-74.0142211151123, 40.812317159652714], [-74.0142211151123, 40.64477554321289], [-73.79347846221924, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 0-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.64477554321289], [-74.0142211151123, 40.64477554321289], [-74.0142211151123, 40.653593523025506], [-73.79347846221924, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 0-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.653593523025506], [-74.0142211151123, 40.653593523025506], [-74.0142211151123, 40.66241150283813], [-73.79347846221924, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 0-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.66241150283813], [-74.0142211151123, 40.66241150283813], [-74.0142211151123, 40.67122948265075], [-73.79347846221924, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 0-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.67122948265075], [-74.0142211151123, 40.67122948265075], [-74.0142211151123, 40.68004746246338], [-73.79347846221924, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 0-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.68004746246338], [-74.0142211151123, 40.68004746246338], [-74.0142211151123, 40.688865442276], [-73.79347846221924, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 0-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.688865442276], [-74.0142211151123, 40.688865442276], [-74.0142211151123, 40.69768342208862], [-73.79347846221924, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 0-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.69768342208862], [-74.0142211151123, 40.69768342208862], [-74.0142211151123, 40.70650140190124], [-73.79347846221924, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 0-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.70650140190124], [-74.0142211151123, 40.70650140190124], [-74.0142211151123, 40.71531938171387], [-73.79347846221924, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 0-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.71531938171387], [-74.0142211151123, 40.71531938171387], [-74.0142211151123, 40.72413736152649], [-73.79347846221924, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 0-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.72413736152649], [-74.0142211151123, 40.72413736152649], [-74.0142211151123, 40.73295534133911], [-73.79347846221924, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 0-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.73295534133911], [-74.0142211151123, 40.73295534133911], [-74.0142211151123, 40.74177332115173], [-73.79347846221924, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 0-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.74177332115173], [-74.0142211151123, 40.74177332115173], [-74.0142211151123, 40.75059130096435], [-73.79347846221924, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 0-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.75059130096435], [-74.0142211151123, 40.75059130096435], [-74.0142211151123, 40.75940928077698], [-73.79347846221924, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 0-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.75940928077698], [-74.0142211151123, 40.75940928077698], [-74.0142211151123, 40.7682272605896], [-73.79347846221924, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 0-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.7682272605896], [-74.0142211151123, 40.7682272605896], [-74.0142211151123, 40.777045240402224], [-73.79347846221924, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 0-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.777045240402224], [-74.0142211151123, 40.777045240402224], [-74.0142211151123, 40.78586322021484], [-73.79347846221924, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 0-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.78586322021484], [-74.0142211151123, 40.78586322021484], [-74.0142211151123, 40.79468120002747], [-73.79347846221924, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 0-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.79468120002747], [-74.0142211151123, 40.79468120002747], [-74.0142211151123, 40.80349917984009], [-73.79347846221924, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 0-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.80349917984009], [-74.0142211151123, 40.80349917984009], [-74.0142211151123, 40.812317159652714], [-73.79347846221924, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 0-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.812317159652714], [-74.00260308074951, 40.812317159652714], [-74.00260308074951, 40.64477554321289], [-74.0142211151123, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 1-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.64477554321289], [-74.00260308074951, 40.64477554321289], [-74.00260308074951, 40.653593523025506], [-74.0142211151123, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 1-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.653593523025506], [-74.00260308074951, 40.653593523025506], [-74.00260308074951, 40.66241150283813], [-74.0142211151123, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 1-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.66241150283813], [-74.00260308074951, 40.66241150283813], [-74.00260308074951, 40.67122948265075], [-74.0142211151123, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 1-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.67122948265075], [-74.00260308074951, 40.67122948265075], [-74.00260308074951, 40.68004746246338], [-74.0142211151123, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 1-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.68004746246338], [-74.00260308074951, 40.68004746246338], [-74.00260308074951, 40.688865442276], [-74.0142211151123, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 1-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.688865442276], [-74.00260308074951, 40.688865442276], [-74.00260308074951, 40.69768342208862], [-74.0142211151123, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 1-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.69768342208862], [-74.00260308074951, 40.69768342208862], [-74.00260308074951, 40.70650140190124], [-74.0142211151123, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 1-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.70650140190124], [-74.00260308074951, 40.70650140190124], [-74.00260308074951, 40.71531938171387], [-74.0142211151123, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 1-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.71531938171387], [-74.00260308074951, 40.71531938171387], [-74.00260308074951, 40.72413736152649], [-74.0142211151123, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 1-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.72413736152649], [-74.00260308074951, 40.72413736152649], [-74.00260308074951, 40.73295534133911], [-74.0142211151123, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 1-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.73295534133911], [-74.00260308074951, 40.73295534133911], [-74.00260308074951, 40.74177332115173], [-74.0142211151123, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 1-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.74177332115173], [-74.00260308074951, 40.74177332115173], [-74.00260308074951, 40.75059130096435], [-74.0142211151123, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 1-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.75059130096435], [-74.00260308074951, 40.75059130096435], [-74.00260308074951, 40.75940928077698], [-74.0142211151123, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 1-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.75940928077698], [-74.00260308074951, 40.75940928077698], [-74.00260308074951, 40.7682272605896], [-74.0142211151123, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 1-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.7682272605896], [-74.00260308074951, 40.7682272605896], [-74.00260308074951, 40.777045240402224], [-74.0142211151123, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 1-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.777045240402224], [-74.00260308074951, 40.777045240402224], [-74.00260308074951, 40.78586322021484], [-74.0142211151123, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 1-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.78586322021484], [-74.00260308074951, 40.78586322021484], [-74.00260308074951, 40.79468120002747], [-74.0142211151123, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 1-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.79468120002747], [-74.00260308074951, 40.79468120002747], [-74.00260308074951, 40.80349917984009], [-74.0142211151123, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 1-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.80349917984009], [-74.00260308074951, 40.80349917984009], [-74.00260308074951, 40.812317159652714], [-74.0142211151123, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 1-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.812317159652714], [-73.99098504638673, 40.812317159652714], [-73.99098504638673, 40.64477554321289], [-74.00260308074951, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 2-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.64477554321289], [-73.99098504638673, 40.64477554321289], [-73.99098504638673, 40.653593523025506], [-74.00260308074951, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 2-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.653593523025506], [-73.99098504638673, 40.653593523025506], [-73.99098504638673, 40.66241150283813], [-74.00260308074951, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 2-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.66241150283813], [-73.99098504638673, 40.66241150283813], [-73.99098504638673, 40.67122948265075], [-74.00260308074951, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 2-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.67122948265075], [-73.99098504638673, 40.67122948265075], [-73.99098504638673, 40.68004746246338], [-74.00260308074951, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 2-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.68004746246338], [-73.99098504638673, 40.68004746246338], [-73.99098504638673, 40.688865442276], [-74.00260308074951, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 2-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.688865442276], [-73.99098504638673, 40.688865442276], [-73.99098504638673, 40.69768342208862], [-74.00260308074951, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 2-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.69768342208862], [-73.99098504638673, 40.69768342208862], [-73.99098504638673, 40.70650140190124], [-74.00260308074951, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 2-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.70650140190124], [-73.99098504638673, 40.70650140190124], [-73.99098504638673, 40.71531938171387], [-74.00260308074951, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 2-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.71531938171387], [-73.99098504638673, 40.71531938171387], [-73.99098504638673, 40.72413736152649], [-74.00260308074951, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 2-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.72413736152649], [-73.99098504638673, 40.72413736152649], [-73.99098504638673, 40.73295534133911], [-74.00260308074951, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 2-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.73295534133911], [-73.99098504638673, 40.73295534133911], [-73.99098504638673, 40.74177332115173], [-74.00260308074951, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 2-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.74177332115173], [-73.99098504638673, 40.74177332115173], [-73.99098504638673, 40.75059130096435], [-74.00260308074951, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 2-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.75059130096435], [-73.99098504638673, 40.75059130096435], [-73.99098504638673, 40.75940928077698], [-74.00260308074951, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 2-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.75940928077698], [-73.99098504638673, 40.75940928077698], [-73.99098504638673, 40.7682272605896], [-74.00260308074951, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 2-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.7682272605896], [-73.99098504638673, 40.7682272605896], [-73.99098504638673, 40.777045240402224], [-74.00260308074951, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 2-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.777045240402224], [-73.99098504638673, 40.777045240402224], [-73.99098504638673, 40.78586322021484], [-74.00260308074951, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 2-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.78586322021484], [-73.99098504638673, 40.78586322021484], [-73.99098504638673, 40.79468120002747], [-74.00260308074951, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 2-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.79468120002747], [-73.99098504638673, 40.79468120002747], [-73.99098504638673, 40.80349917984009], [-74.00260308074951, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 2-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.80349917984009], [-73.99098504638673, 40.80349917984009], [-73.99098504638673, 40.812317159652714], [-74.00260308074951, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 2-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.812317159652714], [-73.97936701202393, 40.812317159652714], [-73.97936701202393, 40.64477554321289], [-73.99098504638673, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 3-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.64477554321289], [-73.97936701202393, 40.64477554321289], [-73.97936701202393, 40.653593523025506], [-73.99098504638673, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 3-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.653593523025506], [-73.97936701202393, 40.653593523025506], [-73.97936701202393, 40.66241150283813], [-73.99098504638673, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 3-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.66241150283813], [-73.97936701202393, 40.66241150283813], [-73.97936701202393, 40.67122948265075], [-73.99098504638673, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 3-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.67122948265075], [-73.97936701202393, 40.67122948265075], [-73.97936701202393, 40.68004746246338], [-73.99098504638673, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 3-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.68004746246338], [-73.97936701202393, 40.68004746246338], [-73.97936701202393, 40.688865442276], [-73.99098504638673, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 3-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.688865442276], [-73.97936701202393, 40.688865442276], [-73.97936701202393, 40.69768342208862], [-73.99098504638673, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 3-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.69768342208862], [-73.97936701202393, 40.69768342208862], [-73.97936701202393, 40.70650140190124], [-73.99098504638673, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 3-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.70650140190124], [-73.97936701202393, 40.70650140190124], [-73.97936701202393, 40.71531938171387], [-73.99098504638673, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 3-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.71531938171387], [-73.97936701202393, 40.71531938171387], [-73.97936701202393, 40.72413736152649], [-73.99098504638673, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 3-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.72413736152649], [-73.97936701202393, 40.72413736152649], [-73.97936701202393, 40.73295534133911], [-73.99098504638673, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 3-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.73295534133911], [-73.97936701202393, 40.73295534133911], [-73.97936701202393, 40.74177332115173], [-73.99098504638673, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 3-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.74177332115173], [-73.97936701202393, 40.74177332115173], [-73.97936701202393, 40.75059130096435], [-73.99098504638673, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 3-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.75059130096435], [-73.97936701202393, 40.75059130096435], [-73.97936701202393, 40.75940928077698], [-73.99098504638673, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 3-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.75940928077698], [-73.97936701202393, 40.75940928077698], [-73.97936701202393, 40.7682272605896], [-73.99098504638673, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 3-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.7682272605896], [-73.97936701202393, 40.7682272605896], [-73.97936701202393, 40.777045240402224], [-73.99098504638673, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 3-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.777045240402224], [-73.97936701202393, 40.777045240402224], [-73.97936701202393, 40.78586322021484], [-73.99098504638673, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 3-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.78586322021484], [-73.97936701202393, 40.78586322021484], [-73.97936701202393, 40.79468120002747], [-73.99098504638673, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 3-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.79468120002747], [-73.97936701202393, 40.79468120002747], [-73.97936701202393, 40.80349917984009], [-73.99098504638673, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 3-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.80349917984009], [-73.97936701202393, 40.80349917984009], [-73.97936701202393, 40.812317159652714], [-73.99098504638673, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 3-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.812317159652714], [-73.96774897766113, 40.812317159652714], [-73.96774897766113, 40.64477554321289], [-73.97936701202393, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 4-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.64477554321289], [-73.96774897766113, 40.64477554321289], [-73.96774897766113, 40.653593523025506], [-73.97936701202393, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 4-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.653593523025506], [-73.96774897766113, 40.653593523025506], [-73.96774897766113, 40.66241150283813], [-73.97936701202393, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 4-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.66241150283813], [-73.96774897766113, 40.66241150283813], [-73.96774897766113, 40.67122948265075], [-73.97936701202393, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 4-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.67122948265075], [-73.96774897766113, 40.67122948265075], [-73.96774897766113, 40.68004746246338], [-73.97936701202393, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 4-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.68004746246338], [-73.96774897766113, 40.68004746246338], [-73.96774897766113, 40.688865442276], [-73.97936701202393, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 4-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.688865442276], [-73.96774897766113, 40.688865442276], [-73.96774897766113, 40.69768342208862], [-73.97936701202393, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 4-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.69768342208862], [-73.96774897766113, 40.69768342208862], [-73.96774897766113, 40.70650140190124], [-73.97936701202393, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 4-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.70650140190124], [-73.96774897766113, 40.70650140190124], [-73.96774897766113, 40.71531938171387], [-73.97936701202393, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 4-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.71531938171387], [-73.96774897766113, 40.71531938171387], [-73.96774897766113, 40.72413736152649], [-73.97936701202393, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 4-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.72413736152649], [-73.96774897766113, 40.72413736152649], [-73.96774897766113, 40.73295534133911], [-73.97936701202393, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 4-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.73295534133911], [-73.96774897766113, 40.73295534133911], [-73.96774897766113, 40.74177332115173], [-73.97936701202393, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 4-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.74177332115173], [-73.96774897766113, 40.74177332115173], [-73.96774897766113, 40.75059130096435], [-73.97936701202393, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 4-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.75059130096435], [-73.96774897766113, 40.75059130096435], [-73.96774897766113, 40.75940928077698], [-73.97936701202393, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 4-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.75940928077698], [-73.96774897766113, 40.75940928077698], [-73.96774897766113, 40.7682272605896], [-73.97936701202393, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 4-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.7682272605896], [-73.96774897766113, 40.7682272605896], [-73.96774897766113, 40.777045240402224], [-73.97936701202393, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 4-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.777045240402224], [-73.96774897766113, 40.777045240402224], [-73.96774897766113, 40.78586322021484], [-73.97936701202393, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 4-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.78586322021484], [-73.96774897766113, 40.78586322021484], [-73.96774897766113, 40.79468120002747], [-73.97936701202393, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 4-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.79468120002747], [-73.96774897766113, 40.79468120002747], [-73.96774897766113, 40.80349917984009], [-73.97936701202393, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 4-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.80349917984009], [-73.96774897766113, 40.80349917984009], [-73.96774897766113, 40.812317159652714], [-73.97936701202393, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 4-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.812317159652714], [-73.95613094329835, 40.812317159652714], [-73.95613094329835, 40.64477554321289], [-73.96774897766113, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 5-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.64477554321289], [-73.95613094329835, 40.64477554321289], [-73.95613094329835, 40.653593523025506], [-73.96774897766113, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 5-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.653593523025506], [-73.95613094329835, 40.653593523025506], [-73.95613094329835, 40.66241150283813], [-73.96774897766113, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 5-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.66241150283813], [-73.95613094329835, 40.66241150283813], [-73.95613094329835, 40.67122948265075], [-73.96774897766113, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 5-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.67122948265075], [-73.95613094329835, 40.67122948265075], [-73.95613094329835, 40.68004746246338], [-73.96774897766113, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 5-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.68004746246338], [-73.95613094329835, 40.68004746246338], [-73.95613094329835, 40.688865442276], [-73.96774897766113, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 5-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.688865442276], [-73.95613094329835, 40.688865442276], [-73.95613094329835, 40.69768342208862], [-73.96774897766113, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 5-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.69768342208862], [-73.95613094329835, 40.69768342208862], [-73.95613094329835, 40.70650140190124], [-73.96774897766113, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 5-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.70650140190124], [-73.95613094329835, 40.70650140190124], [-73.95613094329835, 40.71531938171387], [-73.96774897766113, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 5-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.71531938171387], [-73.95613094329835, 40.71531938171387], [-73.95613094329835, 40.72413736152649], [-73.96774897766113, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 5-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.72413736152649], [-73.95613094329835, 40.72413736152649], [-73.95613094329835, 40.73295534133911], [-73.96774897766113, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 5-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.73295534133911], [-73.95613094329835, 40.73295534133911], [-73.95613094329835, 40.74177332115173], [-73.96774897766113, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 5-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.74177332115173], [-73.95613094329835, 40.74177332115173], [-73.95613094329835, 40.75059130096435], [-73.96774897766113, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 5-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.75059130096435], [-73.95613094329835, 40.75059130096435], [-73.95613094329835, 40.75940928077698], [-73.96774897766113, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 5-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.75940928077698], [-73.95613094329835, 40.75940928077698], [-73.95613094329835, 40.7682272605896], [-73.96774897766113, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 5-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.7682272605896], [-73.95613094329835, 40.7682272605896], [-73.95613094329835, 40.777045240402224], [-73.96774897766113, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 5-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.777045240402224], [-73.95613094329835, 40.777045240402224], [-73.95613094329835, 40.78586322021484], [-73.96774897766113, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 5-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.78586322021484], [-73.95613094329835, 40.78586322021484], [-73.95613094329835, 40.79468120002747], [-73.96774897766113, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 5-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.79468120002747], [-73.95613094329835, 40.79468120002747], [-73.95613094329835, 40.80349917984009], [-73.96774897766113, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 5-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.80349917984009], [-73.95613094329835, 40.80349917984009], [-73.95613094329835, 40.812317159652714], [-73.96774897766113, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 5-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.812317159652714], [-73.94451290893555, 40.812317159652714], [-73.94451290893555, 40.64477554321289], [-73.95613094329835, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 6-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.64477554321289], [-73.94451290893555, 40.64477554321289], [-73.94451290893555, 40.653593523025506], [-73.95613094329835, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 6-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.653593523025506], [-73.94451290893555, 40.653593523025506], [-73.94451290893555, 40.66241150283813], [-73.95613094329835, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 6-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.66241150283813], [-73.94451290893555, 40.66241150283813], [-73.94451290893555, 40.67122948265075], [-73.95613094329835, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 6-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.67122948265075], [-73.94451290893555, 40.67122948265075], [-73.94451290893555, 40.68004746246338], [-73.95613094329835, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 6-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.68004746246338], [-73.94451290893555, 40.68004746246338], [-73.94451290893555, 40.688865442276], [-73.95613094329835, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 6-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.688865442276], [-73.94451290893555, 40.688865442276], [-73.94451290893555, 40.69768342208862], [-73.95613094329835, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 6-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.69768342208862], [-73.94451290893555, 40.69768342208862], [-73.94451290893555, 40.70650140190124], [-73.95613094329835, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 6-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.70650140190124], [-73.94451290893555, 40.70650140190124], [-73.94451290893555, 40.71531938171387], [-73.95613094329835, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 6-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.71531938171387], [-73.94451290893555, 40.71531938171387], [-73.94451290893555, 40.72413736152649], [-73.95613094329835, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 6-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.72413736152649], [-73.94451290893555, 40.72413736152649], [-73.94451290893555, 40.73295534133911], [-73.95613094329835, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 6-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.73295534133911], [-73.94451290893555, 40.73295534133911], [-73.94451290893555, 40.74177332115173], [-73.95613094329835, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 6-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.74177332115173], [-73.94451290893555, 40.74177332115173], [-73.94451290893555, 40.75059130096435], [-73.95613094329835, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 6-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.75059130096435], [-73.94451290893555, 40.75059130096435], [-73.94451290893555, 40.75940928077698], [-73.95613094329835, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 6-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.75940928077698], [-73.94451290893555, 40.75940928077698], [-73.94451290893555, 40.7682272605896], [-73.95613094329835, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 6-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.7682272605896], [-73.94451290893555, 40.7682272605896], [-73.94451290893555, 40.777045240402224], [-73.95613094329835, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 6-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.777045240402224], [-73.94451290893555, 40.777045240402224], [-73.94451290893555, 40.78586322021484], [-73.95613094329835, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 6-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.78586322021484], [-73.94451290893555, 40.78586322021484], [-73.94451290893555, 40.79468120002747], [-73.95613094329835, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 6-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.79468120002747], [-73.94451290893555, 40.79468120002747], [-73.94451290893555, 40.80349917984009], [-73.95613094329835, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 6-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.80349917984009], [-73.94451290893555, 40.80349917984009], [-73.94451290893555, 40.812317159652714], [-73.95613094329835, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 6-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.812317159652714], [-73.93289487457275, 40.812317159652714], [-73.93289487457275, 40.64477554321289], [-73.94451290893555, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 7-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.64477554321289], [-73.93289487457275, 40.64477554321289], [-73.93289487457275, 40.653593523025506], [-73.94451290893555, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 7-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.653593523025506], [-73.93289487457275, 40.653593523025506], [-73.93289487457275, 40.66241150283813], [-73.94451290893555, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 7-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.66241150283813], [-73.93289487457275, 40.66241150283813], [-73.93289487457275, 40.67122948265075], [-73.94451290893555, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 7-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.67122948265075], [-73.93289487457275, 40.67122948265075], [-73.93289487457275, 40.68004746246338], [-73.94451290893555, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 7-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.68004746246338], [-73.93289487457275, 40.68004746246338], [-73.93289487457275, 40.688865442276], [-73.94451290893555, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 7-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.688865442276], [-73.93289487457275, 40.688865442276], [-73.93289487457275, 40.69768342208862], [-73.94451290893555, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 7-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.69768342208862], [-73.93289487457275, 40.69768342208862], [-73.93289487457275, 40.70650140190124], [-73.94451290893555, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 7-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.70650140190124], [-73.93289487457275, 40.70650140190124], [-73.93289487457275, 40.71531938171387], [-73.94451290893555, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 7-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.71531938171387], [-73.93289487457275, 40.71531938171387], [-73.93289487457275, 40.72413736152649], [-73.94451290893555, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 7-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.72413736152649], [-73.93289487457275, 40.72413736152649], [-73.93289487457275, 40.73295534133911], [-73.94451290893555, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 7-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.73295534133911], [-73.93289487457275, 40.73295534133911], [-73.93289487457275, 40.74177332115173], [-73.94451290893555, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 7-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.74177332115173], [-73.93289487457275, 40.74177332115173], [-73.93289487457275, 40.75059130096435], [-73.94451290893555, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 7-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.75059130096435], [-73.93289487457275, 40.75059130096435], [-73.93289487457275, 40.75940928077698], [-73.94451290893555, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 7-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.75940928077698], [-73.93289487457275, 40.75940928077698], [-73.93289487457275, 40.7682272605896], [-73.94451290893555, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 7-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.7682272605896], [-73.93289487457275, 40.7682272605896], [-73.93289487457275, 40.777045240402224], [-73.94451290893555, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 7-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.777045240402224], [-73.93289487457275, 40.777045240402224], [-73.93289487457275, 40.78586322021484], [-73.94451290893555, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 7-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.78586322021484], [-73.93289487457275, 40.78586322021484], [-73.93289487457275, 40.79468120002747], [-73.94451290893555, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 7-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.79468120002747], [-73.93289487457275, 40.79468120002747], [-73.93289487457275, 40.80349917984009], [-73.94451290893555, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 7-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.80349917984009], [-73.93289487457275, 40.80349917984009], [-73.93289487457275, 40.812317159652714], [-73.94451290893555, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 7-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.812317159652714], [-73.92127684020996, 40.812317159652714], [-73.92127684020996, 40.64477554321289], [-73.93289487457275, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 8-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.64477554321289], [-73.92127684020996, 40.64477554321289], [-73.92127684020996, 40.653593523025506], [-73.93289487457275, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 8-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.653593523025506], [-73.92127684020996, 40.653593523025506], [-73.92127684020996, 40.66241150283813], [-73.93289487457275, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 8-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.66241150283813], [-73.92127684020996, 40.66241150283813], [-73.92127684020996, 40.67122948265075], [-73.93289487457275, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 8-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.67122948265075], [-73.92127684020996, 40.67122948265075], [-73.92127684020996, 40.68004746246338], [-73.93289487457275, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 8-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.68004746246338], [-73.92127684020996, 40.68004746246338], [-73.92127684020996, 40.688865442276], [-73.93289487457275, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 8-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.688865442276], [-73.92127684020996, 40.688865442276], [-73.92127684020996, 40.69768342208862], [-73.93289487457275, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 8-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.69768342208862], [-73.92127684020996, 40.69768342208862], [-73.92127684020996, 40.70650140190124], [-73.93289487457275, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 8-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.70650140190124], [-73.92127684020996, 40.70650140190124], [-73.92127684020996, 40.71531938171387], [-73.93289487457275, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 8-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.71531938171387], [-73.92127684020996, 40.71531938171387], [-73.92127684020996, 40.72413736152649], [-73.93289487457275, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 8-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.72413736152649], [-73.92127684020996, 40.72413736152649], [-73.92127684020996, 40.73295534133911], [-73.93289487457275, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 8-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.73295534133911], [-73.92127684020996, 40.73295534133911], [-73.92127684020996, 40.74177332115173], [-73.93289487457275, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 8-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.74177332115173], [-73.92127684020996, 40.74177332115173], [-73.92127684020996, 40.75059130096435], [-73.93289487457275, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 8-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.75059130096435], [-73.92127684020996, 40.75059130096435], [-73.92127684020996, 40.75940928077698], [-73.93289487457275, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 8-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.75940928077698], [-73.92127684020996, 40.75940928077698], [-73.92127684020996, 40.7682272605896], [-73.93289487457275, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 8-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.7682272605896], [-73.92127684020996, 40.7682272605896], [-73.92127684020996, 40.777045240402224], [-73.93289487457275, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 8-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.777045240402224], [-73.92127684020996, 40.777045240402224], [-73.92127684020996, 40.78586322021484], [-73.93289487457275, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 8-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.78586322021484], [-73.92127684020996, 40.78586322021484], [-73.92127684020996, 40.79468120002747], [-73.93289487457275, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 8-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.79468120002747], [-73.92127684020996, 40.79468120002747], [-73.92127684020996, 40.80349917984009], [-73.93289487457275, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 8-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.80349917984009], [-73.92127684020996, 40.80349917984009], [-73.92127684020996, 40.812317159652714], [-73.93289487457275, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 8-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.812317159652714], [-73.90965880584717, 40.812317159652714], [-73.90965880584717, 40.64477554321289], [-73.92127684020996, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 9-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.64477554321289], [-73.90965880584717, 40.64477554321289], [-73.90965880584717, 40.653593523025506], [-73.92127684020996, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 9-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.653593523025506], [-73.90965880584717, 40.653593523025506], [-73.90965880584717, 40.66241150283813], [-73.92127684020996, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 9-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.66241150283813], [-73.90965880584717, 40.66241150283813], [-73.90965880584717, 40.67122948265075], [-73.92127684020996, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 9-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.67122948265075], [-73.90965880584717, 40.67122948265075], [-73.90965880584717, 40.68004746246338], [-73.92127684020996, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 9-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.68004746246338], [-73.90965880584717, 40.68004746246338], [-73.90965880584717, 40.688865442276], [-73.92127684020996, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 9-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.688865442276], [-73.90965880584717, 40.688865442276], [-73.90965880584717, 40.69768342208862], [-73.92127684020996, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 9-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.69768342208862], [-73.90965880584717, 40.69768342208862], [-73.90965880584717, 40.70650140190124], [-73.92127684020996, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 9-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.70650140190124], [-73.90965880584717, 40.70650140190124], [-73.90965880584717, 40.71531938171387], [-73.92127684020996, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 9-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.71531938171387], [-73.90965880584717, 40.71531938171387], [-73.90965880584717, 40.72413736152649], [-73.92127684020996, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 9-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.72413736152649], [-73.90965880584717, 40.72413736152649], [-73.90965880584717, 40.73295534133911], [-73.92127684020996, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 9-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.73295534133911], [-73.90965880584717, 40.73295534133911], [-73.90965880584717, 40.74177332115173], [-73.92127684020996, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 9-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.74177332115173], [-73.90965880584717, 40.74177332115173], [-73.90965880584717, 40.75059130096435], [-73.92127684020996, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 9-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.75059130096435], [-73.90965880584717, 40.75059130096435], [-73.90965880584717, 40.75940928077698], [-73.92127684020996, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 9-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.75940928077698], [-73.90965880584717, 40.75940928077698], [-73.90965880584717, 40.7682272605896], [-73.92127684020996, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 9-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.7682272605896], [-73.90965880584717, 40.7682272605896], [-73.90965880584717, 40.777045240402224], [-73.92127684020996, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 9-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.777045240402224], [-73.90965880584717, 40.777045240402224], [-73.90965880584717, 40.78586322021484], [-73.92127684020996, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 9-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.78586322021484], [-73.90965880584717, 40.78586322021484], [-73.90965880584717, 40.79468120002747], [-73.92127684020996, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 9-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.79468120002747], [-73.90965880584717, 40.79468120002747], [-73.90965880584717, 40.80349917984009], [-73.92127684020996, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 9-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.80349917984009], [-73.90965880584717, 40.80349917984009], [-73.90965880584717, 40.812317159652714], [-73.92127684020996, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 9-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.812317159652714], [-73.89804077148438, 40.812317159652714], [-73.89804077148438, 40.64477554321289], [-73.90965880584717, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 10-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.64477554321289], [-73.89804077148438, 40.64477554321289], [-73.89804077148438, 40.653593523025506], [-73.90965880584717, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 10-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.653593523025506], [-73.89804077148438, 40.653593523025506], [-73.89804077148438, 40.66241150283813], [-73.90965880584717, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 10-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.66241150283813], [-73.89804077148438, 40.66241150283813], [-73.89804077148438, 40.67122948265075], [-73.90965880584717, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 10-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.67122948265075], [-73.89804077148438, 40.67122948265075], [-73.89804077148438, 40.68004746246338], [-73.90965880584717, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 10-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.68004746246338], [-73.89804077148438, 40.68004746246338], [-73.89804077148438, 40.688865442276], [-73.90965880584717, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 10-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.688865442276], [-73.89804077148438, 40.688865442276], [-73.89804077148438, 40.69768342208862], [-73.90965880584717, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 10-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.69768342208862], [-73.89804077148438, 40.69768342208862], [-73.89804077148438, 40.70650140190124], [-73.90965880584717, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 10-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.70650140190124], [-73.89804077148438, 40.70650140190124], [-73.89804077148438, 40.71531938171387], [-73.90965880584717, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 10-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.71531938171387], [-73.89804077148438, 40.71531938171387], [-73.89804077148438, 40.72413736152649], [-73.90965880584717, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 10-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.72413736152649], [-73.89804077148438, 40.72413736152649], [-73.89804077148438, 40.73295534133911], [-73.90965880584717, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 10-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.73295534133911], [-73.89804077148438, 40.73295534133911], [-73.89804077148438, 40.74177332115173], [-73.90965880584717, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 10-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.74177332115173], [-73.89804077148438, 40.74177332115173], [-73.89804077148438, 40.75059130096435], [-73.90965880584717, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 10-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.75059130096435], [-73.89804077148438, 40.75059130096435], [-73.89804077148438, 40.75940928077698], [-73.90965880584717, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 10-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.75940928077698], [-73.89804077148438, 40.75940928077698], [-73.89804077148438, 40.7682272605896], [-73.90965880584717, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 10-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.7682272605896], [-73.89804077148438, 40.7682272605896], [-73.89804077148438, 40.777045240402224], [-73.90965880584717, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 10-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.777045240402224], [-73.89804077148438, 40.777045240402224], [-73.89804077148438, 40.78586322021484], [-73.90965880584717, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 10-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.78586322021484], [-73.89804077148438, 40.78586322021484], [-73.89804077148438, 40.79468120002747], [-73.90965880584717, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 10-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.79468120002747], [-73.89804077148438, 40.79468120002747], [-73.89804077148438, 40.80349917984009], [-73.90965880584717, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 10-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.80349917984009], [-73.89804077148438, 40.80349917984009], [-73.89804077148438, 40.812317159652714], [-73.90965880584717, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 10-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.812317159652714], [-73.88642273712158, 40.812317159652714], [-73.88642273712158, 40.64477554321289], [-73.89804077148438, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 11-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.64477554321289], [-73.88642273712158, 40.64477554321289], [-73.88642273712158, 40.653593523025506], [-73.89804077148438, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 11-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.653593523025506], [-73.88642273712158, 40.653593523025506], [-73.88642273712158, 40.66241150283813], [-73.89804077148438, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 11-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.66241150283813], [-73.88642273712158, 40.66241150283813], [-73.88642273712158, 40.67122948265075], [-73.89804077148438, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 11-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.67122948265075], [-73.88642273712158, 40.67122948265075], [-73.88642273712158, 40.68004746246338], [-73.89804077148438, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 11-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.68004746246338], [-73.88642273712158, 40.68004746246338], [-73.88642273712158, 40.688865442276], [-73.89804077148438, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 11-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.688865442276], [-73.88642273712158, 40.688865442276], [-73.88642273712158, 40.69768342208862], [-73.89804077148438, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 11-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.69768342208862], [-73.88642273712158, 40.69768342208862], [-73.88642273712158, 40.70650140190124], [-73.89804077148438, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 11-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.70650140190124], [-73.88642273712158, 40.70650140190124], [-73.88642273712158, 40.71531938171387], [-73.89804077148438, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 11-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.71531938171387], [-73.88642273712158, 40.71531938171387], [-73.88642273712158, 40.72413736152649], [-73.89804077148438, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 11-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.72413736152649], [-73.88642273712158, 40.72413736152649], [-73.88642273712158, 40.73295534133911], [-73.89804077148438, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 11-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.73295534133911], [-73.88642273712158, 40.73295534133911], [-73.88642273712158, 40.74177332115173], [-73.89804077148438, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 11-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.74177332115173], [-73.88642273712158, 40.74177332115173], [-73.88642273712158, 40.75059130096435], [-73.89804077148438, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 11-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.75059130096435], [-73.88642273712158, 40.75059130096435], [-73.88642273712158, 40.75940928077698], [-73.89804077148438, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 11-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.75940928077698], [-73.88642273712158, 40.75940928077698], [-73.88642273712158, 40.7682272605896], [-73.89804077148438, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 11-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.7682272605896], [-73.88642273712158, 40.7682272605896], [-73.88642273712158, 40.777045240402224], [-73.89804077148438, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 11-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.777045240402224], [-73.88642273712158, 40.777045240402224], [-73.88642273712158, 40.78586322021484], [-73.89804077148438, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 11-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.78586322021484], [-73.88642273712158, 40.78586322021484], [-73.88642273712158, 40.79468120002747], [-73.89804077148438, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 11-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.79468120002747], [-73.88642273712158, 40.79468120002747], [-73.88642273712158, 40.80349917984009], [-73.89804077148438, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 11-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.80349917984009], [-73.88642273712158, 40.80349917984009], [-73.88642273712158, 40.812317159652714], [-73.89804077148438, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 11-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.812317159652714], [-73.8748047027588, 40.812317159652714], [-73.8748047027588, 40.64477554321289], [-73.88642273712158, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 12-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.64477554321289], [-73.8748047027588, 40.64477554321289], [-73.8748047027588, 40.653593523025506], [-73.88642273712158, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 12-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.653593523025506], [-73.8748047027588, 40.653593523025506], [-73.8748047027588, 40.66241150283813], [-73.88642273712158, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 12-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.66241150283813], [-73.8748047027588, 40.66241150283813], [-73.8748047027588, 40.67122948265075], [-73.88642273712158, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 12-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.67122948265075], [-73.8748047027588, 40.67122948265075], [-73.8748047027588, 40.68004746246338], [-73.88642273712158, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 12-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.68004746246338], [-73.8748047027588, 40.68004746246338], [-73.8748047027588, 40.688865442276], [-73.88642273712158, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 12-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.688865442276], [-73.8748047027588, 40.688865442276], [-73.8748047027588, 40.69768342208862], [-73.88642273712158, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 12-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.69768342208862], [-73.8748047027588, 40.69768342208862], [-73.8748047027588, 40.70650140190124], [-73.88642273712158, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 12-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.70650140190124], [-73.8748047027588, 40.70650140190124], [-73.8748047027588, 40.71531938171387], [-73.88642273712158, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 12-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.71531938171387], [-73.8748047027588, 40.71531938171387], [-73.8748047027588, 40.72413736152649], [-73.88642273712158, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 12-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.72413736152649], [-73.8748047027588, 40.72413736152649], [-73.8748047027588, 40.73295534133911], [-73.88642273712158, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 12-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.73295534133911], [-73.8748047027588, 40.73295534133911], [-73.8748047027588, 40.74177332115173], [-73.88642273712158, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 12-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.74177332115173], [-73.8748047027588, 40.74177332115173], [-73.8748047027588, 40.75059130096435], [-73.88642273712158, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 12-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.75059130096435], [-73.8748047027588, 40.75059130096435], [-73.8748047027588, 40.75940928077698], [-73.88642273712158, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 12-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.75940928077698], [-73.8748047027588, 40.75940928077698], [-73.8748047027588, 40.7682272605896], [-73.88642273712158, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 12-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.7682272605896], [-73.8748047027588, 40.7682272605896], [-73.8748047027588, 40.777045240402224], [-73.88642273712158, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 12-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.777045240402224], [-73.8748047027588, 40.777045240402224], [-73.8748047027588, 40.78586322021484], [-73.88642273712158, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 12-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.78586322021484], [-73.8748047027588, 40.78586322021484], [-73.8748047027588, 40.79468120002747], [-73.88642273712158, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 12-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.79468120002747], [-73.8748047027588, 40.79468120002747], [-73.8748047027588, 40.80349917984009], [-73.88642273712158, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 12-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.80349917984009], [-73.8748047027588, 40.80349917984009], [-73.8748047027588, 40.812317159652714], [-73.88642273712158, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 12-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.812317159652714], [-73.863186668396, 40.812317159652714], [-73.863186668396, 40.64477554321289], [-73.8748047027588, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 13-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.64477554321289], [-73.863186668396, 40.64477554321289], [-73.863186668396, 40.653593523025506], [-73.8748047027588, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 13-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.653593523025506], [-73.863186668396, 40.653593523025506], [-73.863186668396, 40.66241150283813], [-73.8748047027588, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 13-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.66241150283813], [-73.863186668396, 40.66241150283813], [-73.863186668396, 40.67122948265075], [-73.8748047027588, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 13-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.67122948265075], [-73.863186668396, 40.67122948265075], [-73.863186668396, 40.68004746246338], [-73.8748047027588, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 13-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.68004746246338], [-73.863186668396, 40.68004746246338], [-73.863186668396, 40.688865442276], [-73.8748047027588, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 13-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.688865442276], [-73.863186668396, 40.688865442276], [-73.863186668396, 40.69768342208862], [-73.8748047027588, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 13-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.69768342208862], [-73.863186668396, 40.69768342208862], [-73.863186668396, 40.70650140190124], [-73.8748047027588, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 13-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.70650140190124], [-73.863186668396, 40.70650140190124], [-73.863186668396, 40.71531938171387], [-73.8748047027588, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 13-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.71531938171387], [-73.863186668396, 40.71531938171387], [-73.863186668396, 40.72413736152649], [-73.8748047027588, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 13-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.72413736152649], [-73.863186668396, 40.72413736152649], [-73.863186668396, 40.73295534133911], [-73.8748047027588, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 13-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.73295534133911], [-73.863186668396, 40.73295534133911], [-73.863186668396, 40.74177332115173], [-73.8748047027588, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 13-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.74177332115173], [-73.863186668396, 40.74177332115173], [-73.863186668396, 40.75059130096435], [-73.8748047027588, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 13-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.75059130096435], [-73.863186668396, 40.75059130096435], [-73.863186668396, 40.75940928077698], [-73.8748047027588, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 13-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.75940928077698], [-73.863186668396, 40.75940928077698], [-73.863186668396, 40.7682272605896], [-73.8748047027588, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 13-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.7682272605896], [-73.863186668396, 40.7682272605896], [-73.863186668396, 40.777045240402224], [-73.8748047027588, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 13-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.777045240402224], [-73.863186668396, 40.777045240402224], [-73.863186668396, 40.78586322021484], [-73.8748047027588, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 13-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.78586322021484], [-73.863186668396, 40.78586322021484], [-73.863186668396, 40.79468120002747], [-73.8748047027588, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 13-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.79468120002747], [-73.863186668396, 40.79468120002747], [-73.863186668396, 40.80349917984009], [-73.8748047027588, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 13-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.80349917984009], [-73.863186668396, 40.80349917984009], [-73.863186668396, 40.812317159652714], [-73.8748047027588, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 13-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.812317159652714], [-73.8515686340332, 40.812317159652714], [-73.8515686340332, 40.64477554321289], [-73.863186668396, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 14-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.64477554321289], [-73.8515686340332, 40.64477554321289], [-73.8515686340332, 40.653593523025506], [-73.863186668396, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 14-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.653593523025506], [-73.8515686340332, 40.653593523025506], [-73.8515686340332, 40.66241150283813], [-73.863186668396, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 14-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.66241150283813], [-73.8515686340332, 40.66241150283813], [-73.8515686340332, 40.67122948265075], [-73.863186668396, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 14-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.67122948265075], [-73.8515686340332, 40.67122948265075], [-73.8515686340332, 40.68004746246338], [-73.863186668396, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 14-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.68004746246338], [-73.8515686340332, 40.68004746246338], [-73.8515686340332, 40.688865442276], [-73.863186668396, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 14-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.688865442276], [-73.8515686340332, 40.688865442276], [-73.8515686340332, 40.69768342208862], [-73.863186668396, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 14-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.69768342208862], [-73.8515686340332, 40.69768342208862], [-73.8515686340332, 40.70650140190124], [-73.863186668396, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 14-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.70650140190124], [-73.8515686340332, 40.70650140190124], [-73.8515686340332, 40.71531938171387], [-73.863186668396, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 14-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.71531938171387], [-73.8515686340332, 40.71531938171387], [-73.8515686340332, 40.72413736152649], [-73.863186668396, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 14-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.72413736152649], [-73.8515686340332, 40.72413736152649], [-73.8515686340332, 40.73295534133911], [-73.863186668396, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 14-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.73295534133911], [-73.8515686340332, 40.73295534133911], [-73.8515686340332, 40.74177332115173], [-73.863186668396, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 14-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.74177332115173], [-73.8515686340332, 40.74177332115173], [-73.8515686340332, 40.75059130096435], [-73.863186668396, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 14-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.75059130096435], [-73.8515686340332, 40.75059130096435], [-73.8515686340332, 40.75940928077698], [-73.863186668396, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 14-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.75940928077698], [-73.8515686340332, 40.75940928077698], [-73.8515686340332, 40.7682272605896], [-73.863186668396, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 14-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.7682272605896], [-73.8515686340332, 40.7682272605896], [-73.8515686340332, 40.777045240402224], [-73.863186668396, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 14-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.777045240402224], [-73.8515686340332, 40.777045240402224], [-73.8515686340332, 40.78586322021484], [-73.863186668396, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 14-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.78586322021484], [-73.8515686340332, 40.78586322021484], [-73.8515686340332, 40.79468120002747], [-73.863186668396, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 14-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.79468120002747], [-73.8515686340332, 40.79468120002747], [-73.8515686340332, 40.80349917984009], [-73.863186668396, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 14-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.80349917984009], [-73.8515686340332, 40.80349917984009], [-73.8515686340332, 40.812317159652714], [-73.863186668396, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 14-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.812317159652714], [-73.8399505996704, 40.812317159652714], [-73.8399505996704, 40.64477554321289], [-73.8515686340332, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 15-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.64477554321289], [-73.8399505996704, 40.64477554321289], [-73.8399505996704, 40.653593523025506], [-73.8515686340332, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 15-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.653593523025506], [-73.8399505996704, 40.653593523025506], [-73.8399505996704, 40.66241150283813], [-73.8515686340332, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 15-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.66241150283813], [-73.8399505996704, 40.66241150283813], [-73.8399505996704, 40.67122948265075], [-73.8515686340332, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 15-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.67122948265075], [-73.8399505996704, 40.67122948265075], [-73.8399505996704, 40.68004746246338], [-73.8515686340332, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 15-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.68004746246338], [-73.8399505996704, 40.68004746246338], [-73.8399505996704, 40.688865442276], [-73.8515686340332, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 15-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.688865442276], [-73.8399505996704, 40.688865442276], [-73.8399505996704, 40.69768342208862], [-73.8515686340332, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 15-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.69768342208862], [-73.8399505996704, 40.69768342208862], [-73.8399505996704, 40.70650140190124], [-73.8515686340332, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 15-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.70650140190124], [-73.8399505996704, 40.70650140190124], [-73.8399505996704, 40.71531938171387], [-73.8515686340332, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 15-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.71531938171387], [-73.8399505996704, 40.71531938171387], [-73.8399505996704, 40.72413736152649], [-73.8515686340332, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 15-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.72413736152649], [-73.8399505996704, 40.72413736152649], [-73.8399505996704, 40.73295534133911], [-73.8515686340332, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 15-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.73295534133911], [-73.8399505996704, 40.73295534133911], [-73.8399505996704, 40.74177332115173], [-73.8515686340332, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 15-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.74177332115173], [-73.8399505996704, 40.74177332115173], [-73.8399505996704, 40.75059130096435], [-73.8515686340332, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 15-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.75059130096435], [-73.8399505996704, 40.75059130096435], [-73.8399505996704, 40.75940928077698], [-73.8515686340332, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 15-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.75940928077698], [-73.8399505996704, 40.75940928077698], [-73.8399505996704, 40.7682272605896], [-73.8515686340332, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 15-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.7682272605896], [-73.8399505996704, 40.7682272605896], [-73.8399505996704, 40.777045240402224], [-73.8515686340332, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 15-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.777045240402224], [-73.8399505996704, 40.777045240402224], [-73.8399505996704, 40.78586322021484], [-73.8515686340332, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 15-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.78586322021484], [-73.8399505996704, 40.78586322021484], [-73.8399505996704, 40.79468120002747], [-73.8515686340332, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 15-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.79468120002747], [-73.8399505996704, 40.79468120002747], [-73.8399505996704, 40.80349917984009], [-73.8515686340332, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 15-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.80349917984009], [-73.8399505996704, 40.80349917984009], [-73.8399505996704, 40.812317159652714], [-73.8515686340332, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 15-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.812317159652714], [-73.82833256530762, 40.812317159652714], [-73.82833256530762, 40.64477554321289], [-73.8399505996704, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 16-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.64477554321289], [-73.82833256530762, 40.64477554321289], [-73.82833256530762, 40.653593523025506], [-73.8399505996704, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 16-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.653593523025506], [-73.82833256530762, 40.653593523025506], [-73.82833256530762, 40.66241150283813], [-73.8399505996704, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 16-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.66241150283813], [-73.82833256530762, 40.66241150283813], [-73.82833256530762, 40.67122948265075], [-73.8399505996704, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 16-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.67122948265075], [-73.82833256530762, 40.67122948265075], [-73.82833256530762, 40.68004746246338], [-73.8399505996704, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 16-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.68004746246338], [-73.82833256530762, 40.68004746246338], [-73.82833256530762, 40.688865442276], [-73.8399505996704, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 16-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.688865442276], [-73.82833256530762, 40.688865442276], [-73.82833256530762, 40.69768342208862], [-73.8399505996704, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 16-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.69768342208862], [-73.82833256530762, 40.69768342208862], [-73.82833256530762, 40.70650140190124], [-73.8399505996704, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 16-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.70650140190124], [-73.82833256530762, 40.70650140190124], [-73.82833256530762, 40.71531938171387], [-73.8399505996704, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 16-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.71531938171387], [-73.82833256530762, 40.71531938171387], [-73.82833256530762, 40.72413736152649], [-73.8399505996704, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 16-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.72413736152649], [-73.82833256530762, 40.72413736152649], [-73.82833256530762, 40.73295534133911], [-73.8399505996704, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 16-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.73295534133911], [-73.82833256530762, 40.73295534133911], [-73.82833256530762, 40.74177332115173], [-73.8399505996704, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 16-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.74177332115173], [-73.82833256530762, 40.74177332115173], [-73.82833256530762, 40.75059130096435], [-73.8399505996704, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 16-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.75059130096435], [-73.82833256530762, 40.75059130096435], [-73.82833256530762, 40.75940928077698], [-73.8399505996704, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 16-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.75940928077698], [-73.82833256530762, 40.75940928077698], [-73.82833256530762, 40.7682272605896], [-73.8399505996704, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 16-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.7682272605896], [-73.82833256530762, 40.7682272605896], [-73.82833256530762, 40.777045240402224], [-73.8399505996704, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 16-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.777045240402224], [-73.82833256530762, 40.777045240402224], [-73.82833256530762, 40.78586322021484], [-73.8399505996704, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 16-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.78586322021484], [-73.82833256530762, 40.78586322021484], [-73.82833256530762, 40.79468120002747], [-73.8399505996704, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 16-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.79468120002747], [-73.82833256530762, 40.79468120002747], [-73.82833256530762, 40.80349917984009], [-73.8399505996704, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 16-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.80349917984009], [-73.82833256530762, 40.80349917984009], [-73.82833256530762, 40.812317159652714], [-73.8399505996704, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 16-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.812317159652714], [-73.81671453094482, 40.812317159652714], [-73.81671453094482, 40.64477554321289], [-73.82833256530762, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 17-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.64477554321289], [-73.81671453094482, 40.64477554321289], [-73.81671453094482, 40.653593523025506], [-73.82833256530762, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 17-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.653593523025506], [-73.81671453094482, 40.653593523025506], [-73.81671453094482, 40.66241150283813], [-73.82833256530762, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 17-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.66241150283813], [-73.81671453094482, 40.66241150283813], [-73.81671453094482, 40.67122948265075], [-73.82833256530762, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 17-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.67122948265075], [-73.81671453094482, 40.67122948265075], [-73.81671453094482, 40.68004746246338], [-73.82833256530762, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 17-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.68004746246338], [-73.81671453094482, 40.68004746246338], [-73.81671453094482, 40.688865442276], [-73.82833256530762, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 17-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.688865442276], [-73.81671453094482, 40.688865442276], [-73.81671453094482, 40.69768342208862], [-73.82833256530762, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 17-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.69768342208862], [-73.81671453094482, 40.69768342208862], [-73.81671453094482, 40.70650140190124], [-73.82833256530762, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 17-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.70650140190124], [-73.81671453094482, 40.70650140190124], [-73.81671453094482, 40.71531938171387], [-73.82833256530762, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 17-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.71531938171387], [-73.81671453094482, 40.71531938171387], [-73.81671453094482, 40.72413736152649], [-73.82833256530762, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 17-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.72413736152649], [-73.81671453094482, 40.72413736152649], [-73.81671453094482, 40.73295534133911], [-73.82833256530762, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 17-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.73295534133911], [-73.81671453094482, 40.73295534133911], [-73.81671453094482, 40.74177332115173], [-73.82833256530762, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 17-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.74177332115173], [-73.81671453094482, 40.74177332115173], [-73.81671453094482, 40.75059130096435], [-73.82833256530762, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 17-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.75059130096435], [-73.81671453094482, 40.75059130096435], [-73.81671453094482, 40.75940928077698], [-73.82833256530762, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 17-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.75940928077698], [-73.81671453094482, 40.75940928077698], [-73.81671453094482, 40.7682272605896], [-73.82833256530762, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 17-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.7682272605896], [-73.81671453094482, 40.7682272605896], [-73.81671453094482, 40.777045240402224], [-73.82833256530762, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 17-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.777045240402224], [-73.81671453094482, 40.777045240402224], [-73.81671453094482, 40.78586322021484], [-73.82833256530762, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 17-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.78586322021484], [-73.81671453094482, 40.78586322021484], [-73.81671453094482, 40.79468120002747], [-73.82833256530762, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 17-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.79468120002747], [-73.81671453094482, 40.79468120002747], [-73.81671453094482, 40.80349917984009], [-73.82833256530762, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 17-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.80349917984009], [-73.81671453094482, 40.80349917984009], [-73.81671453094482, 40.812317159652714], [-73.82833256530762, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 17-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.812317159652714], [-73.80509649658202, 40.812317159652714], [-73.80509649658202, 40.64477554321289], [-73.81671453094482, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 18-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.64477554321289], [-73.80509649658202, 40.64477554321289], [-73.80509649658202, 40.653593523025506], [-73.81671453094482, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 18-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.653593523025506], [-73.80509649658202, 40.653593523025506], [-73.80509649658202, 40.66241150283813], [-73.81671453094482, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 18-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.66241150283813], [-73.80509649658202, 40.66241150283813], [-73.80509649658202, 40.67122948265075], [-73.81671453094482, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 18-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.67122948265075], [-73.80509649658202, 40.67122948265075], [-73.80509649658202, 40.68004746246338], [-73.81671453094482, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 18-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.68004746246338], [-73.80509649658202, 40.68004746246338], [-73.80509649658202, 40.688865442276], [-73.81671453094482, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 18-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.688865442276], [-73.80509649658202, 40.688865442276], [-73.80509649658202, 40.69768342208862], [-73.81671453094482, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 18-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.69768342208862], [-73.80509649658202, 40.69768342208862], [-73.80509649658202, 40.70650140190124], [-73.81671453094482, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 18-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.70650140190124], [-73.80509649658202, 40.70650140190124], [-73.80509649658202, 40.71531938171387], [-73.81671453094482, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 18-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.71531938171387], [-73.80509649658202, 40.71531938171387], [-73.80509649658202, 40.72413736152649], [-73.81671453094482, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 18-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.72413736152649], [-73.80509649658202, 40.72413736152649], [-73.80509649658202, 40.73295534133911], [-73.81671453094482, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 18-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.73295534133911], [-73.80509649658202, 40.73295534133911], [-73.80509649658202, 40.74177332115173], [-73.81671453094482, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 18-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.74177332115173], [-73.80509649658202, 40.74177332115173], [-73.80509649658202, 40.75059130096435], [-73.81671453094482, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 18-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.75059130096435], [-73.80509649658202, 40.75059130096435], [-73.80509649658202, 40.75940928077698], [-73.81671453094482, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 18-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.75940928077698], [-73.80509649658202, 40.75940928077698], [-73.80509649658202, 40.7682272605896], [-73.81671453094482, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 18-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.7682272605896], [-73.80509649658202, 40.7682272605896], [-73.80509649658202, 40.777045240402224], [-73.81671453094482, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 18-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.777045240402224], [-73.80509649658202, 40.777045240402224], [-73.80509649658202, 40.78586322021484], [-73.81671453094482, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 18-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.78586322021484], [-73.80509649658202, 40.78586322021484], [-73.80509649658202, 40.79468120002747], [-73.81671453094482, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 18-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.79468120002747], [-73.80509649658202, 40.79468120002747], [-73.80509649658202, 40.80349917984009], [-73.81671453094482, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 18-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.80349917984009], [-73.80509649658202, 40.80349917984009], [-73.80509649658202, 40.812317159652714], [-73.81671453094482, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 18-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.812317159652714], [-73.79347846221924, 40.812317159652714], [-73.79347846221924, 40.64477554321289], [-73.80509649658202, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 19-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.64477554321289], [-73.79347846221924, 40.64477554321289], [-73.79347846221924, 40.653593523025506], [-73.80509649658202, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 19-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.653593523025506], [-73.79347846221924, 40.653593523025506], [-73.79347846221924, 40.66241150283813], [-73.80509649658202, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 19-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.66241150283813], [-73.79347846221924, 40.66241150283813], [-73.79347846221924, 40.67122948265075], [-73.80509649658202, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 19-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.67122948265075], [-73.79347846221924, 40.67122948265075], [-73.79347846221924, 40.68004746246338], [-73.80509649658202, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 19-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.68004746246338], [-73.79347846221924, 40.68004746246338], [-73.79347846221924, 40.688865442276], [-73.80509649658202, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 19-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.688865442276], [-73.79347846221924, 40.688865442276], [-73.79347846221924, 40.69768342208862], [-73.80509649658202, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 19-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.69768342208862], [-73.79347846221924, 40.69768342208862], [-73.79347846221924, 40.70650140190124], [-73.80509649658202, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 19-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.70650140190124], [-73.79347846221924, 40.70650140190124], [-73.79347846221924, 40.71531938171387], [-73.80509649658202, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 19-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.71531938171387], [-73.79347846221924, 40.71531938171387], [-73.79347846221924, 40.72413736152649], [-73.80509649658202, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 19-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.72413736152649], [-73.79347846221924, 40.72413736152649], [-73.79347846221924, 40.73295534133911], [-73.80509649658202, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 19-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.73295534133911], [-73.79347846221924, 40.73295534133911], [-73.79347846221924, 40.74177332115173], [-73.80509649658202, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 19-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.74177332115173], [-73.79347846221924, 40.74177332115173], [-73.79347846221924, 40.75059130096435], [-73.80509649658202, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 19-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.75059130096435], [-73.79347846221924, 40.75059130096435], [-73.79347846221924, 40.75940928077698], [-73.80509649658202, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 19-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.75940928077698], [-73.79347846221924, 40.75940928077698], [-73.79347846221924, 40.7682272605896], [-73.80509649658202, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 19-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.7682272605896], [-73.79347846221924, 40.7682272605896], [-73.79347846221924, 40.777045240402224], [-73.80509649658202, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 19-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.777045240402224], [-73.79347846221924, 40.777045240402224], [-73.79347846221924, 40.78586322021484], [-73.80509649658202, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 19-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.78586322021484], [-73.79347846221924, 40.78586322021484], [-73.79347846221924, 40.79468120002747], [-73.80509649658202, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 19-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.79468120002747], [-73.79347846221924, 40.79468120002747], [-73.79347846221924, 40.80349917984009], [-73.80509649658202, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 19-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.80349917984009], [-73.79347846221924, 40.80349917984009], [-73.79347846221924, 40.812317159652714], [-73.80509649658202, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;name&quot;: &quot;Cell 19-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
"&lt;/script&gt;\n",
"&lt;/html&gt;\" style=\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>"
],
"text/plain": [
"<folium.folium.Map at 0x173b9ecd0>"
]
},
"execution_count": 32,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import folium\n",
"import json\n",
"\n",
"# Your code to calculate max_lon, min_lon, max_lat, min_lat, grid_size, lon_cuts, and lat_cuts here\n",
"\n",
"# Create a Folium map centered at a location of your choice\n",
"m = folium.Map(location=[(min_lat + max_lat) / 2, (min_lon + max_lon) / 2], zoom_start=11)\n",
"\n",
"# Create a list of features for the grid cells\n",
"features = []\n",
"\n",
"# Create grid cells using lon_cuts and lat_cuts\n",
"for i in range(grid_size):\n",
" for j in range(grid_size):\n",
" cell = {\n",
" \"type\": \"Feature\",\n",
" \"properties\": {\n",
" \"name\": f\"Cell {i}-{j}\"\n",
" },\n",
" \"geometry\": {\n",
" \"type\": \"Polygon\",\n",
" \"coordinates\": [\n",
" [\n",
" [lon_cuts[i - 1], lat_cuts[j - 1]],\n",
" [lon_cuts[i], lat_cuts[j - 1]],\n",
" [lon_cuts[i], lat_cuts[j]],\n",
" [lon_cuts[i - 1], lat_cuts[j]]\n",
" ]\n",
" ]\n",
" }\n",
" }\n",
" features.append(cell)\n",
"\n",
"# Create a GeoJSON layer with the grid cells\n",
"grid_layer = folium.GeoJson(\n",
" data={\n",
" \"type\": \"FeatureCollection\",\n",
" \"features\": features\n",
" },\n",
" name=\"Grid\"\n",
")\n",
"\n",
"grid_layer.add_to(m)\n",
"m\n"
]
},
{
"cell_type": "code",
"execution_count": 42,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"MAE: 469.288426"
]
},
"execution_count": 42,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import bisect\n",
"\n",
"def munge_bis(x):\n",
" return {\n",
" **x,\n",
" 'weekday': x['pickup_datetime'].weekday(),\n",
" 'grid_cell': (\n",
" bisect.bisect_left(lat_cuts, x['pickup_latitude']),\n",
" bisect.bisect_left(lon_cuts, x['pickup_longitude'])\n",
" )\n",
" }\n",
"\n",
"model = compose.Pipeline(\n",
" munge_bis,\n",
" [\n",
" distances,\n",
" feature_extraction.TargetAgg(by='weekday', how=stats.Mean()),\n",
" feature_extraction.TargetAgg(by='grid_cell', how=stats.Count())\n",
" ],\n",
" preprocessing.StandardScaler(),\n",
" linear_model.LinearRegression()\n",
")\n",
"\n",
"evaluate.progressive_val_score(\n",
" dataset=dataset.take(10_000),\n",
" model=model,\n",
" metric=metric.clone(),\n",
" moment='pickup_datetime',\n",
" delay=lambda _, y: dt.timedelta(seconds=y)\n",
")\n"
]
},
{
"cell_type": "code",
"execution_count": 55,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div style=\"width:100%;\"><div style=\"position:relative;width:100%;height:0;padding-bottom:60%;\"><span style=\"color:#565656\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\"&lt;!DOCTYPE html&gt;\n",
"&lt;html&gt;\n",
"&lt;head&gt;\n",
" \n",
" &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\n",
" \n",
" &lt;script&gt;\n",
" L_NO_TOUCH = false;\n",
" L_DISABLE_3D = false;\n",
" &lt;/script&gt;\n",
" \n",
" &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\n",
" &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\n",
" &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\n",
" &lt;script src=&quot;https://code.jquery.com/jquery-1.12.4.min.js&quot;&gt;&lt;/script&gt;\n",
" &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\n",
" &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\n",
" \n",
" &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\n",
" initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\n",
" &lt;style&gt;\n",
" #map_911c8777c3877dcc87505e36b0927a39 {\n",
" position: relative;\n",
" width: 100.0%;\n",
" height: 100.0%;\n",
" left: 0.0%;\n",
" top: 0.0%;\n",
" }\n",
" .leaflet-container { font-size: 1rem; }\n",
" &lt;/style&gt;\n",
" \n",
" &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\n",
"&lt;/head&gt;\n",
"&lt;body&gt;\n",
" \n",
" \n",
" &lt;div class=&quot;folium-map&quot; id=&quot;map_911c8777c3877dcc87505e36b0927a39&quot; &gt;&lt;/div&gt;\n",
" \n",
"&lt;/body&gt;\n",
"&lt;script&gt;\n",
" \n",
" \n",
" var map_911c8777c3877dcc87505e36b0927a39 = L.map(\n",
" &quot;map_911c8777c3877dcc87505e36b0927a39&quot;,\n",
" {\n",
" center: [40.73295534133911, -73.89804077148438],\n",
" crs: L.CRS.EPSG3857,\n",
" zoom: 11,\n",
" zoomControl: true,\n",
" preferCanvas: false,\n",
" }\n",
" );\n",
"\n",
" \n",
"\n",
" \n",
" \n",
" var tile_layer_5d5895362e3e11d559957c8739aa0053 = L.tileLayer(\n",
" &quot;https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png&quot;,\n",
" {&quot;attribution&quot;: &quot;Data by \\u0026copy; \\u003ca target=\\&quot;_blank\\&quot; href=\\&quot;http://openstreetmap.org\\&quot;\\u003eOpenStreetMap\\u003c/a\\u003e, under \\u003ca target=\\&quot;_blank\\&quot; href=\\&quot;http://www.openstreetmap.org/copyright\\&quot;\\u003eODbL\\u003c/a\\u003e.&quot;, &quot;detectRetina&quot;: false, &quot;maxNativeZoom&quot;: 18, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\n",
" ).addTo(map_911c8777c3877dcc87505e36b0927a39);\n",
" \n",
" \n",
" function geo_json_7605e56e121ea24c72c015746e2f282e_styler(feature) {\n",
" switch(feature.properties.name) {\n",
" case &quot;Cell 0-0&quot;: case &quot;Cell 0-4&quot;: case &quot;Cell 2-5&quot;: case &quot;Cell 3-3&quot;: case &quot;Cell 5-5&quot;: case &quot;Cell 6-9&quot;: case &quot;Cell 7-6&quot;: case &quot;Cell 8-4&quot;: case &quot;Cell 10-14&quot;: case &quot;Cell 11-6&quot;: case &quot;Cell 11-10&quot;: case &quot;Cell 11-11&quot;: case &quot;Cell 11-13&quot;: case &quot;Cell 12-6&quot;: case &quot;Cell 12-13&quot;: case &quot;Cell 13-12&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#fffe00ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 4-2&quot;: case &quot;Cell 4-6&quot;: case &quot;Cell 5-7&quot;: case &quot;Cell 6-4&quot;: case &quot;Cell 6-8&quot;: case &quot;Cell 7-2&quot;: case &quot;Cell 8-8&quot;: case &quot;Cell 12-7&quot;: case &quot;Cell 12-10&quot;: case &quot;Cell 13-6&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#fffd00ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 4-3&quot;: case &quot;Cell 5-3&quot;: case &quot;Cell 5-4&quot;: case &quot;Cell 12-12&quot;: case &quot;Cell 13-8&quot;: case &quot;Cell 15-8&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#fff900ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 4-4&quot;: case &quot;Cell 6-3&quot;: case &quot;Cell 7-0&quot;: case &quot;Cell 15-9&quot;: case &quot;Cell 17-7&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#fff600ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 4-5&quot;: case &quot;Cell 5-2&quot;: case &quot;Cell 5-6&quot;: case &quot;Cell 6-5&quot;: case &quot;Cell 7-3&quot;: case &quot;Cell 7-7&quot;: case &quot;Cell 9-7&quot;: case &quot;Cell 12-8&quot;: case &quot;Cell 12-11&quot;: case &quot;Cell 14-1&quot;: case &quot;Cell 14-7&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#fffc00ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 6-2&quot;: case &quot;Cell 8-3&quot;: case &quot;Cell 13-1&quot;: case &quot;Cell 14-9&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#fff800ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 6-6&quot;: case &quot;Cell 8-7&quot;: case &quot;Cell 9-0&quot;: case &quot;Cell 9-4&quot;: case &quot;Cell 9-6&quot;: case &quot;Cell 13-7&quot;: case &quot;Cell 13-9&quot;: case &quot;Cell 15-12&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#fffb00ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 7-1&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ffda00ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 7-8&quot;: case &quot;Cell 10-6&quot;: case &quot;Cell 19-7&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#fffa00ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 8-0&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ffe100ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 8-1&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ffad00ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 8-2&quot;: case &quot;Cell 18-7&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#fff100ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 8-5&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ffed00ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 8-6&quot;: case &quot;Cell 9-5&quot;: case &quot;Cell 14-8&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#fff200ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 9-1&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ffc300ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 9-2&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ff9700ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 9-3&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ff8f00ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 10-1&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ffd400ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 10-2&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ff6000ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 10-3&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ff4400ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 10-4&quot;: case &quot;Cell 15-14&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ffef00ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 11-1&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ff9e00ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 11-2&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ff6b00ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 11-3&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ff3d00ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 11-4&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ffe000ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 12-1&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ffc900ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 12-2&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ff1d00ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 12-3&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ff0500ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 12-4&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ff8b00ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 12-9&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#fff700ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 13-2&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ff7d00ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 13-3&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ff1a00ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 13-4&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ff0000ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 13-5&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ffc000ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 14-2&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ffaa00ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 14-3&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ff3200ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 14-4&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ff4800ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 14-5&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ff8000ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 14-6&quot;: case &quot;Cell 15-4&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ffea00ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 15-2&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#fff400ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 15-3&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ff8100ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 15-5&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ff7400ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 15-6&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ff8300ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 15-13&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ffb600ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 16-3&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ffb500ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 16-4&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ffb200ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 16-5&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ffd500ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 16-6&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ff7000ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 17-4&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ff9900ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 17-5&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ffeb00ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 17-6&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ffe400ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 18-4&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ffd700ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 18-5&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ffe700ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 18-6&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#fff500ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 19-5&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#fff000ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" case &quot;Cell 19-6&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#fff300ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" default:\n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#ffff00ff&quot;, &quot;fillOpacity&quot;: 0.4, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_7605e56e121ea24c72c015746e2f282e_onEachFeature(feature, layer) {\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_7605e56e121ea24c72c015746e2f282e = L.geoJson(null, {\n",
" onEachFeature: geo_json_7605e56e121ea24c72c015746e2f282e_onEachFeature,\n",
" \n",
" style: geo_json_7605e56e121ea24c72c015746e2f282e_styler,\n",
" });\n",
"\n",
" function geo_json_7605e56e121ea24c72c015746e2f282e_add (data) {\n",
" geo_json_7605e56e121ea24c72c015746e2f282e\n",
" .addData(data)\n",
" .addTo(map_911c8777c3877dcc87505e36b0927a39);\n",
" }\n",
" geo_json_7605e56e121ea24c72c015746e2f282e_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.812317159652714], [-74.0142211151123, 40.812317159652714], [-74.0142211151123, 40.64477554321289], [-73.79347846221924, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 4, &quot;name&quot;: &quot;Cell 0-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.64477554321289], [-74.0142211151123, 40.64477554321289], [-74.0142211151123, 40.653593523025506], [-73.79347846221924, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 0-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.653593523025506], [-74.0142211151123, 40.653593523025506], [-74.0142211151123, 40.66241150283813], [-73.79347846221924, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 0-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.66241150283813], [-74.0142211151123, 40.66241150283813], [-74.0142211151123, 40.67122948265075], [-73.79347846221924, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 0-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.67122948265075], [-74.0142211151123, 40.67122948265075], [-74.0142211151123, 40.68004746246338], [-73.79347846221924, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 4, &quot;name&quot;: &quot;Cell 0-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.68004746246338], [-74.0142211151123, 40.68004746246338], [-74.0142211151123, 40.688865442276], [-73.79347846221924, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 0-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.688865442276], [-74.0142211151123, 40.688865442276], [-74.0142211151123, 40.69768342208862], [-73.79347846221924, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 0-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.69768342208862], [-74.0142211151123, 40.69768342208862], [-74.0142211151123, 40.70650140190124], [-73.79347846221924, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 2, &quot;name&quot;: &quot;Cell 0-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.70650140190124], [-74.0142211151123, 40.70650140190124], [-74.0142211151123, 40.71531938171387], [-73.79347846221924, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 0-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.71531938171387], [-74.0142211151123, 40.71531938171387], [-74.0142211151123, 40.72413736152649], [-73.79347846221924, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 0-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.72413736152649], [-74.0142211151123, 40.72413736152649], [-74.0142211151123, 40.73295534133911], [-73.79347846221924, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 0-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.73295534133911], [-74.0142211151123, 40.73295534133911], [-74.0142211151123, 40.74177332115173], [-73.79347846221924, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 2, &quot;name&quot;: &quot;Cell 0-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.74177332115173], [-74.0142211151123, 40.74177332115173], [-74.0142211151123, 40.75059130096435], [-73.79347846221924, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 0-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.75059130096435], [-74.0142211151123, 40.75059130096435], [-74.0142211151123, 40.75940928077698], [-73.79347846221924, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 0-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.75940928077698], [-74.0142211151123, 40.75940928077698], [-74.0142211151123, 40.7682272605896], [-73.79347846221924, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 0-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.7682272605896], [-74.0142211151123, 40.7682272605896], [-74.0142211151123, 40.777045240402224], [-73.79347846221924, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 0-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.777045240402224], [-74.0142211151123, 40.777045240402224], [-74.0142211151123, 40.78586322021484], [-73.79347846221924, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 0-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.78586322021484], [-74.0142211151123, 40.78586322021484], [-74.0142211151123, 40.79468120002747], [-73.79347846221924, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 0-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.79468120002747], [-74.0142211151123, 40.79468120002747], [-74.0142211151123, 40.80349917984009], [-73.79347846221924, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 0-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.79347846221924, 40.80349917984009], [-74.0142211151123, 40.80349917984009], [-74.0142211151123, 40.812317159652714], [-73.79347846221924, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 0-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.812317159652714], [-74.00260308074951, 40.812317159652714], [-74.00260308074951, 40.64477554321289], [-74.0142211151123, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 2, &quot;name&quot;: &quot;Cell 1-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.64477554321289], [-74.00260308074951, 40.64477554321289], [-74.00260308074951, 40.653593523025506], [-74.0142211151123, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 1-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.653593523025506], [-74.00260308074951, 40.653593523025506], [-74.00260308074951, 40.66241150283813], [-74.0142211151123, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 1-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.66241150283813], [-74.00260308074951, 40.66241150283813], [-74.00260308074951, 40.67122948265075], [-74.0142211151123, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 1-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.67122948265075], [-74.00260308074951, 40.67122948265075], [-74.00260308074951, 40.68004746246338], [-74.0142211151123, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 1-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.68004746246338], [-74.00260308074951, 40.68004746246338], [-74.00260308074951, 40.688865442276], [-74.0142211151123, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 2, &quot;name&quot;: &quot;Cell 1-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.688865442276], [-74.00260308074951, 40.688865442276], [-74.00260308074951, 40.69768342208862], [-74.0142211151123, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 1-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.69768342208862], [-74.00260308074951, 40.69768342208862], [-74.00260308074951, 40.70650140190124], [-74.0142211151123, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 1-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.70650140190124], [-74.00260308074951, 40.70650140190124], [-74.00260308074951, 40.71531938171387], [-74.0142211151123, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 1-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.71531938171387], [-74.00260308074951, 40.71531938171387], [-74.00260308074951, 40.72413736152649], [-74.0142211151123, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 1-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.72413736152649], [-74.00260308074951, 40.72413736152649], [-74.00260308074951, 40.73295534133911], [-74.0142211151123, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 1-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.73295534133911], [-74.00260308074951, 40.73295534133911], [-74.00260308074951, 40.74177332115173], [-74.0142211151123, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 1-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.74177332115173], [-74.00260308074951, 40.74177332115173], [-74.00260308074951, 40.75059130096435], [-74.0142211151123, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 1-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.75059130096435], [-74.00260308074951, 40.75059130096435], [-74.00260308074951, 40.75940928077698], [-74.0142211151123, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 1-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.75940928077698], [-74.00260308074951, 40.75940928077698], [-74.00260308074951, 40.7682272605896], [-74.0142211151123, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 1-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.7682272605896], [-74.00260308074951, 40.7682272605896], [-74.00260308074951, 40.777045240402224], [-74.0142211151123, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 1-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.777045240402224], [-74.00260308074951, 40.777045240402224], [-74.00260308074951, 40.78586322021484], [-74.0142211151123, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 1-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.78586322021484], [-74.00260308074951, 40.78586322021484], [-74.00260308074951, 40.79468120002747], [-74.0142211151123, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 1-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.79468120002747], [-74.00260308074951, 40.79468120002747], [-74.00260308074951, 40.80349917984009], [-74.0142211151123, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 1-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.0142211151123, 40.80349917984009], [-74.00260308074951, 40.80349917984009], [-74.00260308074951, 40.812317159652714], [-74.0142211151123, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 1-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.812317159652714], [-73.99098504638673, 40.812317159652714], [-73.99098504638673, 40.64477554321289], [-74.00260308074951, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 2-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.64477554321289], [-73.99098504638673, 40.64477554321289], [-73.99098504638673, 40.653593523025506], [-74.00260308074951, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 2-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.653593523025506], [-73.99098504638673, 40.653593523025506], [-73.99098504638673, 40.66241150283813], [-74.00260308074951, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 2-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.66241150283813], [-73.99098504638673, 40.66241150283813], [-73.99098504638673, 40.67122948265075], [-74.00260308074951, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 2-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.67122948265075], [-73.99098504638673, 40.67122948265075], [-73.99098504638673, 40.68004746246338], [-74.00260308074951, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 2-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.68004746246338], [-73.99098504638673, 40.68004746246338], [-73.99098504638673, 40.688865442276], [-74.00260308074951, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 3, &quot;name&quot;: &quot;Cell 2-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.688865442276], [-73.99098504638673, 40.688865442276], [-73.99098504638673, 40.69768342208862], [-74.00260308074951, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 2-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.69768342208862], [-73.99098504638673, 40.69768342208862], [-73.99098504638673, 40.70650140190124], [-74.00260308074951, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 2-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.70650140190124], [-73.99098504638673, 40.70650140190124], [-73.99098504638673, 40.71531938171387], [-74.00260308074951, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 2-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.71531938171387], [-73.99098504638673, 40.71531938171387], [-73.99098504638673, 40.72413736152649], [-74.00260308074951, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 2-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.72413736152649], [-73.99098504638673, 40.72413736152649], [-73.99098504638673, 40.73295534133911], [-74.00260308074951, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 2-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.73295534133911], [-73.99098504638673, 40.73295534133911], [-73.99098504638673, 40.74177332115173], [-74.00260308074951, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 2-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.74177332115173], [-73.99098504638673, 40.74177332115173], [-73.99098504638673, 40.75059130096435], [-74.00260308074951, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 2-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.75059130096435], [-73.99098504638673, 40.75059130096435], [-73.99098504638673, 40.75940928077698], [-74.00260308074951, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 2-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.75940928077698], [-73.99098504638673, 40.75940928077698], [-73.99098504638673, 40.7682272605896], [-74.00260308074951, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 2-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.7682272605896], [-73.99098504638673, 40.7682272605896], [-73.99098504638673, 40.777045240402224], [-74.00260308074951, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 2-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.777045240402224], [-73.99098504638673, 40.777045240402224], [-73.99098504638673, 40.78586322021484], [-74.00260308074951, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 2-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.78586322021484], [-73.99098504638673, 40.78586322021484], [-73.99098504638673, 40.79468120002747], [-74.00260308074951, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 2-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.79468120002747], [-73.99098504638673, 40.79468120002747], [-73.99098504638673, 40.80349917984009], [-74.00260308074951, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 2-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-74.00260308074951, 40.80349917984009], [-73.99098504638673, 40.80349917984009], [-73.99098504638673, 40.812317159652714], [-74.00260308074951, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 2-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.812317159652714], [-73.97936701202393, 40.812317159652714], [-73.97936701202393, 40.64477554321289], [-73.99098504638673, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 3-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.64477554321289], [-73.97936701202393, 40.64477554321289], [-73.97936701202393, 40.653593523025506], [-73.99098504638673, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 3-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.653593523025506], [-73.97936701202393, 40.653593523025506], [-73.97936701202393, 40.66241150283813], [-73.99098504638673, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 3-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.66241150283813], [-73.97936701202393, 40.66241150283813], [-73.97936701202393, 40.67122948265075], [-73.99098504638673, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 4, &quot;name&quot;: &quot;Cell 3-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.67122948265075], [-73.97936701202393, 40.67122948265075], [-73.97936701202393, 40.68004746246338], [-73.99098504638673, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 3-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.68004746246338], [-73.97936701202393, 40.68004746246338], [-73.97936701202393, 40.688865442276], [-73.99098504638673, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 2, &quot;name&quot;: &quot;Cell 3-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.688865442276], [-73.97936701202393, 40.688865442276], [-73.97936701202393, 40.69768342208862], [-73.99098504638673, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 2, &quot;name&quot;: &quot;Cell 3-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.69768342208862], [-73.97936701202393, 40.69768342208862], [-73.97936701202393, 40.70650140190124], [-73.99098504638673, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 3-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.70650140190124], [-73.97936701202393, 40.70650140190124], [-73.97936701202393, 40.71531938171387], [-73.99098504638673, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 3-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.71531938171387], [-73.97936701202393, 40.71531938171387], [-73.97936701202393, 40.72413736152649], [-73.99098504638673, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 3-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.72413736152649], [-73.97936701202393, 40.72413736152649], [-73.97936701202393, 40.73295534133911], [-73.99098504638673, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 3-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.73295534133911], [-73.97936701202393, 40.73295534133911], [-73.97936701202393, 40.74177332115173], [-73.99098504638673, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 3-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.74177332115173], [-73.97936701202393, 40.74177332115173], [-73.97936701202393, 40.75059130096435], [-73.99098504638673, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 3-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.75059130096435], [-73.97936701202393, 40.75059130096435], [-73.97936701202393, 40.75940928077698], [-73.99098504638673, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 3-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.75940928077698], [-73.97936701202393, 40.75940928077698], [-73.97936701202393, 40.7682272605896], [-73.99098504638673, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 3-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.7682272605896], [-73.97936701202393, 40.7682272605896], [-73.97936701202393, 40.777045240402224], [-73.99098504638673, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 3-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.777045240402224], [-73.97936701202393, 40.777045240402224], [-73.97936701202393, 40.78586322021484], [-73.99098504638673, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 3-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.78586322021484], [-73.97936701202393, 40.78586322021484], [-73.97936701202393, 40.79468120002747], [-73.99098504638673, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 3-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.79468120002747], [-73.97936701202393, 40.79468120002747], [-73.97936701202393, 40.80349917984009], [-73.99098504638673, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 3-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.99098504638673, 40.80349917984009], [-73.97936701202393, 40.80349917984009], [-73.97936701202393, 40.812317159652714], [-73.99098504638673, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 3-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.812317159652714], [-73.96774897766113, 40.812317159652714], [-73.96774897766113, 40.64477554321289], [-73.97936701202393, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 4-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.64477554321289], [-73.96774897766113, 40.64477554321289], [-73.96774897766113, 40.653593523025506], [-73.97936701202393, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 4-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.653593523025506], [-73.96774897766113, 40.653593523025506], [-73.96774897766113, 40.66241150283813], [-73.97936701202393, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 5, &quot;name&quot;: &quot;Cell 4-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.66241150283813], [-73.96774897766113, 40.66241150283813], [-73.96774897766113, 40.67122948265075], [-73.97936701202393, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 14, &quot;name&quot;: &quot;Cell 4-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.67122948265075], [-73.96774897766113, 40.67122948265075], [-73.96774897766113, 40.68004746246338], [-73.97936701202393, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 19, &quot;name&quot;: &quot;Cell 4-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.68004746246338], [-73.96774897766113, 40.68004746246338], [-73.96774897766113, 40.688865442276], [-73.97936701202393, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 7, &quot;name&quot;: &quot;Cell 4-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.688865442276], [-73.96774897766113, 40.688865442276], [-73.96774897766113, 40.69768342208862], [-73.97936701202393, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 5, &quot;name&quot;: &quot;Cell 4-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.69768342208862], [-73.96774897766113, 40.69768342208862], [-73.96774897766113, 40.70650140190124], [-73.97936701202393, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 4-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.70650140190124], [-73.96774897766113, 40.70650140190124], [-73.96774897766113, 40.71531938171387], [-73.97936701202393, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 4-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.71531938171387], [-73.96774897766113, 40.71531938171387], [-73.96774897766113, 40.72413736152649], [-73.97936701202393, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 4-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.72413736152649], [-73.96774897766113, 40.72413736152649], [-73.96774897766113, 40.73295534133911], [-73.97936701202393, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 4-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.73295534133911], [-73.96774897766113, 40.73295534133911], [-73.96774897766113, 40.74177332115173], [-73.97936701202393, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 4-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.74177332115173], [-73.96774897766113, 40.74177332115173], [-73.96774897766113, 40.75059130096435], [-73.97936701202393, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 4-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.75059130096435], [-73.96774897766113, 40.75059130096435], [-73.96774897766113, 40.75940928077698], [-73.97936701202393, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 4-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.75940928077698], [-73.96774897766113, 40.75940928077698], [-73.96774897766113, 40.7682272605896], [-73.97936701202393, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 4-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.7682272605896], [-73.96774897766113, 40.7682272605896], [-73.96774897766113, 40.777045240402224], [-73.97936701202393, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 4-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.777045240402224], [-73.96774897766113, 40.777045240402224], [-73.96774897766113, 40.78586322021484], [-73.97936701202393, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 4-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.78586322021484], [-73.96774897766113, 40.78586322021484], [-73.96774897766113, 40.79468120002747], [-73.97936701202393, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 4-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.79468120002747], [-73.96774897766113, 40.79468120002747], [-73.96774897766113, 40.80349917984009], [-73.97936701202393, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 4-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.97936701202393, 40.80349917984009], [-73.96774897766113, 40.80349917984009], [-73.96774897766113, 40.812317159652714], [-73.97936701202393, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 4-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.812317159652714], [-73.95613094329835, 40.812317159652714], [-73.95613094329835, 40.64477554321289], [-73.96774897766113, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 5-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.64477554321289], [-73.95613094329835, 40.64477554321289], [-73.95613094329835, 40.653593523025506], [-73.96774897766113, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 5-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.653593523025506], [-73.95613094329835, 40.653593523025506], [-73.95613094329835, 40.66241150283813], [-73.96774897766113, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 7, &quot;name&quot;: &quot;Cell 5-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.66241150283813], [-73.95613094329835, 40.66241150283813], [-73.95613094329835, 40.67122948265075], [-73.96774897766113, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 14, &quot;name&quot;: &quot;Cell 5-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.67122948265075], [-73.95613094329835, 40.67122948265075], [-73.95613094329835, 40.68004746246338], [-73.96774897766113, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 14, &quot;name&quot;: &quot;Cell 5-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.68004746246338], [-73.95613094329835, 40.68004746246338], [-73.95613094329835, 40.688865442276], [-73.96774897766113, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 4, &quot;name&quot;: &quot;Cell 5-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.688865442276], [-73.95613094329835, 40.688865442276], [-73.95613094329835, 40.69768342208862], [-73.96774897766113, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 7, &quot;name&quot;: &quot;Cell 5-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.69768342208862], [-73.95613094329835, 40.69768342208862], [-73.95613094329835, 40.70650140190124], [-73.96774897766113, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 5, &quot;name&quot;: &quot;Cell 5-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.70650140190124], [-73.95613094329835, 40.70650140190124], [-73.95613094329835, 40.71531938171387], [-73.96774897766113, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 5-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.71531938171387], [-73.95613094329835, 40.71531938171387], [-73.95613094329835, 40.72413736152649], [-73.96774897766113, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 5-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.72413736152649], [-73.95613094329835, 40.72413736152649], [-73.95613094329835, 40.73295534133911], [-73.96774897766113, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 5-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.73295534133911], [-73.95613094329835, 40.73295534133911], [-73.95613094329835, 40.74177332115173], [-73.96774897766113, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 5-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.74177332115173], [-73.95613094329835, 40.74177332115173], [-73.95613094329835, 40.75059130096435], [-73.96774897766113, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 5-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.75059130096435], [-73.95613094329835, 40.75059130096435], [-73.95613094329835, 40.75940928077698], [-73.96774897766113, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 5-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.75940928077698], [-73.95613094329835, 40.75940928077698], [-73.95613094329835, 40.7682272605896], [-73.96774897766113, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 5-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.7682272605896], [-73.95613094329835, 40.7682272605896], [-73.95613094329835, 40.777045240402224], [-73.96774897766113, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 5-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.777045240402224], [-73.95613094329835, 40.777045240402224], [-73.95613094329835, 40.78586322021484], [-73.96774897766113, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 5-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.78586322021484], [-73.95613094329835, 40.78586322021484], [-73.95613094329835, 40.79468120002747], [-73.96774897766113, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 5-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.79468120002747], [-73.95613094329835, 40.79468120002747], [-73.95613094329835, 40.80349917984009], [-73.96774897766113, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 5-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.96774897766113, 40.80349917984009], [-73.95613094329835, 40.80349917984009], [-73.95613094329835, 40.812317159652714], [-73.96774897766113, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 5-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.812317159652714], [-73.94451290893555, 40.812317159652714], [-73.94451290893555, 40.64477554321289], [-73.95613094329835, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 6-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.64477554321289], [-73.94451290893555, 40.64477554321289], [-73.94451290893555, 40.653593523025506], [-73.95613094329835, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 6-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.653593523025506], [-73.94451290893555, 40.653593523025506], [-73.94451290893555, 40.66241150283813], [-73.95613094329835, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 16, &quot;name&quot;: &quot;Cell 6-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.66241150283813], [-73.94451290893555, 40.66241150283813], [-73.94451290893555, 40.67122948265075], [-73.95613094329835, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 20, &quot;name&quot;: &quot;Cell 6-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.67122948265075], [-73.94451290893555, 40.67122948265075], [-73.94451290893555, 40.68004746246338], [-73.95613094329835, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 5, &quot;name&quot;: &quot;Cell 6-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.68004746246338], [-73.94451290893555, 40.68004746246338], [-73.94451290893555, 40.688865442276], [-73.95613094329835, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 8, &quot;name&quot;: &quot;Cell 6-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.688865442276], [-73.94451290893555, 40.688865442276], [-73.94451290893555, 40.69768342208862], [-73.95613094329835, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 9, &quot;name&quot;: &quot;Cell 6-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.69768342208862], [-73.94451290893555, 40.69768342208862], [-73.94451290893555, 40.70650140190124], [-73.95613094329835, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 2, &quot;name&quot;: &quot;Cell 6-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.70650140190124], [-73.94451290893555, 40.70650140190124], [-73.94451290893555, 40.71531938171387], [-73.95613094329835, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 5, &quot;name&quot;: &quot;Cell 6-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.71531938171387], [-73.94451290893555, 40.71531938171387], [-73.94451290893555, 40.72413736152649], [-73.95613094329835, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 3, &quot;name&quot;: &quot;Cell 6-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.72413736152649], [-73.94451290893555, 40.72413736152649], [-73.94451290893555, 40.73295534133911], [-73.95613094329835, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 6-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.73295534133911], [-73.94451290893555, 40.73295534133911], [-73.94451290893555, 40.74177332115173], [-73.95613094329835, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 6-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.74177332115173], [-73.94451290893555, 40.74177332115173], [-73.94451290893555, 40.75059130096435], [-73.95613094329835, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 6-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.75059130096435], [-73.94451290893555, 40.75059130096435], [-73.94451290893555, 40.75940928077698], [-73.95613094329835, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 6-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.75940928077698], [-73.94451290893555, 40.75940928077698], [-73.94451290893555, 40.7682272605896], [-73.95613094329835, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 6-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.7682272605896], [-73.94451290893555, 40.7682272605896], [-73.94451290893555, 40.777045240402224], [-73.95613094329835, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 6-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.777045240402224], [-73.94451290893555, 40.777045240402224], [-73.94451290893555, 40.78586322021484], [-73.95613094329835, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 6-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.78586322021484], [-73.94451290893555, 40.78586322021484], [-73.94451290893555, 40.79468120002747], [-73.95613094329835, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 6-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.79468120002747], [-73.94451290893555, 40.79468120002747], [-73.94451290893555, 40.80349917984009], [-73.95613094329835, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 6-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.95613094329835, 40.80349917984009], [-73.94451290893555, 40.80349917984009], [-73.94451290893555, 40.812317159652714], [-73.95613094329835, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 6-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.812317159652714], [-73.93289487457275, 40.812317159652714], [-73.93289487457275, 40.64477554321289], [-73.94451290893555, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 19, &quot;name&quot;: &quot;Cell 7-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.64477554321289], [-73.93289487457275, 40.64477554321289], [-73.93289487457275, 40.653593523025506], [-73.94451290893555, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 75, &quot;name&quot;: &quot;Cell 7-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.653593523025506], [-73.93289487457275, 40.653593523025506], [-73.93289487457275, 40.66241150283813], [-73.94451290893555, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 6, &quot;name&quot;: &quot;Cell 7-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.66241150283813], [-73.93289487457275, 40.66241150283813], [-73.93289487457275, 40.67122948265075], [-73.94451290893555, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 8, &quot;name&quot;: &quot;Cell 7-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.67122948265075], [-73.93289487457275, 40.67122948265075], [-73.93289487457275, 40.68004746246338], [-73.94451290893555, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 7-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.68004746246338], [-73.93289487457275, 40.68004746246338], [-73.93289487457275, 40.688865442276], [-73.94451290893555, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 7-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.688865442276], [-73.93289487457275, 40.688865442276], [-73.93289487457275, 40.69768342208862], [-73.94451290893555, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 4, &quot;name&quot;: &quot;Cell 7-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.69768342208862], [-73.93289487457275, 40.69768342208862], [-73.93289487457275, 40.70650140190124], [-73.94451290893555, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 8, &quot;name&quot;: &quot;Cell 7-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.70650140190124], [-73.93289487457275, 40.70650140190124], [-73.93289487457275, 40.71531938171387], [-73.94451290893555, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 11, &quot;name&quot;: &quot;Cell 7-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.71531938171387], [-73.93289487457275, 40.71531938171387], [-73.93289487457275, 40.72413736152649], [-73.94451290893555, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 2, &quot;name&quot;: &quot;Cell 7-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.72413736152649], [-73.93289487457275, 40.72413736152649], [-73.93289487457275, 40.73295534133911], [-73.94451290893555, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 7-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.73295534133911], [-73.93289487457275, 40.73295534133911], [-73.93289487457275, 40.74177332115173], [-73.94451290893555, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 7-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.74177332115173], [-73.93289487457275, 40.74177332115173], [-73.93289487457275, 40.75059130096435], [-73.94451290893555, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 7-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.75059130096435], [-73.93289487457275, 40.75059130096435], [-73.93289487457275, 40.75940928077698], [-73.94451290893555, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 7-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.75940928077698], [-73.93289487457275, 40.75940928077698], [-73.93289487457275, 40.7682272605896], [-73.94451290893555, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 7-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.7682272605896], [-73.93289487457275, 40.7682272605896], [-73.93289487457275, 40.777045240402224], [-73.94451290893555, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 7-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.777045240402224], [-73.93289487457275, 40.777045240402224], [-73.93289487457275, 40.78586322021484], [-73.94451290893555, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 7-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.78586322021484], [-73.93289487457275, 40.78586322021484], [-73.93289487457275, 40.79468120002747], [-73.94451290893555, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 7-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.79468120002747], [-73.93289487457275, 40.79468120002747], [-73.93289487457275, 40.80349917984009], [-73.94451290893555, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 2, &quot;name&quot;: &quot;Cell 7-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.94451290893555, 40.80349917984009], [-73.93289487457275, 40.80349917984009], [-73.93289487457275, 40.812317159652714], [-73.94451290893555, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 7-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.812317159652714], [-73.92127684020996, 40.812317159652714], [-73.92127684020996, 40.64477554321289], [-73.93289487457275, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 62, &quot;name&quot;: &quot;Cell 8-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.64477554321289], [-73.92127684020996, 40.64477554321289], [-73.92127684020996, 40.653593523025506], [-73.93289487457275, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 165, &quot;name&quot;: &quot;Cell 8-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.653593523025506], [-73.92127684020996, 40.653593523025506], [-73.92127684020996, 40.66241150283813], [-73.93289487457275, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 30, &quot;name&quot;: &quot;Cell 8-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.66241150283813], [-73.92127684020996, 40.66241150283813], [-73.92127684020996, 40.67122948265075], [-73.93289487457275, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 15, &quot;name&quot;: &quot;Cell 8-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.67122948265075], [-73.92127684020996, 40.67122948265075], [-73.92127684020996, 40.68004746246338], [-73.93289487457275, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 3, &quot;name&quot;: &quot;Cell 8-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.68004746246338], [-73.92127684020996, 40.68004746246338], [-73.92127684020996, 40.688865442276], [-73.93289487457275, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 37, &quot;name&quot;: &quot;Cell 8-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.688865442276], [-73.92127684020996, 40.688865442276], [-73.92127684020996, 40.69768342208862], [-73.93289487457275, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 28, &quot;name&quot;: &quot;Cell 8-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.69768342208862], [-73.92127684020996, 40.69768342208862], [-73.92127684020996, 40.70650140190124], [-73.93289487457275, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 9, &quot;name&quot;: &quot;Cell 8-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.70650140190124], [-73.92127684020996, 40.70650140190124], [-73.92127684020996, 40.71531938171387], [-73.93289487457275, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 6, &quot;name&quot;: &quot;Cell 8-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.71531938171387], [-73.92127684020996, 40.71531938171387], [-73.92127684020996, 40.72413736152649], [-73.93289487457275, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 2, &quot;name&quot;: &quot;Cell 8-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.72413736152649], [-73.92127684020996, 40.72413736152649], [-73.92127684020996, 40.73295534133911], [-73.93289487457275, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 8-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.73295534133911], [-73.92127684020996, 40.73295534133911], [-73.92127684020996, 40.74177332115173], [-73.93289487457275, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 8-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.74177332115173], [-73.92127684020996, 40.74177332115173], [-73.92127684020996, 40.75059130096435], [-73.93289487457275, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 8-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.75059130096435], [-73.92127684020996, 40.75059130096435], [-73.92127684020996, 40.75940928077698], [-73.93289487457275, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 8-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.75940928077698], [-73.92127684020996, 40.75940928077698], [-73.92127684020996, 40.7682272605896], [-73.93289487457275, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 8-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.7682272605896], [-73.92127684020996, 40.7682272605896], [-73.92127684020996, 40.777045240402224], [-73.93289487457275, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 8-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.777045240402224], [-73.92127684020996, 40.777045240402224], [-73.92127684020996, 40.78586322021484], [-73.93289487457275, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 8-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.78586322021484], [-73.92127684020996, 40.78586322021484], [-73.92127684020996, 40.79468120002747], [-73.93289487457275, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 8-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.79468120002747], [-73.92127684020996, 40.79468120002747], [-73.92127684020996, 40.80349917984009], [-73.93289487457275, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 8-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.93289487457275, 40.80349917984009], [-73.92127684020996, 40.80349917984009], [-73.92127684020996, 40.812317159652714], [-73.93289487457275, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 8-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.812317159652714], [-73.90965880584717, 40.812317159652714], [-73.90965880584717, 40.64477554321289], [-73.92127684020996, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 9, &quot;name&quot;: &quot;Cell 9-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.64477554321289], [-73.90965880584717, 40.64477554321289], [-73.90965880584717, 40.653593523025506], [-73.92127684020996, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 121, &quot;name&quot;: &quot;Cell 9-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.653593523025506], [-73.90965880584717, 40.653593523025506], [-73.90965880584717, 40.66241150283813], [-73.92127684020996, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 210, &quot;name&quot;: &quot;Cell 9-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.66241150283813], [-73.90965880584717, 40.66241150283813], [-73.90965880584717, 40.67122948265075], [-73.92127684020996, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 226, &quot;name&quot;: &quot;Cell 9-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.67122948265075], [-73.90965880584717, 40.67122948265075], [-73.90965880584717, 40.68004746246338], [-73.92127684020996, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 9, &quot;name&quot;: &quot;Cell 9-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.68004746246338], [-73.90965880584717, 40.68004746246338], [-73.90965880584717, 40.688865442276], [-73.92127684020996, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 28, &quot;name&quot;: &quot;Cell 9-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.688865442276], [-73.90965880584717, 40.688865442276], [-73.90965880584717, 40.69768342208862], [-73.92127684020996, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 10, &quot;name&quot;: &quot;Cell 9-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.69768342208862], [-73.90965880584717, 40.69768342208862], [-73.90965880584717, 40.70650140190124], [-73.92127684020996, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 7, &quot;name&quot;: &quot;Cell 9-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.70650140190124], [-73.90965880584717, 40.70650140190124], [-73.90965880584717, 40.71531938171387], [-73.92127684020996, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 9-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.71531938171387], [-73.90965880584717, 40.71531938171387], [-73.90965880584717, 40.72413736152649], [-73.92127684020996, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 9-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.72413736152649], [-73.90965880584717, 40.72413736152649], [-73.90965880584717, 40.73295534133911], [-73.92127684020996, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 9-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.73295534133911], [-73.90965880584717, 40.73295534133911], [-73.90965880584717, 40.74177332115173], [-73.92127684020996, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 9-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.74177332115173], [-73.90965880584717, 40.74177332115173], [-73.90965880584717, 40.75059130096435], [-73.92127684020996, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 9-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.75059130096435], [-73.90965880584717, 40.75059130096435], [-73.90965880584717, 40.75940928077698], [-73.92127684020996, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 9-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.75940928077698], [-73.90965880584717, 40.75940928077698], [-73.90965880584717, 40.7682272605896], [-73.92127684020996, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 9-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.7682272605896], [-73.90965880584717, 40.7682272605896], [-73.90965880584717, 40.777045240402224], [-73.92127684020996, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 2, &quot;name&quot;: &quot;Cell 9-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.777045240402224], [-73.90965880584717, 40.777045240402224], [-73.90965880584717, 40.78586322021484], [-73.92127684020996, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 9-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.78586322021484], [-73.90965880584717, 40.78586322021484], [-73.90965880584717, 40.79468120002747], [-73.92127684020996, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 9-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.79468120002747], [-73.90965880584717, 40.79468120002747], [-73.90965880584717, 40.80349917984009], [-73.92127684020996, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 9-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.92127684020996, 40.80349917984009], [-73.90965880584717, 40.80349917984009], [-73.90965880584717, 40.812317159652714], [-73.92127684020996, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 9-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.812317159652714], [-73.89804077148438, 40.812317159652714], [-73.89804077148438, 40.64477554321289], [-73.90965880584717, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 10-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.64477554321289], [-73.89804077148438, 40.64477554321289], [-73.89804077148438, 40.653593523025506], [-73.90965880584717, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 87, &quot;name&quot;: &quot;Cell 10-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.653593523025506], [-73.89804077148438, 40.653593523025506], [-73.89804077148438, 40.66241150283813], [-73.90965880584717, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 321, &quot;name&quot;: &quot;Cell 10-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.66241150283813], [-73.89804077148438, 40.66241150283813], [-73.89804077148438, 40.67122948265075], [-73.90965880584717, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 378, &quot;name&quot;: &quot;Cell 10-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.67122948265075], [-73.89804077148438, 40.67122948265075], [-73.89804077148438, 40.68004746246338], [-73.90965880584717, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 33, &quot;name&quot;: &quot;Cell 10-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.68004746246338], [-73.89804077148438, 40.68004746246338], [-73.89804077148438, 40.688865442276], [-73.90965880584717, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 2, &quot;name&quot;: &quot;Cell 10-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.688865442276], [-73.89804077148438, 40.688865442276], [-73.89804077148438, 40.69768342208862], [-73.90965880584717, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 11, &quot;name&quot;: &quot;Cell 10-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.69768342208862], [-73.89804077148438, 40.69768342208862], [-73.89804077148438, 40.70650140190124], [-73.90965880584717, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 10-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.70650140190124], [-73.89804077148438, 40.70650140190124], [-73.89804077148438, 40.71531938171387], [-73.90965880584717, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 10-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.71531938171387], [-73.89804077148438, 40.71531938171387], [-73.89804077148438, 40.72413736152649], [-73.90965880584717, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 10-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.72413736152649], [-73.89804077148438, 40.72413736152649], [-73.89804077148438, 40.73295534133911], [-73.90965880584717, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 10-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.73295534133911], [-73.89804077148438, 40.73295534133911], [-73.89804077148438, 40.74177332115173], [-73.90965880584717, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 10-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.74177332115173], [-73.89804077148438, 40.74177332115173], [-73.89804077148438, 40.75059130096435], [-73.90965880584717, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 10-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.75059130096435], [-73.89804077148438, 40.75059130096435], [-73.89804077148438, 40.75940928077698], [-73.90965880584717, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 10-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.75940928077698], [-73.89804077148438, 40.75940928077698], [-73.89804077148438, 40.7682272605896], [-73.90965880584717, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 3, &quot;name&quot;: &quot;Cell 10-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.7682272605896], [-73.89804077148438, 40.7682272605896], [-73.89804077148438, 40.777045240402224], [-73.90965880584717, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 10-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.777045240402224], [-73.89804077148438, 40.777045240402224], [-73.89804077148438, 40.78586322021484], [-73.90965880584717, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 10-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.78586322021484], [-73.89804077148438, 40.78586322021484], [-73.89804077148438, 40.79468120002747], [-73.90965880584717, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 10-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.79468120002747], [-73.89804077148438, 40.79468120002747], [-73.89804077148438, 40.80349917984009], [-73.90965880584717, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 10-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.90965880584717, 40.80349917984009], [-73.89804077148438, 40.80349917984009], [-73.89804077148438, 40.812317159652714], [-73.90965880584717, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 10-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.812317159652714], [-73.88642273712158, 40.812317159652714], [-73.88642273712158, 40.64477554321289], [-73.89804077148438, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 11-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.64477554321289], [-73.88642273712158, 40.64477554321289], [-73.88642273712158, 40.653593523025506], [-73.89804077148438, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 196, &quot;name&quot;: &quot;Cell 11-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.653593523025506], [-73.88642273712158, 40.653593523025506], [-73.88642273712158, 40.66241150283813], [-73.89804077148438, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 298, &quot;name&quot;: &quot;Cell 11-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.66241150283813], [-73.88642273712158, 40.66241150283813], [-73.88642273712158, 40.67122948265075], [-73.89804077148438, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 392, &quot;name&quot;: &quot;Cell 11-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.67122948265075], [-73.88642273712158, 40.67122948265075], [-73.88642273712158, 40.68004746246338], [-73.89804077148438, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 64, &quot;name&quot;: &quot;Cell 11-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.68004746246338], [-73.88642273712158, 40.68004746246338], [-73.88642273712158, 40.688865442276], [-73.89804077148438, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 11-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.688865442276], [-73.88642273712158, 40.688865442276], [-73.88642273712158, 40.69768342208862], [-73.89804077148438, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 4, &quot;name&quot;: &quot;Cell 11-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.69768342208862], [-73.88642273712158, 40.69768342208862], [-73.88642273712158, 40.70650140190124], [-73.89804077148438, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 11-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.70650140190124], [-73.88642273712158, 40.70650140190124], [-73.88642273712158, 40.71531938171387], [-73.89804077148438, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 11-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.71531938171387], [-73.88642273712158, 40.71531938171387], [-73.88642273712158, 40.72413736152649], [-73.89804077148438, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 11-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.72413736152649], [-73.88642273712158, 40.72413736152649], [-73.88642273712158, 40.73295534133911], [-73.89804077148438, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 3, &quot;name&quot;: &quot;Cell 11-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.73295534133911], [-73.88642273712158, 40.73295534133911], [-73.88642273712158, 40.74177332115173], [-73.89804077148438, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 3, &quot;name&quot;: &quot;Cell 11-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.74177332115173], [-73.88642273712158, 40.74177332115173], [-73.88642273712158, 40.75059130096435], [-73.89804077148438, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 2, &quot;name&quot;: &quot;Cell 11-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.75059130096435], [-73.88642273712158, 40.75059130096435], [-73.88642273712158, 40.75940928077698], [-73.89804077148438, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 4, &quot;name&quot;: &quot;Cell 11-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.75940928077698], [-73.88642273712158, 40.75940928077698], [-73.88642273712158, 40.7682272605896], [-73.89804077148438, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 2, &quot;name&quot;: &quot;Cell 11-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.7682272605896], [-73.88642273712158, 40.7682272605896], [-73.88642273712158, 40.777045240402224], [-73.89804077148438, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 2, &quot;name&quot;: &quot;Cell 11-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.777045240402224], [-73.88642273712158, 40.777045240402224], [-73.88642273712158, 40.78586322021484], [-73.89804077148438, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 11-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.78586322021484], [-73.88642273712158, 40.78586322021484], [-73.88642273712158, 40.79468120002747], [-73.89804077148438, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 11-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.79468120002747], [-73.88642273712158, 40.79468120002747], [-73.88642273712158, 40.80349917984009], [-73.89804077148438, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 11-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.89804077148438, 40.80349917984009], [-73.88642273712158, 40.80349917984009], [-73.88642273712158, 40.812317159652714], [-73.89804077148438, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 11-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.812317159652714], [-73.8748047027588, 40.812317159652714], [-73.8748047027588, 40.64477554321289], [-73.88642273712158, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 12-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.64477554321289], [-73.8748047027588, 40.64477554321289], [-73.8748047027588, 40.653593523025506], [-73.88642273712158, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 110, &quot;name&quot;: &quot;Cell 12-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.653593523025506], [-73.8748047027588, 40.653593523025506], [-73.8748047027588, 40.66241150283813], [-73.88642273712158, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 456, &quot;name&quot;: &quot;Cell 12-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.66241150283813], [-73.8748047027588, 40.66241150283813], [-73.8748047027588, 40.67122948265075], [-73.88642273712158, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 504, &quot;name&quot;: &quot;Cell 12-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.67122948265075], [-73.8748047027588, 40.67122948265075], [-73.8748047027588, 40.68004746246338], [-73.88642273712158, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 234, &quot;name&quot;: &quot;Cell 12-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.68004746246338], [-73.8748047027588, 40.68004746246338], [-73.8748047027588, 40.688865442276], [-73.88642273712158, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 12-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.688865442276], [-73.8748047027588, 40.688865442276], [-73.8748047027588, 40.69768342208862], [-73.88642273712158, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 4, &quot;name&quot;: &quot;Cell 12-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.69768342208862], [-73.8748047027588, 40.69768342208862], [-73.8748047027588, 40.70650140190124], [-73.88642273712158, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 5, &quot;name&quot;: &quot;Cell 12-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.70650140190124], [-73.8748047027588, 40.70650140190124], [-73.8748047027588, 40.71531938171387], [-73.88642273712158, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 7, &quot;name&quot;: &quot;Cell 12-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.71531938171387], [-73.8748047027588, 40.71531938171387], [-73.8748047027588, 40.72413736152649], [-73.88642273712158, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 17, &quot;name&quot;: &quot;Cell 12-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.72413736152649], [-73.8748047027588, 40.72413736152649], [-73.8748047027588, 40.73295534133911], [-73.88642273712158, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 6, &quot;name&quot;: &quot;Cell 12-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.73295534133911], [-73.8748047027588, 40.73295534133911], [-73.8748047027588, 40.74177332115173], [-73.88642273712158, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 8, &quot;name&quot;: &quot;Cell 12-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.74177332115173], [-73.8748047027588, 40.74177332115173], [-73.8748047027588, 40.75059130096435], [-73.88642273712158, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 13, &quot;name&quot;: &quot;Cell 12-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.75059130096435], [-73.8748047027588, 40.75059130096435], [-73.8748047027588, 40.75940928077698], [-73.88642273712158, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 4, &quot;name&quot;: &quot;Cell 12-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.75940928077698], [-73.8748047027588, 40.75940928077698], [-73.8748047027588, 40.7682272605896], [-73.88642273712158, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 12-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.7682272605896], [-73.8748047027588, 40.7682272605896], [-73.8748047027588, 40.777045240402224], [-73.88642273712158, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 12-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.777045240402224], [-73.8748047027588, 40.777045240402224], [-73.8748047027588, 40.78586322021484], [-73.88642273712158, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 12-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.78586322021484], [-73.8748047027588, 40.78586322021484], [-73.8748047027588, 40.79468120002747], [-73.88642273712158, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 12-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.79468120002747], [-73.8748047027588, 40.79468120002747], [-73.8748047027588, 40.80349917984009], [-73.88642273712158, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 12-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.88642273712158, 40.80349917984009], [-73.8748047027588, 40.80349917984009], [-73.8748047027588, 40.812317159652714], [-73.88642273712158, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 12-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.812317159652714], [-73.863186668396, 40.812317159652714], [-73.863186668396, 40.64477554321289], [-73.8748047027588, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 13-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.64477554321289], [-73.863186668396, 40.64477554321289], [-73.863186668396, 40.653593523025506], [-73.8748047027588, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 16, &quot;name&quot;: &quot;Cell 13-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.653593523025506], [-73.863186668396, 40.653593523025506], [-73.863186668396, 40.66241150283813], [-73.8748047027588, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 263, &quot;name&quot;: &quot;Cell 13-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.66241150283813], [-73.863186668396, 40.66241150283813], [-73.863186668396, 40.67122948265075], [-73.8748047027588, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 461, &quot;name&quot;: &quot;Cell 13-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.67122948265075], [-73.863186668396, 40.67122948265075], [-73.863186668396, 40.68004746246338], [-73.8748047027588, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 515, &quot;name&quot;: &quot;Cell 13-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.68004746246338], [-73.863186668396, 40.68004746246338], [-73.863186668396, 40.688865442276], [-73.8748047027588, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 128, &quot;name&quot;: &quot;Cell 13-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.688865442276], [-73.863186668396, 40.688865442276], [-73.863186668396, 40.69768342208862], [-73.8748047027588, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 5, &quot;name&quot;: &quot;Cell 13-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.69768342208862], [-73.863186668396, 40.69768342208862], [-73.863186668396, 40.70650140190124], [-73.8748047027588, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 9, &quot;name&quot;: &quot;Cell 13-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.70650140190124], [-73.863186668396, 40.70650140190124], [-73.863186668396, 40.71531938171387], [-73.8748047027588, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 14, &quot;name&quot;: &quot;Cell 13-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.71531938171387], [-73.863186668396, 40.71531938171387], [-73.863186668396, 40.72413736152649], [-73.8748047027588, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 9, &quot;name&quot;: &quot;Cell 13-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.72413736152649], [-73.863186668396, 40.72413736152649], [-73.863186668396, 40.73295534133911], [-73.8748047027588, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 2, &quot;name&quot;: &quot;Cell 13-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.73295534133911], [-73.863186668396, 40.73295534133911], [-73.863186668396, 40.74177332115173], [-73.8748047027588, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 13-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.74177332115173], [-73.863186668396, 40.74177332115173], [-73.863186668396, 40.75059130096435], [-73.8748047027588, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 3, &quot;name&quot;: &quot;Cell 13-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.75059130096435], [-73.863186668396, 40.75059130096435], [-73.863186668396, 40.75940928077698], [-73.8748047027588, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 13-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.75940928077698], [-73.863186668396, 40.75940928077698], [-73.863186668396, 40.7682272605896], [-73.8748047027588, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 13-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.7682272605896], [-73.863186668396, 40.7682272605896], [-73.863186668396, 40.777045240402224], [-73.8748047027588, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 13-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.777045240402224], [-73.863186668396, 40.777045240402224], [-73.863186668396, 40.78586322021484], [-73.8748047027588, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 13-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.78586322021484], [-73.863186668396, 40.78586322021484], [-73.863186668396, 40.79468120002747], [-73.8748047027588, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 13-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.79468120002747], [-73.863186668396, 40.79468120002747], [-73.863186668396, 40.80349917984009], [-73.8748047027588, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 13-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8748047027588, 40.80349917984009], [-73.863186668396, 40.80349917984009], [-73.863186668396, 40.812317159652714], [-73.8748047027588, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 13-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.812317159652714], [-73.8515686340332, 40.812317159652714], [-73.8515686340332, 40.64477554321289], [-73.863186668396, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 14-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.64477554321289], [-73.8515686340332, 40.64477554321289], [-73.8515686340332, 40.653593523025506], [-73.863186668396, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 8, &quot;name&quot;: &quot;Cell 14-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.653593523025506], [-73.8515686340332, 40.653593523025506], [-73.8515686340332, 40.66241150283813], [-73.863186668396, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 172, &quot;name&quot;: &quot;Cell 14-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.66241150283813], [-73.8515686340332, 40.66241150283813], [-73.8515686340332, 40.67122948265075], [-73.863186668396, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 413, &quot;name&quot;: &quot;Cell 14-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.67122948265075], [-73.8515686340332, 40.67122948265075], [-73.8515686340332, 40.68004746246338], [-73.863186668396, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 370, &quot;name&quot;: &quot;Cell 14-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.68004746246338], [-73.8515686340332, 40.68004746246338], [-73.8515686340332, 40.688865442276], [-73.863186668396, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 257, &quot;name&quot;: &quot;Cell 14-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.688865442276], [-73.8515686340332, 40.688865442276], [-73.8515686340332, 40.69768342208862], [-73.863186668396, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 43, &quot;name&quot;: &quot;Cell 14-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.69768342208862], [-73.8515686340332, 40.69768342208862], [-73.8515686340332, 40.70650140190124], [-73.863186668396, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 7, &quot;name&quot;: &quot;Cell 14-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.70650140190124], [-73.8515686340332, 40.70650140190124], [-73.8515686340332, 40.71531938171387], [-73.863186668396, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 27, &quot;name&quot;: &quot;Cell 14-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.71531938171387], [-73.8515686340332, 40.71531938171387], [-73.8515686340332, 40.72413736152649], [-73.863186668396, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 16, &quot;name&quot;: &quot;Cell 14-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.72413736152649], [-73.8515686340332, 40.72413736152649], [-73.8515686340332, 40.73295534133911], [-73.863186668396, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 2, &quot;name&quot;: &quot;Cell 14-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.73295534133911], [-73.8515686340332, 40.73295534133911], [-73.8515686340332, 40.74177332115173], [-73.863186668396, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 14-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.74177332115173], [-73.8515686340332, 40.74177332115173], [-73.8515686340332, 40.75059130096435], [-73.863186668396, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 2, &quot;name&quot;: &quot;Cell 14-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.75059130096435], [-73.8515686340332, 40.75059130096435], [-73.8515686340332, 40.75940928077698], [-73.863186668396, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 14-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.75940928077698], [-73.8515686340332, 40.75940928077698], [-73.8515686340332, 40.7682272605896], [-73.863186668396, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 14-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.7682272605896], [-73.8515686340332, 40.7682272605896], [-73.8515686340332, 40.777045240402224], [-73.863186668396, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 14-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.777045240402224], [-73.8515686340332, 40.777045240402224], [-73.8515686340332, 40.78586322021484], [-73.863186668396, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 14-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.78586322021484], [-73.8515686340332, 40.78586322021484], [-73.8515686340332, 40.79468120002747], [-73.863186668396, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 14-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.79468120002747], [-73.8515686340332, 40.79468120002747], [-73.8515686340332, 40.80349917984009], [-73.863186668396, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 14-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.863186668396, 40.80349917984009], [-73.8515686340332, 40.80349917984009], [-73.8515686340332, 40.812317159652714], [-73.863186668396, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 14-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.812317159652714], [-73.8399505996704, 40.812317159652714], [-73.8399505996704, 40.64477554321289], [-73.8515686340332, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 15-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.64477554321289], [-73.8399505996704, 40.64477554321289], [-73.8399505996704, 40.653593523025506], [-73.8515686340332, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 15-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.653593523025506], [-73.8399505996704, 40.653593523025506], [-73.8399505996704, 40.66241150283813], [-73.8515686340332, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 24, &quot;name&quot;: &quot;Cell 15-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.66241150283813], [-73.8399505996704, 40.66241150283813], [-73.8399505996704, 40.67122948265075], [-73.8515686340332, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 255, &quot;name&quot;: &quot;Cell 15-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.67122948265075], [-73.8399505996704, 40.67122948265075], [-73.8399505996704, 40.68004746246338], [-73.8515686340332, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 44, &quot;name&quot;: &quot;Cell 15-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.68004746246338], [-73.8399505996704, 40.68004746246338], [-73.8399505996704, 40.688865442276], [-73.8515686340332, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 281, &quot;name&quot;: &quot;Cell 15-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.688865442276], [-73.8399505996704, 40.688865442276], [-73.8399505996704, 40.69768342208862], [-73.8515686340332, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 251, &quot;name&quot;: &quot;Cell 15-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.69768342208862], [-73.8399505996704, 40.69768342208862], [-73.8399505996704, 40.70650140190124], [-73.8515686340332, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 15-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.70650140190124], [-73.8399505996704, 40.70650140190124], [-73.8399505996704, 40.71531938171387], [-73.8515686340332, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 14, &quot;name&quot;: &quot;Cell 15-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.71531938171387], [-73.8399505996704, 40.71531938171387], [-73.8399505996704, 40.72413736152649], [-73.8515686340332, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 19, &quot;name&quot;: &quot;Cell 15-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.72413736152649], [-73.8399505996704, 40.72413736152649], [-73.8399505996704, 40.73295534133911], [-73.8515686340332, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 2, &quot;name&quot;: &quot;Cell 15-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.73295534133911], [-73.8399505996704, 40.73295534133911], [-73.8399505996704, 40.74177332115173], [-73.8515686340332, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 15-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.74177332115173], [-73.8399505996704, 40.74177332115173], [-73.8399505996704, 40.75059130096435], [-73.8515686340332, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 9, &quot;name&quot;: &quot;Cell 15-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.75059130096435], [-73.8399505996704, 40.75059130096435], [-73.8399505996704, 40.75940928077698], [-73.8515686340332, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 148, &quot;name&quot;: &quot;Cell 15-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.75940928077698], [-73.8399505996704, 40.75940928077698], [-73.8399505996704, 40.7682272605896], [-73.8515686340332, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 34, &quot;name&quot;: &quot;Cell 15-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.7682272605896], [-73.8399505996704, 40.7682272605896], [-73.8399505996704, 40.777045240402224], [-73.8515686340332, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 15-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.777045240402224], [-73.8399505996704, 40.777045240402224], [-73.8399505996704, 40.78586322021484], [-73.8515686340332, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 15-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.78586322021484], [-73.8399505996704, 40.78586322021484], [-73.8399505996704, 40.79468120002747], [-73.8515686340332, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 15-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.79468120002747], [-73.8399505996704, 40.79468120002747], [-73.8399505996704, 40.80349917984009], [-73.8515686340332, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 15-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8515686340332, 40.80349917984009], [-73.8399505996704, 40.80349917984009], [-73.8399505996704, 40.812317159652714], [-73.8515686340332, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 15-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.812317159652714], [-73.82833256530762, 40.812317159652714], [-73.82833256530762, 40.64477554321289], [-73.8399505996704, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 16-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.64477554321289], [-73.82833256530762, 40.64477554321289], [-73.82833256530762, 40.653593523025506], [-73.8399505996704, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 16-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.653593523025506], [-73.82833256530762, 40.653593523025506], [-73.82833256530762, 40.66241150283813], [-73.8399505996704, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 16-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.66241150283813], [-73.82833256530762, 40.66241150283813], [-73.82833256530762, 40.67122948265075], [-73.8399505996704, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 149, &quot;name&quot;: &quot;Cell 16-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.67122948265075], [-73.82833256530762, 40.67122948265075], [-73.82833256530762, 40.68004746246338], [-73.8399505996704, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 155, &quot;name&quot;: &quot;Cell 16-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.68004746246338], [-73.82833256530762, 40.68004746246338], [-73.82833256530762, 40.688865442276], [-73.8399505996704, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 85, &quot;name&quot;: &quot;Cell 16-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.688865442276], [-73.82833256530762, 40.688865442276], [-73.82833256530762, 40.69768342208862], [-73.8399505996704, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 288, &quot;name&quot;: &quot;Cell 16-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.69768342208862], [-73.82833256530762, 40.69768342208862], [-73.82833256530762, 40.70650140190124], [-73.8399505996704, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 2, &quot;name&quot;: &quot;Cell 16-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.70650140190124], [-73.82833256530762, 40.70650140190124], [-73.82833256530762, 40.71531938171387], [-73.8399505996704, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 16-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.71531938171387], [-73.82833256530762, 40.71531938171387], [-73.82833256530762, 40.72413736152649], [-73.8399505996704, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 16-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.72413736152649], [-73.82833256530762, 40.72413736152649], [-73.82833256530762, 40.73295534133911], [-73.8399505996704, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 2, &quot;name&quot;: &quot;Cell 16-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.73295534133911], [-73.82833256530762, 40.73295534133911], [-73.82833256530762, 40.74177332115173], [-73.8399505996704, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 16-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.74177332115173], [-73.82833256530762, 40.74177332115173], [-73.82833256530762, 40.75059130096435], [-73.8399505996704, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 16-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.75059130096435], [-73.82833256530762, 40.75059130096435], [-73.82833256530762, 40.75940928077698], [-73.8399505996704, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 16-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.75940928077698], [-73.82833256530762, 40.75940928077698], [-73.82833256530762, 40.7682272605896], [-73.8399505996704, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 16-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.7682272605896], [-73.82833256530762, 40.7682272605896], [-73.82833256530762, 40.777045240402224], [-73.8399505996704, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 16-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.777045240402224], [-73.82833256530762, 40.777045240402224], [-73.82833256530762, 40.78586322021484], [-73.8399505996704, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 16-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.78586322021484], [-73.82833256530762, 40.78586322021484], [-73.82833256530762, 40.79468120002747], [-73.8399505996704, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 16-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.79468120002747], [-73.82833256530762, 40.79468120002747], [-73.82833256530762, 40.80349917984009], [-73.8399505996704, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 16-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.8399505996704, 40.80349917984009], [-73.82833256530762, 40.80349917984009], [-73.82833256530762, 40.812317159652714], [-73.8399505996704, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 16-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.812317159652714], [-73.81671453094482, 40.812317159652714], [-73.81671453094482, 40.64477554321289], [-73.82833256530762, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 17-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.64477554321289], [-73.81671453094482, 40.64477554321289], [-73.81671453094482, 40.653593523025506], [-73.82833256530762, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 17-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.653593523025506], [-73.81671453094482, 40.653593523025506], [-73.81671453094482, 40.66241150283813], [-73.82833256530762, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 17-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.66241150283813], [-73.81671453094482, 40.66241150283813], [-73.81671453094482, 40.67122948265075], [-73.82833256530762, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 2, &quot;name&quot;: &quot;Cell 17-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.67122948265075], [-73.81671453094482, 40.67122948265075], [-73.81671453094482, 40.68004746246338], [-73.82833256530762, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 207, &quot;name&quot;: &quot;Cell 17-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.68004746246338], [-73.81671453094482, 40.68004746246338], [-73.81671453094482, 40.688865442276], [-73.82833256530762, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 41, &quot;name&quot;: &quot;Cell 17-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.688865442276], [-73.81671453094482, 40.688865442276], [-73.81671453094482, 40.69768342208862], [-73.82833256530762, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 55, &quot;name&quot;: &quot;Cell 17-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.69768342208862], [-73.81671453094482, 40.69768342208862], [-73.81671453094482, 40.70650140190124], [-73.82833256530762, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 19, &quot;name&quot;: &quot;Cell 17-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.70650140190124], [-73.81671453094482, 40.70650140190124], [-73.81671453094482, 40.71531938171387], [-73.82833256530762, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 17-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.71531938171387], [-73.81671453094482, 40.71531938171387], [-73.81671453094482, 40.72413736152649], [-73.82833256530762, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 17-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.72413736152649], [-73.81671453094482, 40.72413736152649], [-73.81671453094482, 40.73295534133911], [-73.82833256530762, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 17-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.73295534133911], [-73.81671453094482, 40.73295534133911], [-73.81671453094482, 40.74177332115173], [-73.82833256530762, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 17-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.74177332115173], [-73.81671453094482, 40.74177332115173], [-73.81671453094482, 40.75059130096435], [-73.82833256530762, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 17-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.75059130096435], [-73.81671453094482, 40.75059130096435], [-73.81671453094482, 40.75940928077698], [-73.82833256530762, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 17-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.75940928077698], [-73.81671453094482, 40.75940928077698], [-73.81671453094482, 40.7682272605896], [-73.82833256530762, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 17-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.7682272605896], [-73.81671453094482, 40.7682272605896], [-73.81671453094482, 40.777045240402224], [-73.82833256530762, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 17-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.777045240402224], [-73.81671453094482, 40.777045240402224], [-73.81671453094482, 40.78586322021484], [-73.82833256530762, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 17-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.78586322021484], [-73.81671453094482, 40.78586322021484], [-73.81671453094482, 40.79468120002747], [-73.82833256530762, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 17-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.79468120002747], [-73.81671453094482, 40.79468120002747], [-73.81671453094482, 40.80349917984009], [-73.82833256530762, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 17-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.82833256530762, 40.80349917984009], [-73.81671453094482, 40.80349917984009], [-73.81671453094482, 40.812317159652714], [-73.82833256530762, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 17-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.812317159652714], [-73.80509649658202, 40.812317159652714], [-73.80509649658202, 40.64477554321289], [-73.81671453094482, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 18-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.64477554321289], [-73.80509649658202, 40.64477554321289], [-73.80509649658202, 40.653593523025506], [-73.81671453094482, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 18-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.653593523025506], [-73.80509649658202, 40.653593523025506], [-73.80509649658202, 40.66241150283813], [-73.81671453094482, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 18-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.66241150283813], [-73.80509649658202, 40.66241150283813], [-73.80509649658202, 40.67122948265075], [-73.81671453094482, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 18-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.67122948265075], [-73.80509649658202, 40.67122948265075], [-73.80509649658202, 40.68004746246338], [-73.81671453094482, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 81, &quot;name&quot;: &quot;Cell 18-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.68004746246338], [-73.80509649658202, 40.68004746246338], [-73.80509649658202, 40.688865442276], [-73.81671453094482, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 50, &quot;name&quot;: &quot;Cell 18-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.688865442276], [-73.80509649658202, 40.688865442276], [-73.80509649658202, 40.69768342208862], [-73.81671453094482, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 22, &quot;name&quot;: &quot;Cell 18-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.69768342208862], [-73.80509649658202, 40.69768342208862], [-73.80509649658202, 40.70650140190124], [-73.81671453094482, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 30, &quot;name&quot;: &quot;Cell 18-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.70650140190124], [-73.80509649658202, 40.70650140190124], [-73.80509649658202, 40.71531938171387], [-73.81671453094482, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 18-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.71531938171387], [-73.80509649658202, 40.71531938171387], [-73.80509649658202, 40.72413736152649], [-73.81671453094482, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 18-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.72413736152649], [-73.80509649658202, 40.72413736152649], [-73.80509649658202, 40.73295534133911], [-73.81671453094482, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 18-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.73295534133911], [-73.80509649658202, 40.73295534133911], [-73.80509649658202, 40.74177332115173], [-73.81671453094482, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 18-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.74177332115173], [-73.80509649658202, 40.74177332115173], [-73.80509649658202, 40.75059130096435], [-73.81671453094482, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 18-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.75059130096435], [-73.80509649658202, 40.75059130096435], [-73.80509649658202, 40.75940928077698], [-73.81671453094482, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 18-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.75940928077698], [-73.80509649658202, 40.75940928077698], [-73.80509649658202, 40.7682272605896], [-73.81671453094482, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 18-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.7682272605896], [-73.80509649658202, 40.7682272605896], [-73.80509649658202, 40.777045240402224], [-73.81671453094482, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 18-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.777045240402224], [-73.80509649658202, 40.777045240402224], [-73.80509649658202, 40.78586322021484], [-73.81671453094482, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 18-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.78586322021484], [-73.80509649658202, 40.78586322021484], [-73.80509649658202, 40.79468120002747], [-73.81671453094482, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 18-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.79468120002747], [-73.80509649658202, 40.79468120002747], [-73.80509649658202, 40.80349917984009], [-73.81671453094482, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 18-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.81671453094482, 40.80349917984009], [-73.80509649658202, 40.80349917984009], [-73.80509649658202, 40.812317159652714], [-73.81671453094482, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 18-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.812317159652714], [-73.79347846221924, 40.812317159652714], [-73.79347846221924, 40.64477554321289], [-73.80509649658202, 40.64477554321289]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 19-0&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.64477554321289], [-73.79347846221924, 40.64477554321289], [-73.79347846221924, 40.653593523025506], [-73.80509649658202, 40.653593523025506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 19-1&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.653593523025506], [-73.79347846221924, 40.653593523025506], [-73.79347846221924, 40.66241150283813], [-73.80509649658202, 40.66241150283813]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 19-2&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.66241150283813], [-73.79347846221924, 40.66241150283813], [-73.79347846221924, 40.67122948265075], [-73.80509649658202, 40.67122948265075]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 19-3&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.67122948265075], [-73.79347846221924, 40.67122948265075], [-73.79347846221924, 40.68004746246338], [-73.80509649658202, 40.68004746246338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 19-4&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.68004746246338], [-73.79347846221924, 40.68004746246338], [-73.79347846221924, 40.688865442276], [-73.80509649658202, 40.688865442276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 31, &quot;name&quot;: &quot;Cell 19-5&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.688865442276], [-73.79347846221924, 40.688865442276], [-73.79347846221924, 40.69768342208862], [-73.80509649658202, 40.69768342208862]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 26, &quot;name&quot;: &quot;Cell 19-6&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.69768342208862], [-73.79347846221924, 40.69768342208862], [-73.79347846221924, 40.70650140190124], [-73.80509649658202, 40.70650140190124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 12, &quot;name&quot;: &quot;Cell 19-7&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.70650140190124], [-73.79347846221924, 40.70650140190124], [-73.79347846221924, 40.71531938171387], [-73.80509649658202, 40.71531938171387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 2, &quot;name&quot;: &quot;Cell 19-8&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.71531938171387], [-73.79347846221924, 40.71531938171387], [-73.79347846221924, 40.72413736152649], [-73.80509649658202, 40.72413736152649]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 1, &quot;name&quot;: &quot;Cell 19-9&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.72413736152649], [-73.79347846221924, 40.72413736152649], [-73.79347846221924, 40.73295534133911], [-73.80509649658202, 40.73295534133911]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 19-10&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.73295534133911], [-73.79347846221924, 40.73295534133911], [-73.79347846221924, 40.74177332115173], [-73.80509649658202, 40.74177332115173]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 19-11&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.74177332115173], [-73.79347846221924, 40.74177332115173], [-73.79347846221924, 40.75059130096435], [-73.80509649658202, 40.75059130096435]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 19-12&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.75059130096435], [-73.79347846221924, 40.75059130096435], [-73.79347846221924, 40.75940928077698], [-73.80509649658202, 40.75940928077698]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 19-13&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.75940928077698], [-73.79347846221924, 40.75940928077698], [-73.79347846221924, 40.7682272605896], [-73.80509649658202, 40.7682272605896]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 19-14&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.7682272605896], [-73.79347846221924, 40.7682272605896], [-73.79347846221924, 40.777045240402224], [-73.80509649658202, 40.777045240402224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 19-15&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.777045240402224], [-73.79347846221924, 40.777045240402224], [-73.79347846221924, 40.78586322021484], [-73.80509649658202, 40.78586322021484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 19-16&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.78586322021484], [-73.79347846221924, 40.78586322021484], [-73.79347846221924, 40.79468120002747], [-73.80509649658202, 40.79468120002747]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 19-17&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.79468120002747], [-73.79347846221924, 40.79468120002747], [-73.79347846221924, 40.80349917984009], [-73.80509649658202, 40.80349917984009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 19-18&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-73.80509649658202, 40.80349917984009], [-73.79347846221924, 40.80349917984009], [-73.79347846221924, 40.812317159652714], [-73.80509649658202, 40.812317159652714]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;count&quot;: 0, &quot;name&quot;: &quot;Cell 19-19&quot;}, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" var color_map_80e32527754534692026c86a8b9c7f2b = {};\n",
"\n",
" \n",
" color_map_80e32527754534692026c86a8b9c7f2b.color = d3.scale.threshold()\n",
" .domain([0.0, 1.032064128256513, 2.064128256513026, 3.096192384769539, 4.128256513026052, 5.160320641282565, 6.192384769539078, 7.224448897795591, 8.256513026052104, 9.288577154308618, 10.32064128256513, 11.352705410821644, 12.384769539078157, 13.41683366733467, 14.448897795591183, 15.480961923847696, 16.51302605210421, 17.54509018036072, 18.577154308617235, 19.609218436873746, 20.64128256513026, 21.673346693386772, 22.705410821643287, 23.7374749498998, 24.769539078156313, 25.801603206412825, 26.83366733466934, 27.86573146292585, 28.897795591182366, 29.929859719438877, 30.96192384769539, 31.993987975951903, 33.02605210420842, 34.05811623246493, 35.09018036072144, 36.122244488977955, 37.15430861723447, 38.186372745490985, 39.21843687374749, 40.25050100200401, 41.28256513026052, 42.31462925851704, 43.346693386773545, 44.37875751503006, 45.410821643286575, 46.44288577154309, 47.4749498997996, 48.50701402805611, 49.53907815631263, 50.57114228456914, 51.60320641282565, 52.635270541082164, 53.66733466933868, 54.699398797595194, 55.7314629258517, 56.763527054108216, 57.79559118236473, 58.82765531062124, 59.859719438877754, 60.89178356713427, 61.92384769539078, 62.95591182364729, 63.987975951903806, 65.02004008016031, 66.05210420841684, 67.08416833667334, 68.11623246492987, 69.14829659318637, 70.18036072144288, 71.2124248496994, 72.24448897795591, 73.27655310621242, 74.30861723446894, 75.34068136272545, 76.37274549098197, 77.40480961923848, 78.43687374749499, 79.46893787575151, 80.50100200400801, 81.53306613226452, 82.56513026052104, 83.59719438877755, 84.62925851703407, 85.66132264529058, 86.69338677354709, 87.72545090180361, 88.75751503006012, 89.78957915831663, 90.82164328657315, 91.85370741482966, 92.88577154308618, 93.91783567134269, 94.9498997995992, 95.98196392785572, 97.01402805611222, 98.04609218436873, 99.07815631262525, 100.11022044088176, 101.14228456913828, 102.17434869739479, 103.2064128256513, 104.23847695390782, 105.27054108216433, 106.30260521042084, 107.33466933867736, 108.36673346693387, 109.39879759519039, 110.4308617234469, 111.4629258517034, 112.49498997995993, 113.52705410821643, 114.55911823647294, 115.59118236472946, 116.62324649298597, 117.65531062124248, 118.687374749499, 119.71943887775551, 120.75150300601203, 121.78356713426854, 122.81563126252505, 123.84769539078157, 124.87975951903807, 125.91182364729458, 126.9438877755511, 127.97595190380761, 129.00801603206412, 130.04008016032063, 131.07214428857716, 132.10420841683367, 133.13627254509018, 134.1683366733467, 135.2004008016032, 136.23246492985973, 137.26452905811624, 138.29659318637275, 139.32865731462925, 140.36072144288576, 141.3927855711423, 142.4248496993988, 143.4569138276553, 144.48897795591182, 145.52104208416833, 146.55310621242484, 147.58517034068137, 148.61723446893788, 149.6492985971944, 150.6813627254509, 151.7134268537074, 152.74549098196394, 153.77755511022045, 154.80961923847696, 155.84168336673346, 156.87374749498997, 157.9058116232465, 158.93787575150301, 159.96993987975952, 161.00200400801603, 162.03406813627254, 163.06613226452905, 164.09819639278558, 165.1302605210421, 166.1623246492986, 167.1943887775551, 168.2264529058116, 169.25851703406815, 170.29058116232466, 171.32264529058116, 172.35470941883767, 173.38677354709418, 174.4188376753507, 175.45090180360722, 176.48296593186373, 177.51503006012024, 178.54709418837675, 179.57915831663325, 180.6112224448898, 181.6432865731463, 182.6753507014028, 183.7074148296593, 184.73947895791582, 185.77154308617236, 186.80360721442887, 187.83567134268537, 188.86773547094188, 189.8997995991984, 190.9318637274549, 191.96392785571143, 192.99599198396794, 194.02805611222445, 195.06012024048096, 196.09218436873746, 197.124248496994, 198.1563126252505, 199.18837675350701, 200.22044088176352, 201.25250501002003, 202.28456913827657, 203.31663326653307, 204.34869739478958, 205.3807615230461, 206.4128256513026, 207.4448897795591, 208.47695390781564, 209.50901803607215, 210.54108216432866, 211.57314629258516, 212.60521042084167, 213.6372745490982, 214.66933867735472, 215.70140280561122, 216.73346693386773, 217.76553106212424, 218.79759519038078, 219.82965931863728, 220.8617234468938, 221.8937875751503, 222.9258517034068, 223.9579158316633, 224.98997995991985, 226.02204408817636, 227.05410821643287, 228.08617234468937, 229.11823647294588, 230.15030060120242, 231.18236472945893, 232.21442885771543, 233.24649298597194, 234.27855711422845, 235.31062124248496, 236.3426853707415, 237.374749498998, 238.4068136272545, 239.43887775551102, 240.47094188376752, 241.50300601202406, 242.53507014028057, 243.56713426853707, 244.59919839679358, 245.6312625250501, 246.66332665330663, 247.69539078156313, 248.72745490981964, 249.75951903807615, 250.79158316633266, 251.82364729458916, 252.8557114228457, 253.8877755511022, 254.91983967935872, 255.95190380761522, 256.98396793587176, 258.01603206412824, 259.0480961923848, 260.08016032064126, 261.1122244488978, 262.1442885771543, 263.1763527054108, 264.20841683366734, 265.2404809619238, 266.27254509018036, 267.3046092184369, 268.3366733466934, 269.3687374749499, 270.4008016032064, 271.4328657314629, 272.46492985971946, 273.49699398797594, 274.5290581162325, 275.56112224448896, 276.5931863727455, 277.62525050100203, 278.6573146292585, 279.68937875751504, 280.7214428857715, 281.75350701402806, 282.7855711422846, 283.8176352705411, 284.8496993987976, 285.8817635270541, 286.9138276553106, 287.9458917835671, 288.97795591182364, 290.0100200400802, 291.04208416833666, 292.0741482965932, 293.1062124248497, 294.1382765531062, 295.17034068136275, 296.2024048096192, 297.23446893787576, 298.26653306613224, 299.2985971943888, 300.3306613226453, 301.3627254509018, 302.3947895791583, 303.4268537074148, 304.45891783567134, 305.4909819639279, 306.52304609218436, 307.5551102204409, 308.5871743486974, 309.6192384769539, 310.65130260521045, 311.6833667334669, 312.71543086172346, 313.74749498997994, 314.7795591182365, 315.811623246493, 316.8436873747495, 317.87575150300603, 318.9078156312625, 319.93987975951904, 320.9719438877755, 322.00400801603206, 323.0360721442886, 324.0681362725451, 325.1002004008016, 326.1322645290581, 327.1643286573146, 328.19639278557116, 329.22845691382764, 330.2605210420842, 331.29258517034066, 332.3246492985972, 333.35671342685373, 334.3887775551102, 335.42084168336675, 336.4529058116232, 337.48496993987976, 338.5170340681363, 339.5490981963928, 340.5811623246493, 341.6132264529058, 342.6452905811623, 343.67735470941886, 344.70941883767534, 345.7414829659319, 346.77354709418836, 347.8056112224449, 348.8376753507014, 349.8697394789579, 350.90180360721445, 351.9338677354709, 352.96593186372746, 353.99799599198394, 355.0300601202405, 356.062124248497, 357.0941883767535, 358.12625250501003, 359.1583166332665, 360.19038076152304, 361.2224448897796, 362.25450901803606, 363.2865731462926, 364.3186372745491, 365.3507014028056, 366.38276553106215, 367.4148296593186, 368.44689378757516, 369.47895791583164, 370.5110220440882, 371.5430861723447, 372.5751503006012, 373.60721442885773, 374.6392785571142, 375.67134268537075, 376.7034068136273, 377.73547094188376, 378.7675350701403, 379.7995991983968, 380.8316633266533, 381.8637274549098, 382.89579158316633, 383.92785571142286, 384.95991983967934, 385.9919839679359, 387.02404809619236, 388.0561122244489, 389.08817635270543, 390.1202404809619, 391.15230460921845, 392.1843687374749, 393.21643286573146, 394.248496993988, 395.2805611222445, 396.312625250501, 397.3446893787575, 398.37675350701403, 399.40881763527057, 400.44088176352705, 401.4729458917836, 402.50501002004006, 403.5370741482966, 404.56913827655313, 405.6012024048096, 406.63326653306615, 407.6653306613226, 408.69739478957916, 409.72945891783564, 410.7615230460922, 411.7935871743487, 412.8256513026052, 413.85771543086173, 414.8897795591182, 415.92184368737475, 416.9539078156313, 417.98597194388776, 419.0180360721443, 420.0501002004008, 421.0821643286573, 422.11422845691385, 423.14629258517033, 424.17835671342687, 425.21042084168334, 426.2424849699399, 427.2745490981964, 428.3066132264529, 429.33867735470943, 430.3707414829659, 431.40280561122245, 432.434869739479, 433.46693386773546, 434.498997995992, 435.5310621242485, 436.563126252505, 437.59519038076155, 438.62725450901803, 439.65931863727457, 440.69138276553105, 441.7234468937876, 442.75551102204406, 443.7875751503006, 444.81963927855713, 445.8517034068136, 446.88376753507015, 447.9158316633266, 448.94789579158316, 449.9799599198397, 451.0120240480962, 452.0440881763527, 453.0761523046092, 454.10821643286573, 455.14028056112227, 456.17234468937875, 457.2044088176353, 458.23647294589176, 459.2685370741483, 460.30060120240483, 461.3326653306613, 462.36472945891785, 463.39679358717433, 464.42885771543087, 465.4609218436874, 466.4929859719439, 467.5250501002004, 468.5571142284569, 469.58917835671343, 470.6212424849699, 471.65330661322645, 472.685370741483, 473.71743486973946, 474.749498997996, 475.7815631262525, 476.813627254509, 477.84569138276555, 478.87775551102203, 479.90981963927857, 480.94188376753505, 481.9739478957916, 483.0060120240481, 484.0380761523046, 485.07014028056113, 486.1022044088176, 487.13426853707415, 488.1663326653307, 489.19839679358716, 490.2304609218437, 491.2625250501002, 492.2945891783567, 493.32665330661325, 494.35871743486973, 495.39078156312627, 496.42284569138275, 497.4549098196393, 498.4869739478958, 499.5190380761523, 500.55110220440883, 501.5831663326653, 502.61523046092185, 503.64729458917833, 504.67935871743487, 505.7114228456914, 506.7434869739479, 507.7755511022044, 508.8076152304609, 509.83967935871743, 510.87174348697397, 511.90380761523045, 512.9358717434869, 513.9679358717435, 515.0])\n",
" .range([&#x27;#ffff00ff&#x27;, &#x27;#ffff00ff&#x27;, &#x27;#fffe00ff&#x27;, &#x27;#fffe00ff&#x27;, &#x27;#fffd00ff&#x27;, &#x27;#fffd00ff&#x27;, &#x27;#fffc00ff&#x27;, &#x27;#fffc00ff&#x27;, &#x27;#fffb00ff&#x27;, &#x27;#fffb00ff&#x27;, &#x27;#fffa00ff&#x27;, &#x27;#fffa00ff&#x27;, &#x27;#fff900ff&#x27;, &#x27;#fff900ff&#x27;, &#x27;#fff800ff&#x27;, &#x27;#fff800ff&#x27;, &#x27;#fff700ff&#x27;, &#x27;#fff700ff&#x27;, &#x27;#fff600ff&#x27;, &#x27;#fff600ff&#x27;, &#x27;#fff500ff&#x27;, &#x27;#fff500ff&#x27;, &#x27;#fff400ff&#x27;, &#x27;#fff400ff&#x27;, &#x27;#fff300ff&#x27;, &#x27;#fff300ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff200ff&#x27;, &#x27;#fff100ff&#x27;, &#x27;#fff100ff&#x27;, &#x27;#fff000ff&#x27;, &#x27;#fff000ff&#x27;, &#x27;#ffef00ff&#x27;, &#x27;#ffef00ff&#x27;, &#x27;#ffee00ff&#x27;, &#x27;#ffee00ff&#x27;, &#x27;#ffed00ff&#x27;, &#x27;#ffed00ff&#x27;, &#x27;#ffec00ff&#x27;, &#x27;#ffeb00ff&#x27;, &#x27;#ffeb00ff&#x27;, &#x27;#ffea00ff&#x27;, &#x27;#ffea00ff&#x27;, &#x27;#ffe900ff&#x27;, &#x27;#ffe900ff&#x27;, &#x27;#ffe800ff&#x27;, &#x27;#ffe800ff&#x27;, &#x27;#ffe700ff&#x27;, &#x27;#ffe700ff&#x27;, &#x27;#ffe600ff&#x27;, &#x27;#ffe600ff&#x27;, &#x27;#ffe500ff&#x27;, &#x27;#ffe500ff&#x27;, &#x27;#ffe400ff&#x27;, &#x27;#ffe400ff&#x27;, &#x27;#ffe300ff&#x27;, &#x27;#ffe300ff&#x27;, &#x27;#ffe200ff&#x27;, &#x27;#ffe200ff&#x27;, &#x27;#ffe100ff&#x27;, &#x27;#ffe100ff&#x27;, &#x27;#ffe000ff&#x27;, &#x27;#ffe000ff&#x27;, &#x27;#ffdf00ff&#x27;, &#x27;#ffdf00ff&#x27;, &#x27;#ffde00ff&#x27;, &#x27;#ffde00ff&#x27;, &#x27;#ffdd00ff&#x27;, &#x27;#ffdd00ff&#x27;, &#x27;#ffdc00ff&#x27;, &#x27;#ffdc00ff&#x27;, &#x27;#ffdb00ff&#x27;, &#x27;#ffdb00ff&#x27;, &#x27;#ffda00ff&#x27;, &#x27;#ffda00ff&#x27;, &#x27;#ffd900ff&#x27;, &#x27;#ffd900ff&#x27;, &#x27;#ffd800ff&#x27;, &#x27;#ffd700ff&#x27;, &#x27;#ffd700ff&#x27;, &#x27;#ffd600ff&#x27;, &#x27;#ffd600ff&#x27;, &#x27;#ffd500ff&#x27;, &#x27;#ffd500ff&#x27;, &#x27;#ffd400ff&#x27;, &#x27;#ffd400ff&#x27;, &#x27;#ffd300ff&#x27;, &#x27;#ffd300ff&#x27;, &#x27;#ffd200ff&#x27;, &#x27;#ffd200ff&#x27;, &#x27;#ffd100ff&#x27;, &#x27;#ffd100ff&#x27;, &#x27;#ffd000ff&#x27;, &#x27;#ffd000ff&#x27;, &#x27;#ffcf00ff&#x27;, &#x27;#ffcf00ff&#x27;, &#x27;#ffce00ff&#x27;, &#x27;#ffce00ff&#x27;, &#x27;#ffcd00ff&#x27;, &#x27;#ffcd00ff&#x27;, &#x27;#ffcc00ff&#x27;, &#x27;#ffcc00ff&#x27;, &#x27;#ffcb00ff&#x27;, &#x27;#ffcb00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffca00ff&#x27;, &#x27;#ffc900ff&#x27;, &#x27;#ffc900ff&#x27;, &#x27;#ffc800ff&#x27;, &#x27;#ffc800ff&#x27;, &#x27;#ffc700ff&#x27;, &#x27;#ffc700ff&#x27;, &#x27;#ffc600ff&#x27;, &#x27;#ffc600ff&#x27;, &#x27;#ffc500ff&#x27;, &#x27;#ffc500ff&#x27;, &#x27;#ffc400ff&#x27;, &#x27;#ffc300ff&#x27;, &#x27;#ffc300ff&#x27;, &#x27;#ffc200ff&#x27;, &#x27;#ffc200ff&#x27;, &#x27;#ffc100ff&#x27;, &#x27;#ffc100ff&#x27;, &#x27;#ffc000ff&#x27;, &#x27;#ffc000ff&#x27;, &#x27;#ffbf00ff&#x27;, &#x27;#ffbf00ff&#x27;, &#x27;#ffbe00ff&#x27;, &#x27;#ffbe00ff&#x27;, &#x27;#ffbd00ff&#x27;, &#x27;#ffbd00ff&#x27;, &#x27;#ffbc00ff&#x27;, &#x27;#ffbc00ff&#x27;, &#x27;#ffbb00ff&#x27;, &#x27;#ffbb00ff&#x27;, &#x27;#ffba00ff&#x27;, &#x27;#ffba00ff&#x27;, &#x27;#ffb900ff&#x27;, &#x27;#ffb900ff&#x27;, &#x27;#ffb800ff&#x27;, &#x27;#ffb800ff&#x27;, &#x27;#ffb700ff&#x27;, &#x27;#ffb700ff&#x27;, &#x27;#ffb600ff&#x27;, &#x27;#ffb600ff&#x27;, &#x27;#ffb500ff&#x27;, &#x27;#ffb500ff&#x27;, &#x27;#ffb400ff&#x27;, &#x27;#ffb400ff&#x27;, &#x27;#ffb300ff&#x27;, &#x27;#ffb300ff&#x27;, &#x27;#ffb200ff&#x27;, &#x27;#ffb200ff&#x27;, &#x27;#ffb100ff&#x27;, &#x27;#ffb000ff&#x27;, &#x27;#ffb000ff&#x27;, &#x27;#ffaf00ff&#x27;, &#x27;#ffaf00ff&#x27;, &#x27;#ffae00ff&#x27;, &#x27;#ffae00ff&#x27;, &#x27;#ffad00ff&#x27;, &#x27;#ffad00ff&#x27;, &#x27;#ffac00ff&#x27;, &#x27;#ffac00ff&#x27;, &#x27;#ffab00ff&#x27;, &#x27;#ffab00ff&#x27;, &#x27;#ffaa00ff&#x27;, &#x27;#ffaa00ff&#x27;, &#x27;#ffa900ff&#x27;, &#x27;#ffa900ff&#x27;, &#x27;#ffa800ff&#x27;, &#x27;#ffa800ff&#x27;, &#x27;#ffa700ff&#x27;, &#x27;#ffa700ff&#x27;, &#x27;#ffa600ff&#x27;, &#x27;#ffa600ff&#x27;, &#x27;#ffa500ff&#x27;, &#x27;#ffa500ff&#x27;, &#x27;#ffa400ff&#x27;, &#x27;#ffa400ff&#x27;, &#x27;#ffa300ff&#x27;, &#x27;#ffa300ff&#x27;, &#x27;#ffa200ff&#x27;, &#x27;#ffa200ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa100ff&#x27;, &#x27;#ffa000ff&#x27;, &#x27;#ffa000ff&#x27;, &#x27;#ff9f00ff&#x27;, &#x27;#ff9f00ff&#x27;, &#x27;#ff9e00ff&#x27;, &#x27;#ff9e00ff&#x27;, &#x27;#ff9d00ff&#x27;, &#x27;#ff9c00ff&#x27;, &#x27;#ff9c00ff&#x27;, &#x27;#ff9b00ff&#x27;, &#x27;#ff9b00ff&#x27;, &#x27;#ff9a00ff&#x27;, &#x27;#ff9a00ff&#x27;, &#x27;#ff9900ff&#x27;, &#x27;#ff9900ff&#x27;, &#x27;#ff9800ff&#x27;, &#x27;#ff9800ff&#x27;, &#x27;#ff9700ff&#x27;, &#x27;#ff9700ff&#x27;, &#x27;#ff9600ff&#x27;, &#x27;#ff9600ff&#x27;, &#x27;#ff9500ff&#x27;, &#x27;#ff9500ff&#x27;, &#x27;#ff9400ff&#x27;, &#x27;#ff9400ff&#x27;, &#x27;#ff9300ff&#x27;, &#x27;#ff9300ff&#x27;, &#x27;#ff9200ff&#x27;, &#x27;#ff9200ff&#x27;, &#x27;#ff9100ff&#x27;, &#x27;#ff9100ff&#x27;, &#x27;#ff9000ff&#x27;, &#x27;#ff9000ff&#x27;, &#x27;#ff8f00ff&#x27;, &#x27;#ff8f00ff&#x27;, &#x27;#ff8e00ff&#x27;, &#x27;#ff8e00ff&#x27;, &#x27;#ff8d00ff&#x27;, &#x27;#ff8d00ff&#x27;, &#x27;#ff8c00ff&#x27;, &#x27;#ff8c00ff&#x27;, &#x27;#ff8b00ff&#x27;, &#x27;#ff8b00ff&#x27;, &#x27;#ff8a00ff&#x27;, &#x27;#ff8a00ff&#x27;, &#x27;#ff8900ff&#x27;, &#x27;#ff8800ff&#x27;, &#x27;#ff8800ff&#x27;, &#x27;#ff8700ff&#x27;, &#x27;#ff8700ff&#x27;, &#x27;#ff8600ff&#x27;, &#x27;#ff8600ff&#x27;, &#x27;#ff8500ff&#x27;, &#x27;#ff8500ff&#x27;, &#x27;#ff8400ff&#x27;, &#x27;#ff8400ff&#x27;, &#x27;#ff8300ff&#x27;, &#x27;#ff8300ff&#x27;, &#x27;#ff8200ff&#x27;, &#x27;#ff8200ff&#x27;, &#x27;#ff8100ff&#x27;, &#x27;#ff8100ff&#x27;, &#x27;#ff8000ff&#x27;, &#x27;#ff8000ff&#x27;, &#x27;#ff7f00ff&#x27;, &#x27;#ff7f00ff&#x27;, &#x27;#ff7e00ff&#x27;, &#x27;#ff7e00ff&#x27;, &#x27;#ff7d00ff&#x27;, &#x27;#ff7d00ff&#x27;, &#x27;#ff7c00ff&#x27;, &#x27;#ff7c00ff&#x27;, &#x27;#ff7b00ff&#x27;, &#x27;#ff7b00ff&#x27;, &#x27;#ff7a00ff&#x27;, &#x27;#ff7a00ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7900ff&#x27;, &#x27;#ff7800ff&#x27;, &#x27;#ff7800ff&#x27;, &#x27;#ff7700ff&#x27;, &#x27;#ff7700ff&#x27;, &#x27;#ff7600ff&#x27;, &#x27;#ff7500ff&#x27;, &#x27;#ff7500ff&#x27;, &#x27;#ff7400ff&#x27;, &#x27;#ff7400ff&#x27;, &#x27;#ff7300ff&#x27;, &#x27;#ff7300ff&#x27;, &#x27;#ff7200ff&#x27;, &#x27;#ff7200ff&#x27;, &#x27;#ff7100ff&#x27;, &#x27;#ff7100ff&#x27;, &#x27;#ff7000ff&#x27;, &#x27;#ff7000ff&#x27;, &#x27;#ff6f00ff&#x27;, &#x27;#ff6f00ff&#x27;, &#x27;#ff6e00ff&#x27;, &#x27;#ff6e00ff&#x27;, &#x27;#ff6d00ff&#x27;, &#x27;#ff6d00ff&#x27;, &#x27;#ff6c00ff&#x27;, &#x27;#ff6c00ff&#x27;, &#x27;#ff6b00ff&#x27;, &#x27;#ff6b00ff&#x27;, &#x27;#ff6a00ff&#x27;, &#x27;#ff6a00ff&#x27;, &#x27;#ff6900ff&#x27;, &#x27;#ff6900ff&#x27;, &#x27;#ff6800ff&#x27;, &#x27;#ff6800ff&#x27;, &#x27;#ff6700ff&#x27;, &#x27;#ff6700ff&#x27;, &#x27;#ff6600ff&#x27;, &#x27;#ff6600ff&#x27;, &#x27;#ff6500ff&#x27;, &#x27;#ff6500ff&#x27;, &#x27;#ff6400ff&#x27;, &#x27;#ff6400ff&#x27;, &#x27;#ff6300ff&#x27;, &#x27;#ff6300ff&#x27;, &#x27;#ff6200ff&#x27;, &#x27;#ff6100ff&#x27;, &#x27;#ff6100ff&#x27;, &#x27;#ff6000ff&#x27;, &#x27;#ff6000ff&#x27;, &#x27;#ff5f00ff&#x27;, &#x27;#ff5f00ff&#x27;, &#x27;#ff5e00ff&#x27;, &#x27;#ff5e00ff&#x27;, &#x27;#ff5d00ff&#x27;, &#x27;#ff5d00ff&#x27;, &#x27;#ff5c00ff&#x27;, &#x27;#ff5c00ff&#x27;, &#x27;#ff5b00ff&#x27;, &#x27;#ff5b00ff&#x27;, &#x27;#ff5a00ff&#x27;, &#x27;#ff5a00ff&#x27;, &#x27;#ff5900ff&#x27;, &#x27;#ff5900ff&#x27;, &#x27;#ff5800ff&#x27;, &#x27;#ff5800ff&#x27;, &#x27;#ff5700ff&#x27;, &#x27;#ff5700ff&#x27;, &#x27;#ff5600ff&#x27;, &#x27;#ff5600ff&#x27;, &#x27;#ff5500ff&#x27;, &#x27;#ff5500ff&#x27;, &#x27;#ff5400ff&#x27;, &#x27;#ff5400ff&#x27;, &#x27;#ff5300ff&#x27;, &#x27;#ff5300ff&#x27;, &#x27;#ff5200ff&#x27;, &#x27;#ff5200ff&#x27;, &#x27;#ff5100ff&#x27;, &#x27;#ff5100ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff5000ff&#x27;, &#x27;#ff4f00ff&#x27;, &#x27;#ff4f00ff&#x27;, &#x27;#ff4e00ff&#x27;, &#x27;#ff4d00ff&#x27;, &#x27;#ff4d00ff&#x27;, &#x27;#ff4c00ff&#x27;, &#x27;#ff4c00ff&#x27;, &#x27;#ff4b00ff&#x27;, &#x27;#ff4b00ff&#x27;, &#x27;#ff4a00ff&#x27;, &#x27;#ff4a00ff&#x27;, &#x27;#ff4900ff&#x27;, &#x27;#ff4900ff&#x27;, &#x27;#ff4800ff&#x27;, &#x27;#ff4800ff&#x27;, &#x27;#ff4700ff&#x27;, &#x27;#ff4700ff&#x27;, &#x27;#ff4600ff&#x27;, &#x27;#ff4600ff&#x27;, &#x27;#ff4500ff&#x27;, &#x27;#ff4500ff&#x27;, &#x27;#ff4400ff&#x27;, &#x27;#ff4400ff&#x27;, &#x27;#ff4300ff&#x27;, &#x27;#ff4300ff&#x27;, &#x27;#ff4200ff&#x27;, &#x27;#ff4200ff&#x27;, &#x27;#ff4100ff&#x27;, &#x27;#ff4100ff&#x27;, &#x27;#ff4000ff&#x27;, &#x27;#ff4000ff&#x27;, &#x27;#ff3f00ff&#x27;, &#x27;#ff3f00ff&#x27;, &#x27;#ff3e00ff&#x27;, &#x27;#ff3e00ff&#x27;, &#x27;#ff3d00ff&#x27;, &#x27;#ff3d00ff&#x27;, &#x27;#ff3c00ff&#x27;, &#x27;#ff3c00ff&#x27;, &#x27;#ff3b00ff&#x27;, &#x27;#ff3a00ff&#x27;, &#x27;#ff3a00ff&#x27;, &#x27;#ff3900ff&#x27;, &#x27;#ff3900ff&#x27;, &#x27;#ff3800ff&#x27;, &#x27;#ff3800ff&#x27;, &#x27;#ff3700ff&#x27;, &#x27;#ff3700ff&#x27;, &#x27;#ff3600ff&#x27;, &#x27;#ff3600ff&#x27;, &#x27;#ff3500ff&#x27;, &#x27;#ff3500ff&#x27;, &#x27;#ff3400ff&#x27;, &#x27;#ff3400ff&#x27;, &#x27;#ff3300ff&#x27;, &#x27;#ff3300ff&#x27;, &#x27;#ff3200ff&#x27;, &#x27;#ff3200ff&#x27;, &#x27;#ff3100ff&#x27;, &#x27;#ff3100ff&#x27;, &#x27;#ff3000ff&#x27;, &#x27;#ff3000ff&#x27;, &#x27;#ff2f00ff&#x27;, &#x27;#ff2f00ff&#x27;, &#x27;#ff2e00ff&#x27;, &#x27;#ff2e00ff&#x27;, &#x27;#ff2d00ff&#x27;, &#x27;#ff2d00ff&#x27;, &#x27;#ff2c00ff&#x27;, &#x27;#ff2c00ff&#x27;, &#x27;#ff2b00ff&#x27;, &#x27;#ff2b00ff&#x27;, &#x27;#ff2a00ff&#x27;, &#x27;#ff2a00ff&#x27;, &#x27;#ff2900ff&#x27;, &#x27;#ff2900ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2800ff&#x27;, &#x27;#ff2700ff&#x27;, &#x27;#ff2600ff&#x27;, &#x27;#ff2600ff&#x27;, &#x27;#ff2500ff&#x27;, &#x27;#ff2500ff&#x27;, &#x27;#ff2400ff&#x27;, &#x27;#ff2400ff&#x27;, &#x27;#ff2300ff&#x27;, &#x27;#ff2300ff&#x27;, &#x27;#ff2200ff&#x27;, &#x27;#ff2200ff&#x27;, &#x27;#ff2100ff&#x27;, &#x27;#ff2100ff&#x27;, &#x27;#ff2000ff&#x27;, &#x27;#ff2000ff&#x27;, &#x27;#ff1f00ff&#x27;, &#x27;#ff1f00ff&#x27;, &#x27;#ff1e00ff&#x27;, &#x27;#ff1e00ff&#x27;, &#x27;#ff1d00ff&#x27;, &#x27;#ff1d00ff&#x27;, &#x27;#ff1c00ff&#x27;, &#x27;#ff1c00ff&#x27;, &#x27;#ff1b00ff&#x27;, &#x27;#ff1b00ff&#x27;, &#x27;#ff1a00ff&#x27;, &#x27;#ff1a00ff&#x27;, &#x27;#ff1900ff&#x27;, &#x27;#ff1900ff&#x27;, &#x27;#ff1800ff&#x27;, &#x27;#ff1800ff&#x27;, &#x27;#ff1700ff&#x27;, &#x27;#ff1700ff&#x27;, &#x27;#ff1600ff&#x27;, &#x27;#ff1600ff&#x27;, &#x27;#ff1500ff&#x27;, &#x27;#ff1500ff&#x27;, &#x27;#ff1400ff&#x27;, &#x27;#ff1400ff&#x27;, &#x27;#ff1300ff&#x27;, &#x27;#ff1200ff&#x27;, &#x27;#ff1200ff&#x27;, &#x27;#ff1100ff&#x27;, &#x27;#ff1100ff&#x27;, &#x27;#ff1000ff&#x27;, &#x27;#ff1000ff&#x27;, &#x27;#ff0f00ff&#x27;, &#x27;#ff0f00ff&#x27;, &#x27;#ff0e00ff&#x27;, &#x27;#ff0e00ff&#x27;, &#x27;#ff0d00ff&#x27;, &#x27;#ff0d00ff&#x27;, &#x27;#ff0c00ff&#x27;, &#x27;#ff0c00ff&#x27;, &#x27;#ff0b00ff&#x27;, &#x27;#ff0b00ff&#x27;, &#x27;#ff0a00ff&#x27;, &#x27;#ff0a00ff&#x27;, &#x27;#ff0900ff&#x27;, &#x27;#ff0900ff&#x27;, &#x27;#ff0800ff&#x27;, &#x27;#ff0800ff&#x27;, &#x27;#ff0700ff&#x27;, &#x27;#ff0700ff&#x27;, &#x27;#ff0600ff&#x27;, &#x27;#ff0600ff&#x27;, &#x27;#ff0500ff&#x27;, &#x27;#ff0500ff&#x27;, &#x27;#ff0400ff&#x27;, &#x27;#ff0400ff&#x27;, &#x27;#ff0300ff&#x27;, &#x27;#ff0300ff&#x27;, &#x27;#ff0200ff&#x27;, &#x27;#ff0200ff&#x27;, &#x27;#ff0100ff&#x27;, &#x27;#ff0100ff&#x27;, &#x27;#ff0000ff&#x27;, &#x27;#ff0000ff&#x27;]);\n",
" \n",
"\n",
" color_map_80e32527754534692026c86a8b9c7f2b.x = d3.scale.linear()\n",
" .domain([0.0, 515.0])\n",
" .range([0, 450 - 50]);\n",
"\n",
" color_map_80e32527754534692026c86a8b9c7f2b.legend = L.control({position: &#x27;topright&#x27;});\n",
" color_map_80e32527754534692026c86a8b9c7f2b.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\n",
" color_map_80e32527754534692026c86a8b9c7f2b.legend.addTo(map_911c8777c3877dcc87505e36b0927a39);\n",
"\n",
" color_map_80e32527754534692026c86a8b9c7f2b.xAxis = d3.svg.axis()\n",
" .scale(color_map_80e32527754534692026c86a8b9c7f2b.x)\n",
" .orient(&quot;top&quot;)\n",
" .tickSize(1)\n",
" .tickValues([0.0, 515.0]);\n",
"\n",
" color_map_80e32527754534692026c86a8b9c7f2b.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\n",
" .attr(&quot;id&quot;, &#x27;legend&#x27;)\n",
" .attr(&quot;width&quot;, 450)\n",
" .attr(&quot;height&quot;, 40);\n",
"\n",
" color_map_80e32527754534692026c86a8b9c7f2b.g = color_map_80e32527754534692026c86a8b9c7f2b.svg.append(&quot;g&quot;)\n",
" .attr(&quot;class&quot;, &quot;key&quot;)\n",
" .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\n",
"\n",
" color_map_80e32527754534692026c86a8b9c7f2b.g.selectAll(&quot;rect&quot;)\n",
" .data(color_map_80e32527754534692026c86a8b9c7f2b.color.range().map(function(d, i) {\n",
" return {\n",
" x0: i ? color_map_80e32527754534692026c86a8b9c7f2b.x(color_map_80e32527754534692026c86a8b9c7f2b.color.domain()[i - 1]) : color_map_80e32527754534692026c86a8b9c7f2b.x.range()[0],\n",
" x1: i &lt; color_map_80e32527754534692026c86a8b9c7f2b.color.domain().length ? color_map_80e32527754534692026c86a8b9c7f2b.x(color_map_80e32527754534692026c86a8b9c7f2b.color.domain()[i]) : color_map_80e32527754534692026c86a8b9c7f2b.x.range()[1],\n",
" z: d\n",
" };\n",
" }))\n",
" .enter().append(&quot;rect&quot;)\n",
" .attr(&quot;height&quot;, 40 - 30)\n",
" .attr(&quot;x&quot;, function(d) { return d.x0; })\n",
" .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\n",
" .style(&quot;fill&quot;, function(d) { return d.z; });\n",
"\n",
" color_map_80e32527754534692026c86a8b9c7f2b.g.call(color_map_80e32527754534692026c86a8b9c7f2b.xAxis).append(&quot;text&quot;)\n",
" .attr(&quot;class&quot;, &quot;caption&quot;)\n",
" .attr(&quot;y&quot;, 21)\n",
" .text(&quot;&quot;);\n",
"&lt;/script&gt;\n",
"&lt;/html&gt;\" style=\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>"
],
"text/plain": [
"<folium.folium.Map at 0x175f99b90>"
]
},
"execution_count": 55,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from branca.colormap import LinearColormap\n",
"\n",
"# Create a Folium map centered at a location of your choice\n",
"m = folium.Map(location=[(min_lat + max_lat) / 2, (min_lon + max_lon) / 2], zoom_start=11)\n",
"\n",
"# Create a list of features for the grid cells\n",
"features = []\n",
"\n",
"# Create a colormap to map counts to colors\n",
"cell_counts = {\n",
" (i, j): count.get()\n",
" for ((i, j),), count in model[1][-1]._groups.items()\n",
"}\n",
"colormap = LinearColormap(['yellow', 'red'], vmin=0, vmax=max(cell_counts.values()))\n",
"\n",
"# Create grid cells using lon_cuts and lat_cuts, and color them based on counts\n",
"for i in range(grid_size):\n",
" for j in range(grid_size):\n",
" cell_count = cell_counts.get((i, j), 0) # Retrieve the count from the dictionary\n",
" color = colormap(cell_count)\n",
" cell = {\n",
" \"type\": \"Feature\",\n",
" \"properties\": {\n",
" \"name\": f\"Cell {i}-{j}\",\n",
" \"count\": cell_count\n",
" },\n",
" \"geometry\": {\n",
" \"type\": \"Polygon\",\n",
" \"coordinates\": [\n",
" [\n",
" [lon_cuts[i - 1], lat_cuts[j - 1]],\n",
" [lon_cuts[i], lat_cuts[j - 1]],\n",
" [lon_cuts[i], lat_cuts[j]],\n",
" [lon_cuts[i - 1], lat_cuts[j]]\n",
" ]\n",
" ]\n",
" }\n",
" }\n",
" features.append(cell)\n",
"\n",
"# Create a GeoJSON layer with the grid cells and add to map\n",
"grid_layer = folium.GeoJson(\n",
" data={\n",
" \"type\": \"FeatureCollection\",\n",
" \"features\": features\n",
" },\n",
" style_function=lambda x: {\n",
" 'fillColor': colormap(x['properties']['count']),\n",
" 'color': 'black',\n",
" 'weight': 1,\n",
" 'fillOpacity': 0.4\n",
" },\n",
" name=\"Grid\"\n",
")\n",
"\n",
"grid_layer.add_to(m)\n",
"\n",
"# Add the colormap to the map\n",
"colormap.add_to(m)\n",
"m\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Progressive validation for batch models"
]
},
{
"cell_type": "code",
"execution_count": 58,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"MAE: 557.213129"
]
},
"execution_count": 58,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from sklearn import preprocessing as sk_preprocessing\n",
"from sklearn import pipeline as sk_pipeline\n",
"from sklearn import linear_model as sk_linear_model\n",
"from sklearn import exceptions as sk_exceptions\n",
"\n",
"sk_model = sk_pipeline.make_pipeline(\n",
" sk_preprocessing.StandardScaler(),\n",
" sk_linear_model.LinearRegression()\n",
")\n",
"\n",
"metric = metrics.MAE()\n",
"\n",
"X = []\n",
"Y = []\n",
"\n",
"for i, (x, y) in enumerate(dataset.take(10_000)):\n",
" x_arr = list(distances(x).values())\n",
" X.append(x_arr)\n",
" Y.append(y)\n",
"\n",
" if i % 1_000 == 0 and i > 0:\n",
" sk_model.fit(pd.DataFrame(X), Y)\n",
"\n",
" try:\n",
" y_pred = sk_model.predict([x_arr])[0]\n",
" except sk_exceptions.NotFittedError:\n",
" y_pred = 0\n",
" metric.update(y, y_pred)\n",
"\n",
"metric\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Mondrian forests are a strong baseline"
]
},
{
"cell_type": "code",
"execution_count": 60,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"MAE: 430.469101"
]
},
"execution_count": 60,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from river import forest\n",
"\n",
"model = compose.Pipeline(\n",
" distances,\n",
" forest.AMFRegressor(seed=42)\n",
")\n",
"\n",
"evaluate.progressive_val_score(\n",
" dataset=dataset.take(10_000),\n",
" model=model,\n",
" metric=metric.clone(),\n",
" moment='pickup_datetime',\n",
" delay=lambda _, y: dt.timedelta(seconds=y)\n",
")\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Unsupervised updates during inference"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Without..."
]
},
{
"cell_type": "code",
"execution_count": 69,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"MAE: 541.162842"
]
},
"execution_count": 69,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"model = compose.Pipeline(\n",
" distances,\n",
" preprocessing.StandardScaler(),\n",
" linear_model.LinearRegression()\n",
")\n",
"\n",
"evaluate.progressive_val_score(\n",
" dataset=dataset.take(10_000),\n",
" model=model,\n",
" metric=metric.clone()\n",
")\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"With..."
]
},
{
"cell_type": "code",
"execution_count": 70,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"MAE: 540.87705"
]
},
"execution_count": 70,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"with compose.learn_during_predict():\n",
" metric = evaluate.progressive_val_score(\n",
" dataset=dataset.take(10_000),\n",
" model=model.clone(),\n",
" metric=metric.clone()\n",
" )\n",
"metric\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Grid expansion"
]
},
{
"cell_type": "code",
"execution_count": 76,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"SGD MAE: 7,851.383381\n",
"SGD MAE: 541.162842\n",
"SGD MAE: 528.255267\n",
"Adam MAE: 614.078932\n",
"Adam MAE: 649.885257\n",
"Adam MAE: 659.615598\n"
]
}
],
"source": [
"from river import optim\n",
"from river import utils\n",
"\n",
"model = compose.Pipeline(\n",
" distances,\n",
" preprocessing.StandardScaler(),\n",
" linear_model.LinearRegression()\n",
")\n",
"\n",
"grid = {\n",
" 'LinearRegression': {\n",
" 'optimizer': [\n",
" (optim.SGD, {'lr': [.05, .01, .001]}),\n",
" (optim.Adam, {'lr': [.05, .01, .001]})\n",
" ]\n",
" }\n",
"}\n",
"\n",
"candidates = utils.expand_param_grid(model, grid)\n",
"\n",
"for candidate in candidates:\n",
" metric = evaluate.progressive_val_score(\n",
" dataset=dataset.take(10_000),\n",
" model=candidate,\n",
" metric=metric.clone()\n",
" )\n",
" print(candidate['LinearRegression'].optimizer, metric)\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Model selection using bandits"
]
},
{
"cell_type": "code",
"execution_count": 86,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"MAE: 546.430121"
]
},
"execution_count": 86,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from river import bandit\n",
"from river import model_selection\n",
"\n",
"meta_model = model_selection.BanditRegressor(\n",
" models=utils.expand_param_grid(model, grid),\n",
" metric=metrics.MAE(),\n",
" policy=bandit.EpsilonGreedy(epsilon=0.4, decay=0.05, seed=42),\n",
")\n",
"\n",
"evaluate.progressive_val_score(\n",
" dataset=dataset.take(10_000),\n",
" model=meta_model,\n",
" metric=metric.clone()\n",
")\n"
]
},
{
"cell_type": "code",
"execution_count": 88,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"Arm ID Reward Pulls Share \n",
" 5 MAE: 0. 0 0.00% \n",
" 3 MAE: 422.985028 3 0.03% \n",
" 0 MAE: 464.725473 86 0.86% \n",
" 2 MAE: 466.373717 90 0.90% \n",
" 4 MAE: 467.464257 160 1.60% \n",
" 1 MAE: 549.309871 9,661 96.61% "
]
},
"execution_count": 88,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"meta_model.policy\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## VectorDict"
]
},
{
"cell_type": "code",
"execution_count": 89,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"22.2 µs ± 184 ns per loop (mean ± std. dev. of 7 runs, 10,000 loops each)\n"
]
}
],
"source": [
"import random\n",
"\n",
"x = {i: random.random() for i in range(300)}\n",
"y = {i: random.random() for i in range(300)}\n",
"%timeit {x[i] * y[i] for i in range(300)}\n"
]
},
{
"cell_type": "code",
"execution_count": 90,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"8.39 µs ± 7.93 ns per loop (mean ± std. dev. of 7 runs, 100,000 loops each)\n"
]
}
],
"source": [
"x_vec = utils.VectorDict(x)\n",
"y_vec = utils.VectorDict(y)\n",
"%timeit x_vec @ y_vec\n"
]
},
{
"cell_type": "code",
"execution_count": 91,
"metadata": {},
"outputs": [],
"source": [
"import math\n",
"\n",
"assert math.isclose(x_vec @ y_vec, sum(x[i] * y[i] for i in range(300)))\n"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.0"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment