Last active
October 26, 2023 15:29
-
-
Save MaxHalford/f57a540333d47b21e6eaff49071e3ff1 to your computer and use it in GitHub Desktop.
maxhalford.github.io/slides/online-machine-learning-on-the-road.pdf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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=\"<!DOCTYPE html>\n", | |
"<html>\n", | |
"<head>\n", | |
" \n", | |
" <meta http-equiv="content-type" content="text/html; charset=UTF-8" />\n", | |
" \n", | |
" <script>\n", | |
" L_NO_TOUCH = false;\n", | |
" L_DISABLE_3D = false;\n", | |
" </script>\n", | |
" \n", | |
" <style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>\n", | |
" <style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>\n", | |
" <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>\n", | |
" <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>\n", | |
" <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>\n", | |
" <script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>\n", | |
" <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"/>\n", | |
" <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"/>\n", | |
" <link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"/>\n", | |
" <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css"/>\n", | |
" <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>\n", | |
" <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>\n", | |
" \n", | |
" <meta name="viewport" content="width=device-width,\n", | |
" initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />\n", | |
" <style>\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", | |
" </style>\n", | |
" \n", | |
"</head>\n", | |
"<body>\n", | |
" \n", | |
" \n", | |
" <div class="folium-map" id="map_75a09e82f3e585f35ce63623251317d1" ></div>\n", | |
" \n", | |
"</body>\n", | |
"<script>\n", | |
" \n", | |
" \n", | |
" var map_75a09e82f3e585f35ce63623251317d1 = L.map(\n", | |
" "map_75a09e82f3e585f35ce63623251317d1",\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", | |
" "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",\n", | |
" {"attribution": "Data by \\u0026copy; \\u003ca target=\\"_blank\\" href=\\"http://openstreetmap.org\\"\\u003eOpenStreetMap\\u003c/a\\u003e, under \\u003ca target=\\"_blank\\" href=\\"http://www.openstreetmap.org/copyright\\"\\u003eODbL\\u003c/a\\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": 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({"features": [{"geometry": {"coordinates": [[[-73.79347846221924, 40.812317159652714], [-74.0142211151123, 40.812317159652714], [-74.0142211151123, 40.64477554321289], [-73.79347846221924, 40.64477554321289]]], "type": "Polygon"}, "properties": {"name": "Cell 0-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.64477554321289], [-74.0142211151123, 40.64477554321289], [-74.0142211151123, 40.653593523025506], [-73.79347846221924, 40.653593523025506]]], "type": "Polygon"}, "properties": {"name": "Cell 0-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.653593523025506], [-74.0142211151123, 40.653593523025506], [-74.0142211151123, 40.66241150283813], [-73.79347846221924, 40.66241150283813]]], "type": "Polygon"}, "properties": {"name": "Cell 0-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.66241150283813], [-74.0142211151123, 40.66241150283813], [-74.0142211151123, 40.67122948265075], [-73.79347846221924, 40.67122948265075]]], "type": "Polygon"}, "properties": {"name": "Cell 0-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.67122948265075], [-74.0142211151123, 40.67122948265075], [-74.0142211151123, 40.68004746246338], [-73.79347846221924, 40.68004746246338]]], "type": "Polygon"}, "properties": {"name": "Cell 0-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.68004746246338], [-74.0142211151123, 40.68004746246338], [-74.0142211151123, 40.688865442276], [-73.79347846221924, 40.688865442276]]], "type": "Polygon"}, "properties": {"name": "Cell 0-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.688865442276], [-74.0142211151123, 40.688865442276], [-74.0142211151123, 40.69768342208862], [-73.79347846221924, 40.69768342208862]]], "type": "Polygon"}, "properties": {"name": "Cell 0-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.69768342208862], [-74.0142211151123, 40.69768342208862], [-74.0142211151123, 40.70650140190124], [-73.79347846221924, 40.70650140190124]]], "type": "Polygon"}, "properties": {"name": "Cell 0-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.70650140190124], [-74.0142211151123, 40.70650140190124], [-74.0142211151123, 40.71531938171387], [-73.79347846221924, 40.71531938171387]]], "type": "Polygon"}, "properties": {"name": "Cell 0-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.71531938171387], [-74.0142211151123, 40.71531938171387], [-74.0142211151123, 40.72413736152649], [-73.79347846221924, 40.72413736152649]]], "type": "Polygon"}, "properties": {"name": "Cell 0-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.72413736152649], [-74.0142211151123, 40.72413736152649], [-74.0142211151123, 40.73295534133911], [-73.79347846221924, 40.73295534133911]]], "type": "Polygon"}, "properties": {"name": "Cell 0-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.73295534133911], [-74.0142211151123, 40.73295534133911], [-74.0142211151123, 40.74177332115173], [-73.79347846221924, 40.74177332115173]]], "type": "Polygon"}, "properties": {"name": "Cell 0-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.74177332115173], [-74.0142211151123, 40.74177332115173], [-74.0142211151123, 40.75059130096435], [-73.79347846221924, 40.75059130096435]]], "type": "Polygon"}, "properties": {"name": "Cell 0-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.75059130096435], [-74.0142211151123, 40.75059130096435], [-74.0142211151123, 40.75940928077698], [-73.79347846221924, 40.75940928077698]]], "type": "Polygon"}, "properties": {"name": "Cell 0-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.75940928077698], [-74.0142211151123, 40.75940928077698], [-74.0142211151123, 40.7682272605896], [-73.79347846221924, 40.7682272605896]]], "type": "Polygon"}, "properties": {"name": "Cell 0-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.7682272605896], [-74.0142211151123, 40.7682272605896], [-74.0142211151123, 40.777045240402224], [-73.79347846221924, 40.777045240402224]]], "type": "Polygon"}, "properties": {"name": "Cell 0-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.777045240402224], [-74.0142211151123, 40.777045240402224], [-74.0142211151123, 40.78586322021484], [-73.79347846221924, 40.78586322021484]]], "type": "Polygon"}, "properties": {"name": "Cell 0-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.78586322021484], [-74.0142211151123, 40.78586322021484], [-74.0142211151123, 40.79468120002747], [-73.79347846221924, 40.79468120002747]]], "type": "Polygon"}, "properties": {"name": "Cell 0-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.79468120002747], [-74.0142211151123, 40.79468120002747], [-74.0142211151123, 40.80349917984009], [-73.79347846221924, 40.80349917984009]]], "type": "Polygon"}, "properties": {"name": "Cell 0-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.80349917984009], [-74.0142211151123, 40.80349917984009], [-74.0142211151123, 40.812317159652714], [-73.79347846221924, 40.812317159652714]]], "type": "Polygon"}, "properties": {"name": "Cell 0-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.812317159652714], [-74.00260308074951, 40.812317159652714], [-74.00260308074951, 40.64477554321289], [-74.0142211151123, 40.64477554321289]]], "type": "Polygon"}, "properties": {"name": "Cell 1-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.64477554321289], [-74.00260308074951, 40.64477554321289], [-74.00260308074951, 40.653593523025506], [-74.0142211151123, 40.653593523025506]]], "type": "Polygon"}, "properties": {"name": "Cell 1-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.653593523025506], [-74.00260308074951, 40.653593523025506], [-74.00260308074951, 40.66241150283813], [-74.0142211151123, 40.66241150283813]]], "type": "Polygon"}, "properties": {"name": "Cell 1-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.66241150283813], [-74.00260308074951, 40.66241150283813], [-74.00260308074951, 40.67122948265075], [-74.0142211151123, 40.67122948265075]]], "type": "Polygon"}, "properties": {"name": "Cell 1-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.67122948265075], [-74.00260308074951, 40.67122948265075], [-74.00260308074951, 40.68004746246338], [-74.0142211151123, 40.68004746246338]]], "type": "Polygon"}, "properties": {"name": "Cell 1-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.68004746246338], [-74.00260308074951, 40.68004746246338], [-74.00260308074951, 40.688865442276], [-74.0142211151123, 40.688865442276]]], "type": "Polygon"}, "properties": {"name": "Cell 1-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.688865442276], [-74.00260308074951, 40.688865442276], [-74.00260308074951, 40.69768342208862], [-74.0142211151123, 40.69768342208862]]], "type": "Polygon"}, "properties": {"name": "Cell 1-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.69768342208862], [-74.00260308074951, 40.69768342208862], [-74.00260308074951, 40.70650140190124], [-74.0142211151123, 40.70650140190124]]], "type": "Polygon"}, "properties": {"name": "Cell 1-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.70650140190124], [-74.00260308074951, 40.70650140190124], [-74.00260308074951, 40.71531938171387], [-74.0142211151123, 40.71531938171387]]], "type": "Polygon"}, "properties": {"name": "Cell 1-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.71531938171387], [-74.00260308074951, 40.71531938171387], [-74.00260308074951, 40.72413736152649], [-74.0142211151123, 40.72413736152649]]], "type": "Polygon"}, "properties": {"name": "Cell 1-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.72413736152649], [-74.00260308074951, 40.72413736152649], [-74.00260308074951, 40.73295534133911], [-74.0142211151123, 40.73295534133911]]], "type": "Polygon"}, "properties": {"name": "Cell 1-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.73295534133911], [-74.00260308074951, 40.73295534133911], [-74.00260308074951, 40.74177332115173], [-74.0142211151123, 40.74177332115173]]], "type": "Polygon"}, "properties": {"name": "Cell 1-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.74177332115173], [-74.00260308074951, 40.74177332115173], [-74.00260308074951, 40.75059130096435], [-74.0142211151123, 40.75059130096435]]], "type": "Polygon"}, "properties": {"name": "Cell 1-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.75059130096435], [-74.00260308074951, 40.75059130096435], [-74.00260308074951, 40.75940928077698], [-74.0142211151123, 40.75940928077698]]], "type": "Polygon"}, "properties": {"name": "Cell 1-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.75940928077698], [-74.00260308074951, 40.75940928077698], [-74.00260308074951, 40.7682272605896], [-74.0142211151123, 40.7682272605896]]], "type": "Polygon"}, "properties": {"name": "Cell 1-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.7682272605896], [-74.00260308074951, 40.7682272605896], [-74.00260308074951, 40.777045240402224], [-74.0142211151123, 40.777045240402224]]], "type": "Polygon"}, "properties": {"name": "Cell 1-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.777045240402224], [-74.00260308074951, 40.777045240402224], [-74.00260308074951, 40.78586322021484], [-74.0142211151123, 40.78586322021484]]], "type": "Polygon"}, "properties": {"name": "Cell 1-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.78586322021484], [-74.00260308074951, 40.78586322021484], [-74.00260308074951, 40.79468120002747], [-74.0142211151123, 40.79468120002747]]], "type": "Polygon"}, "properties": {"name": "Cell 1-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.79468120002747], [-74.00260308074951, 40.79468120002747], [-74.00260308074951, 40.80349917984009], [-74.0142211151123, 40.80349917984009]]], "type": "Polygon"}, "properties": {"name": "Cell 1-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.80349917984009], [-74.00260308074951, 40.80349917984009], [-74.00260308074951, 40.812317159652714], [-74.0142211151123, 40.812317159652714]]], "type": "Polygon"}, "properties": {"name": "Cell 1-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.812317159652714], [-73.99098504638673, 40.812317159652714], [-73.99098504638673, 40.64477554321289], [-74.00260308074951, 40.64477554321289]]], "type": "Polygon"}, "properties": {"name": "Cell 2-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.64477554321289], [-73.99098504638673, 40.64477554321289], [-73.99098504638673, 40.653593523025506], [-74.00260308074951, 40.653593523025506]]], "type": "Polygon"}, "properties": {"name": "Cell 2-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.653593523025506], [-73.99098504638673, 40.653593523025506], [-73.99098504638673, 40.66241150283813], [-74.00260308074951, 40.66241150283813]]], "type": "Polygon"}, "properties": {"name": "Cell 2-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.66241150283813], [-73.99098504638673, 40.66241150283813], [-73.99098504638673, 40.67122948265075], [-74.00260308074951, 40.67122948265075]]], "type": "Polygon"}, "properties": {"name": "Cell 2-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.67122948265075], [-73.99098504638673, 40.67122948265075], [-73.99098504638673, 40.68004746246338], [-74.00260308074951, 40.68004746246338]]], "type": "Polygon"}, "properties": {"name": "Cell 2-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.68004746246338], [-73.99098504638673, 40.68004746246338], [-73.99098504638673, 40.688865442276], [-74.00260308074951, 40.688865442276]]], "type": "Polygon"}, "properties": {"name": "Cell 2-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.688865442276], [-73.99098504638673, 40.688865442276], [-73.99098504638673, 40.69768342208862], [-74.00260308074951, 40.69768342208862]]], "type": "Polygon"}, "properties": {"name": "Cell 2-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.69768342208862], [-73.99098504638673, 40.69768342208862], [-73.99098504638673, 40.70650140190124], [-74.00260308074951, 40.70650140190124]]], "type": "Polygon"}, "properties": {"name": "Cell 2-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.70650140190124], [-73.99098504638673, 40.70650140190124], [-73.99098504638673, 40.71531938171387], [-74.00260308074951, 40.71531938171387]]], "type": "Polygon"}, "properties": {"name": "Cell 2-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.71531938171387], [-73.99098504638673, 40.71531938171387], [-73.99098504638673, 40.72413736152649], [-74.00260308074951, 40.72413736152649]]], "type": "Polygon"}, "properties": {"name": "Cell 2-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.72413736152649], [-73.99098504638673, 40.72413736152649], [-73.99098504638673, 40.73295534133911], [-74.00260308074951, 40.73295534133911]]], "type": "Polygon"}, "properties": {"name": "Cell 2-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.73295534133911], [-73.99098504638673, 40.73295534133911], [-73.99098504638673, 40.74177332115173], [-74.00260308074951, 40.74177332115173]]], "type": "Polygon"}, "properties": {"name": "Cell 2-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.74177332115173], [-73.99098504638673, 40.74177332115173], [-73.99098504638673, 40.75059130096435], [-74.00260308074951, 40.75059130096435]]], "type": "Polygon"}, "properties": {"name": "Cell 2-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.75059130096435], [-73.99098504638673, 40.75059130096435], [-73.99098504638673, 40.75940928077698], [-74.00260308074951, 40.75940928077698]]], "type": "Polygon"}, "properties": {"name": "Cell 2-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.75940928077698], [-73.99098504638673, 40.75940928077698], [-73.99098504638673, 40.7682272605896], [-74.00260308074951, 40.7682272605896]]], "type": "Polygon"}, "properties": {"name": "Cell 2-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.7682272605896], [-73.99098504638673, 40.7682272605896], [-73.99098504638673, 40.777045240402224], [-74.00260308074951, 40.777045240402224]]], "type": "Polygon"}, "properties": {"name": "Cell 2-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.777045240402224], [-73.99098504638673, 40.777045240402224], [-73.99098504638673, 40.78586322021484], [-74.00260308074951, 40.78586322021484]]], "type": "Polygon"}, "properties": {"name": "Cell 2-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.78586322021484], [-73.99098504638673, 40.78586322021484], [-73.99098504638673, 40.79468120002747], [-74.00260308074951, 40.79468120002747]]], "type": "Polygon"}, "properties": {"name": "Cell 2-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.79468120002747], [-73.99098504638673, 40.79468120002747], [-73.99098504638673, 40.80349917984009], [-74.00260308074951, 40.80349917984009]]], "type": "Polygon"}, "properties": {"name": "Cell 2-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.80349917984009], [-73.99098504638673, 40.80349917984009], [-73.99098504638673, 40.812317159652714], [-74.00260308074951, 40.812317159652714]]], "type": "Polygon"}, "properties": {"name": "Cell 2-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.812317159652714], [-73.97936701202393, 40.812317159652714], [-73.97936701202393, 40.64477554321289], [-73.99098504638673, 40.64477554321289]]], "type": "Polygon"}, "properties": {"name": "Cell 3-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.64477554321289], [-73.97936701202393, 40.64477554321289], [-73.97936701202393, 40.653593523025506], [-73.99098504638673, 40.653593523025506]]], "type": "Polygon"}, "properties": {"name": "Cell 3-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.653593523025506], [-73.97936701202393, 40.653593523025506], [-73.97936701202393, 40.66241150283813], [-73.99098504638673, 40.66241150283813]]], "type": "Polygon"}, "properties": {"name": "Cell 3-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.66241150283813], [-73.97936701202393, 40.66241150283813], [-73.97936701202393, 40.67122948265075], [-73.99098504638673, 40.67122948265075]]], "type": "Polygon"}, "properties": {"name": "Cell 3-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.67122948265075], [-73.97936701202393, 40.67122948265075], [-73.97936701202393, 40.68004746246338], [-73.99098504638673, 40.68004746246338]]], "type": "Polygon"}, "properties": {"name": "Cell 3-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.68004746246338], [-73.97936701202393, 40.68004746246338], [-73.97936701202393, 40.688865442276], [-73.99098504638673, 40.688865442276]]], "type": "Polygon"}, "properties": {"name": "Cell 3-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.688865442276], [-73.97936701202393, 40.688865442276], [-73.97936701202393, 40.69768342208862], [-73.99098504638673, 40.69768342208862]]], "type": "Polygon"}, "properties": {"name": "Cell 3-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.69768342208862], [-73.97936701202393, 40.69768342208862], [-73.97936701202393, 40.70650140190124], [-73.99098504638673, 40.70650140190124]]], "type": "Polygon"}, "properties": {"name": "Cell 3-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.70650140190124], [-73.97936701202393, 40.70650140190124], [-73.97936701202393, 40.71531938171387], [-73.99098504638673, 40.71531938171387]]], "type": "Polygon"}, "properties": {"name": "Cell 3-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.71531938171387], [-73.97936701202393, 40.71531938171387], [-73.97936701202393, 40.72413736152649], [-73.99098504638673, 40.72413736152649]]], "type": "Polygon"}, "properties": {"name": "Cell 3-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.72413736152649], [-73.97936701202393, 40.72413736152649], [-73.97936701202393, 40.73295534133911], [-73.99098504638673, 40.73295534133911]]], "type": "Polygon"}, "properties": {"name": "Cell 3-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.73295534133911], [-73.97936701202393, 40.73295534133911], [-73.97936701202393, 40.74177332115173], [-73.99098504638673, 40.74177332115173]]], "type": "Polygon"}, "properties": {"name": "Cell 3-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.74177332115173], [-73.97936701202393, 40.74177332115173], [-73.97936701202393, 40.75059130096435], [-73.99098504638673, 40.75059130096435]]], "type": "Polygon"}, "properties": {"name": "Cell 3-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.75059130096435], [-73.97936701202393, 40.75059130096435], [-73.97936701202393, 40.75940928077698], [-73.99098504638673, 40.75940928077698]]], "type": "Polygon"}, "properties": {"name": "Cell 3-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.75940928077698], [-73.97936701202393, 40.75940928077698], [-73.97936701202393, 40.7682272605896], [-73.99098504638673, 40.7682272605896]]], "type": "Polygon"}, "properties": {"name": "Cell 3-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.7682272605896], [-73.97936701202393, 40.7682272605896], [-73.97936701202393, 40.777045240402224], [-73.99098504638673, 40.777045240402224]]], "type": "Polygon"}, "properties": {"name": "Cell 3-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.777045240402224], [-73.97936701202393, 40.777045240402224], [-73.97936701202393, 40.78586322021484], [-73.99098504638673, 40.78586322021484]]], "type": "Polygon"}, "properties": {"name": "Cell 3-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.78586322021484], [-73.97936701202393, 40.78586322021484], [-73.97936701202393, 40.79468120002747], [-73.99098504638673, 40.79468120002747]]], "type": "Polygon"}, "properties": {"name": "Cell 3-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.79468120002747], [-73.97936701202393, 40.79468120002747], [-73.97936701202393, 40.80349917984009], [-73.99098504638673, 40.80349917984009]]], "type": "Polygon"}, "properties": {"name": "Cell 3-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.80349917984009], [-73.97936701202393, 40.80349917984009], [-73.97936701202393, 40.812317159652714], [-73.99098504638673, 40.812317159652714]]], "type": "Polygon"}, "properties": {"name": "Cell 3-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.812317159652714], [-73.96774897766113, 40.812317159652714], [-73.96774897766113, 40.64477554321289], [-73.97936701202393, 40.64477554321289]]], "type": "Polygon"}, "properties": {"name": "Cell 4-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.64477554321289], [-73.96774897766113, 40.64477554321289], [-73.96774897766113, 40.653593523025506], [-73.97936701202393, 40.653593523025506]]], "type": "Polygon"}, "properties": {"name": "Cell 4-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.653593523025506], [-73.96774897766113, 40.653593523025506], [-73.96774897766113, 40.66241150283813], [-73.97936701202393, 40.66241150283813]]], "type": "Polygon"}, "properties": {"name": "Cell 4-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.66241150283813], [-73.96774897766113, 40.66241150283813], [-73.96774897766113, 40.67122948265075], [-73.97936701202393, 40.67122948265075]]], "type": "Polygon"}, "properties": {"name": "Cell 4-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.67122948265075], [-73.96774897766113, 40.67122948265075], [-73.96774897766113, 40.68004746246338], [-73.97936701202393, 40.68004746246338]]], "type": "Polygon"}, "properties": {"name": "Cell 4-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.68004746246338], [-73.96774897766113, 40.68004746246338], [-73.96774897766113, 40.688865442276], [-73.97936701202393, 40.688865442276]]], "type": "Polygon"}, "properties": {"name": "Cell 4-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.688865442276], [-73.96774897766113, 40.688865442276], [-73.96774897766113, 40.69768342208862], [-73.97936701202393, 40.69768342208862]]], "type": "Polygon"}, "properties": {"name": "Cell 4-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.69768342208862], [-73.96774897766113, 40.69768342208862], [-73.96774897766113, 40.70650140190124], [-73.97936701202393, 40.70650140190124]]], "type": "Polygon"}, "properties": {"name": "Cell 4-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.70650140190124], [-73.96774897766113, 40.70650140190124], [-73.96774897766113, 40.71531938171387], [-73.97936701202393, 40.71531938171387]]], "type": "Polygon"}, "properties": {"name": "Cell 4-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.71531938171387], [-73.96774897766113, 40.71531938171387], [-73.96774897766113, 40.72413736152649], [-73.97936701202393, 40.72413736152649]]], "type": "Polygon"}, "properties": {"name": "Cell 4-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.72413736152649], [-73.96774897766113, 40.72413736152649], [-73.96774897766113, 40.73295534133911], [-73.97936701202393, 40.73295534133911]]], "type": "Polygon"}, "properties": {"name": "Cell 4-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.73295534133911], [-73.96774897766113, 40.73295534133911], [-73.96774897766113, 40.74177332115173], [-73.97936701202393, 40.74177332115173]]], "type": "Polygon"}, "properties": {"name": "Cell 4-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.74177332115173], [-73.96774897766113, 40.74177332115173], [-73.96774897766113, 40.75059130096435], [-73.97936701202393, 40.75059130096435]]], "type": "Polygon"}, "properties": {"name": "Cell 4-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.75059130096435], [-73.96774897766113, 40.75059130096435], [-73.96774897766113, 40.75940928077698], [-73.97936701202393, 40.75940928077698]]], "type": "Polygon"}, "properties": {"name": "Cell 4-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.75940928077698], [-73.96774897766113, 40.75940928077698], [-73.96774897766113, 40.7682272605896], [-73.97936701202393, 40.7682272605896]]], "type": "Polygon"}, "properties": {"name": "Cell 4-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.7682272605896], [-73.96774897766113, 40.7682272605896], [-73.96774897766113, 40.777045240402224], [-73.97936701202393, 40.777045240402224]]], "type": "Polygon"}, "properties": {"name": "Cell 4-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.777045240402224], [-73.96774897766113, 40.777045240402224], [-73.96774897766113, 40.78586322021484], [-73.97936701202393, 40.78586322021484]]], "type": "Polygon"}, "properties": {"name": "Cell 4-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.78586322021484], [-73.96774897766113, 40.78586322021484], [-73.96774897766113, 40.79468120002747], [-73.97936701202393, 40.79468120002747]]], "type": "Polygon"}, "properties": {"name": "Cell 4-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.79468120002747], [-73.96774897766113, 40.79468120002747], [-73.96774897766113, 40.80349917984009], [-73.97936701202393, 40.80349917984009]]], "type": "Polygon"}, "properties": {"name": "Cell 4-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.80349917984009], [-73.96774897766113, 40.80349917984009], [-73.96774897766113, 40.812317159652714], [-73.97936701202393, 40.812317159652714]]], "type": "Polygon"}, "properties": {"name": "Cell 4-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.812317159652714], [-73.95613094329835, 40.812317159652714], [-73.95613094329835, 40.64477554321289], [-73.96774897766113, 40.64477554321289]]], "type": "Polygon"}, "properties": {"name": "Cell 5-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.64477554321289], [-73.95613094329835, 40.64477554321289], [-73.95613094329835, 40.653593523025506], [-73.96774897766113, 40.653593523025506]]], "type": "Polygon"}, "properties": {"name": "Cell 5-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.653593523025506], [-73.95613094329835, 40.653593523025506], [-73.95613094329835, 40.66241150283813], [-73.96774897766113, 40.66241150283813]]], "type": "Polygon"}, "properties": {"name": "Cell 5-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.66241150283813], [-73.95613094329835, 40.66241150283813], [-73.95613094329835, 40.67122948265075], [-73.96774897766113, 40.67122948265075]]], "type": "Polygon"}, "properties": {"name": "Cell 5-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.67122948265075], [-73.95613094329835, 40.67122948265075], [-73.95613094329835, 40.68004746246338], [-73.96774897766113, 40.68004746246338]]], "type": "Polygon"}, "properties": {"name": "Cell 5-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.68004746246338], [-73.95613094329835, 40.68004746246338], [-73.95613094329835, 40.688865442276], [-73.96774897766113, 40.688865442276]]], "type": "Polygon"}, "properties": {"name": "Cell 5-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.688865442276], [-73.95613094329835, 40.688865442276], [-73.95613094329835, 40.69768342208862], [-73.96774897766113, 40.69768342208862]]], "type": "Polygon"}, "properties": {"name": "Cell 5-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.69768342208862], [-73.95613094329835, 40.69768342208862], [-73.95613094329835, 40.70650140190124], [-73.96774897766113, 40.70650140190124]]], "type": "Polygon"}, "properties": {"name": "Cell 5-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.70650140190124], [-73.95613094329835, 40.70650140190124], [-73.95613094329835, 40.71531938171387], [-73.96774897766113, 40.71531938171387]]], "type": "Polygon"}, "properties": {"name": "Cell 5-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.71531938171387], [-73.95613094329835, 40.71531938171387], [-73.95613094329835, 40.72413736152649], [-73.96774897766113, 40.72413736152649]]], "type": "Polygon"}, "properties": {"name": "Cell 5-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.72413736152649], [-73.95613094329835, 40.72413736152649], [-73.95613094329835, 40.73295534133911], [-73.96774897766113, 40.73295534133911]]], "type": "Polygon"}, "properties": {"name": "Cell 5-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.73295534133911], [-73.95613094329835, 40.73295534133911], [-73.95613094329835, 40.74177332115173], [-73.96774897766113, 40.74177332115173]]], "type": "Polygon"}, "properties": {"name": "Cell 5-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.74177332115173], [-73.95613094329835, 40.74177332115173], [-73.95613094329835, 40.75059130096435], [-73.96774897766113, 40.75059130096435]]], "type": "Polygon"}, "properties": {"name": "Cell 5-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.75059130096435], [-73.95613094329835, 40.75059130096435], [-73.95613094329835, 40.75940928077698], [-73.96774897766113, 40.75940928077698]]], "type": "Polygon"}, "properties": {"name": "Cell 5-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.75940928077698], [-73.95613094329835, 40.75940928077698], [-73.95613094329835, 40.7682272605896], [-73.96774897766113, 40.7682272605896]]], "type": "Polygon"}, "properties": {"name": "Cell 5-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.7682272605896], [-73.95613094329835, 40.7682272605896], [-73.95613094329835, 40.777045240402224], [-73.96774897766113, 40.777045240402224]]], "type": "Polygon"}, "properties": {"name": "Cell 5-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.777045240402224], [-73.95613094329835, 40.777045240402224], [-73.95613094329835, 40.78586322021484], [-73.96774897766113, 40.78586322021484]]], "type": "Polygon"}, "properties": {"name": "Cell 5-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.78586322021484], [-73.95613094329835, 40.78586322021484], [-73.95613094329835, 40.79468120002747], [-73.96774897766113, 40.79468120002747]]], "type": "Polygon"}, "properties": {"name": "Cell 5-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.79468120002747], [-73.95613094329835, 40.79468120002747], [-73.95613094329835, 40.80349917984009], [-73.96774897766113, 40.80349917984009]]], "type": "Polygon"}, "properties": {"name": "Cell 5-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.80349917984009], [-73.95613094329835, 40.80349917984009], [-73.95613094329835, 40.812317159652714], [-73.96774897766113, 40.812317159652714]]], "type": "Polygon"}, "properties": {"name": "Cell 5-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.812317159652714], [-73.94451290893555, 40.812317159652714], [-73.94451290893555, 40.64477554321289], [-73.95613094329835, 40.64477554321289]]], "type": "Polygon"}, "properties": {"name": "Cell 6-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.64477554321289], [-73.94451290893555, 40.64477554321289], [-73.94451290893555, 40.653593523025506], [-73.95613094329835, 40.653593523025506]]], "type": "Polygon"}, "properties": {"name": "Cell 6-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.653593523025506], [-73.94451290893555, 40.653593523025506], [-73.94451290893555, 40.66241150283813], [-73.95613094329835, 40.66241150283813]]], "type": "Polygon"}, "properties": {"name": "Cell 6-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.66241150283813], [-73.94451290893555, 40.66241150283813], [-73.94451290893555, 40.67122948265075], [-73.95613094329835, 40.67122948265075]]], "type": "Polygon"}, "properties": {"name": "Cell 6-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.67122948265075], [-73.94451290893555, 40.67122948265075], [-73.94451290893555, 40.68004746246338], [-73.95613094329835, 40.68004746246338]]], "type": "Polygon"}, "properties": {"name": "Cell 6-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.68004746246338], [-73.94451290893555, 40.68004746246338], [-73.94451290893555, 40.688865442276], [-73.95613094329835, 40.688865442276]]], "type": "Polygon"}, "properties": {"name": "Cell 6-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.688865442276], [-73.94451290893555, 40.688865442276], [-73.94451290893555, 40.69768342208862], [-73.95613094329835, 40.69768342208862]]], "type": "Polygon"}, "properties": {"name": "Cell 6-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.69768342208862], [-73.94451290893555, 40.69768342208862], [-73.94451290893555, 40.70650140190124], [-73.95613094329835, 40.70650140190124]]], "type": "Polygon"}, "properties": {"name": "Cell 6-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.70650140190124], [-73.94451290893555, 40.70650140190124], [-73.94451290893555, 40.71531938171387], [-73.95613094329835, 40.71531938171387]]], "type": "Polygon"}, "properties": {"name": "Cell 6-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.71531938171387], [-73.94451290893555, 40.71531938171387], [-73.94451290893555, 40.72413736152649], [-73.95613094329835, 40.72413736152649]]], "type": "Polygon"}, "properties": {"name": "Cell 6-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.72413736152649], [-73.94451290893555, 40.72413736152649], [-73.94451290893555, 40.73295534133911], [-73.95613094329835, 40.73295534133911]]], "type": "Polygon"}, "properties": {"name": "Cell 6-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.73295534133911], [-73.94451290893555, 40.73295534133911], [-73.94451290893555, 40.74177332115173], [-73.95613094329835, 40.74177332115173]]], "type": "Polygon"}, "properties": {"name": "Cell 6-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.74177332115173], [-73.94451290893555, 40.74177332115173], [-73.94451290893555, 40.75059130096435], [-73.95613094329835, 40.75059130096435]]], "type": "Polygon"}, "properties": {"name": "Cell 6-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.75059130096435], [-73.94451290893555, 40.75059130096435], [-73.94451290893555, 40.75940928077698], [-73.95613094329835, 40.75940928077698]]], "type": "Polygon"}, "properties": {"name": "Cell 6-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.75940928077698], [-73.94451290893555, 40.75940928077698], [-73.94451290893555, 40.7682272605896], [-73.95613094329835, 40.7682272605896]]], "type": "Polygon"}, "properties": {"name": "Cell 6-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.7682272605896], [-73.94451290893555, 40.7682272605896], [-73.94451290893555, 40.777045240402224], [-73.95613094329835, 40.777045240402224]]], "type": "Polygon"}, "properties": {"name": "Cell 6-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.777045240402224], [-73.94451290893555, 40.777045240402224], [-73.94451290893555, 40.78586322021484], [-73.95613094329835, 40.78586322021484]]], "type": "Polygon"}, "properties": {"name": "Cell 6-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.78586322021484], [-73.94451290893555, 40.78586322021484], [-73.94451290893555, 40.79468120002747], [-73.95613094329835, 40.79468120002747]]], "type": "Polygon"}, "properties": {"name": "Cell 6-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.79468120002747], [-73.94451290893555, 40.79468120002747], [-73.94451290893555, 40.80349917984009], [-73.95613094329835, 40.80349917984009]]], "type": "Polygon"}, "properties": {"name": "Cell 6-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.80349917984009], [-73.94451290893555, 40.80349917984009], [-73.94451290893555, 40.812317159652714], [-73.95613094329835, 40.812317159652714]]], "type": "Polygon"}, "properties": {"name": "Cell 6-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.812317159652714], [-73.93289487457275, 40.812317159652714], [-73.93289487457275, 40.64477554321289], [-73.94451290893555, 40.64477554321289]]], "type": "Polygon"}, "properties": {"name": "Cell 7-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.64477554321289], [-73.93289487457275, 40.64477554321289], [-73.93289487457275, 40.653593523025506], [-73.94451290893555, 40.653593523025506]]], "type": "Polygon"}, "properties": {"name": "Cell 7-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.653593523025506], [-73.93289487457275, 40.653593523025506], [-73.93289487457275, 40.66241150283813], [-73.94451290893555, 40.66241150283813]]], "type": "Polygon"}, "properties": {"name": "Cell 7-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.66241150283813], [-73.93289487457275, 40.66241150283813], [-73.93289487457275, 40.67122948265075], [-73.94451290893555, 40.67122948265075]]], "type": "Polygon"}, "properties": {"name": "Cell 7-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.67122948265075], [-73.93289487457275, 40.67122948265075], [-73.93289487457275, 40.68004746246338], [-73.94451290893555, 40.68004746246338]]], "type": "Polygon"}, "properties": {"name": "Cell 7-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.68004746246338], [-73.93289487457275, 40.68004746246338], [-73.93289487457275, 40.688865442276], [-73.94451290893555, 40.688865442276]]], "type": "Polygon"}, "properties": {"name": "Cell 7-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.688865442276], [-73.93289487457275, 40.688865442276], [-73.93289487457275, 40.69768342208862], [-73.94451290893555, 40.69768342208862]]], "type": "Polygon"}, "properties": {"name": "Cell 7-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.69768342208862], [-73.93289487457275, 40.69768342208862], [-73.93289487457275, 40.70650140190124], [-73.94451290893555, 40.70650140190124]]], "type": "Polygon"}, "properties": {"name": "Cell 7-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.70650140190124], [-73.93289487457275, 40.70650140190124], [-73.93289487457275, 40.71531938171387], [-73.94451290893555, 40.71531938171387]]], "type": "Polygon"}, "properties": {"name": "Cell 7-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.71531938171387], [-73.93289487457275, 40.71531938171387], [-73.93289487457275, 40.72413736152649], [-73.94451290893555, 40.72413736152649]]], "type": "Polygon"}, "properties": {"name": "Cell 7-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.72413736152649], [-73.93289487457275, 40.72413736152649], [-73.93289487457275, 40.73295534133911], [-73.94451290893555, 40.73295534133911]]], "type": "Polygon"}, "properties": {"name": "Cell 7-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.73295534133911], [-73.93289487457275, 40.73295534133911], [-73.93289487457275, 40.74177332115173], [-73.94451290893555, 40.74177332115173]]], "type": "Polygon"}, "properties": {"name": "Cell 7-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.74177332115173], [-73.93289487457275, 40.74177332115173], [-73.93289487457275, 40.75059130096435], [-73.94451290893555, 40.75059130096435]]], "type": "Polygon"}, "properties": {"name": "Cell 7-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.75059130096435], [-73.93289487457275, 40.75059130096435], [-73.93289487457275, 40.75940928077698], [-73.94451290893555, 40.75940928077698]]], "type": "Polygon"}, "properties": {"name": "Cell 7-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.75940928077698], [-73.93289487457275, 40.75940928077698], [-73.93289487457275, 40.7682272605896], [-73.94451290893555, 40.7682272605896]]], "type": "Polygon"}, "properties": {"name": "Cell 7-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.7682272605896], [-73.93289487457275, 40.7682272605896], [-73.93289487457275, 40.777045240402224], [-73.94451290893555, 40.777045240402224]]], "type": "Polygon"}, "properties": {"name": "Cell 7-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.777045240402224], [-73.93289487457275, 40.777045240402224], [-73.93289487457275, 40.78586322021484], [-73.94451290893555, 40.78586322021484]]], "type": "Polygon"}, "properties": {"name": "Cell 7-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.78586322021484], [-73.93289487457275, 40.78586322021484], [-73.93289487457275, 40.79468120002747], [-73.94451290893555, 40.79468120002747]]], "type": "Polygon"}, "properties": {"name": "Cell 7-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.79468120002747], [-73.93289487457275, 40.79468120002747], [-73.93289487457275, 40.80349917984009], [-73.94451290893555, 40.80349917984009]]], "type": "Polygon"}, "properties": {"name": "Cell 7-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.80349917984009], [-73.93289487457275, 40.80349917984009], [-73.93289487457275, 40.812317159652714], [-73.94451290893555, 40.812317159652714]]], "type": "Polygon"}, "properties": {"name": "Cell 7-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.812317159652714], [-73.92127684020996, 40.812317159652714], [-73.92127684020996, 40.64477554321289], [-73.93289487457275, 40.64477554321289]]], "type": "Polygon"}, "properties": {"name": "Cell 8-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.64477554321289], [-73.92127684020996, 40.64477554321289], [-73.92127684020996, 40.653593523025506], [-73.93289487457275, 40.653593523025506]]], "type": "Polygon"}, "properties": {"name": "Cell 8-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.653593523025506], [-73.92127684020996, 40.653593523025506], [-73.92127684020996, 40.66241150283813], [-73.93289487457275, 40.66241150283813]]], "type": "Polygon"}, "properties": {"name": "Cell 8-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.66241150283813], [-73.92127684020996, 40.66241150283813], [-73.92127684020996, 40.67122948265075], [-73.93289487457275, 40.67122948265075]]], "type": "Polygon"}, "properties": {"name": "Cell 8-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.67122948265075], [-73.92127684020996, 40.67122948265075], [-73.92127684020996, 40.68004746246338], [-73.93289487457275, 40.68004746246338]]], "type": "Polygon"}, "properties": {"name": "Cell 8-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.68004746246338], [-73.92127684020996, 40.68004746246338], [-73.92127684020996, 40.688865442276], [-73.93289487457275, 40.688865442276]]], "type": "Polygon"}, "properties": {"name": "Cell 8-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.688865442276], [-73.92127684020996, 40.688865442276], [-73.92127684020996, 40.69768342208862], [-73.93289487457275, 40.69768342208862]]], "type": "Polygon"}, "properties": {"name": "Cell 8-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.69768342208862], [-73.92127684020996, 40.69768342208862], [-73.92127684020996, 40.70650140190124], [-73.93289487457275, 40.70650140190124]]], "type": "Polygon"}, "properties": {"name": "Cell 8-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.70650140190124], [-73.92127684020996, 40.70650140190124], [-73.92127684020996, 40.71531938171387], [-73.93289487457275, 40.71531938171387]]], "type": "Polygon"}, "properties": {"name": "Cell 8-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.71531938171387], [-73.92127684020996, 40.71531938171387], [-73.92127684020996, 40.72413736152649], [-73.93289487457275, 40.72413736152649]]], "type": "Polygon"}, "properties": {"name": "Cell 8-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.72413736152649], [-73.92127684020996, 40.72413736152649], [-73.92127684020996, 40.73295534133911], [-73.93289487457275, 40.73295534133911]]], "type": "Polygon"}, "properties": {"name": "Cell 8-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.73295534133911], [-73.92127684020996, 40.73295534133911], [-73.92127684020996, 40.74177332115173], [-73.93289487457275, 40.74177332115173]]], "type": "Polygon"}, "properties": {"name": "Cell 8-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.74177332115173], [-73.92127684020996, 40.74177332115173], [-73.92127684020996, 40.75059130096435], [-73.93289487457275, 40.75059130096435]]], "type": "Polygon"}, "properties": {"name": "Cell 8-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.75059130096435], [-73.92127684020996, 40.75059130096435], [-73.92127684020996, 40.75940928077698], [-73.93289487457275, 40.75940928077698]]], "type": "Polygon"}, "properties": {"name": "Cell 8-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.75940928077698], [-73.92127684020996, 40.75940928077698], [-73.92127684020996, 40.7682272605896], [-73.93289487457275, 40.7682272605896]]], "type": "Polygon"}, "properties": {"name": "Cell 8-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.7682272605896], [-73.92127684020996, 40.7682272605896], [-73.92127684020996, 40.777045240402224], [-73.93289487457275, 40.777045240402224]]], "type": "Polygon"}, "properties": {"name": "Cell 8-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.777045240402224], [-73.92127684020996, 40.777045240402224], [-73.92127684020996, 40.78586322021484], [-73.93289487457275, 40.78586322021484]]], "type": "Polygon"}, "properties": {"name": "Cell 8-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.78586322021484], [-73.92127684020996, 40.78586322021484], [-73.92127684020996, 40.79468120002747], [-73.93289487457275, 40.79468120002747]]], "type": "Polygon"}, "properties": {"name": "Cell 8-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.79468120002747], [-73.92127684020996, 40.79468120002747], [-73.92127684020996, 40.80349917984009], [-73.93289487457275, 40.80349917984009]]], "type": "Polygon"}, "properties": {"name": "Cell 8-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.80349917984009], [-73.92127684020996, 40.80349917984009], [-73.92127684020996, 40.812317159652714], [-73.93289487457275, 40.812317159652714]]], "type": "Polygon"}, "properties": {"name": "Cell 8-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.812317159652714], [-73.90965880584717, 40.812317159652714], [-73.90965880584717, 40.64477554321289], [-73.92127684020996, 40.64477554321289]]], "type": "Polygon"}, "properties": {"name": "Cell 9-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.64477554321289], [-73.90965880584717, 40.64477554321289], [-73.90965880584717, 40.653593523025506], [-73.92127684020996, 40.653593523025506]]], "type": "Polygon"}, "properties": {"name": "Cell 9-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.653593523025506], [-73.90965880584717, 40.653593523025506], [-73.90965880584717, 40.66241150283813], [-73.92127684020996, 40.66241150283813]]], "type": "Polygon"}, "properties": {"name": "Cell 9-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.66241150283813], [-73.90965880584717, 40.66241150283813], [-73.90965880584717, 40.67122948265075], [-73.92127684020996, 40.67122948265075]]], "type": "Polygon"}, "properties": {"name": "Cell 9-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.67122948265075], [-73.90965880584717, 40.67122948265075], [-73.90965880584717, 40.68004746246338], [-73.92127684020996, 40.68004746246338]]], "type": "Polygon"}, "properties": {"name": "Cell 9-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.68004746246338], [-73.90965880584717, 40.68004746246338], [-73.90965880584717, 40.688865442276], [-73.92127684020996, 40.688865442276]]], "type": "Polygon"}, "properties": {"name": "Cell 9-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.688865442276], [-73.90965880584717, 40.688865442276], [-73.90965880584717, 40.69768342208862], [-73.92127684020996, 40.69768342208862]]], "type": "Polygon"}, "properties": {"name": "Cell 9-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.69768342208862], [-73.90965880584717, 40.69768342208862], [-73.90965880584717, 40.70650140190124], [-73.92127684020996, 40.70650140190124]]], "type": "Polygon"}, "properties": {"name": "Cell 9-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.70650140190124], [-73.90965880584717, 40.70650140190124], [-73.90965880584717, 40.71531938171387], [-73.92127684020996, 40.71531938171387]]], "type": "Polygon"}, "properties": {"name": "Cell 9-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.71531938171387], [-73.90965880584717, 40.71531938171387], [-73.90965880584717, 40.72413736152649], [-73.92127684020996, 40.72413736152649]]], "type": "Polygon"}, "properties": {"name": "Cell 9-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.72413736152649], [-73.90965880584717, 40.72413736152649], [-73.90965880584717, 40.73295534133911], [-73.92127684020996, 40.73295534133911]]], "type": "Polygon"}, "properties": {"name": "Cell 9-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.73295534133911], [-73.90965880584717, 40.73295534133911], [-73.90965880584717, 40.74177332115173], [-73.92127684020996, 40.74177332115173]]], "type": "Polygon"}, "properties": {"name": "Cell 9-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.74177332115173], [-73.90965880584717, 40.74177332115173], [-73.90965880584717, 40.75059130096435], [-73.92127684020996, 40.75059130096435]]], "type": "Polygon"}, "properties": {"name": "Cell 9-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.75059130096435], [-73.90965880584717, 40.75059130096435], [-73.90965880584717, 40.75940928077698], [-73.92127684020996, 40.75940928077698]]], "type": "Polygon"}, "properties": {"name": "Cell 9-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.75940928077698], [-73.90965880584717, 40.75940928077698], [-73.90965880584717, 40.7682272605896], [-73.92127684020996, 40.7682272605896]]], "type": "Polygon"}, "properties": {"name": "Cell 9-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.7682272605896], [-73.90965880584717, 40.7682272605896], [-73.90965880584717, 40.777045240402224], [-73.92127684020996, 40.777045240402224]]], "type": "Polygon"}, "properties": {"name": "Cell 9-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.777045240402224], [-73.90965880584717, 40.777045240402224], [-73.90965880584717, 40.78586322021484], [-73.92127684020996, 40.78586322021484]]], "type": "Polygon"}, "properties": {"name": "Cell 9-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.78586322021484], [-73.90965880584717, 40.78586322021484], [-73.90965880584717, 40.79468120002747], [-73.92127684020996, 40.79468120002747]]], "type": "Polygon"}, "properties": {"name": "Cell 9-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.79468120002747], [-73.90965880584717, 40.79468120002747], [-73.90965880584717, 40.80349917984009], [-73.92127684020996, 40.80349917984009]]], "type": "Polygon"}, "properties": {"name": "Cell 9-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.80349917984009], [-73.90965880584717, 40.80349917984009], [-73.90965880584717, 40.812317159652714], [-73.92127684020996, 40.812317159652714]]], "type": "Polygon"}, "properties": {"name": "Cell 9-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.812317159652714], [-73.89804077148438, 40.812317159652714], [-73.89804077148438, 40.64477554321289], [-73.90965880584717, 40.64477554321289]]], "type": "Polygon"}, "properties": {"name": "Cell 10-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.64477554321289], [-73.89804077148438, 40.64477554321289], [-73.89804077148438, 40.653593523025506], [-73.90965880584717, 40.653593523025506]]], "type": "Polygon"}, "properties": {"name": "Cell 10-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.653593523025506], [-73.89804077148438, 40.653593523025506], [-73.89804077148438, 40.66241150283813], [-73.90965880584717, 40.66241150283813]]], "type": "Polygon"}, "properties": {"name": "Cell 10-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.66241150283813], [-73.89804077148438, 40.66241150283813], [-73.89804077148438, 40.67122948265075], [-73.90965880584717, 40.67122948265075]]], "type": "Polygon"}, "properties": {"name": "Cell 10-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.67122948265075], [-73.89804077148438, 40.67122948265075], [-73.89804077148438, 40.68004746246338], [-73.90965880584717, 40.68004746246338]]], "type": "Polygon"}, "properties": {"name": "Cell 10-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.68004746246338], [-73.89804077148438, 40.68004746246338], [-73.89804077148438, 40.688865442276], [-73.90965880584717, 40.688865442276]]], "type": "Polygon"}, "properties": {"name": "Cell 10-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.688865442276], [-73.89804077148438, 40.688865442276], [-73.89804077148438, 40.69768342208862], [-73.90965880584717, 40.69768342208862]]], "type": "Polygon"}, "properties": {"name": "Cell 10-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.69768342208862], [-73.89804077148438, 40.69768342208862], [-73.89804077148438, 40.70650140190124], [-73.90965880584717, 40.70650140190124]]], "type": "Polygon"}, "properties": {"name": "Cell 10-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.70650140190124], [-73.89804077148438, 40.70650140190124], [-73.89804077148438, 40.71531938171387], [-73.90965880584717, 40.71531938171387]]], "type": "Polygon"}, "properties": {"name": "Cell 10-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.71531938171387], [-73.89804077148438, 40.71531938171387], [-73.89804077148438, 40.72413736152649], [-73.90965880584717, 40.72413736152649]]], "type": "Polygon"}, "properties": {"name": "Cell 10-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.72413736152649], [-73.89804077148438, 40.72413736152649], [-73.89804077148438, 40.73295534133911], [-73.90965880584717, 40.73295534133911]]], "type": "Polygon"}, "properties": {"name": "Cell 10-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.73295534133911], [-73.89804077148438, 40.73295534133911], [-73.89804077148438, 40.74177332115173], [-73.90965880584717, 40.74177332115173]]], "type": "Polygon"}, "properties": {"name": "Cell 10-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.74177332115173], [-73.89804077148438, 40.74177332115173], [-73.89804077148438, 40.75059130096435], [-73.90965880584717, 40.75059130096435]]], "type": "Polygon"}, "properties": {"name": "Cell 10-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.75059130096435], [-73.89804077148438, 40.75059130096435], [-73.89804077148438, 40.75940928077698], [-73.90965880584717, 40.75940928077698]]], "type": "Polygon"}, "properties": {"name": "Cell 10-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.75940928077698], [-73.89804077148438, 40.75940928077698], [-73.89804077148438, 40.7682272605896], [-73.90965880584717, 40.7682272605896]]], "type": "Polygon"}, "properties": {"name": "Cell 10-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.7682272605896], [-73.89804077148438, 40.7682272605896], [-73.89804077148438, 40.777045240402224], [-73.90965880584717, 40.777045240402224]]], "type": "Polygon"}, "properties": {"name": "Cell 10-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.777045240402224], [-73.89804077148438, 40.777045240402224], [-73.89804077148438, 40.78586322021484], [-73.90965880584717, 40.78586322021484]]], "type": "Polygon"}, "properties": {"name": "Cell 10-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.78586322021484], [-73.89804077148438, 40.78586322021484], [-73.89804077148438, 40.79468120002747], [-73.90965880584717, 40.79468120002747]]], "type": "Polygon"}, "properties": {"name": "Cell 10-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.79468120002747], [-73.89804077148438, 40.79468120002747], [-73.89804077148438, 40.80349917984009], [-73.90965880584717, 40.80349917984009]]], "type": "Polygon"}, "properties": {"name": "Cell 10-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.80349917984009], [-73.89804077148438, 40.80349917984009], [-73.89804077148438, 40.812317159652714], [-73.90965880584717, 40.812317159652714]]], "type": "Polygon"}, "properties": {"name": "Cell 10-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.812317159652714], [-73.88642273712158, 40.812317159652714], [-73.88642273712158, 40.64477554321289], [-73.89804077148438, 40.64477554321289]]], "type": "Polygon"}, "properties": {"name": "Cell 11-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.64477554321289], [-73.88642273712158, 40.64477554321289], [-73.88642273712158, 40.653593523025506], [-73.89804077148438, 40.653593523025506]]], "type": "Polygon"}, "properties": {"name": "Cell 11-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.653593523025506], [-73.88642273712158, 40.653593523025506], [-73.88642273712158, 40.66241150283813], [-73.89804077148438, 40.66241150283813]]], "type": "Polygon"}, "properties": {"name": "Cell 11-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.66241150283813], [-73.88642273712158, 40.66241150283813], [-73.88642273712158, 40.67122948265075], [-73.89804077148438, 40.67122948265075]]], "type": "Polygon"}, "properties": {"name": "Cell 11-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.67122948265075], [-73.88642273712158, 40.67122948265075], [-73.88642273712158, 40.68004746246338], [-73.89804077148438, 40.68004746246338]]], "type": "Polygon"}, "properties": {"name": "Cell 11-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.68004746246338], [-73.88642273712158, 40.68004746246338], [-73.88642273712158, 40.688865442276], [-73.89804077148438, 40.688865442276]]], "type": "Polygon"}, "properties": {"name": "Cell 11-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.688865442276], [-73.88642273712158, 40.688865442276], [-73.88642273712158, 40.69768342208862], [-73.89804077148438, 40.69768342208862]]], "type": "Polygon"}, "properties": {"name": "Cell 11-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.69768342208862], [-73.88642273712158, 40.69768342208862], [-73.88642273712158, 40.70650140190124], [-73.89804077148438, 40.70650140190124]]], "type": "Polygon"}, "properties": {"name": "Cell 11-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.70650140190124], [-73.88642273712158, 40.70650140190124], [-73.88642273712158, 40.71531938171387], [-73.89804077148438, 40.71531938171387]]], "type": "Polygon"}, "properties": {"name": "Cell 11-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.71531938171387], [-73.88642273712158, 40.71531938171387], [-73.88642273712158, 40.72413736152649], [-73.89804077148438, 40.72413736152649]]], "type": "Polygon"}, "properties": {"name": "Cell 11-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.72413736152649], [-73.88642273712158, 40.72413736152649], [-73.88642273712158, 40.73295534133911], [-73.89804077148438, 40.73295534133911]]], "type": "Polygon"}, "properties": {"name": "Cell 11-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.73295534133911], [-73.88642273712158, 40.73295534133911], [-73.88642273712158, 40.74177332115173], [-73.89804077148438, 40.74177332115173]]], "type": "Polygon"}, "properties": {"name": "Cell 11-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.74177332115173], [-73.88642273712158, 40.74177332115173], [-73.88642273712158, 40.75059130096435], [-73.89804077148438, 40.75059130096435]]], "type": "Polygon"}, "properties": {"name": "Cell 11-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.75059130096435], [-73.88642273712158, 40.75059130096435], [-73.88642273712158, 40.75940928077698], [-73.89804077148438, 40.75940928077698]]], "type": "Polygon"}, "properties": {"name": "Cell 11-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.75940928077698], [-73.88642273712158, 40.75940928077698], [-73.88642273712158, 40.7682272605896], [-73.89804077148438, 40.7682272605896]]], "type": "Polygon"}, "properties": {"name": "Cell 11-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.7682272605896], [-73.88642273712158, 40.7682272605896], [-73.88642273712158, 40.777045240402224], [-73.89804077148438, 40.777045240402224]]], "type": "Polygon"}, "properties": {"name": "Cell 11-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.777045240402224], [-73.88642273712158, 40.777045240402224], [-73.88642273712158, 40.78586322021484], [-73.89804077148438, 40.78586322021484]]], "type": "Polygon"}, "properties": {"name": "Cell 11-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.78586322021484], [-73.88642273712158, 40.78586322021484], [-73.88642273712158, 40.79468120002747], [-73.89804077148438, 40.79468120002747]]], "type": "Polygon"}, "properties": {"name": "Cell 11-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.79468120002747], [-73.88642273712158, 40.79468120002747], [-73.88642273712158, 40.80349917984009], [-73.89804077148438, 40.80349917984009]]], "type": "Polygon"}, "properties": {"name": "Cell 11-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.80349917984009], [-73.88642273712158, 40.80349917984009], [-73.88642273712158, 40.812317159652714], [-73.89804077148438, 40.812317159652714]]], "type": "Polygon"}, "properties": {"name": "Cell 11-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.812317159652714], [-73.8748047027588, 40.812317159652714], [-73.8748047027588, 40.64477554321289], [-73.88642273712158, 40.64477554321289]]], "type": "Polygon"}, "properties": {"name": "Cell 12-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.64477554321289], [-73.8748047027588, 40.64477554321289], [-73.8748047027588, 40.653593523025506], [-73.88642273712158, 40.653593523025506]]], "type": "Polygon"}, "properties": {"name": "Cell 12-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.653593523025506], [-73.8748047027588, 40.653593523025506], [-73.8748047027588, 40.66241150283813], [-73.88642273712158, 40.66241150283813]]], "type": "Polygon"}, "properties": {"name": "Cell 12-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.66241150283813], [-73.8748047027588, 40.66241150283813], [-73.8748047027588, 40.67122948265075], [-73.88642273712158, 40.67122948265075]]], "type": "Polygon"}, "properties": {"name": "Cell 12-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.67122948265075], [-73.8748047027588, 40.67122948265075], [-73.8748047027588, 40.68004746246338], [-73.88642273712158, 40.68004746246338]]], "type": "Polygon"}, "properties": {"name": "Cell 12-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.68004746246338], [-73.8748047027588, 40.68004746246338], [-73.8748047027588, 40.688865442276], [-73.88642273712158, 40.688865442276]]], "type": "Polygon"}, "properties": {"name": "Cell 12-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.688865442276], [-73.8748047027588, 40.688865442276], [-73.8748047027588, 40.69768342208862], [-73.88642273712158, 40.69768342208862]]], "type": "Polygon"}, "properties": {"name": "Cell 12-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.69768342208862], [-73.8748047027588, 40.69768342208862], [-73.8748047027588, 40.70650140190124], [-73.88642273712158, 40.70650140190124]]], "type": "Polygon"}, "properties": {"name": "Cell 12-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.70650140190124], [-73.8748047027588, 40.70650140190124], [-73.8748047027588, 40.71531938171387], [-73.88642273712158, 40.71531938171387]]], "type": "Polygon"}, "properties": {"name": "Cell 12-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.71531938171387], [-73.8748047027588, 40.71531938171387], [-73.8748047027588, 40.72413736152649], [-73.88642273712158, 40.72413736152649]]], "type": "Polygon"}, "properties": {"name": "Cell 12-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.72413736152649], [-73.8748047027588, 40.72413736152649], [-73.8748047027588, 40.73295534133911], [-73.88642273712158, 40.73295534133911]]], "type": "Polygon"}, "properties": {"name": "Cell 12-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.73295534133911], [-73.8748047027588, 40.73295534133911], [-73.8748047027588, 40.74177332115173], [-73.88642273712158, 40.74177332115173]]], "type": "Polygon"}, "properties": {"name": "Cell 12-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.74177332115173], [-73.8748047027588, 40.74177332115173], [-73.8748047027588, 40.75059130096435], [-73.88642273712158, 40.75059130096435]]], "type": "Polygon"}, "properties": {"name": "Cell 12-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.75059130096435], [-73.8748047027588, 40.75059130096435], [-73.8748047027588, 40.75940928077698], [-73.88642273712158, 40.75940928077698]]], "type": "Polygon"}, "properties": {"name": "Cell 12-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.75940928077698], [-73.8748047027588, 40.75940928077698], [-73.8748047027588, 40.7682272605896], [-73.88642273712158, 40.7682272605896]]], "type": "Polygon"}, "properties": {"name": "Cell 12-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.7682272605896], [-73.8748047027588, 40.7682272605896], [-73.8748047027588, 40.777045240402224], [-73.88642273712158, 40.777045240402224]]], "type": "Polygon"}, "properties": {"name": "Cell 12-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.777045240402224], [-73.8748047027588, 40.777045240402224], [-73.8748047027588, 40.78586322021484], [-73.88642273712158, 40.78586322021484]]], "type": "Polygon"}, "properties": {"name": "Cell 12-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.78586322021484], [-73.8748047027588, 40.78586322021484], [-73.8748047027588, 40.79468120002747], [-73.88642273712158, 40.79468120002747]]], "type": "Polygon"}, "properties": {"name": "Cell 12-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.79468120002747], [-73.8748047027588, 40.79468120002747], [-73.8748047027588, 40.80349917984009], [-73.88642273712158, 40.80349917984009]]], "type": "Polygon"}, "properties": {"name": "Cell 12-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.80349917984009], [-73.8748047027588, 40.80349917984009], [-73.8748047027588, 40.812317159652714], [-73.88642273712158, 40.812317159652714]]], "type": "Polygon"}, "properties": {"name": "Cell 12-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.812317159652714], [-73.863186668396, 40.812317159652714], [-73.863186668396, 40.64477554321289], [-73.8748047027588, 40.64477554321289]]], "type": "Polygon"}, "properties": {"name": "Cell 13-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.64477554321289], [-73.863186668396, 40.64477554321289], [-73.863186668396, 40.653593523025506], [-73.8748047027588, 40.653593523025506]]], "type": "Polygon"}, "properties": {"name": "Cell 13-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.653593523025506], [-73.863186668396, 40.653593523025506], [-73.863186668396, 40.66241150283813], [-73.8748047027588, 40.66241150283813]]], "type": "Polygon"}, "properties": {"name": "Cell 13-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.66241150283813], [-73.863186668396, 40.66241150283813], [-73.863186668396, 40.67122948265075], [-73.8748047027588, 40.67122948265075]]], "type": "Polygon"}, "properties": {"name": "Cell 13-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.67122948265075], [-73.863186668396, 40.67122948265075], [-73.863186668396, 40.68004746246338], [-73.8748047027588, 40.68004746246338]]], "type": "Polygon"}, "properties": {"name": "Cell 13-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.68004746246338], [-73.863186668396, 40.68004746246338], [-73.863186668396, 40.688865442276], [-73.8748047027588, 40.688865442276]]], "type": "Polygon"}, "properties": {"name": "Cell 13-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.688865442276], [-73.863186668396, 40.688865442276], [-73.863186668396, 40.69768342208862], [-73.8748047027588, 40.69768342208862]]], "type": "Polygon"}, "properties": {"name": "Cell 13-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.69768342208862], [-73.863186668396, 40.69768342208862], [-73.863186668396, 40.70650140190124], [-73.8748047027588, 40.70650140190124]]], "type": "Polygon"}, "properties": {"name": "Cell 13-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.70650140190124], [-73.863186668396, 40.70650140190124], [-73.863186668396, 40.71531938171387], [-73.8748047027588, 40.71531938171387]]], "type": "Polygon"}, "properties": {"name": "Cell 13-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.71531938171387], [-73.863186668396, 40.71531938171387], [-73.863186668396, 40.72413736152649], [-73.8748047027588, 40.72413736152649]]], "type": "Polygon"}, "properties": {"name": "Cell 13-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.72413736152649], [-73.863186668396, 40.72413736152649], [-73.863186668396, 40.73295534133911], [-73.8748047027588, 40.73295534133911]]], "type": "Polygon"}, "properties": {"name": "Cell 13-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.73295534133911], [-73.863186668396, 40.73295534133911], [-73.863186668396, 40.74177332115173], [-73.8748047027588, 40.74177332115173]]], "type": "Polygon"}, "properties": {"name": "Cell 13-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.74177332115173], [-73.863186668396, 40.74177332115173], [-73.863186668396, 40.75059130096435], [-73.8748047027588, 40.75059130096435]]], "type": "Polygon"}, "properties": {"name": "Cell 13-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.75059130096435], [-73.863186668396, 40.75059130096435], [-73.863186668396, 40.75940928077698], [-73.8748047027588, 40.75940928077698]]], "type": "Polygon"}, "properties": {"name": "Cell 13-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.75940928077698], [-73.863186668396, 40.75940928077698], [-73.863186668396, 40.7682272605896], [-73.8748047027588, 40.7682272605896]]], "type": "Polygon"}, "properties": {"name": "Cell 13-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.7682272605896], [-73.863186668396, 40.7682272605896], [-73.863186668396, 40.777045240402224], [-73.8748047027588, 40.777045240402224]]], "type": "Polygon"}, "properties": {"name": "Cell 13-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.777045240402224], [-73.863186668396, 40.777045240402224], [-73.863186668396, 40.78586322021484], [-73.8748047027588, 40.78586322021484]]], "type": "Polygon"}, "properties": {"name": "Cell 13-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.78586322021484], [-73.863186668396, 40.78586322021484], [-73.863186668396, 40.79468120002747], [-73.8748047027588, 40.79468120002747]]], "type": "Polygon"}, "properties": {"name": "Cell 13-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.79468120002747], [-73.863186668396, 40.79468120002747], [-73.863186668396, 40.80349917984009], [-73.8748047027588, 40.80349917984009]]], "type": "Polygon"}, "properties": {"name": "Cell 13-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.80349917984009], [-73.863186668396, 40.80349917984009], [-73.863186668396, 40.812317159652714], [-73.8748047027588, 40.812317159652714]]], "type": "Polygon"}, "properties": {"name": "Cell 13-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.812317159652714], [-73.8515686340332, 40.812317159652714], [-73.8515686340332, 40.64477554321289], [-73.863186668396, 40.64477554321289]]], "type": "Polygon"}, "properties": {"name": "Cell 14-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.64477554321289], [-73.8515686340332, 40.64477554321289], [-73.8515686340332, 40.653593523025506], [-73.863186668396, 40.653593523025506]]], "type": "Polygon"}, "properties": {"name": "Cell 14-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.653593523025506], [-73.8515686340332, 40.653593523025506], [-73.8515686340332, 40.66241150283813], [-73.863186668396, 40.66241150283813]]], "type": "Polygon"}, "properties": {"name": "Cell 14-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.66241150283813], [-73.8515686340332, 40.66241150283813], [-73.8515686340332, 40.67122948265075], [-73.863186668396, 40.67122948265075]]], "type": "Polygon"}, "properties": {"name": "Cell 14-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.67122948265075], [-73.8515686340332, 40.67122948265075], [-73.8515686340332, 40.68004746246338], [-73.863186668396, 40.68004746246338]]], "type": "Polygon"}, "properties": {"name": "Cell 14-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.68004746246338], [-73.8515686340332, 40.68004746246338], [-73.8515686340332, 40.688865442276], [-73.863186668396, 40.688865442276]]], "type": "Polygon"}, "properties": {"name": "Cell 14-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.688865442276], [-73.8515686340332, 40.688865442276], [-73.8515686340332, 40.69768342208862], [-73.863186668396, 40.69768342208862]]], "type": "Polygon"}, "properties": {"name": "Cell 14-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.69768342208862], [-73.8515686340332, 40.69768342208862], [-73.8515686340332, 40.70650140190124], [-73.863186668396, 40.70650140190124]]], "type": "Polygon"}, "properties": {"name": "Cell 14-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.70650140190124], [-73.8515686340332, 40.70650140190124], [-73.8515686340332, 40.71531938171387], [-73.863186668396, 40.71531938171387]]], "type": "Polygon"}, "properties": {"name": "Cell 14-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.71531938171387], [-73.8515686340332, 40.71531938171387], [-73.8515686340332, 40.72413736152649], [-73.863186668396, 40.72413736152649]]], "type": "Polygon"}, "properties": {"name": "Cell 14-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.72413736152649], [-73.8515686340332, 40.72413736152649], [-73.8515686340332, 40.73295534133911], [-73.863186668396, 40.73295534133911]]], "type": "Polygon"}, "properties": {"name": "Cell 14-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.73295534133911], [-73.8515686340332, 40.73295534133911], [-73.8515686340332, 40.74177332115173], [-73.863186668396, 40.74177332115173]]], "type": "Polygon"}, "properties": {"name": "Cell 14-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.74177332115173], [-73.8515686340332, 40.74177332115173], [-73.8515686340332, 40.75059130096435], [-73.863186668396, 40.75059130096435]]], "type": "Polygon"}, "properties": {"name": "Cell 14-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.75059130096435], [-73.8515686340332, 40.75059130096435], [-73.8515686340332, 40.75940928077698], [-73.863186668396, 40.75940928077698]]], "type": "Polygon"}, "properties": {"name": "Cell 14-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.75940928077698], [-73.8515686340332, 40.75940928077698], [-73.8515686340332, 40.7682272605896], [-73.863186668396, 40.7682272605896]]], "type": "Polygon"}, "properties": {"name": "Cell 14-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.7682272605896], [-73.8515686340332, 40.7682272605896], [-73.8515686340332, 40.777045240402224], [-73.863186668396, 40.777045240402224]]], "type": "Polygon"}, "properties": {"name": "Cell 14-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.777045240402224], [-73.8515686340332, 40.777045240402224], [-73.8515686340332, 40.78586322021484], [-73.863186668396, 40.78586322021484]]], "type": "Polygon"}, "properties": {"name": "Cell 14-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.78586322021484], [-73.8515686340332, 40.78586322021484], [-73.8515686340332, 40.79468120002747], [-73.863186668396, 40.79468120002747]]], "type": "Polygon"}, "properties": {"name": "Cell 14-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.79468120002747], [-73.8515686340332, 40.79468120002747], [-73.8515686340332, 40.80349917984009], [-73.863186668396, 40.80349917984009]]], "type": "Polygon"}, "properties": {"name": "Cell 14-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.80349917984009], [-73.8515686340332, 40.80349917984009], [-73.8515686340332, 40.812317159652714], [-73.863186668396, 40.812317159652714]]], "type": "Polygon"}, "properties": {"name": "Cell 14-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.812317159652714], [-73.8399505996704, 40.812317159652714], [-73.8399505996704, 40.64477554321289], [-73.8515686340332, 40.64477554321289]]], "type": "Polygon"}, "properties": {"name": "Cell 15-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.64477554321289], [-73.8399505996704, 40.64477554321289], [-73.8399505996704, 40.653593523025506], [-73.8515686340332, 40.653593523025506]]], "type": "Polygon"}, "properties": {"name": "Cell 15-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.653593523025506], [-73.8399505996704, 40.653593523025506], [-73.8399505996704, 40.66241150283813], [-73.8515686340332, 40.66241150283813]]], "type": "Polygon"}, "properties": {"name": "Cell 15-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.66241150283813], [-73.8399505996704, 40.66241150283813], [-73.8399505996704, 40.67122948265075], [-73.8515686340332, 40.67122948265075]]], "type": "Polygon"}, "properties": {"name": "Cell 15-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.67122948265075], [-73.8399505996704, 40.67122948265075], [-73.8399505996704, 40.68004746246338], [-73.8515686340332, 40.68004746246338]]], "type": "Polygon"}, "properties": {"name": "Cell 15-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.68004746246338], [-73.8399505996704, 40.68004746246338], [-73.8399505996704, 40.688865442276], [-73.8515686340332, 40.688865442276]]], "type": "Polygon"}, "properties": {"name": "Cell 15-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.688865442276], [-73.8399505996704, 40.688865442276], [-73.8399505996704, 40.69768342208862], [-73.8515686340332, 40.69768342208862]]], "type": "Polygon"}, "properties": {"name": "Cell 15-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.69768342208862], [-73.8399505996704, 40.69768342208862], [-73.8399505996704, 40.70650140190124], [-73.8515686340332, 40.70650140190124]]], "type": "Polygon"}, "properties": {"name": "Cell 15-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.70650140190124], [-73.8399505996704, 40.70650140190124], [-73.8399505996704, 40.71531938171387], [-73.8515686340332, 40.71531938171387]]], "type": "Polygon"}, "properties": {"name": "Cell 15-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.71531938171387], [-73.8399505996704, 40.71531938171387], [-73.8399505996704, 40.72413736152649], [-73.8515686340332, 40.72413736152649]]], "type": "Polygon"}, "properties": {"name": "Cell 15-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.72413736152649], [-73.8399505996704, 40.72413736152649], [-73.8399505996704, 40.73295534133911], [-73.8515686340332, 40.73295534133911]]], "type": "Polygon"}, "properties": {"name": "Cell 15-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.73295534133911], [-73.8399505996704, 40.73295534133911], [-73.8399505996704, 40.74177332115173], [-73.8515686340332, 40.74177332115173]]], "type": "Polygon"}, "properties": {"name": "Cell 15-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.74177332115173], [-73.8399505996704, 40.74177332115173], [-73.8399505996704, 40.75059130096435], [-73.8515686340332, 40.75059130096435]]], "type": "Polygon"}, "properties": {"name": "Cell 15-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.75059130096435], [-73.8399505996704, 40.75059130096435], [-73.8399505996704, 40.75940928077698], [-73.8515686340332, 40.75940928077698]]], "type": "Polygon"}, "properties": {"name": "Cell 15-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.75940928077698], [-73.8399505996704, 40.75940928077698], [-73.8399505996704, 40.7682272605896], [-73.8515686340332, 40.7682272605896]]], "type": "Polygon"}, "properties": {"name": "Cell 15-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.7682272605896], [-73.8399505996704, 40.7682272605896], [-73.8399505996704, 40.777045240402224], [-73.8515686340332, 40.777045240402224]]], "type": "Polygon"}, "properties": {"name": "Cell 15-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.777045240402224], [-73.8399505996704, 40.777045240402224], [-73.8399505996704, 40.78586322021484], [-73.8515686340332, 40.78586322021484]]], "type": "Polygon"}, "properties": {"name": "Cell 15-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.78586322021484], [-73.8399505996704, 40.78586322021484], [-73.8399505996704, 40.79468120002747], [-73.8515686340332, 40.79468120002747]]], "type": "Polygon"}, "properties": {"name": "Cell 15-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.79468120002747], [-73.8399505996704, 40.79468120002747], [-73.8399505996704, 40.80349917984009], [-73.8515686340332, 40.80349917984009]]], "type": "Polygon"}, "properties": {"name": "Cell 15-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.80349917984009], [-73.8399505996704, 40.80349917984009], [-73.8399505996704, 40.812317159652714], [-73.8515686340332, 40.812317159652714]]], "type": "Polygon"}, "properties": {"name": "Cell 15-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.812317159652714], [-73.82833256530762, 40.812317159652714], [-73.82833256530762, 40.64477554321289], [-73.8399505996704, 40.64477554321289]]], "type": "Polygon"}, "properties": {"name": "Cell 16-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.64477554321289], [-73.82833256530762, 40.64477554321289], [-73.82833256530762, 40.653593523025506], [-73.8399505996704, 40.653593523025506]]], "type": "Polygon"}, "properties": {"name": "Cell 16-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.653593523025506], [-73.82833256530762, 40.653593523025506], [-73.82833256530762, 40.66241150283813], [-73.8399505996704, 40.66241150283813]]], "type": "Polygon"}, "properties": {"name": "Cell 16-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.66241150283813], [-73.82833256530762, 40.66241150283813], [-73.82833256530762, 40.67122948265075], [-73.8399505996704, 40.67122948265075]]], "type": "Polygon"}, "properties": {"name": "Cell 16-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.67122948265075], [-73.82833256530762, 40.67122948265075], [-73.82833256530762, 40.68004746246338], [-73.8399505996704, 40.68004746246338]]], "type": "Polygon"}, "properties": {"name": "Cell 16-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.68004746246338], [-73.82833256530762, 40.68004746246338], [-73.82833256530762, 40.688865442276], [-73.8399505996704, 40.688865442276]]], "type": "Polygon"}, "properties": {"name": "Cell 16-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.688865442276], [-73.82833256530762, 40.688865442276], [-73.82833256530762, 40.69768342208862], [-73.8399505996704, 40.69768342208862]]], "type": "Polygon"}, "properties": {"name": "Cell 16-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.69768342208862], [-73.82833256530762, 40.69768342208862], [-73.82833256530762, 40.70650140190124], [-73.8399505996704, 40.70650140190124]]], "type": "Polygon"}, "properties": {"name": "Cell 16-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.70650140190124], [-73.82833256530762, 40.70650140190124], [-73.82833256530762, 40.71531938171387], [-73.8399505996704, 40.71531938171387]]], "type": "Polygon"}, "properties": {"name": "Cell 16-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.71531938171387], [-73.82833256530762, 40.71531938171387], [-73.82833256530762, 40.72413736152649], [-73.8399505996704, 40.72413736152649]]], "type": "Polygon"}, "properties": {"name": "Cell 16-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.72413736152649], [-73.82833256530762, 40.72413736152649], [-73.82833256530762, 40.73295534133911], [-73.8399505996704, 40.73295534133911]]], "type": "Polygon"}, "properties": {"name": "Cell 16-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.73295534133911], [-73.82833256530762, 40.73295534133911], [-73.82833256530762, 40.74177332115173], [-73.8399505996704, 40.74177332115173]]], "type": "Polygon"}, "properties": {"name": "Cell 16-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.74177332115173], [-73.82833256530762, 40.74177332115173], [-73.82833256530762, 40.75059130096435], [-73.8399505996704, 40.75059130096435]]], "type": "Polygon"}, "properties": {"name": "Cell 16-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.75059130096435], [-73.82833256530762, 40.75059130096435], [-73.82833256530762, 40.75940928077698], [-73.8399505996704, 40.75940928077698]]], "type": "Polygon"}, "properties": {"name": "Cell 16-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.75940928077698], [-73.82833256530762, 40.75940928077698], [-73.82833256530762, 40.7682272605896], [-73.8399505996704, 40.7682272605896]]], "type": "Polygon"}, "properties": {"name": "Cell 16-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.7682272605896], [-73.82833256530762, 40.7682272605896], [-73.82833256530762, 40.777045240402224], [-73.8399505996704, 40.777045240402224]]], "type": "Polygon"}, "properties": {"name": "Cell 16-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.777045240402224], [-73.82833256530762, 40.777045240402224], [-73.82833256530762, 40.78586322021484], [-73.8399505996704, 40.78586322021484]]], "type": "Polygon"}, "properties": {"name": "Cell 16-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.78586322021484], [-73.82833256530762, 40.78586322021484], [-73.82833256530762, 40.79468120002747], [-73.8399505996704, 40.79468120002747]]], "type": "Polygon"}, "properties": {"name": "Cell 16-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.79468120002747], [-73.82833256530762, 40.79468120002747], [-73.82833256530762, 40.80349917984009], [-73.8399505996704, 40.80349917984009]]], "type": "Polygon"}, "properties": {"name": "Cell 16-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.80349917984009], [-73.82833256530762, 40.80349917984009], [-73.82833256530762, 40.812317159652714], [-73.8399505996704, 40.812317159652714]]], "type": "Polygon"}, "properties": {"name": "Cell 16-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.812317159652714], [-73.81671453094482, 40.812317159652714], [-73.81671453094482, 40.64477554321289], [-73.82833256530762, 40.64477554321289]]], "type": "Polygon"}, "properties": {"name": "Cell 17-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.64477554321289], [-73.81671453094482, 40.64477554321289], [-73.81671453094482, 40.653593523025506], [-73.82833256530762, 40.653593523025506]]], "type": "Polygon"}, "properties": {"name": "Cell 17-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.653593523025506], [-73.81671453094482, 40.653593523025506], [-73.81671453094482, 40.66241150283813], [-73.82833256530762, 40.66241150283813]]], "type": "Polygon"}, "properties": {"name": "Cell 17-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.66241150283813], [-73.81671453094482, 40.66241150283813], [-73.81671453094482, 40.67122948265075], [-73.82833256530762, 40.67122948265075]]], "type": "Polygon"}, "properties": {"name": "Cell 17-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.67122948265075], [-73.81671453094482, 40.67122948265075], [-73.81671453094482, 40.68004746246338], [-73.82833256530762, 40.68004746246338]]], "type": "Polygon"}, "properties": {"name": "Cell 17-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.68004746246338], [-73.81671453094482, 40.68004746246338], [-73.81671453094482, 40.688865442276], [-73.82833256530762, 40.688865442276]]], "type": "Polygon"}, "properties": {"name": "Cell 17-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.688865442276], [-73.81671453094482, 40.688865442276], [-73.81671453094482, 40.69768342208862], [-73.82833256530762, 40.69768342208862]]], "type": "Polygon"}, "properties": {"name": "Cell 17-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.69768342208862], [-73.81671453094482, 40.69768342208862], [-73.81671453094482, 40.70650140190124], [-73.82833256530762, 40.70650140190124]]], "type": "Polygon"}, "properties": {"name": "Cell 17-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.70650140190124], [-73.81671453094482, 40.70650140190124], [-73.81671453094482, 40.71531938171387], [-73.82833256530762, 40.71531938171387]]], "type": "Polygon"}, "properties": {"name": "Cell 17-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.71531938171387], [-73.81671453094482, 40.71531938171387], [-73.81671453094482, 40.72413736152649], [-73.82833256530762, 40.72413736152649]]], "type": "Polygon"}, "properties": {"name": "Cell 17-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.72413736152649], [-73.81671453094482, 40.72413736152649], [-73.81671453094482, 40.73295534133911], [-73.82833256530762, 40.73295534133911]]], "type": "Polygon"}, "properties": {"name": "Cell 17-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.73295534133911], [-73.81671453094482, 40.73295534133911], [-73.81671453094482, 40.74177332115173], [-73.82833256530762, 40.74177332115173]]], "type": "Polygon"}, "properties": {"name": "Cell 17-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.74177332115173], [-73.81671453094482, 40.74177332115173], [-73.81671453094482, 40.75059130096435], [-73.82833256530762, 40.75059130096435]]], "type": "Polygon"}, "properties": {"name": "Cell 17-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.75059130096435], [-73.81671453094482, 40.75059130096435], [-73.81671453094482, 40.75940928077698], [-73.82833256530762, 40.75940928077698]]], "type": "Polygon"}, "properties": {"name": "Cell 17-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.75940928077698], [-73.81671453094482, 40.75940928077698], [-73.81671453094482, 40.7682272605896], [-73.82833256530762, 40.7682272605896]]], "type": "Polygon"}, "properties": {"name": "Cell 17-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.7682272605896], [-73.81671453094482, 40.7682272605896], [-73.81671453094482, 40.777045240402224], [-73.82833256530762, 40.777045240402224]]], "type": "Polygon"}, "properties": {"name": "Cell 17-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.777045240402224], [-73.81671453094482, 40.777045240402224], [-73.81671453094482, 40.78586322021484], [-73.82833256530762, 40.78586322021484]]], "type": "Polygon"}, "properties": {"name": "Cell 17-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.78586322021484], [-73.81671453094482, 40.78586322021484], [-73.81671453094482, 40.79468120002747], [-73.82833256530762, 40.79468120002747]]], "type": "Polygon"}, "properties": {"name": "Cell 17-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.79468120002747], [-73.81671453094482, 40.79468120002747], [-73.81671453094482, 40.80349917984009], [-73.82833256530762, 40.80349917984009]]], "type": "Polygon"}, "properties": {"name": "Cell 17-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.80349917984009], [-73.81671453094482, 40.80349917984009], [-73.81671453094482, 40.812317159652714], [-73.82833256530762, 40.812317159652714]]], "type": "Polygon"}, "properties": {"name": "Cell 17-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.812317159652714], [-73.80509649658202, 40.812317159652714], [-73.80509649658202, 40.64477554321289], [-73.81671453094482, 40.64477554321289]]], "type": "Polygon"}, "properties": {"name": "Cell 18-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.64477554321289], [-73.80509649658202, 40.64477554321289], [-73.80509649658202, 40.653593523025506], [-73.81671453094482, 40.653593523025506]]], "type": "Polygon"}, "properties": {"name": "Cell 18-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.653593523025506], [-73.80509649658202, 40.653593523025506], [-73.80509649658202, 40.66241150283813], [-73.81671453094482, 40.66241150283813]]], "type": "Polygon"}, "properties": {"name": "Cell 18-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.66241150283813], [-73.80509649658202, 40.66241150283813], [-73.80509649658202, 40.67122948265075], [-73.81671453094482, 40.67122948265075]]], "type": "Polygon"}, "properties": {"name": "Cell 18-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.67122948265075], [-73.80509649658202, 40.67122948265075], [-73.80509649658202, 40.68004746246338], [-73.81671453094482, 40.68004746246338]]], "type": "Polygon"}, "properties": {"name": "Cell 18-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.68004746246338], [-73.80509649658202, 40.68004746246338], [-73.80509649658202, 40.688865442276], [-73.81671453094482, 40.688865442276]]], "type": "Polygon"}, "properties": {"name": "Cell 18-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.688865442276], [-73.80509649658202, 40.688865442276], [-73.80509649658202, 40.69768342208862], [-73.81671453094482, 40.69768342208862]]], "type": "Polygon"}, "properties": {"name": "Cell 18-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.69768342208862], [-73.80509649658202, 40.69768342208862], [-73.80509649658202, 40.70650140190124], [-73.81671453094482, 40.70650140190124]]], "type": "Polygon"}, "properties": {"name": "Cell 18-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.70650140190124], [-73.80509649658202, 40.70650140190124], [-73.80509649658202, 40.71531938171387], [-73.81671453094482, 40.71531938171387]]], "type": "Polygon"}, "properties": {"name": "Cell 18-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.71531938171387], [-73.80509649658202, 40.71531938171387], [-73.80509649658202, 40.72413736152649], [-73.81671453094482, 40.72413736152649]]], "type": "Polygon"}, "properties": {"name": "Cell 18-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.72413736152649], [-73.80509649658202, 40.72413736152649], [-73.80509649658202, 40.73295534133911], [-73.81671453094482, 40.73295534133911]]], "type": "Polygon"}, "properties": {"name": "Cell 18-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.73295534133911], [-73.80509649658202, 40.73295534133911], [-73.80509649658202, 40.74177332115173], [-73.81671453094482, 40.74177332115173]]], "type": "Polygon"}, "properties": {"name": "Cell 18-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.74177332115173], [-73.80509649658202, 40.74177332115173], [-73.80509649658202, 40.75059130096435], [-73.81671453094482, 40.75059130096435]]], "type": "Polygon"}, "properties": {"name": "Cell 18-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.75059130096435], [-73.80509649658202, 40.75059130096435], [-73.80509649658202, 40.75940928077698], [-73.81671453094482, 40.75940928077698]]], "type": "Polygon"}, "properties": {"name": "Cell 18-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.75940928077698], [-73.80509649658202, 40.75940928077698], [-73.80509649658202, 40.7682272605896], [-73.81671453094482, 40.7682272605896]]], "type": "Polygon"}, "properties": {"name": "Cell 18-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.7682272605896], [-73.80509649658202, 40.7682272605896], [-73.80509649658202, 40.777045240402224], [-73.81671453094482, 40.777045240402224]]], "type": "Polygon"}, "properties": {"name": "Cell 18-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.777045240402224], [-73.80509649658202, 40.777045240402224], [-73.80509649658202, 40.78586322021484], [-73.81671453094482, 40.78586322021484]]], "type": "Polygon"}, "properties": {"name": "Cell 18-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.78586322021484], [-73.80509649658202, 40.78586322021484], [-73.80509649658202, 40.79468120002747], [-73.81671453094482, 40.79468120002747]]], "type": "Polygon"}, "properties": {"name": "Cell 18-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.79468120002747], [-73.80509649658202, 40.79468120002747], [-73.80509649658202, 40.80349917984009], [-73.81671453094482, 40.80349917984009]]], "type": "Polygon"}, "properties": {"name": "Cell 18-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.80349917984009], [-73.80509649658202, 40.80349917984009], [-73.80509649658202, 40.812317159652714], [-73.81671453094482, 40.812317159652714]]], "type": "Polygon"}, "properties": {"name": "Cell 18-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.812317159652714], [-73.79347846221924, 40.812317159652714], [-73.79347846221924, 40.64477554321289], [-73.80509649658202, 40.64477554321289]]], "type": "Polygon"}, "properties": {"name": "Cell 19-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.64477554321289], [-73.79347846221924, 40.64477554321289], [-73.79347846221924, 40.653593523025506], [-73.80509649658202, 40.653593523025506]]], "type": "Polygon"}, "properties": {"name": "Cell 19-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.653593523025506], [-73.79347846221924, 40.653593523025506], [-73.79347846221924, 40.66241150283813], [-73.80509649658202, 40.66241150283813]]], "type": "Polygon"}, "properties": {"name": "Cell 19-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.66241150283813], [-73.79347846221924, 40.66241150283813], [-73.79347846221924, 40.67122948265075], [-73.80509649658202, 40.67122948265075]]], "type": "Polygon"}, "properties": {"name": "Cell 19-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.67122948265075], [-73.79347846221924, 40.67122948265075], [-73.79347846221924, 40.68004746246338], [-73.80509649658202, 40.68004746246338]]], "type": "Polygon"}, "properties": {"name": "Cell 19-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.68004746246338], [-73.79347846221924, 40.68004746246338], [-73.79347846221924, 40.688865442276], [-73.80509649658202, 40.688865442276]]], "type": "Polygon"}, "properties": {"name": "Cell 19-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.688865442276], [-73.79347846221924, 40.688865442276], [-73.79347846221924, 40.69768342208862], [-73.80509649658202, 40.69768342208862]]], "type": "Polygon"}, "properties": {"name": "Cell 19-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.69768342208862], [-73.79347846221924, 40.69768342208862], [-73.79347846221924, 40.70650140190124], [-73.80509649658202, 40.70650140190124]]], "type": "Polygon"}, "properties": {"name": "Cell 19-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.70650140190124], [-73.79347846221924, 40.70650140190124], [-73.79347846221924, 40.71531938171387], [-73.80509649658202, 40.71531938171387]]], "type": "Polygon"}, "properties": {"name": "Cell 19-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.71531938171387], [-73.79347846221924, 40.71531938171387], [-73.79347846221924, 40.72413736152649], [-73.80509649658202, 40.72413736152649]]], "type": "Polygon"}, "properties": {"name": "Cell 19-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.72413736152649], [-73.79347846221924, 40.72413736152649], [-73.79347846221924, 40.73295534133911], [-73.80509649658202, 40.73295534133911]]], "type": "Polygon"}, "properties": {"name": "Cell 19-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.73295534133911], [-73.79347846221924, 40.73295534133911], [-73.79347846221924, 40.74177332115173], [-73.80509649658202, 40.74177332115173]]], "type": "Polygon"}, "properties": {"name": "Cell 19-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.74177332115173], [-73.79347846221924, 40.74177332115173], [-73.79347846221924, 40.75059130096435], [-73.80509649658202, 40.75059130096435]]], "type": "Polygon"}, "properties": {"name": "Cell 19-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.75059130096435], [-73.79347846221924, 40.75059130096435], [-73.79347846221924, 40.75940928077698], [-73.80509649658202, 40.75940928077698]]], "type": "Polygon"}, "properties": {"name": "Cell 19-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.75940928077698], [-73.79347846221924, 40.75940928077698], [-73.79347846221924, 40.7682272605896], [-73.80509649658202, 40.7682272605896]]], "type": "Polygon"}, "properties": {"name": "Cell 19-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.7682272605896], [-73.79347846221924, 40.7682272605896], [-73.79347846221924, 40.777045240402224], [-73.80509649658202, 40.777045240402224]]], "type": "Polygon"}, "properties": {"name": "Cell 19-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.777045240402224], [-73.79347846221924, 40.777045240402224], [-73.79347846221924, 40.78586322021484], [-73.80509649658202, 40.78586322021484]]], "type": "Polygon"}, "properties": {"name": "Cell 19-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.78586322021484], [-73.79347846221924, 40.78586322021484], [-73.79347846221924, 40.79468120002747], [-73.80509649658202, 40.79468120002747]]], "type": "Polygon"}, "properties": {"name": "Cell 19-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.79468120002747], [-73.79347846221924, 40.79468120002747], [-73.79347846221924, 40.80349917984009], [-73.80509649658202, 40.80349917984009]]], "type": "Polygon"}, "properties": {"name": "Cell 19-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.80349917984009], [-73.79347846221924, 40.80349917984009], [-73.79347846221924, 40.812317159652714], [-73.80509649658202, 40.812317159652714]]], "type": "Polygon"}, "properties": {"name": "Cell 19-19"}, "type": "Feature"}], "type": "FeatureCollection"});\n", | |
"\n", | |
" \n", | |
"</script>\n", | |
"</html>\" 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=\"<!DOCTYPE html>\n", | |
"<html>\n", | |
"<head>\n", | |
" \n", | |
" <meta http-equiv="content-type" content="text/html; charset=UTF-8" />\n", | |
" \n", | |
" <script>\n", | |
" L_NO_TOUCH = false;\n", | |
" L_DISABLE_3D = false;\n", | |
" </script>\n", | |
" \n", | |
" <style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>\n", | |
" <style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>\n", | |
" <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>\n", | |
" <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>\n", | |
" <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>\n", | |
" <script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>\n", | |
" <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"/>\n", | |
" <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"/>\n", | |
" <link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"/>\n", | |
" <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css"/>\n", | |
" <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>\n", | |
" <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>\n", | |
" \n", | |
" <meta name="viewport" content="width=device-width,\n", | |
" initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />\n", | |
" <style>\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", | |
" </style>\n", | |
" \n", | |
" <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>\n", | |
"</head>\n", | |
"<body>\n", | |
" \n", | |
" \n", | |
" <div class="folium-map" id="map_911c8777c3877dcc87505e36b0927a39" ></div>\n", | |
" \n", | |
"</body>\n", | |
"<script>\n", | |
" \n", | |
" \n", | |
" var map_911c8777c3877dcc87505e36b0927a39 = L.map(\n", | |
" "map_911c8777c3877dcc87505e36b0927a39",\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", | |
" "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",\n", | |
" {"attribution": "Data by \\u0026copy; \\u003ca target=\\"_blank\\" href=\\"http://openstreetmap.org\\"\\u003eOpenStreetMap\\u003c/a\\u003e, under \\u003ca target=\\"_blank\\" href=\\"http://www.openstreetmap.org/copyright\\"\\u003eODbL\\u003c/a\\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}\n", | |
" ).addTo(map_911c8777c3877dcc87505e36b0927a39);\n", | |
" \n", | |
" \n", | |
" function geo_json_7605e56e121ea24c72c015746e2f282e_styler(feature) {\n", | |
" switch(feature.properties.name) {\n", | |
" case "Cell 0-0": case "Cell 0-4": case "Cell 2-5": case "Cell 3-3": case "Cell 5-5": case "Cell 6-9": case "Cell 7-6": case "Cell 8-4": case "Cell 10-14": case "Cell 11-6": case "Cell 11-10": case "Cell 11-11": case "Cell 11-13": case "Cell 12-6": case "Cell 12-13": case "Cell 13-12": \n", | |
" return {"color": "black", "fillColor": "#fffe00ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 4-2": case "Cell 4-6": case "Cell 5-7": case "Cell 6-4": case "Cell 6-8": case "Cell 7-2": case "Cell 8-8": case "Cell 12-7": case "Cell 12-10": case "Cell 13-6": \n", | |
" return {"color": "black", "fillColor": "#fffd00ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 4-3": case "Cell 5-3": case "Cell 5-4": case "Cell 12-12": case "Cell 13-8": case "Cell 15-8": \n", | |
" return {"color": "black", "fillColor": "#fff900ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 4-4": case "Cell 6-3": case "Cell 7-0": case "Cell 15-9": case "Cell 17-7": \n", | |
" return {"color": "black", "fillColor": "#fff600ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 4-5": case "Cell 5-2": case "Cell 5-6": case "Cell 6-5": case "Cell 7-3": case "Cell 7-7": case "Cell 9-7": case "Cell 12-8": case "Cell 12-11": case "Cell 14-1": case "Cell 14-7": \n", | |
" return {"color": "black", "fillColor": "#fffc00ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 6-2": case "Cell 8-3": case "Cell 13-1": case "Cell 14-9": \n", | |
" return {"color": "black", "fillColor": "#fff800ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 6-6": case "Cell 8-7": case "Cell 9-0": case "Cell 9-4": case "Cell 9-6": case "Cell 13-7": case "Cell 13-9": case "Cell 15-12": \n", | |
" return {"color": "black", "fillColor": "#fffb00ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 7-1": \n", | |
" return {"color": "black", "fillColor": "#ffda00ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 7-8": case "Cell 10-6": case "Cell 19-7": \n", | |
" return {"color": "black", "fillColor": "#fffa00ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 8-0": \n", | |
" return {"color": "black", "fillColor": "#ffe100ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 8-1": \n", | |
" return {"color": "black", "fillColor": "#ffad00ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 8-2": case "Cell 18-7": \n", | |
" return {"color": "black", "fillColor": "#fff100ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 8-5": \n", | |
" return {"color": "black", "fillColor": "#ffed00ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 8-6": case "Cell 9-5": case "Cell 14-8": \n", | |
" return {"color": "black", "fillColor": "#fff200ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 9-1": \n", | |
" return {"color": "black", "fillColor": "#ffc300ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 9-2": \n", | |
" return {"color": "black", "fillColor": "#ff9700ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 9-3": \n", | |
" return {"color": "black", "fillColor": "#ff8f00ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 10-1": \n", | |
" return {"color": "black", "fillColor": "#ffd400ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 10-2": \n", | |
" return {"color": "black", "fillColor": "#ff6000ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 10-3": \n", | |
" return {"color": "black", "fillColor": "#ff4400ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 10-4": case "Cell 15-14": \n", | |
" return {"color": "black", "fillColor": "#ffef00ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 11-1": \n", | |
" return {"color": "black", "fillColor": "#ff9e00ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 11-2": \n", | |
" return {"color": "black", "fillColor": "#ff6b00ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 11-3": \n", | |
" return {"color": "black", "fillColor": "#ff3d00ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 11-4": \n", | |
" return {"color": "black", "fillColor": "#ffe000ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 12-1": \n", | |
" return {"color": "black", "fillColor": "#ffc900ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 12-2": \n", | |
" return {"color": "black", "fillColor": "#ff1d00ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 12-3": \n", | |
" return {"color": "black", "fillColor": "#ff0500ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 12-4": \n", | |
" return {"color": "black", "fillColor": "#ff8b00ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 12-9": \n", | |
" return {"color": "black", "fillColor": "#fff700ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 13-2": \n", | |
" return {"color": "black", "fillColor": "#ff7d00ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 13-3": \n", | |
" return {"color": "black", "fillColor": "#ff1a00ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 13-4": \n", | |
" return {"color": "black", "fillColor": "#ff0000ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 13-5": \n", | |
" return {"color": "black", "fillColor": "#ffc000ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 14-2": \n", | |
" return {"color": "black", "fillColor": "#ffaa00ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 14-3": \n", | |
" return {"color": "black", "fillColor": "#ff3200ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 14-4": \n", | |
" return {"color": "black", "fillColor": "#ff4800ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 14-5": \n", | |
" return {"color": "black", "fillColor": "#ff8000ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 14-6": case "Cell 15-4": \n", | |
" return {"color": "black", "fillColor": "#ffea00ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 15-2": \n", | |
" return {"color": "black", "fillColor": "#fff400ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 15-3": \n", | |
" return {"color": "black", "fillColor": "#ff8100ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 15-5": \n", | |
" return {"color": "black", "fillColor": "#ff7400ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 15-6": \n", | |
" return {"color": "black", "fillColor": "#ff8300ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 15-13": \n", | |
" return {"color": "black", "fillColor": "#ffb600ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 16-3": \n", | |
" return {"color": "black", "fillColor": "#ffb500ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 16-4": \n", | |
" return {"color": "black", "fillColor": "#ffb200ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 16-5": \n", | |
" return {"color": "black", "fillColor": "#ffd500ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 16-6": \n", | |
" return {"color": "black", "fillColor": "#ff7000ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 17-4": \n", | |
" return {"color": "black", "fillColor": "#ff9900ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 17-5": \n", | |
" return {"color": "black", "fillColor": "#ffeb00ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 17-6": \n", | |
" return {"color": "black", "fillColor": "#ffe400ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 18-4": \n", | |
" return {"color": "black", "fillColor": "#ffd700ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 18-5": \n", | |
" return {"color": "black", "fillColor": "#ffe700ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 18-6": \n", | |
" return {"color": "black", "fillColor": "#fff500ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 19-5": \n", | |
" return {"color": "black", "fillColor": "#fff000ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" case "Cell 19-6": \n", | |
" return {"color": "black", "fillColor": "#fff300ff", "fillOpacity": 0.4, "weight": 1};\n", | |
" default:\n", | |
" return {"color": "black", "fillColor": "#ffff00ff", "fillOpacity": 0.4, "weight": 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({"features": [{"geometry": {"coordinates": [[[-73.79347846221924, 40.812317159652714], [-74.0142211151123, 40.812317159652714], [-74.0142211151123, 40.64477554321289], [-73.79347846221924, 40.64477554321289]]], "type": "Polygon"}, "properties": {"count": 4, "name": "Cell 0-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.64477554321289], [-74.0142211151123, 40.64477554321289], [-74.0142211151123, 40.653593523025506], [-73.79347846221924, 40.653593523025506]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 0-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.653593523025506], [-74.0142211151123, 40.653593523025506], [-74.0142211151123, 40.66241150283813], [-73.79347846221924, 40.66241150283813]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 0-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.66241150283813], [-74.0142211151123, 40.66241150283813], [-74.0142211151123, 40.67122948265075], [-73.79347846221924, 40.67122948265075]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 0-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.67122948265075], [-74.0142211151123, 40.67122948265075], [-74.0142211151123, 40.68004746246338], [-73.79347846221924, 40.68004746246338]]], "type": "Polygon"}, "properties": {"count": 4, "name": "Cell 0-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.68004746246338], [-74.0142211151123, 40.68004746246338], [-74.0142211151123, 40.688865442276], [-73.79347846221924, 40.688865442276]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 0-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.688865442276], [-74.0142211151123, 40.688865442276], [-74.0142211151123, 40.69768342208862], [-73.79347846221924, 40.69768342208862]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 0-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.69768342208862], [-74.0142211151123, 40.69768342208862], [-74.0142211151123, 40.70650140190124], [-73.79347846221924, 40.70650140190124]]], "type": "Polygon"}, "properties": {"count": 2, "name": "Cell 0-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.70650140190124], [-74.0142211151123, 40.70650140190124], [-74.0142211151123, 40.71531938171387], [-73.79347846221924, 40.71531938171387]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 0-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.71531938171387], [-74.0142211151123, 40.71531938171387], [-74.0142211151123, 40.72413736152649], [-73.79347846221924, 40.72413736152649]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 0-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.72413736152649], [-74.0142211151123, 40.72413736152649], [-74.0142211151123, 40.73295534133911], [-73.79347846221924, 40.73295534133911]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 0-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.73295534133911], [-74.0142211151123, 40.73295534133911], [-74.0142211151123, 40.74177332115173], [-73.79347846221924, 40.74177332115173]]], "type": "Polygon"}, "properties": {"count": 2, "name": "Cell 0-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.74177332115173], [-74.0142211151123, 40.74177332115173], [-74.0142211151123, 40.75059130096435], [-73.79347846221924, 40.75059130096435]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 0-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.75059130096435], [-74.0142211151123, 40.75059130096435], [-74.0142211151123, 40.75940928077698], [-73.79347846221924, 40.75940928077698]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 0-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.75940928077698], [-74.0142211151123, 40.75940928077698], [-74.0142211151123, 40.7682272605896], [-73.79347846221924, 40.7682272605896]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 0-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.7682272605896], [-74.0142211151123, 40.7682272605896], [-74.0142211151123, 40.777045240402224], [-73.79347846221924, 40.777045240402224]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 0-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.777045240402224], [-74.0142211151123, 40.777045240402224], [-74.0142211151123, 40.78586322021484], [-73.79347846221924, 40.78586322021484]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 0-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.78586322021484], [-74.0142211151123, 40.78586322021484], [-74.0142211151123, 40.79468120002747], [-73.79347846221924, 40.79468120002747]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 0-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.79468120002747], [-74.0142211151123, 40.79468120002747], [-74.0142211151123, 40.80349917984009], [-73.79347846221924, 40.80349917984009]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 0-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79347846221924, 40.80349917984009], [-74.0142211151123, 40.80349917984009], [-74.0142211151123, 40.812317159652714], [-73.79347846221924, 40.812317159652714]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 0-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.812317159652714], [-74.00260308074951, 40.812317159652714], [-74.00260308074951, 40.64477554321289], [-74.0142211151123, 40.64477554321289]]], "type": "Polygon"}, "properties": {"count": 2, "name": "Cell 1-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.64477554321289], [-74.00260308074951, 40.64477554321289], [-74.00260308074951, 40.653593523025506], [-74.0142211151123, 40.653593523025506]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 1-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.653593523025506], [-74.00260308074951, 40.653593523025506], [-74.00260308074951, 40.66241150283813], [-74.0142211151123, 40.66241150283813]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 1-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.66241150283813], [-74.00260308074951, 40.66241150283813], [-74.00260308074951, 40.67122948265075], [-74.0142211151123, 40.67122948265075]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 1-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.67122948265075], [-74.00260308074951, 40.67122948265075], [-74.00260308074951, 40.68004746246338], [-74.0142211151123, 40.68004746246338]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 1-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.68004746246338], [-74.00260308074951, 40.68004746246338], [-74.00260308074951, 40.688865442276], [-74.0142211151123, 40.688865442276]]], "type": "Polygon"}, "properties": {"count": 2, "name": "Cell 1-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.688865442276], [-74.00260308074951, 40.688865442276], [-74.00260308074951, 40.69768342208862], [-74.0142211151123, 40.69768342208862]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 1-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.69768342208862], [-74.00260308074951, 40.69768342208862], [-74.00260308074951, 40.70650140190124], [-74.0142211151123, 40.70650140190124]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 1-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.70650140190124], [-74.00260308074951, 40.70650140190124], [-74.00260308074951, 40.71531938171387], [-74.0142211151123, 40.71531938171387]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 1-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.71531938171387], [-74.00260308074951, 40.71531938171387], [-74.00260308074951, 40.72413736152649], [-74.0142211151123, 40.72413736152649]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 1-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.72413736152649], [-74.00260308074951, 40.72413736152649], [-74.00260308074951, 40.73295534133911], [-74.0142211151123, 40.73295534133911]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 1-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.73295534133911], [-74.00260308074951, 40.73295534133911], [-74.00260308074951, 40.74177332115173], [-74.0142211151123, 40.74177332115173]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 1-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.74177332115173], [-74.00260308074951, 40.74177332115173], [-74.00260308074951, 40.75059130096435], [-74.0142211151123, 40.75059130096435]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 1-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.75059130096435], [-74.00260308074951, 40.75059130096435], [-74.00260308074951, 40.75940928077698], [-74.0142211151123, 40.75940928077698]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 1-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.75940928077698], [-74.00260308074951, 40.75940928077698], [-74.00260308074951, 40.7682272605896], [-74.0142211151123, 40.7682272605896]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 1-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.7682272605896], [-74.00260308074951, 40.7682272605896], [-74.00260308074951, 40.777045240402224], [-74.0142211151123, 40.777045240402224]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 1-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.777045240402224], [-74.00260308074951, 40.777045240402224], [-74.00260308074951, 40.78586322021484], [-74.0142211151123, 40.78586322021484]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 1-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.78586322021484], [-74.00260308074951, 40.78586322021484], [-74.00260308074951, 40.79468120002747], [-74.0142211151123, 40.79468120002747]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 1-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.79468120002747], [-74.00260308074951, 40.79468120002747], [-74.00260308074951, 40.80349917984009], [-74.0142211151123, 40.80349917984009]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 1-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0142211151123, 40.80349917984009], [-74.00260308074951, 40.80349917984009], [-74.00260308074951, 40.812317159652714], [-74.0142211151123, 40.812317159652714]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 1-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.812317159652714], [-73.99098504638673, 40.812317159652714], [-73.99098504638673, 40.64477554321289], [-74.00260308074951, 40.64477554321289]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 2-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.64477554321289], [-73.99098504638673, 40.64477554321289], [-73.99098504638673, 40.653593523025506], [-74.00260308074951, 40.653593523025506]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 2-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.653593523025506], [-73.99098504638673, 40.653593523025506], [-73.99098504638673, 40.66241150283813], [-74.00260308074951, 40.66241150283813]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 2-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.66241150283813], [-73.99098504638673, 40.66241150283813], [-73.99098504638673, 40.67122948265075], [-74.00260308074951, 40.67122948265075]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 2-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.67122948265075], [-73.99098504638673, 40.67122948265075], [-73.99098504638673, 40.68004746246338], [-74.00260308074951, 40.68004746246338]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 2-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.68004746246338], [-73.99098504638673, 40.68004746246338], [-73.99098504638673, 40.688865442276], [-74.00260308074951, 40.688865442276]]], "type": "Polygon"}, "properties": {"count": 3, "name": "Cell 2-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.688865442276], [-73.99098504638673, 40.688865442276], [-73.99098504638673, 40.69768342208862], [-74.00260308074951, 40.69768342208862]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 2-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.69768342208862], [-73.99098504638673, 40.69768342208862], [-73.99098504638673, 40.70650140190124], [-74.00260308074951, 40.70650140190124]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 2-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.70650140190124], [-73.99098504638673, 40.70650140190124], [-73.99098504638673, 40.71531938171387], [-74.00260308074951, 40.71531938171387]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 2-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.71531938171387], [-73.99098504638673, 40.71531938171387], [-73.99098504638673, 40.72413736152649], [-74.00260308074951, 40.72413736152649]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 2-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.72413736152649], [-73.99098504638673, 40.72413736152649], [-73.99098504638673, 40.73295534133911], [-74.00260308074951, 40.73295534133911]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 2-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.73295534133911], [-73.99098504638673, 40.73295534133911], [-73.99098504638673, 40.74177332115173], [-74.00260308074951, 40.74177332115173]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 2-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.74177332115173], [-73.99098504638673, 40.74177332115173], [-73.99098504638673, 40.75059130096435], [-74.00260308074951, 40.75059130096435]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 2-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.75059130096435], [-73.99098504638673, 40.75059130096435], [-73.99098504638673, 40.75940928077698], [-74.00260308074951, 40.75940928077698]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 2-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.75940928077698], [-73.99098504638673, 40.75940928077698], [-73.99098504638673, 40.7682272605896], [-74.00260308074951, 40.7682272605896]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 2-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.7682272605896], [-73.99098504638673, 40.7682272605896], [-73.99098504638673, 40.777045240402224], [-74.00260308074951, 40.777045240402224]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 2-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.777045240402224], [-73.99098504638673, 40.777045240402224], [-73.99098504638673, 40.78586322021484], [-74.00260308074951, 40.78586322021484]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 2-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.78586322021484], [-73.99098504638673, 40.78586322021484], [-73.99098504638673, 40.79468120002747], [-74.00260308074951, 40.79468120002747]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 2-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.79468120002747], [-73.99098504638673, 40.79468120002747], [-73.99098504638673, 40.80349917984009], [-74.00260308074951, 40.80349917984009]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 2-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00260308074951, 40.80349917984009], [-73.99098504638673, 40.80349917984009], [-73.99098504638673, 40.812317159652714], [-74.00260308074951, 40.812317159652714]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 2-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.812317159652714], [-73.97936701202393, 40.812317159652714], [-73.97936701202393, 40.64477554321289], [-73.99098504638673, 40.64477554321289]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 3-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.64477554321289], [-73.97936701202393, 40.64477554321289], [-73.97936701202393, 40.653593523025506], [-73.99098504638673, 40.653593523025506]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 3-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.653593523025506], [-73.97936701202393, 40.653593523025506], [-73.97936701202393, 40.66241150283813], [-73.99098504638673, 40.66241150283813]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 3-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.66241150283813], [-73.97936701202393, 40.66241150283813], [-73.97936701202393, 40.67122948265075], [-73.99098504638673, 40.67122948265075]]], "type": "Polygon"}, "properties": {"count": 4, "name": "Cell 3-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.67122948265075], [-73.97936701202393, 40.67122948265075], [-73.97936701202393, 40.68004746246338], [-73.99098504638673, 40.68004746246338]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 3-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.68004746246338], [-73.97936701202393, 40.68004746246338], [-73.97936701202393, 40.688865442276], [-73.99098504638673, 40.688865442276]]], "type": "Polygon"}, "properties": {"count": 2, "name": "Cell 3-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.688865442276], [-73.97936701202393, 40.688865442276], [-73.97936701202393, 40.69768342208862], [-73.99098504638673, 40.69768342208862]]], "type": "Polygon"}, "properties": {"count": 2, "name": "Cell 3-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.69768342208862], [-73.97936701202393, 40.69768342208862], [-73.97936701202393, 40.70650140190124], [-73.99098504638673, 40.70650140190124]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 3-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.70650140190124], [-73.97936701202393, 40.70650140190124], [-73.97936701202393, 40.71531938171387], [-73.99098504638673, 40.71531938171387]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 3-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.71531938171387], [-73.97936701202393, 40.71531938171387], [-73.97936701202393, 40.72413736152649], [-73.99098504638673, 40.72413736152649]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 3-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.72413736152649], [-73.97936701202393, 40.72413736152649], [-73.97936701202393, 40.73295534133911], [-73.99098504638673, 40.73295534133911]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 3-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.73295534133911], [-73.97936701202393, 40.73295534133911], [-73.97936701202393, 40.74177332115173], [-73.99098504638673, 40.74177332115173]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 3-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.74177332115173], [-73.97936701202393, 40.74177332115173], [-73.97936701202393, 40.75059130096435], [-73.99098504638673, 40.75059130096435]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 3-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.75059130096435], [-73.97936701202393, 40.75059130096435], [-73.97936701202393, 40.75940928077698], [-73.99098504638673, 40.75940928077698]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 3-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.75940928077698], [-73.97936701202393, 40.75940928077698], [-73.97936701202393, 40.7682272605896], [-73.99098504638673, 40.7682272605896]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 3-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.7682272605896], [-73.97936701202393, 40.7682272605896], [-73.97936701202393, 40.777045240402224], [-73.99098504638673, 40.777045240402224]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 3-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.777045240402224], [-73.97936701202393, 40.777045240402224], [-73.97936701202393, 40.78586322021484], [-73.99098504638673, 40.78586322021484]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 3-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.78586322021484], [-73.97936701202393, 40.78586322021484], [-73.97936701202393, 40.79468120002747], [-73.99098504638673, 40.79468120002747]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 3-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.79468120002747], [-73.97936701202393, 40.79468120002747], [-73.97936701202393, 40.80349917984009], [-73.99098504638673, 40.80349917984009]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 3-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99098504638673, 40.80349917984009], [-73.97936701202393, 40.80349917984009], [-73.97936701202393, 40.812317159652714], [-73.99098504638673, 40.812317159652714]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 3-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.812317159652714], [-73.96774897766113, 40.812317159652714], [-73.96774897766113, 40.64477554321289], [-73.97936701202393, 40.64477554321289]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 4-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.64477554321289], [-73.96774897766113, 40.64477554321289], [-73.96774897766113, 40.653593523025506], [-73.97936701202393, 40.653593523025506]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 4-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.653593523025506], [-73.96774897766113, 40.653593523025506], [-73.96774897766113, 40.66241150283813], [-73.97936701202393, 40.66241150283813]]], "type": "Polygon"}, "properties": {"count": 5, "name": "Cell 4-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.66241150283813], [-73.96774897766113, 40.66241150283813], [-73.96774897766113, 40.67122948265075], [-73.97936701202393, 40.67122948265075]]], "type": "Polygon"}, "properties": {"count": 14, "name": "Cell 4-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.67122948265075], [-73.96774897766113, 40.67122948265075], [-73.96774897766113, 40.68004746246338], [-73.97936701202393, 40.68004746246338]]], "type": "Polygon"}, "properties": {"count": 19, "name": "Cell 4-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.68004746246338], [-73.96774897766113, 40.68004746246338], [-73.96774897766113, 40.688865442276], [-73.97936701202393, 40.688865442276]]], "type": "Polygon"}, "properties": {"count": 7, "name": "Cell 4-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.688865442276], [-73.96774897766113, 40.688865442276], [-73.96774897766113, 40.69768342208862], [-73.97936701202393, 40.69768342208862]]], "type": "Polygon"}, "properties": {"count": 5, "name": "Cell 4-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.69768342208862], [-73.96774897766113, 40.69768342208862], [-73.96774897766113, 40.70650140190124], [-73.97936701202393, 40.70650140190124]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 4-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.70650140190124], [-73.96774897766113, 40.70650140190124], [-73.96774897766113, 40.71531938171387], [-73.97936701202393, 40.71531938171387]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 4-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.71531938171387], [-73.96774897766113, 40.71531938171387], [-73.96774897766113, 40.72413736152649], [-73.97936701202393, 40.72413736152649]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 4-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.72413736152649], [-73.96774897766113, 40.72413736152649], [-73.96774897766113, 40.73295534133911], [-73.97936701202393, 40.73295534133911]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 4-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.73295534133911], [-73.96774897766113, 40.73295534133911], [-73.96774897766113, 40.74177332115173], [-73.97936701202393, 40.74177332115173]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 4-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.74177332115173], [-73.96774897766113, 40.74177332115173], [-73.96774897766113, 40.75059130096435], [-73.97936701202393, 40.75059130096435]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 4-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.75059130096435], [-73.96774897766113, 40.75059130096435], [-73.96774897766113, 40.75940928077698], [-73.97936701202393, 40.75940928077698]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 4-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.75940928077698], [-73.96774897766113, 40.75940928077698], [-73.96774897766113, 40.7682272605896], [-73.97936701202393, 40.7682272605896]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 4-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.7682272605896], [-73.96774897766113, 40.7682272605896], [-73.96774897766113, 40.777045240402224], [-73.97936701202393, 40.777045240402224]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 4-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.777045240402224], [-73.96774897766113, 40.777045240402224], [-73.96774897766113, 40.78586322021484], [-73.97936701202393, 40.78586322021484]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 4-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.78586322021484], [-73.96774897766113, 40.78586322021484], [-73.96774897766113, 40.79468120002747], [-73.97936701202393, 40.79468120002747]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 4-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.79468120002747], [-73.96774897766113, 40.79468120002747], [-73.96774897766113, 40.80349917984009], [-73.97936701202393, 40.80349917984009]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 4-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97936701202393, 40.80349917984009], [-73.96774897766113, 40.80349917984009], [-73.96774897766113, 40.812317159652714], [-73.97936701202393, 40.812317159652714]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 4-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.812317159652714], [-73.95613094329835, 40.812317159652714], [-73.95613094329835, 40.64477554321289], [-73.96774897766113, 40.64477554321289]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 5-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.64477554321289], [-73.95613094329835, 40.64477554321289], [-73.95613094329835, 40.653593523025506], [-73.96774897766113, 40.653593523025506]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 5-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.653593523025506], [-73.95613094329835, 40.653593523025506], [-73.95613094329835, 40.66241150283813], [-73.96774897766113, 40.66241150283813]]], "type": "Polygon"}, "properties": {"count": 7, "name": "Cell 5-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.66241150283813], [-73.95613094329835, 40.66241150283813], [-73.95613094329835, 40.67122948265075], [-73.96774897766113, 40.67122948265075]]], "type": "Polygon"}, "properties": {"count": 14, "name": "Cell 5-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.67122948265075], [-73.95613094329835, 40.67122948265075], [-73.95613094329835, 40.68004746246338], [-73.96774897766113, 40.68004746246338]]], "type": "Polygon"}, "properties": {"count": 14, "name": "Cell 5-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.68004746246338], [-73.95613094329835, 40.68004746246338], [-73.95613094329835, 40.688865442276], [-73.96774897766113, 40.688865442276]]], "type": "Polygon"}, "properties": {"count": 4, "name": "Cell 5-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.688865442276], [-73.95613094329835, 40.688865442276], [-73.95613094329835, 40.69768342208862], [-73.96774897766113, 40.69768342208862]]], "type": "Polygon"}, "properties": {"count": 7, "name": "Cell 5-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.69768342208862], [-73.95613094329835, 40.69768342208862], [-73.95613094329835, 40.70650140190124], [-73.96774897766113, 40.70650140190124]]], "type": "Polygon"}, "properties": {"count": 5, "name": "Cell 5-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.70650140190124], [-73.95613094329835, 40.70650140190124], [-73.95613094329835, 40.71531938171387], [-73.96774897766113, 40.71531938171387]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 5-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.71531938171387], [-73.95613094329835, 40.71531938171387], [-73.95613094329835, 40.72413736152649], [-73.96774897766113, 40.72413736152649]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 5-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.72413736152649], [-73.95613094329835, 40.72413736152649], [-73.95613094329835, 40.73295534133911], [-73.96774897766113, 40.73295534133911]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 5-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.73295534133911], [-73.95613094329835, 40.73295534133911], [-73.95613094329835, 40.74177332115173], [-73.96774897766113, 40.74177332115173]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 5-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.74177332115173], [-73.95613094329835, 40.74177332115173], [-73.95613094329835, 40.75059130096435], [-73.96774897766113, 40.75059130096435]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 5-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.75059130096435], [-73.95613094329835, 40.75059130096435], [-73.95613094329835, 40.75940928077698], [-73.96774897766113, 40.75940928077698]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 5-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.75940928077698], [-73.95613094329835, 40.75940928077698], [-73.95613094329835, 40.7682272605896], [-73.96774897766113, 40.7682272605896]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 5-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.7682272605896], [-73.95613094329835, 40.7682272605896], [-73.95613094329835, 40.777045240402224], [-73.96774897766113, 40.777045240402224]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 5-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.777045240402224], [-73.95613094329835, 40.777045240402224], [-73.95613094329835, 40.78586322021484], [-73.96774897766113, 40.78586322021484]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 5-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.78586322021484], [-73.95613094329835, 40.78586322021484], [-73.95613094329835, 40.79468120002747], [-73.96774897766113, 40.79468120002747]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 5-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.79468120002747], [-73.95613094329835, 40.79468120002747], [-73.95613094329835, 40.80349917984009], [-73.96774897766113, 40.80349917984009]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 5-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96774897766113, 40.80349917984009], [-73.95613094329835, 40.80349917984009], [-73.95613094329835, 40.812317159652714], [-73.96774897766113, 40.812317159652714]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 5-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.812317159652714], [-73.94451290893555, 40.812317159652714], [-73.94451290893555, 40.64477554321289], [-73.95613094329835, 40.64477554321289]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 6-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.64477554321289], [-73.94451290893555, 40.64477554321289], [-73.94451290893555, 40.653593523025506], [-73.95613094329835, 40.653593523025506]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 6-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.653593523025506], [-73.94451290893555, 40.653593523025506], [-73.94451290893555, 40.66241150283813], [-73.95613094329835, 40.66241150283813]]], "type": "Polygon"}, "properties": {"count": 16, "name": "Cell 6-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.66241150283813], [-73.94451290893555, 40.66241150283813], [-73.94451290893555, 40.67122948265075], [-73.95613094329835, 40.67122948265075]]], "type": "Polygon"}, "properties": {"count": 20, "name": "Cell 6-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.67122948265075], [-73.94451290893555, 40.67122948265075], [-73.94451290893555, 40.68004746246338], [-73.95613094329835, 40.68004746246338]]], "type": "Polygon"}, "properties": {"count": 5, "name": "Cell 6-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.68004746246338], [-73.94451290893555, 40.68004746246338], [-73.94451290893555, 40.688865442276], [-73.95613094329835, 40.688865442276]]], "type": "Polygon"}, "properties": {"count": 8, "name": "Cell 6-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.688865442276], [-73.94451290893555, 40.688865442276], [-73.94451290893555, 40.69768342208862], [-73.95613094329835, 40.69768342208862]]], "type": "Polygon"}, "properties": {"count": 9, "name": "Cell 6-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.69768342208862], [-73.94451290893555, 40.69768342208862], [-73.94451290893555, 40.70650140190124], [-73.95613094329835, 40.70650140190124]]], "type": "Polygon"}, "properties": {"count": 2, "name": "Cell 6-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.70650140190124], [-73.94451290893555, 40.70650140190124], [-73.94451290893555, 40.71531938171387], [-73.95613094329835, 40.71531938171387]]], "type": "Polygon"}, "properties": {"count": 5, "name": "Cell 6-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.71531938171387], [-73.94451290893555, 40.71531938171387], [-73.94451290893555, 40.72413736152649], [-73.95613094329835, 40.72413736152649]]], "type": "Polygon"}, "properties": {"count": 3, "name": "Cell 6-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.72413736152649], [-73.94451290893555, 40.72413736152649], [-73.94451290893555, 40.73295534133911], [-73.95613094329835, 40.73295534133911]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 6-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.73295534133911], [-73.94451290893555, 40.73295534133911], [-73.94451290893555, 40.74177332115173], [-73.95613094329835, 40.74177332115173]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 6-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.74177332115173], [-73.94451290893555, 40.74177332115173], [-73.94451290893555, 40.75059130096435], [-73.95613094329835, 40.75059130096435]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 6-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.75059130096435], [-73.94451290893555, 40.75059130096435], [-73.94451290893555, 40.75940928077698], [-73.95613094329835, 40.75940928077698]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 6-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.75940928077698], [-73.94451290893555, 40.75940928077698], [-73.94451290893555, 40.7682272605896], [-73.95613094329835, 40.7682272605896]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 6-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.7682272605896], [-73.94451290893555, 40.7682272605896], [-73.94451290893555, 40.777045240402224], [-73.95613094329835, 40.777045240402224]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 6-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.777045240402224], [-73.94451290893555, 40.777045240402224], [-73.94451290893555, 40.78586322021484], [-73.95613094329835, 40.78586322021484]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 6-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.78586322021484], [-73.94451290893555, 40.78586322021484], [-73.94451290893555, 40.79468120002747], [-73.95613094329835, 40.79468120002747]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 6-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.79468120002747], [-73.94451290893555, 40.79468120002747], [-73.94451290893555, 40.80349917984009], [-73.95613094329835, 40.80349917984009]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 6-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95613094329835, 40.80349917984009], [-73.94451290893555, 40.80349917984009], [-73.94451290893555, 40.812317159652714], [-73.95613094329835, 40.812317159652714]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 6-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.812317159652714], [-73.93289487457275, 40.812317159652714], [-73.93289487457275, 40.64477554321289], [-73.94451290893555, 40.64477554321289]]], "type": "Polygon"}, "properties": {"count": 19, "name": "Cell 7-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.64477554321289], [-73.93289487457275, 40.64477554321289], [-73.93289487457275, 40.653593523025506], [-73.94451290893555, 40.653593523025506]]], "type": "Polygon"}, "properties": {"count": 75, "name": "Cell 7-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.653593523025506], [-73.93289487457275, 40.653593523025506], [-73.93289487457275, 40.66241150283813], [-73.94451290893555, 40.66241150283813]]], "type": "Polygon"}, "properties": {"count": 6, "name": "Cell 7-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.66241150283813], [-73.93289487457275, 40.66241150283813], [-73.93289487457275, 40.67122948265075], [-73.94451290893555, 40.67122948265075]]], "type": "Polygon"}, "properties": {"count": 8, "name": "Cell 7-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.67122948265075], [-73.93289487457275, 40.67122948265075], [-73.93289487457275, 40.68004746246338], [-73.94451290893555, 40.68004746246338]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 7-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.68004746246338], [-73.93289487457275, 40.68004746246338], [-73.93289487457275, 40.688865442276], [-73.94451290893555, 40.688865442276]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 7-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.688865442276], [-73.93289487457275, 40.688865442276], [-73.93289487457275, 40.69768342208862], [-73.94451290893555, 40.69768342208862]]], "type": "Polygon"}, "properties": {"count": 4, "name": "Cell 7-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.69768342208862], [-73.93289487457275, 40.69768342208862], [-73.93289487457275, 40.70650140190124], [-73.94451290893555, 40.70650140190124]]], "type": "Polygon"}, "properties": {"count": 8, "name": "Cell 7-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.70650140190124], [-73.93289487457275, 40.70650140190124], [-73.93289487457275, 40.71531938171387], [-73.94451290893555, 40.71531938171387]]], "type": "Polygon"}, "properties": {"count": 11, "name": "Cell 7-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.71531938171387], [-73.93289487457275, 40.71531938171387], [-73.93289487457275, 40.72413736152649], [-73.94451290893555, 40.72413736152649]]], "type": "Polygon"}, "properties": {"count": 2, "name": "Cell 7-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.72413736152649], [-73.93289487457275, 40.72413736152649], [-73.93289487457275, 40.73295534133911], [-73.94451290893555, 40.73295534133911]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 7-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.73295534133911], [-73.93289487457275, 40.73295534133911], [-73.93289487457275, 40.74177332115173], [-73.94451290893555, 40.74177332115173]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 7-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.74177332115173], [-73.93289487457275, 40.74177332115173], [-73.93289487457275, 40.75059130096435], [-73.94451290893555, 40.75059130096435]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 7-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.75059130096435], [-73.93289487457275, 40.75059130096435], [-73.93289487457275, 40.75940928077698], [-73.94451290893555, 40.75940928077698]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 7-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.75940928077698], [-73.93289487457275, 40.75940928077698], [-73.93289487457275, 40.7682272605896], [-73.94451290893555, 40.7682272605896]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 7-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.7682272605896], [-73.93289487457275, 40.7682272605896], [-73.93289487457275, 40.777045240402224], [-73.94451290893555, 40.777045240402224]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 7-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.777045240402224], [-73.93289487457275, 40.777045240402224], [-73.93289487457275, 40.78586322021484], [-73.94451290893555, 40.78586322021484]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 7-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.78586322021484], [-73.93289487457275, 40.78586322021484], [-73.93289487457275, 40.79468120002747], [-73.94451290893555, 40.79468120002747]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 7-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.79468120002747], [-73.93289487457275, 40.79468120002747], [-73.93289487457275, 40.80349917984009], [-73.94451290893555, 40.80349917984009]]], "type": "Polygon"}, "properties": {"count": 2, "name": "Cell 7-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94451290893555, 40.80349917984009], [-73.93289487457275, 40.80349917984009], [-73.93289487457275, 40.812317159652714], [-73.94451290893555, 40.812317159652714]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 7-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.812317159652714], [-73.92127684020996, 40.812317159652714], [-73.92127684020996, 40.64477554321289], [-73.93289487457275, 40.64477554321289]]], "type": "Polygon"}, "properties": {"count": 62, "name": "Cell 8-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.64477554321289], [-73.92127684020996, 40.64477554321289], [-73.92127684020996, 40.653593523025506], [-73.93289487457275, 40.653593523025506]]], "type": "Polygon"}, "properties": {"count": 165, "name": "Cell 8-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.653593523025506], [-73.92127684020996, 40.653593523025506], [-73.92127684020996, 40.66241150283813], [-73.93289487457275, 40.66241150283813]]], "type": "Polygon"}, "properties": {"count": 30, "name": "Cell 8-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.66241150283813], [-73.92127684020996, 40.66241150283813], [-73.92127684020996, 40.67122948265075], [-73.93289487457275, 40.67122948265075]]], "type": "Polygon"}, "properties": {"count": 15, "name": "Cell 8-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.67122948265075], [-73.92127684020996, 40.67122948265075], [-73.92127684020996, 40.68004746246338], [-73.93289487457275, 40.68004746246338]]], "type": "Polygon"}, "properties": {"count": 3, "name": "Cell 8-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.68004746246338], [-73.92127684020996, 40.68004746246338], [-73.92127684020996, 40.688865442276], [-73.93289487457275, 40.688865442276]]], "type": "Polygon"}, "properties": {"count": 37, "name": "Cell 8-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.688865442276], [-73.92127684020996, 40.688865442276], [-73.92127684020996, 40.69768342208862], [-73.93289487457275, 40.69768342208862]]], "type": "Polygon"}, "properties": {"count": 28, "name": "Cell 8-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.69768342208862], [-73.92127684020996, 40.69768342208862], [-73.92127684020996, 40.70650140190124], [-73.93289487457275, 40.70650140190124]]], "type": "Polygon"}, "properties": {"count": 9, "name": "Cell 8-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.70650140190124], [-73.92127684020996, 40.70650140190124], [-73.92127684020996, 40.71531938171387], [-73.93289487457275, 40.71531938171387]]], "type": "Polygon"}, "properties": {"count": 6, "name": "Cell 8-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.71531938171387], [-73.92127684020996, 40.71531938171387], [-73.92127684020996, 40.72413736152649], [-73.93289487457275, 40.72413736152649]]], "type": "Polygon"}, "properties": {"count": 2, "name": "Cell 8-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.72413736152649], [-73.92127684020996, 40.72413736152649], [-73.92127684020996, 40.73295534133911], [-73.93289487457275, 40.73295534133911]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 8-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.73295534133911], [-73.92127684020996, 40.73295534133911], [-73.92127684020996, 40.74177332115173], [-73.93289487457275, 40.74177332115173]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 8-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.74177332115173], [-73.92127684020996, 40.74177332115173], [-73.92127684020996, 40.75059130096435], [-73.93289487457275, 40.75059130096435]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 8-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.75059130096435], [-73.92127684020996, 40.75059130096435], [-73.92127684020996, 40.75940928077698], [-73.93289487457275, 40.75940928077698]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 8-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.75940928077698], [-73.92127684020996, 40.75940928077698], [-73.92127684020996, 40.7682272605896], [-73.93289487457275, 40.7682272605896]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 8-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.7682272605896], [-73.92127684020996, 40.7682272605896], [-73.92127684020996, 40.777045240402224], [-73.93289487457275, 40.777045240402224]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 8-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.777045240402224], [-73.92127684020996, 40.777045240402224], [-73.92127684020996, 40.78586322021484], [-73.93289487457275, 40.78586322021484]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 8-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.78586322021484], [-73.92127684020996, 40.78586322021484], [-73.92127684020996, 40.79468120002747], [-73.93289487457275, 40.79468120002747]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 8-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.79468120002747], [-73.92127684020996, 40.79468120002747], [-73.92127684020996, 40.80349917984009], [-73.93289487457275, 40.80349917984009]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 8-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93289487457275, 40.80349917984009], [-73.92127684020996, 40.80349917984009], [-73.92127684020996, 40.812317159652714], [-73.93289487457275, 40.812317159652714]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 8-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.812317159652714], [-73.90965880584717, 40.812317159652714], [-73.90965880584717, 40.64477554321289], [-73.92127684020996, 40.64477554321289]]], "type": "Polygon"}, "properties": {"count": 9, "name": "Cell 9-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.64477554321289], [-73.90965880584717, 40.64477554321289], [-73.90965880584717, 40.653593523025506], [-73.92127684020996, 40.653593523025506]]], "type": "Polygon"}, "properties": {"count": 121, "name": "Cell 9-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.653593523025506], [-73.90965880584717, 40.653593523025506], [-73.90965880584717, 40.66241150283813], [-73.92127684020996, 40.66241150283813]]], "type": "Polygon"}, "properties": {"count": 210, "name": "Cell 9-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.66241150283813], [-73.90965880584717, 40.66241150283813], [-73.90965880584717, 40.67122948265075], [-73.92127684020996, 40.67122948265075]]], "type": "Polygon"}, "properties": {"count": 226, "name": "Cell 9-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.67122948265075], [-73.90965880584717, 40.67122948265075], [-73.90965880584717, 40.68004746246338], [-73.92127684020996, 40.68004746246338]]], "type": "Polygon"}, "properties": {"count": 9, "name": "Cell 9-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.68004746246338], [-73.90965880584717, 40.68004746246338], [-73.90965880584717, 40.688865442276], [-73.92127684020996, 40.688865442276]]], "type": "Polygon"}, "properties": {"count": 28, "name": "Cell 9-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.688865442276], [-73.90965880584717, 40.688865442276], [-73.90965880584717, 40.69768342208862], [-73.92127684020996, 40.69768342208862]]], "type": "Polygon"}, "properties": {"count": 10, "name": "Cell 9-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.69768342208862], [-73.90965880584717, 40.69768342208862], [-73.90965880584717, 40.70650140190124], [-73.92127684020996, 40.70650140190124]]], "type": "Polygon"}, "properties": {"count": 7, "name": "Cell 9-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.70650140190124], [-73.90965880584717, 40.70650140190124], [-73.90965880584717, 40.71531938171387], [-73.92127684020996, 40.71531938171387]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 9-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.71531938171387], [-73.90965880584717, 40.71531938171387], [-73.90965880584717, 40.72413736152649], [-73.92127684020996, 40.72413736152649]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 9-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.72413736152649], [-73.90965880584717, 40.72413736152649], [-73.90965880584717, 40.73295534133911], [-73.92127684020996, 40.73295534133911]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 9-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.73295534133911], [-73.90965880584717, 40.73295534133911], [-73.90965880584717, 40.74177332115173], [-73.92127684020996, 40.74177332115173]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 9-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.74177332115173], [-73.90965880584717, 40.74177332115173], [-73.90965880584717, 40.75059130096435], [-73.92127684020996, 40.75059130096435]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 9-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.75059130096435], [-73.90965880584717, 40.75059130096435], [-73.90965880584717, 40.75940928077698], [-73.92127684020996, 40.75940928077698]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 9-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.75940928077698], [-73.90965880584717, 40.75940928077698], [-73.90965880584717, 40.7682272605896], [-73.92127684020996, 40.7682272605896]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 9-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.7682272605896], [-73.90965880584717, 40.7682272605896], [-73.90965880584717, 40.777045240402224], [-73.92127684020996, 40.777045240402224]]], "type": "Polygon"}, "properties": {"count": 2, "name": "Cell 9-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.777045240402224], [-73.90965880584717, 40.777045240402224], [-73.90965880584717, 40.78586322021484], [-73.92127684020996, 40.78586322021484]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 9-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.78586322021484], [-73.90965880584717, 40.78586322021484], [-73.90965880584717, 40.79468120002747], [-73.92127684020996, 40.79468120002747]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 9-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.79468120002747], [-73.90965880584717, 40.79468120002747], [-73.90965880584717, 40.80349917984009], [-73.92127684020996, 40.80349917984009]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 9-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92127684020996, 40.80349917984009], [-73.90965880584717, 40.80349917984009], [-73.90965880584717, 40.812317159652714], [-73.92127684020996, 40.812317159652714]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 9-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.812317159652714], [-73.89804077148438, 40.812317159652714], [-73.89804077148438, 40.64477554321289], [-73.90965880584717, 40.64477554321289]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 10-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.64477554321289], [-73.89804077148438, 40.64477554321289], [-73.89804077148438, 40.653593523025506], [-73.90965880584717, 40.653593523025506]]], "type": "Polygon"}, "properties": {"count": 87, "name": "Cell 10-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.653593523025506], [-73.89804077148438, 40.653593523025506], [-73.89804077148438, 40.66241150283813], [-73.90965880584717, 40.66241150283813]]], "type": "Polygon"}, "properties": {"count": 321, "name": "Cell 10-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.66241150283813], [-73.89804077148438, 40.66241150283813], [-73.89804077148438, 40.67122948265075], [-73.90965880584717, 40.67122948265075]]], "type": "Polygon"}, "properties": {"count": 378, "name": "Cell 10-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.67122948265075], [-73.89804077148438, 40.67122948265075], [-73.89804077148438, 40.68004746246338], [-73.90965880584717, 40.68004746246338]]], "type": "Polygon"}, "properties": {"count": 33, "name": "Cell 10-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.68004746246338], [-73.89804077148438, 40.68004746246338], [-73.89804077148438, 40.688865442276], [-73.90965880584717, 40.688865442276]]], "type": "Polygon"}, "properties": {"count": 2, "name": "Cell 10-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.688865442276], [-73.89804077148438, 40.688865442276], [-73.89804077148438, 40.69768342208862], [-73.90965880584717, 40.69768342208862]]], "type": "Polygon"}, "properties": {"count": 11, "name": "Cell 10-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.69768342208862], [-73.89804077148438, 40.69768342208862], [-73.89804077148438, 40.70650140190124], [-73.90965880584717, 40.70650140190124]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 10-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.70650140190124], [-73.89804077148438, 40.70650140190124], [-73.89804077148438, 40.71531938171387], [-73.90965880584717, 40.71531938171387]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 10-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.71531938171387], [-73.89804077148438, 40.71531938171387], [-73.89804077148438, 40.72413736152649], [-73.90965880584717, 40.72413736152649]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 10-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.72413736152649], [-73.89804077148438, 40.72413736152649], [-73.89804077148438, 40.73295534133911], [-73.90965880584717, 40.73295534133911]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 10-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.73295534133911], [-73.89804077148438, 40.73295534133911], [-73.89804077148438, 40.74177332115173], [-73.90965880584717, 40.74177332115173]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 10-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.74177332115173], [-73.89804077148438, 40.74177332115173], [-73.89804077148438, 40.75059130096435], [-73.90965880584717, 40.75059130096435]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 10-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.75059130096435], [-73.89804077148438, 40.75059130096435], [-73.89804077148438, 40.75940928077698], [-73.90965880584717, 40.75940928077698]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 10-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.75940928077698], [-73.89804077148438, 40.75940928077698], [-73.89804077148438, 40.7682272605896], [-73.90965880584717, 40.7682272605896]]], "type": "Polygon"}, "properties": {"count": 3, "name": "Cell 10-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.7682272605896], [-73.89804077148438, 40.7682272605896], [-73.89804077148438, 40.777045240402224], [-73.90965880584717, 40.777045240402224]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 10-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.777045240402224], [-73.89804077148438, 40.777045240402224], [-73.89804077148438, 40.78586322021484], [-73.90965880584717, 40.78586322021484]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 10-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.78586322021484], [-73.89804077148438, 40.78586322021484], [-73.89804077148438, 40.79468120002747], [-73.90965880584717, 40.79468120002747]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 10-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.79468120002747], [-73.89804077148438, 40.79468120002747], [-73.89804077148438, 40.80349917984009], [-73.90965880584717, 40.80349917984009]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 10-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90965880584717, 40.80349917984009], [-73.89804077148438, 40.80349917984009], [-73.89804077148438, 40.812317159652714], [-73.90965880584717, 40.812317159652714]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 10-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.812317159652714], [-73.88642273712158, 40.812317159652714], [-73.88642273712158, 40.64477554321289], [-73.89804077148438, 40.64477554321289]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 11-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.64477554321289], [-73.88642273712158, 40.64477554321289], [-73.88642273712158, 40.653593523025506], [-73.89804077148438, 40.653593523025506]]], "type": "Polygon"}, "properties": {"count": 196, "name": "Cell 11-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.653593523025506], [-73.88642273712158, 40.653593523025506], [-73.88642273712158, 40.66241150283813], [-73.89804077148438, 40.66241150283813]]], "type": "Polygon"}, "properties": {"count": 298, "name": "Cell 11-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.66241150283813], [-73.88642273712158, 40.66241150283813], [-73.88642273712158, 40.67122948265075], [-73.89804077148438, 40.67122948265075]]], "type": "Polygon"}, "properties": {"count": 392, "name": "Cell 11-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.67122948265075], [-73.88642273712158, 40.67122948265075], [-73.88642273712158, 40.68004746246338], [-73.89804077148438, 40.68004746246338]]], "type": "Polygon"}, "properties": {"count": 64, "name": "Cell 11-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.68004746246338], [-73.88642273712158, 40.68004746246338], [-73.88642273712158, 40.688865442276], [-73.89804077148438, 40.688865442276]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 11-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.688865442276], [-73.88642273712158, 40.688865442276], [-73.88642273712158, 40.69768342208862], [-73.89804077148438, 40.69768342208862]]], "type": "Polygon"}, "properties": {"count": 4, "name": "Cell 11-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.69768342208862], [-73.88642273712158, 40.69768342208862], [-73.88642273712158, 40.70650140190124], [-73.89804077148438, 40.70650140190124]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 11-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.70650140190124], [-73.88642273712158, 40.70650140190124], [-73.88642273712158, 40.71531938171387], [-73.89804077148438, 40.71531938171387]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 11-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.71531938171387], [-73.88642273712158, 40.71531938171387], [-73.88642273712158, 40.72413736152649], [-73.89804077148438, 40.72413736152649]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 11-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.72413736152649], [-73.88642273712158, 40.72413736152649], [-73.88642273712158, 40.73295534133911], [-73.89804077148438, 40.73295534133911]]], "type": "Polygon"}, "properties": {"count": 3, "name": "Cell 11-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.73295534133911], [-73.88642273712158, 40.73295534133911], [-73.88642273712158, 40.74177332115173], [-73.89804077148438, 40.74177332115173]]], "type": "Polygon"}, "properties": {"count": 3, "name": "Cell 11-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.74177332115173], [-73.88642273712158, 40.74177332115173], [-73.88642273712158, 40.75059130096435], [-73.89804077148438, 40.75059130096435]]], "type": "Polygon"}, "properties": {"count": 2, "name": "Cell 11-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.75059130096435], [-73.88642273712158, 40.75059130096435], [-73.88642273712158, 40.75940928077698], [-73.89804077148438, 40.75940928077698]]], "type": "Polygon"}, "properties": {"count": 4, "name": "Cell 11-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.75940928077698], [-73.88642273712158, 40.75940928077698], [-73.88642273712158, 40.7682272605896], [-73.89804077148438, 40.7682272605896]]], "type": "Polygon"}, "properties": {"count": 2, "name": "Cell 11-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.7682272605896], [-73.88642273712158, 40.7682272605896], [-73.88642273712158, 40.777045240402224], [-73.89804077148438, 40.777045240402224]]], "type": "Polygon"}, "properties": {"count": 2, "name": "Cell 11-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.777045240402224], [-73.88642273712158, 40.777045240402224], [-73.88642273712158, 40.78586322021484], [-73.89804077148438, 40.78586322021484]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 11-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.78586322021484], [-73.88642273712158, 40.78586322021484], [-73.88642273712158, 40.79468120002747], [-73.89804077148438, 40.79468120002747]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 11-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.79468120002747], [-73.88642273712158, 40.79468120002747], [-73.88642273712158, 40.80349917984009], [-73.89804077148438, 40.80349917984009]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 11-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89804077148438, 40.80349917984009], [-73.88642273712158, 40.80349917984009], [-73.88642273712158, 40.812317159652714], [-73.89804077148438, 40.812317159652714]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 11-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.812317159652714], [-73.8748047027588, 40.812317159652714], [-73.8748047027588, 40.64477554321289], [-73.88642273712158, 40.64477554321289]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 12-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.64477554321289], [-73.8748047027588, 40.64477554321289], [-73.8748047027588, 40.653593523025506], [-73.88642273712158, 40.653593523025506]]], "type": "Polygon"}, "properties": {"count": 110, "name": "Cell 12-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.653593523025506], [-73.8748047027588, 40.653593523025506], [-73.8748047027588, 40.66241150283813], [-73.88642273712158, 40.66241150283813]]], "type": "Polygon"}, "properties": {"count": 456, "name": "Cell 12-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.66241150283813], [-73.8748047027588, 40.66241150283813], [-73.8748047027588, 40.67122948265075], [-73.88642273712158, 40.67122948265075]]], "type": "Polygon"}, "properties": {"count": 504, "name": "Cell 12-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.67122948265075], [-73.8748047027588, 40.67122948265075], [-73.8748047027588, 40.68004746246338], [-73.88642273712158, 40.68004746246338]]], "type": "Polygon"}, "properties": {"count": 234, "name": "Cell 12-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.68004746246338], [-73.8748047027588, 40.68004746246338], [-73.8748047027588, 40.688865442276], [-73.88642273712158, 40.688865442276]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 12-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.688865442276], [-73.8748047027588, 40.688865442276], [-73.8748047027588, 40.69768342208862], [-73.88642273712158, 40.69768342208862]]], "type": "Polygon"}, "properties": {"count": 4, "name": "Cell 12-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.69768342208862], [-73.8748047027588, 40.69768342208862], [-73.8748047027588, 40.70650140190124], [-73.88642273712158, 40.70650140190124]]], "type": "Polygon"}, "properties": {"count": 5, "name": "Cell 12-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.70650140190124], [-73.8748047027588, 40.70650140190124], [-73.8748047027588, 40.71531938171387], [-73.88642273712158, 40.71531938171387]]], "type": "Polygon"}, "properties": {"count": 7, "name": "Cell 12-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.71531938171387], [-73.8748047027588, 40.71531938171387], [-73.8748047027588, 40.72413736152649], [-73.88642273712158, 40.72413736152649]]], "type": "Polygon"}, "properties": {"count": 17, "name": "Cell 12-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.72413736152649], [-73.8748047027588, 40.72413736152649], [-73.8748047027588, 40.73295534133911], [-73.88642273712158, 40.73295534133911]]], "type": "Polygon"}, "properties": {"count": 6, "name": "Cell 12-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.73295534133911], [-73.8748047027588, 40.73295534133911], [-73.8748047027588, 40.74177332115173], [-73.88642273712158, 40.74177332115173]]], "type": "Polygon"}, "properties": {"count": 8, "name": "Cell 12-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.74177332115173], [-73.8748047027588, 40.74177332115173], [-73.8748047027588, 40.75059130096435], [-73.88642273712158, 40.75059130096435]]], "type": "Polygon"}, "properties": {"count": 13, "name": "Cell 12-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.75059130096435], [-73.8748047027588, 40.75059130096435], [-73.8748047027588, 40.75940928077698], [-73.88642273712158, 40.75940928077698]]], "type": "Polygon"}, "properties": {"count": 4, "name": "Cell 12-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.75940928077698], [-73.8748047027588, 40.75940928077698], [-73.8748047027588, 40.7682272605896], [-73.88642273712158, 40.7682272605896]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 12-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.7682272605896], [-73.8748047027588, 40.7682272605896], [-73.8748047027588, 40.777045240402224], [-73.88642273712158, 40.777045240402224]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 12-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.777045240402224], [-73.8748047027588, 40.777045240402224], [-73.8748047027588, 40.78586322021484], [-73.88642273712158, 40.78586322021484]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 12-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.78586322021484], [-73.8748047027588, 40.78586322021484], [-73.8748047027588, 40.79468120002747], [-73.88642273712158, 40.79468120002747]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 12-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.79468120002747], [-73.8748047027588, 40.79468120002747], [-73.8748047027588, 40.80349917984009], [-73.88642273712158, 40.80349917984009]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 12-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88642273712158, 40.80349917984009], [-73.8748047027588, 40.80349917984009], [-73.8748047027588, 40.812317159652714], [-73.88642273712158, 40.812317159652714]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 12-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.812317159652714], [-73.863186668396, 40.812317159652714], [-73.863186668396, 40.64477554321289], [-73.8748047027588, 40.64477554321289]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 13-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.64477554321289], [-73.863186668396, 40.64477554321289], [-73.863186668396, 40.653593523025506], [-73.8748047027588, 40.653593523025506]]], "type": "Polygon"}, "properties": {"count": 16, "name": "Cell 13-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.653593523025506], [-73.863186668396, 40.653593523025506], [-73.863186668396, 40.66241150283813], [-73.8748047027588, 40.66241150283813]]], "type": "Polygon"}, "properties": {"count": 263, "name": "Cell 13-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.66241150283813], [-73.863186668396, 40.66241150283813], [-73.863186668396, 40.67122948265075], [-73.8748047027588, 40.67122948265075]]], "type": "Polygon"}, "properties": {"count": 461, "name": "Cell 13-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.67122948265075], [-73.863186668396, 40.67122948265075], [-73.863186668396, 40.68004746246338], [-73.8748047027588, 40.68004746246338]]], "type": "Polygon"}, "properties": {"count": 515, "name": "Cell 13-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.68004746246338], [-73.863186668396, 40.68004746246338], [-73.863186668396, 40.688865442276], [-73.8748047027588, 40.688865442276]]], "type": "Polygon"}, "properties": {"count": 128, "name": "Cell 13-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.688865442276], [-73.863186668396, 40.688865442276], [-73.863186668396, 40.69768342208862], [-73.8748047027588, 40.69768342208862]]], "type": "Polygon"}, "properties": {"count": 5, "name": "Cell 13-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.69768342208862], [-73.863186668396, 40.69768342208862], [-73.863186668396, 40.70650140190124], [-73.8748047027588, 40.70650140190124]]], "type": "Polygon"}, "properties": {"count": 9, "name": "Cell 13-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.70650140190124], [-73.863186668396, 40.70650140190124], [-73.863186668396, 40.71531938171387], [-73.8748047027588, 40.71531938171387]]], "type": "Polygon"}, "properties": {"count": 14, "name": "Cell 13-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.71531938171387], [-73.863186668396, 40.71531938171387], [-73.863186668396, 40.72413736152649], [-73.8748047027588, 40.72413736152649]]], "type": "Polygon"}, "properties": {"count": 9, "name": "Cell 13-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.72413736152649], [-73.863186668396, 40.72413736152649], [-73.863186668396, 40.73295534133911], [-73.8748047027588, 40.73295534133911]]], "type": "Polygon"}, "properties": {"count": 2, "name": "Cell 13-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.73295534133911], [-73.863186668396, 40.73295534133911], [-73.863186668396, 40.74177332115173], [-73.8748047027588, 40.74177332115173]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 13-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.74177332115173], [-73.863186668396, 40.74177332115173], [-73.863186668396, 40.75059130096435], [-73.8748047027588, 40.75059130096435]]], "type": "Polygon"}, "properties": {"count": 3, "name": "Cell 13-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.75059130096435], [-73.863186668396, 40.75059130096435], [-73.863186668396, 40.75940928077698], [-73.8748047027588, 40.75940928077698]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 13-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.75940928077698], [-73.863186668396, 40.75940928077698], [-73.863186668396, 40.7682272605896], [-73.8748047027588, 40.7682272605896]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 13-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.7682272605896], [-73.863186668396, 40.7682272605896], [-73.863186668396, 40.777045240402224], [-73.8748047027588, 40.777045240402224]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 13-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.777045240402224], [-73.863186668396, 40.777045240402224], [-73.863186668396, 40.78586322021484], [-73.8748047027588, 40.78586322021484]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 13-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.78586322021484], [-73.863186668396, 40.78586322021484], [-73.863186668396, 40.79468120002747], [-73.8748047027588, 40.79468120002747]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 13-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.79468120002747], [-73.863186668396, 40.79468120002747], [-73.863186668396, 40.80349917984009], [-73.8748047027588, 40.80349917984009]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 13-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8748047027588, 40.80349917984009], [-73.863186668396, 40.80349917984009], [-73.863186668396, 40.812317159652714], [-73.8748047027588, 40.812317159652714]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 13-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.812317159652714], [-73.8515686340332, 40.812317159652714], [-73.8515686340332, 40.64477554321289], [-73.863186668396, 40.64477554321289]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 14-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.64477554321289], [-73.8515686340332, 40.64477554321289], [-73.8515686340332, 40.653593523025506], [-73.863186668396, 40.653593523025506]]], "type": "Polygon"}, "properties": {"count": 8, "name": "Cell 14-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.653593523025506], [-73.8515686340332, 40.653593523025506], [-73.8515686340332, 40.66241150283813], [-73.863186668396, 40.66241150283813]]], "type": "Polygon"}, "properties": {"count": 172, "name": "Cell 14-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.66241150283813], [-73.8515686340332, 40.66241150283813], [-73.8515686340332, 40.67122948265075], [-73.863186668396, 40.67122948265075]]], "type": "Polygon"}, "properties": {"count": 413, "name": "Cell 14-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.67122948265075], [-73.8515686340332, 40.67122948265075], [-73.8515686340332, 40.68004746246338], [-73.863186668396, 40.68004746246338]]], "type": "Polygon"}, "properties": {"count": 370, "name": "Cell 14-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.68004746246338], [-73.8515686340332, 40.68004746246338], [-73.8515686340332, 40.688865442276], [-73.863186668396, 40.688865442276]]], "type": "Polygon"}, "properties": {"count": 257, "name": "Cell 14-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.688865442276], [-73.8515686340332, 40.688865442276], [-73.8515686340332, 40.69768342208862], [-73.863186668396, 40.69768342208862]]], "type": "Polygon"}, "properties": {"count": 43, "name": "Cell 14-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.69768342208862], [-73.8515686340332, 40.69768342208862], [-73.8515686340332, 40.70650140190124], [-73.863186668396, 40.70650140190124]]], "type": "Polygon"}, "properties": {"count": 7, "name": "Cell 14-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.70650140190124], [-73.8515686340332, 40.70650140190124], [-73.8515686340332, 40.71531938171387], [-73.863186668396, 40.71531938171387]]], "type": "Polygon"}, "properties": {"count": 27, "name": "Cell 14-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.71531938171387], [-73.8515686340332, 40.71531938171387], [-73.8515686340332, 40.72413736152649], [-73.863186668396, 40.72413736152649]]], "type": "Polygon"}, "properties": {"count": 16, "name": "Cell 14-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.72413736152649], [-73.8515686340332, 40.72413736152649], [-73.8515686340332, 40.73295534133911], [-73.863186668396, 40.73295534133911]]], "type": "Polygon"}, "properties": {"count": 2, "name": "Cell 14-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.73295534133911], [-73.8515686340332, 40.73295534133911], [-73.8515686340332, 40.74177332115173], [-73.863186668396, 40.74177332115173]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 14-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.74177332115173], [-73.8515686340332, 40.74177332115173], [-73.8515686340332, 40.75059130096435], [-73.863186668396, 40.75059130096435]]], "type": "Polygon"}, "properties": {"count": 2, "name": "Cell 14-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.75059130096435], [-73.8515686340332, 40.75059130096435], [-73.8515686340332, 40.75940928077698], [-73.863186668396, 40.75940928077698]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 14-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.75940928077698], [-73.8515686340332, 40.75940928077698], [-73.8515686340332, 40.7682272605896], [-73.863186668396, 40.7682272605896]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 14-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.7682272605896], [-73.8515686340332, 40.7682272605896], [-73.8515686340332, 40.777045240402224], [-73.863186668396, 40.777045240402224]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 14-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.777045240402224], [-73.8515686340332, 40.777045240402224], [-73.8515686340332, 40.78586322021484], [-73.863186668396, 40.78586322021484]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 14-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.78586322021484], [-73.8515686340332, 40.78586322021484], [-73.8515686340332, 40.79468120002747], [-73.863186668396, 40.79468120002747]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 14-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.79468120002747], [-73.8515686340332, 40.79468120002747], [-73.8515686340332, 40.80349917984009], [-73.863186668396, 40.80349917984009]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 14-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.863186668396, 40.80349917984009], [-73.8515686340332, 40.80349917984009], [-73.8515686340332, 40.812317159652714], [-73.863186668396, 40.812317159652714]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 14-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.812317159652714], [-73.8399505996704, 40.812317159652714], [-73.8399505996704, 40.64477554321289], [-73.8515686340332, 40.64477554321289]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 15-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.64477554321289], [-73.8399505996704, 40.64477554321289], [-73.8399505996704, 40.653593523025506], [-73.8515686340332, 40.653593523025506]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 15-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.653593523025506], [-73.8399505996704, 40.653593523025506], [-73.8399505996704, 40.66241150283813], [-73.8515686340332, 40.66241150283813]]], "type": "Polygon"}, "properties": {"count": 24, "name": "Cell 15-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.66241150283813], [-73.8399505996704, 40.66241150283813], [-73.8399505996704, 40.67122948265075], [-73.8515686340332, 40.67122948265075]]], "type": "Polygon"}, "properties": {"count": 255, "name": "Cell 15-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.67122948265075], [-73.8399505996704, 40.67122948265075], [-73.8399505996704, 40.68004746246338], [-73.8515686340332, 40.68004746246338]]], "type": "Polygon"}, "properties": {"count": 44, "name": "Cell 15-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.68004746246338], [-73.8399505996704, 40.68004746246338], [-73.8399505996704, 40.688865442276], [-73.8515686340332, 40.688865442276]]], "type": "Polygon"}, "properties": {"count": 281, "name": "Cell 15-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.688865442276], [-73.8399505996704, 40.688865442276], [-73.8399505996704, 40.69768342208862], [-73.8515686340332, 40.69768342208862]]], "type": "Polygon"}, "properties": {"count": 251, "name": "Cell 15-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.69768342208862], [-73.8399505996704, 40.69768342208862], [-73.8399505996704, 40.70650140190124], [-73.8515686340332, 40.70650140190124]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 15-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.70650140190124], [-73.8399505996704, 40.70650140190124], [-73.8399505996704, 40.71531938171387], [-73.8515686340332, 40.71531938171387]]], "type": "Polygon"}, "properties": {"count": 14, "name": "Cell 15-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.71531938171387], [-73.8399505996704, 40.71531938171387], [-73.8399505996704, 40.72413736152649], [-73.8515686340332, 40.72413736152649]]], "type": "Polygon"}, "properties": {"count": 19, "name": "Cell 15-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.72413736152649], [-73.8399505996704, 40.72413736152649], [-73.8399505996704, 40.73295534133911], [-73.8515686340332, 40.73295534133911]]], "type": "Polygon"}, "properties": {"count": 2, "name": "Cell 15-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.73295534133911], [-73.8399505996704, 40.73295534133911], [-73.8399505996704, 40.74177332115173], [-73.8515686340332, 40.74177332115173]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 15-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.74177332115173], [-73.8399505996704, 40.74177332115173], [-73.8399505996704, 40.75059130096435], [-73.8515686340332, 40.75059130096435]]], "type": "Polygon"}, "properties": {"count": 9, "name": "Cell 15-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.75059130096435], [-73.8399505996704, 40.75059130096435], [-73.8399505996704, 40.75940928077698], [-73.8515686340332, 40.75940928077698]]], "type": "Polygon"}, "properties": {"count": 148, "name": "Cell 15-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.75940928077698], [-73.8399505996704, 40.75940928077698], [-73.8399505996704, 40.7682272605896], [-73.8515686340332, 40.7682272605896]]], "type": "Polygon"}, "properties": {"count": 34, "name": "Cell 15-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.7682272605896], [-73.8399505996704, 40.7682272605896], [-73.8399505996704, 40.777045240402224], [-73.8515686340332, 40.777045240402224]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 15-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.777045240402224], [-73.8399505996704, 40.777045240402224], [-73.8399505996704, 40.78586322021484], [-73.8515686340332, 40.78586322021484]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 15-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.78586322021484], [-73.8399505996704, 40.78586322021484], [-73.8399505996704, 40.79468120002747], [-73.8515686340332, 40.79468120002747]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 15-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.79468120002747], [-73.8399505996704, 40.79468120002747], [-73.8399505996704, 40.80349917984009], [-73.8515686340332, 40.80349917984009]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 15-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8515686340332, 40.80349917984009], [-73.8399505996704, 40.80349917984009], [-73.8399505996704, 40.812317159652714], [-73.8515686340332, 40.812317159652714]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 15-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.812317159652714], [-73.82833256530762, 40.812317159652714], [-73.82833256530762, 40.64477554321289], [-73.8399505996704, 40.64477554321289]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 16-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.64477554321289], [-73.82833256530762, 40.64477554321289], [-73.82833256530762, 40.653593523025506], [-73.8399505996704, 40.653593523025506]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 16-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.653593523025506], [-73.82833256530762, 40.653593523025506], [-73.82833256530762, 40.66241150283813], [-73.8399505996704, 40.66241150283813]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 16-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.66241150283813], [-73.82833256530762, 40.66241150283813], [-73.82833256530762, 40.67122948265075], [-73.8399505996704, 40.67122948265075]]], "type": "Polygon"}, "properties": {"count": 149, "name": "Cell 16-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.67122948265075], [-73.82833256530762, 40.67122948265075], [-73.82833256530762, 40.68004746246338], [-73.8399505996704, 40.68004746246338]]], "type": "Polygon"}, "properties": {"count": 155, "name": "Cell 16-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.68004746246338], [-73.82833256530762, 40.68004746246338], [-73.82833256530762, 40.688865442276], [-73.8399505996704, 40.688865442276]]], "type": "Polygon"}, "properties": {"count": 85, "name": "Cell 16-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.688865442276], [-73.82833256530762, 40.688865442276], [-73.82833256530762, 40.69768342208862], [-73.8399505996704, 40.69768342208862]]], "type": "Polygon"}, "properties": {"count": 288, "name": "Cell 16-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.69768342208862], [-73.82833256530762, 40.69768342208862], [-73.82833256530762, 40.70650140190124], [-73.8399505996704, 40.70650140190124]]], "type": "Polygon"}, "properties": {"count": 2, "name": "Cell 16-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.70650140190124], [-73.82833256530762, 40.70650140190124], [-73.82833256530762, 40.71531938171387], [-73.8399505996704, 40.71531938171387]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 16-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.71531938171387], [-73.82833256530762, 40.71531938171387], [-73.82833256530762, 40.72413736152649], [-73.8399505996704, 40.72413736152649]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 16-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.72413736152649], [-73.82833256530762, 40.72413736152649], [-73.82833256530762, 40.73295534133911], [-73.8399505996704, 40.73295534133911]]], "type": "Polygon"}, "properties": {"count": 2, "name": "Cell 16-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.73295534133911], [-73.82833256530762, 40.73295534133911], [-73.82833256530762, 40.74177332115173], [-73.8399505996704, 40.74177332115173]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 16-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.74177332115173], [-73.82833256530762, 40.74177332115173], [-73.82833256530762, 40.75059130096435], [-73.8399505996704, 40.75059130096435]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 16-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.75059130096435], [-73.82833256530762, 40.75059130096435], [-73.82833256530762, 40.75940928077698], [-73.8399505996704, 40.75940928077698]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 16-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.75940928077698], [-73.82833256530762, 40.75940928077698], [-73.82833256530762, 40.7682272605896], [-73.8399505996704, 40.7682272605896]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 16-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.7682272605896], [-73.82833256530762, 40.7682272605896], [-73.82833256530762, 40.777045240402224], [-73.8399505996704, 40.777045240402224]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 16-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.777045240402224], [-73.82833256530762, 40.777045240402224], [-73.82833256530762, 40.78586322021484], [-73.8399505996704, 40.78586322021484]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 16-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.78586322021484], [-73.82833256530762, 40.78586322021484], [-73.82833256530762, 40.79468120002747], [-73.8399505996704, 40.79468120002747]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 16-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.79468120002747], [-73.82833256530762, 40.79468120002747], [-73.82833256530762, 40.80349917984009], [-73.8399505996704, 40.80349917984009]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 16-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8399505996704, 40.80349917984009], [-73.82833256530762, 40.80349917984009], [-73.82833256530762, 40.812317159652714], [-73.8399505996704, 40.812317159652714]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 16-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.812317159652714], [-73.81671453094482, 40.812317159652714], [-73.81671453094482, 40.64477554321289], [-73.82833256530762, 40.64477554321289]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 17-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.64477554321289], [-73.81671453094482, 40.64477554321289], [-73.81671453094482, 40.653593523025506], [-73.82833256530762, 40.653593523025506]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 17-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.653593523025506], [-73.81671453094482, 40.653593523025506], [-73.81671453094482, 40.66241150283813], [-73.82833256530762, 40.66241150283813]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 17-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.66241150283813], [-73.81671453094482, 40.66241150283813], [-73.81671453094482, 40.67122948265075], [-73.82833256530762, 40.67122948265075]]], "type": "Polygon"}, "properties": {"count": 2, "name": "Cell 17-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.67122948265075], [-73.81671453094482, 40.67122948265075], [-73.81671453094482, 40.68004746246338], [-73.82833256530762, 40.68004746246338]]], "type": "Polygon"}, "properties": {"count": 207, "name": "Cell 17-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.68004746246338], [-73.81671453094482, 40.68004746246338], [-73.81671453094482, 40.688865442276], [-73.82833256530762, 40.688865442276]]], "type": "Polygon"}, "properties": {"count": 41, "name": "Cell 17-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.688865442276], [-73.81671453094482, 40.688865442276], [-73.81671453094482, 40.69768342208862], [-73.82833256530762, 40.69768342208862]]], "type": "Polygon"}, "properties": {"count": 55, "name": "Cell 17-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.69768342208862], [-73.81671453094482, 40.69768342208862], [-73.81671453094482, 40.70650140190124], [-73.82833256530762, 40.70650140190124]]], "type": "Polygon"}, "properties": {"count": 19, "name": "Cell 17-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.70650140190124], [-73.81671453094482, 40.70650140190124], [-73.81671453094482, 40.71531938171387], [-73.82833256530762, 40.71531938171387]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 17-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.71531938171387], [-73.81671453094482, 40.71531938171387], [-73.81671453094482, 40.72413736152649], [-73.82833256530762, 40.72413736152649]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 17-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.72413736152649], [-73.81671453094482, 40.72413736152649], [-73.81671453094482, 40.73295534133911], [-73.82833256530762, 40.73295534133911]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 17-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.73295534133911], [-73.81671453094482, 40.73295534133911], [-73.81671453094482, 40.74177332115173], [-73.82833256530762, 40.74177332115173]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 17-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.74177332115173], [-73.81671453094482, 40.74177332115173], [-73.81671453094482, 40.75059130096435], [-73.82833256530762, 40.75059130096435]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 17-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.75059130096435], [-73.81671453094482, 40.75059130096435], [-73.81671453094482, 40.75940928077698], [-73.82833256530762, 40.75940928077698]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 17-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.75940928077698], [-73.81671453094482, 40.75940928077698], [-73.81671453094482, 40.7682272605896], [-73.82833256530762, 40.7682272605896]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 17-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.7682272605896], [-73.81671453094482, 40.7682272605896], [-73.81671453094482, 40.777045240402224], [-73.82833256530762, 40.777045240402224]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 17-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.777045240402224], [-73.81671453094482, 40.777045240402224], [-73.81671453094482, 40.78586322021484], [-73.82833256530762, 40.78586322021484]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 17-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.78586322021484], [-73.81671453094482, 40.78586322021484], [-73.81671453094482, 40.79468120002747], [-73.82833256530762, 40.79468120002747]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 17-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.79468120002747], [-73.81671453094482, 40.79468120002747], [-73.81671453094482, 40.80349917984009], [-73.82833256530762, 40.80349917984009]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 17-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82833256530762, 40.80349917984009], [-73.81671453094482, 40.80349917984009], [-73.81671453094482, 40.812317159652714], [-73.82833256530762, 40.812317159652714]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 17-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.812317159652714], [-73.80509649658202, 40.812317159652714], [-73.80509649658202, 40.64477554321289], [-73.81671453094482, 40.64477554321289]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 18-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.64477554321289], [-73.80509649658202, 40.64477554321289], [-73.80509649658202, 40.653593523025506], [-73.81671453094482, 40.653593523025506]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 18-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.653593523025506], [-73.80509649658202, 40.653593523025506], [-73.80509649658202, 40.66241150283813], [-73.81671453094482, 40.66241150283813]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 18-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.66241150283813], [-73.80509649658202, 40.66241150283813], [-73.80509649658202, 40.67122948265075], [-73.81671453094482, 40.67122948265075]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 18-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.67122948265075], [-73.80509649658202, 40.67122948265075], [-73.80509649658202, 40.68004746246338], [-73.81671453094482, 40.68004746246338]]], "type": "Polygon"}, "properties": {"count": 81, "name": "Cell 18-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.68004746246338], [-73.80509649658202, 40.68004746246338], [-73.80509649658202, 40.688865442276], [-73.81671453094482, 40.688865442276]]], "type": "Polygon"}, "properties": {"count": 50, "name": "Cell 18-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.688865442276], [-73.80509649658202, 40.688865442276], [-73.80509649658202, 40.69768342208862], [-73.81671453094482, 40.69768342208862]]], "type": "Polygon"}, "properties": {"count": 22, "name": "Cell 18-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.69768342208862], [-73.80509649658202, 40.69768342208862], [-73.80509649658202, 40.70650140190124], [-73.81671453094482, 40.70650140190124]]], "type": "Polygon"}, "properties": {"count": 30, "name": "Cell 18-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.70650140190124], [-73.80509649658202, 40.70650140190124], [-73.80509649658202, 40.71531938171387], [-73.81671453094482, 40.71531938171387]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 18-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.71531938171387], [-73.80509649658202, 40.71531938171387], [-73.80509649658202, 40.72413736152649], [-73.81671453094482, 40.72413736152649]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 18-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.72413736152649], [-73.80509649658202, 40.72413736152649], [-73.80509649658202, 40.73295534133911], [-73.81671453094482, 40.73295534133911]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 18-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.73295534133911], [-73.80509649658202, 40.73295534133911], [-73.80509649658202, 40.74177332115173], [-73.81671453094482, 40.74177332115173]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 18-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.74177332115173], [-73.80509649658202, 40.74177332115173], [-73.80509649658202, 40.75059130096435], [-73.81671453094482, 40.75059130096435]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 18-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.75059130096435], [-73.80509649658202, 40.75059130096435], [-73.80509649658202, 40.75940928077698], [-73.81671453094482, 40.75940928077698]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 18-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.75940928077698], [-73.80509649658202, 40.75940928077698], [-73.80509649658202, 40.7682272605896], [-73.81671453094482, 40.7682272605896]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 18-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.7682272605896], [-73.80509649658202, 40.7682272605896], [-73.80509649658202, 40.777045240402224], [-73.81671453094482, 40.777045240402224]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 18-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.777045240402224], [-73.80509649658202, 40.777045240402224], [-73.80509649658202, 40.78586322021484], [-73.81671453094482, 40.78586322021484]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 18-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.78586322021484], [-73.80509649658202, 40.78586322021484], [-73.80509649658202, 40.79468120002747], [-73.81671453094482, 40.79468120002747]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 18-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.79468120002747], [-73.80509649658202, 40.79468120002747], [-73.80509649658202, 40.80349917984009], [-73.81671453094482, 40.80349917984009]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 18-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81671453094482, 40.80349917984009], [-73.80509649658202, 40.80349917984009], [-73.80509649658202, 40.812317159652714], [-73.81671453094482, 40.812317159652714]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 18-19"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.812317159652714], [-73.79347846221924, 40.812317159652714], [-73.79347846221924, 40.64477554321289], [-73.80509649658202, 40.64477554321289]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 19-0"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.64477554321289], [-73.79347846221924, 40.64477554321289], [-73.79347846221924, 40.653593523025506], [-73.80509649658202, 40.653593523025506]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 19-1"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.653593523025506], [-73.79347846221924, 40.653593523025506], [-73.79347846221924, 40.66241150283813], [-73.80509649658202, 40.66241150283813]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 19-2"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.66241150283813], [-73.79347846221924, 40.66241150283813], [-73.79347846221924, 40.67122948265075], [-73.80509649658202, 40.67122948265075]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 19-3"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.67122948265075], [-73.79347846221924, 40.67122948265075], [-73.79347846221924, 40.68004746246338], [-73.80509649658202, 40.68004746246338]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 19-4"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.68004746246338], [-73.79347846221924, 40.68004746246338], [-73.79347846221924, 40.688865442276], [-73.80509649658202, 40.688865442276]]], "type": "Polygon"}, "properties": {"count": 31, "name": "Cell 19-5"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.688865442276], [-73.79347846221924, 40.688865442276], [-73.79347846221924, 40.69768342208862], [-73.80509649658202, 40.69768342208862]]], "type": "Polygon"}, "properties": {"count": 26, "name": "Cell 19-6"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.69768342208862], [-73.79347846221924, 40.69768342208862], [-73.79347846221924, 40.70650140190124], [-73.80509649658202, 40.70650140190124]]], "type": "Polygon"}, "properties": {"count": 12, "name": "Cell 19-7"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.70650140190124], [-73.79347846221924, 40.70650140190124], [-73.79347846221924, 40.71531938171387], [-73.80509649658202, 40.71531938171387]]], "type": "Polygon"}, "properties": {"count": 2, "name": "Cell 19-8"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.71531938171387], [-73.79347846221924, 40.71531938171387], [-73.79347846221924, 40.72413736152649], [-73.80509649658202, 40.72413736152649]]], "type": "Polygon"}, "properties": {"count": 1, "name": "Cell 19-9"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.72413736152649], [-73.79347846221924, 40.72413736152649], [-73.79347846221924, 40.73295534133911], [-73.80509649658202, 40.73295534133911]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 19-10"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.73295534133911], [-73.79347846221924, 40.73295534133911], [-73.79347846221924, 40.74177332115173], [-73.80509649658202, 40.74177332115173]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 19-11"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.74177332115173], [-73.79347846221924, 40.74177332115173], [-73.79347846221924, 40.75059130096435], [-73.80509649658202, 40.75059130096435]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 19-12"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.75059130096435], [-73.79347846221924, 40.75059130096435], [-73.79347846221924, 40.75940928077698], [-73.80509649658202, 40.75940928077698]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 19-13"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.75940928077698], [-73.79347846221924, 40.75940928077698], [-73.79347846221924, 40.7682272605896], [-73.80509649658202, 40.7682272605896]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 19-14"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.7682272605896], [-73.79347846221924, 40.7682272605896], [-73.79347846221924, 40.777045240402224], [-73.80509649658202, 40.777045240402224]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 19-15"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.777045240402224], [-73.79347846221924, 40.777045240402224], [-73.79347846221924, 40.78586322021484], [-73.80509649658202, 40.78586322021484]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 19-16"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.78586322021484], [-73.79347846221924, 40.78586322021484], [-73.79347846221924, 40.79468120002747], [-73.80509649658202, 40.79468120002747]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 19-17"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.79468120002747], [-73.79347846221924, 40.79468120002747], [-73.79347846221924, 40.80349917984009], [-73.80509649658202, 40.80349917984009]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 19-18"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80509649658202, 40.80349917984009], [-73.79347846221924, 40.80349917984009], [-73.79347846221924, 40.812317159652714], [-73.80509649658202, 40.812317159652714]]], "type": "Polygon"}, "properties": {"count": 0, "name": "Cell 19-19"}, "type": "Feature"}], "type": "FeatureCollection"});\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(['#ffff00ff', '#ffff00ff', '#fffe00ff', '#fffe00ff', '#fffd00ff', '#fffd00ff', '#fffc00ff', '#fffc00ff', '#fffb00ff', '#fffb00ff', '#fffa00ff', '#fffa00ff', '#fff900ff', '#fff900ff', '#fff800ff', '#fff800ff', '#fff700ff', '#fff700ff', '#fff600ff', '#fff600ff', '#fff500ff', '#fff500ff', '#fff400ff', '#fff400ff', '#fff300ff', '#fff300ff', '#fff200ff', '#fff200ff', '#fff100ff', '#fff100ff', '#fff000ff', '#fff000ff', '#ffef00ff', '#ffef00ff', '#ffee00ff', '#ffee00ff', '#ffed00ff', '#ffed00ff', '#ffec00ff', '#ffeb00ff', '#ffeb00ff', '#ffea00ff', '#ffea00ff', '#ffe900ff', '#ffe900ff', '#ffe800ff', '#ffe800ff', '#ffe700ff', '#ffe700ff', '#ffe600ff', '#ffe600ff', '#ffe500ff', '#ffe500ff', '#ffe400ff', '#ffe400ff', '#ffe300ff', '#ffe300ff', '#ffe200ff', '#ffe200ff', '#ffe100ff', '#ffe100ff', '#ffe000ff', '#ffe000ff', '#ffdf00ff', '#ffdf00ff', '#ffde00ff', '#ffde00ff', '#ffdd00ff', '#ffdd00ff', '#ffdc00ff', '#ffdc00ff', '#ffdb00ff', '#ffdb00ff', '#ffda00ff', '#ffda00ff', '#ffd900ff', '#ffd900ff', '#ffd800ff', '#ffd700ff', '#ffd700ff', '#ffd600ff', '#ffd600ff', '#ffd500ff', '#ffd500ff', '#ffd400ff', '#ffd400ff', '#ffd300ff', '#ffd300ff', '#ffd200ff', '#ffd200ff', '#ffd100ff', '#ffd100ff', '#ffd000ff', '#ffd000ff', '#ffcf00ff', '#ffcf00ff', '#ffce00ff', '#ffce00ff', '#ffcd00ff', '#ffcd00ff', '#ffcc00ff', '#ffcc00ff', '#ffcb00ff', '#ffcb00ff', '#ffca00ff', '#ffca00ff', '#ffc900ff', '#ffc900ff', '#ffc800ff', '#ffc800ff', '#ffc700ff', '#ffc700ff', '#ffc600ff', '#ffc600ff', '#ffc500ff', '#ffc500ff', '#ffc400ff', '#ffc300ff', '#ffc300ff', '#ffc200ff', '#ffc200ff', '#ffc100ff', '#ffc100ff', '#ffc000ff', '#ffc000ff', '#ffbf00ff', '#ffbf00ff', '#ffbe00ff', '#ffbe00ff', '#ffbd00ff', '#ffbd00ff', '#ffbc00ff', '#ffbc00ff', '#ffbb00ff', '#ffbb00ff', '#ffba00ff', '#ffba00ff', '#ffb900ff', '#ffb900ff', '#ffb800ff', '#ffb800ff', '#ffb700ff', '#ffb700ff', '#ffb600ff', '#ffb600ff', '#ffb500ff', '#ffb500ff', '#ffb400ff', '#ffb400ff', '#ffb300ff', '#ffb300ff', '#ffb200ff', '#ffb200ff', '#ffb100ff', '#ffb000ff', '#ffb000ff', '#ffaf00ff', '#ffaf00ff', '#ffae00ff', '#ffae00ff', '#ffad00ff', '#ffad00ff', '#ffac00ff', '#ffac00ff', '#ffab00ff', '#ffab00ff', '#ffaa00ff', '#ffaa00ff', '#ffa900ff', '#ffa900ff', '#ffa800ff', '#ffa800ff', '#ffa700ff', '#ffa700ff', '#ffa600ff', '#ffa600ff', '#ffa500ff', '#ffa500ff', '#ffa400ff', '#ffa400ff', '#ffa300ff', '#ffa300ff', '#ffa200ff', '#ffa200ff', '#ffa100ff', '#ffa100ff', '#ffa000ff', '#ffa000ff', '#ff9f00ff', '#ff9f00ff', '#ff9e00ff', '#ff9e00ff', '#ff9d00ff', '#ff9c00ff', '#ff9c00ff', '#ff9b00ff', '#ff9b00ff', '#ff9a00ff', '#ff9a00ff', '#ff9900ff', '#ff9900ff', '#ff9800ff', '#ff9800ff', '#ff9700ff', '#ff9700ff', '#ff9600ff', '#ff9600ff', '#ff9500ff', '#ff9500ff', '#ff9400ff', '#ff9400ff', '#ff9300ff', '#ff9300ff', '#ff9200ff', '#ff9200ff', '#ff9100ff', '#ff9100ff', '#ff9000ff', '#ff9000ff', '#ff8f00ff', '#ff8f00ff', '#ff8e00ff', '#ff8e00ff', '#ff8d00ff', '#ff8d00ff', '#ff8c00ff', '#ff8c00ff', '#ff8b00ff', '#ff8b00ff', '#ff8a00ff', '#ff8a00ff', '#ff8900ff', '#ff8800ff', '#ff8800ff', '#ff8700ff', '#ff8700ff', '#ff8600ff', '#ff8600ff', '#ff8500ff', '#ff8500ff', '#ff8400ff', '#ff8400ff', '#ff8300ff', '#ff8300ff', '#ff8200ff', '#ff8200ff', '#ff8100ff', '#ff8100ff', '#ff8000ff', '#ff8000ff', '#ff7f00ff', '#ff7f00ff', '#ff7e00ff', '#ff7e00ff', '#ff7d00ff', '#ff7d00ff', '#ff7c00ff', '#ff7c00ff', '#ff7b00ff', '#ff7b00ff', '#ff7a00ff', '#ff7a00ff', '#ff7900ff', '#ff7900ff', '#ff7800ff', '#ff7800ff', '#ff7700ff', '#ff7700ff', '#ff7600ff', '#ff7500ff', '#ff7500ff', '#ff7400ff', '#ff7400ff', '#ff7300ff', '#ff7300ff', '#ff7200ff', '#ff7200ff', '#ff7100ff', '#ff7100ff', '#ff7000ff', '#ff7000ff', '#ff6f00ff', '#ff6f00ff', '#ff6e00ff', '#ff6e00ff', '#ff6d00ff', '#ff6d00ff', '#ff6c00ff', '#ff6c00ff', '#ff6b00ff', '#ff6b00ff', '#ff6a00ff', '#ff6a00ff', '#ff6900ff', '#ff6900ff', '#ff6800ff', '#ff6800ff', '#ff6700ff', '#ff6700ff', '#ff6600ff', '#ff6600ff', '#ff6500ff', '#ff6500ff', '#ff6400ff', '#ff6400ff', '#ff6300ff', '#ff6300ff', '#ff6200ff', '#ff6100ff', '#ff6100ff', '#ff6000ff', '#ff6000ff', '#ff5f00ff', '#ff5f00ff', '#ff5e00ff', '#ff5e00ff', '#ff5d00ff', '#ff5d00ff', '#ff5c00ff', '#ff5c00ff', '#ff5b00ff', '#ff5b00ff', '#ff5a00ff', '#ff5a00ff', '#ff5900ff', '#ff5900ff', '#ff5800ff', '#ff5800ff', '#ff5700ff', '#ff5700ff', '#ff5600ff', '#ff5600ff', '#ff5500ff', '#ff5500ff', '#ff5400ff', '#ff5400ff', '#ff5300ff', '#ff5300ff', '#ff5200ff', '#ff5200ff', '#ff5100ff', '#ff5100ff', '#ff5000ff', '#ff5000ff', '#ff4f00ff', '#ff4f00ff', '#ff4e00ff', '#ff4d00ff', '#ff4d00ff', '#ff4c00ff', '#ff4c00ff', '#ff4b00ff', '#ff4b00ff', '#ff4a00ff', '#ff4a00ff', '#ff4900ff', '#ff4900ff', '#ff4800ff', '#ff4800ff', '#ff4700ff', '#ff4700ff', '#ff4600ff', '#ff4600ff', '#ff4500ff', '#ff4500ff', '#ff4400ff', '#ff4400ff', '#ff4300ff', '#ff4300ff', '#ff4200ff', '#ff4200ff', '#ff4100ff', '#ff4100ff', '#ff4000ff', '#ff4000ff', '#ff3f00ff', '#ff3f00ff', '#ff3e00ff', '#ff3e00ff', '#ff3d00ff', '#ff3d00ff', '#ff3c00ff', '#ff3c00ff', '#ff3b00ff', '#ff3a00ff', '#ff3a00ff', '#ff3900ff', '#ff3900ff', '#ff3800ff', '#ff3800ff', '#ff3700ff', '#ff3700ff', '#ff3600ff', '#ff3600ff', '#ff3500ff', '#ff3500ff', '#ff3400ff', '#ff3400ff', '#ff3300ff', '#ff3300ff', '#ff3200ff', '#ff3200ff', '#ff3100ff', '#ff3100ff', '#ff3000ff', '#ff3000ff', '#ff2f00ff', '#ff2f00ff', '#ff2e00ff', '#ff2e00ff', '#ff2d00ff', '#ff2d00ff', '#ff2c00ff', '#ff2c00ff', '#ff2b00ff', '#ff2b00ff', '#ff2a00ff', '#ff2a00ff', '#ff2900ff', '#ff2900ff', '#ff2800ff', '#ff2800ff', '#ff2700ff', '#ff2600ff', '#ff2600ff', '#ff2500ff', '#ff2500ff', '#ff2400ff', '#ff2400ff', '#ff2300ff', '#ff2300ff', '#ff2200ff', '#ff2200ff', '#ff2100ff', '#ff2100ff', '#ff2000ff', '#ff2000ff', '#ff1f00ff', '#ff1f00ff', '#ff1e00ff', '#ff1e00ff', '#ff1d00ff', '#ff1d00ff', '#ff1c00ff', '#ff1c00ff', '#ff1b00ff', '#ff1b00ff', '#ff1a00ff', '#ff1a00ff', '#ff1900ff', '#ff1900ff', '#ff1800ff', '#ff1800ff', '#ff1700ff', '#ff1700ff', '#ff1600ff', '#ff1600ff', '#ff1500ff', '#ff1500ff', '#ff1400ff', '#ff1400ff', '#ff1300ff', '#ff1200ff', '#ff1200ff', '#ff1100ff', '#ff1100ff', '#ff1000ff', '#ff1000ff', '#ff0f00ff', '#ff0f00ff', '#ff0e00ff', '#ff0e00ff', '#ff0d00ff', '#ff0d00ff', '#ff0c00ff', '#ff0c00ff', '#ff0b00ff', '#ff0b00ff', '#ff0a00ff', '#ff0a00ff', '#ff0900ff', '#ff0900ff', '#ff0800ff', '#ff0800ff', '#ff0700ff', '#ff0700ff', '#ff0600ff', '#ff0600ff', '#ff0500ff', '#ff0500ff', '#ff0400ff', '#ff0400ff', '#ff0300ff', '#ff0300ff', '#ff0200ff', '#ff0200ff', '#ff0100ff', '#ff0100ff', '#ff0000ff', '#ff0000ff']);\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: 'topright'});\n", | |
" color_map_80e32527754534692026c86a8b9c7f2b.legend.onAdd = function (map) {var div = L.DomUtil.create('div', 'legend'); 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("top")\n", | |
" .tickSize(1)\n", | |
" .tickValues([0.0, 515.0]);\n", | |
"\n", | |
" color_map_80e32527754534692026c86a8b9c7f2b.svg = d3.select(".legend.leaflet-control").append("svg")\n", | |
" .attr("id", 'legend')\n", | |
" .attr("width", 450)\n", | |
" .attr("height", 40);\n", | |
"\n", | |
" color_map_80e32527754534692026c86a8b9c7f2b.g = color_map_80e32527754534692026c86a8b9c7f2b.svg.append("g")\n", | |
" .attr("class", "key")\n", | |
" .attr("transform", "translate(25,16)");\n", | |
"\n", | |
" color_map_80e32527754534692026c86a8b9c7f2b.g.selectAll("rect")\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 < 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("rect")\n", | |
" .attr("height", 40 - 30)\n", | |
" .attr("x", function(d) { return d.x0; })\n", | |
" .attr("width", function(d) { return d.x1 - d.x0; })\n", | |
" .style("fill", function(d) { return d.z; });\n", | |
"\n", | |
" color_map_80e32527754534692026c86a8b9c7f2b.g.call(color_map_80e32527754534692026c86a8b9c7f2b.xAxis).append("text")\n", | |
" .attr("class", "caption")\n", | |
" .attr("y", 21)\n", | |
" .text("");\n", | |
"</script>\n", | |
"</html>\" 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